:root {
  --cream: #F7F5F0;
  --sand: #E8E4DA;
  --sage: #5C6B52;
  --sage-dark: #3D4A36;
  --sage-deep: #2E3A28;
  --charcoal: #2C3328;
  --text-light: #6B6E66;
  --rule: #D6D2C8;
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Source Sans 3', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--sage); color: var(--cream); }

/* NAV */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 1.1rem;
  width: auto;
}

nav { display: flex; gap: 2.5rem; }

nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-decoration: none;
  text-transform: lowercase;
  transition: color 0.2s;
}

nav a:hover, nav a.active { color: var(--sage-dark); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 3rem;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

.hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--sage-deep);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--charcoal);
  max-width: 480px;
  font-weight: 300;
}

.hero-text p + p { margin-top: 1.2rem; }

.hero-statement {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--sage-dark);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--sage);
  max-width: 380px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem;
  background: var(--sage-deep);
  border-radius: 2px;
  position: relative;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid var(--sage);
  border-radius: 2px;
  z-index: -1;
}

.who-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}

.who-item {
  padding-left: 1rem;
  border-left: 2px solid var(--sage);
}

.who-item p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--sand);
  font-weight: 300;
}

/* BRIDGE SECTION */
.bridge-section {
  background: var(--sand);
  padding: 6rem 3rem;
}

.bridge-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.bridge-left h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--sage-deep);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.bridge-left p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.bridge-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bridge-link {
  display: flex;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: padding-left 0.3s, background 0.2s;
  justify-content: space-between;
  align-items: center;
}

.bridge-link:first-child { border-top: 1px solid var(--rule); }

.bridge-link:hover { padding-left: 1rem; }

.bridge-link span {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--sage-dark);
}

.bridge-link .arrow {
  font-size: 1.1rem;
  color: var(--sage);
  transition: transform 0.2s;
}

.bridge-link:hover .arrow { transform: translateX(4px); }

/* CONTACT STRIP */
.contact-strip {
  background: var(--sage-deep);
  padding: 4rem 3rem;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-inner p {
  font-size: 0.95rem;
  color: var(--sand);
  font-weight: 300;
  max-width: 450px;
  line-height: 1.7;
}

.contact-email {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 4px;
  transition: border-color 0.2s;
}

.contact-email:hover { border-color: var(--cream); }

/* INTERIOR PAGES */
.interior {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 3rem 3rem;
}

.interior-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--sage-deep);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--sage);
}

.interior-subtitle {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.interior p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 1.3rem;
  font-weight: 300;
}

.interior .reg {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 3rem;
}

/* DARK INTERIOR (essays) */
.interior--dark {
  background: var(--sage-deep);
  max-width: none;
  padding: 8rem 3rem 4rem;
}

.interior--dark > * {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.interior--dark .interior-title {
  color: var(--sand);
  border-bottom-color: var(--sage);
}

.back-link {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: opacity 0.2s;
}

.back-link:hover { opacity: 0.7; }

.interior--dark .back-link { color: var(--sage); }
.interior .back-link { color: var(--text-light); }

.interior--dark p {
  color: var(--sand);
}

/* NEXT ESSAY NAV */
.next-essay {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sage);
  text-decoration: none;
  transition: gap 0.2s;
}

.next-essay:hover { gap: 1.2rem; }

.next-essay-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.next-essay-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
}

.next-essay .arrow {
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.next-essay:hover .arrow { transform: translateX(4px); }

.interior--dark .next-essay-label { color: var(--sage); }
.interior--dark .next-essay-title { color: var(--sand); }
.interior--dark .next-essay .arrow { color: var(--sage); }

/* WORK LISTING */
.work-listing {
  margin-top: 2rem;
}

/* CONTACT PAGE */
.contact-page {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding-top: 25vh;
}

.contact-page h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--sage-deep);
  margin-bottom: 1.8rem;
}

.contact-page p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4A4A42;
  margin-bottom: 0.8rem;
}

.contact-page-email {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--sage-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 3px;
  transition: all 0.2s;
  display: inline-block;
  margin-top: 1.7rem;
}

.contact-page-email:hover { color: var(--sage); }

/* FOOTER */
footer {
  padding: 1.5rem 3rem;
  text-align: center;
}

footer p {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--sage-dark);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero { min-height: auto; padding: 7rem 2rem 3rem; }
  .hero-right { margin-top: 1rem; }
  .bridge-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .header-inner { padding: 1rem 2rem; }
  .bridge-section { padding: 4rem 2rem; }
  .contact-strip { padding: 3rem 2rem; }
  .interior { padding: 7rem 2rem 4rem; }
}

@media (max-width: 600px) {
  nav { gap: 1.5rem; }
  nav a { font-size: 0.75rem; }
  .hero-text h1 { font-size: 1.8rem; }
  .hero-right { padding: 2rem; }
  .hero-right::before { display: none; }
}
