/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── Tokens ── */
:root {
  --birch:   #F5F0E8;
  --bark:    #3D3530;
  --dusk:    #6B5E52;
  --amber:   #B8874A;
  --lichen:  #8A9489;
  --off:     #EDE8DE;
  --text:    #3D3530;
  --muted:   #6B5E52;
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Jost', system-ui, sans-serif;
  --max: 1100px;
  --pad: clamp(1.5rem, 5vw, 4rem);
}

/* ── Base ── */
body {
  background: var(--birch);
  color: var(--text);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 1.15;
  color: var(--bark);
}

/* ── Nav ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--pad);
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid rgba(61,53,48,0.1);
}
.nav-wordmark {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--bark);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dusk);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--bark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--bark); }
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--birch); padding: 1.5rem var(--pad);
    border-bottom: 0.5px solid rgba(61,53,48,0.1);
    gap: 1.25rem;
  }
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  padding-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  align-items: center;
  gap: 3rem;
}
.hero-text { padding: 2rem 0; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero-eyebrow-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--amber);
}
.hero-eyebrow-text {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 400;
}
.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--bark);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--dusk);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--dusk);
  max-width: 38ch;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 400;
  border-bottom: 1px solid var(--amber);
  padding-bottom: 3px;
  transition: gap 0.2s, color 0.2s;
}
.hero-cta:hover { gap: 0.9rem; }
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.hero-image-wrap img {
  width: 100%;
  max-width: 420px;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
}
.hero-image-caption {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--lichen);
}
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 3rem;
    gap: 2rem;
  }
  .hero-image-wrap { justify-content: center; }
  .hero-image-wrap img { max-width: 100%; height: 400px; }
}

/* ── Pull quote ── */
.pull-quote-section {
  background: var(--bark);
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
  margin: clamp(3rem, 6vw, 5rem) 0;
}
.pull-quote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.pull-quote blockquote {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--birch);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.pull-quote cite {
  font-family: var(--f-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lichen);
  font-style: normal;
}

/* ── Work section ── */
.work-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
}
.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.section-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--amber);
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 400;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bark);
  margin-bottom: 1rem;
}
.section-intro {
  font-size: 1rem;
  color: var(--dusk);
  max-width: 52ch;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.work-card {
  background: var(--off);
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(61,53,48,0.12);
  transition: background 0.2s;
}
.work-card:hover { background: var(--birch); }
.work-card-num {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--amber);
  margin-bottom: 1rem;
  opacity: 0.5;
}
.work-card-title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 0.75rem;
}
.work-card-body {
  font-size: 0.9rem;
  color: var(--dusk);
  line-height: 1.75;
}

/* ── About strip ── */
.about-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image img {
  width: 100%;
  max-width: 400px;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
}
.about-text .section-title { margin-bottom: 1.25rem; }
.about-text p {
  font-size: 0.975rem;
  color: var(--dusk);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-text p:last-of-type { margin-bottom: 2rem; }
@media (max-width: 768px) {
  .about-strip { grid-template-columns: 1fr; gap: 2rem; }
  .about-image img { max-width: 100%; height: 360px; }
}

/* ── Contact ── */
.contact-section {
  background: var(--off);
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
}
.contact-inner {
  max-width: 600px;
  margin: 0 auto;
}
.contact-inner .section-title { margin-bottom: 1rem; }
.contact-inner p {
  font-size: 0.975rem;
  color: var(--dusk);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 44ch;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 400;
}
.form-field input,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(61,53,48,0.25);
  padding: 0.6rem 0;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--bark);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--lichen); }
.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--amber); }
.form-submit {
  align-self: flex-start;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 400;
  border-bottom: 1px solid var(--amber);
  padding: 0 0 3px;
  transition: gap 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { gap: 0.9rem; }

/* ── Footer ── */
.site-footer {
  padding: 3rem var(--pad);
  border-top: 0.5px solid rgba(61,53,48,0.12);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.footer-wordmark {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--bark);
}
.footer-tagline {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--dusk);
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--amber);
  letter-spacing: 0.06em;
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--lichen);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}
