/* Nathalia Rudek — v2. Tokens, reset, fonts. */

@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/instrument-serif-regular.woff2') format('woff2');
  size-adjust: 100%;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/instrument-serif-italic.woff2') format('woff2');
  size-adjust: 100%;
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/geist-variable.woff2') format('woff2');
  size-adjust: 100%;
}

:root {
  /* palette */
  --paper: #FBF8F3;
  --cream: #F2ECE2;
  --linen: #E4D7C4;
  --rule: #D9CCB8;
  --cocoa: #7A5E4A;
  --gold: #A8843C;
  --graphite: #2B2825;
  --body-ink: #4A423C;
  --body-ink-soft: #6B625A;
  --rule-strong: #C9BAA0;
  --walnut: #3A2A21;
  /* caramel #B47437 reserved — do not use */

  /* type */
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* motion */
  --ease-house: cubic-bezier(.22, 1, .36, 1);
  --ease-settle: cubic-bezier(.4, 0, .2, 1);

  /* spacing */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 40px;
  --sp-5: 64px;
  --sp-6: 104px;
  --sp-7: 140px;
  --sp-8: 180px;
  --section-pad: clamp(6rem, 12vw, 11rem);

  /* grid */
  --margin: 28px;
  --gutter: 24px;
  --max: 1440px;
}

@media (max-width: 767px) {
  :root {
    --margin: 20px;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--body-ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 767px) {
  body { font-size: 16px; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input, textarea, select { font-family: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--graphite);
  color: var(--paper);
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: 14px;
}
.skip-link:focus {
  left: var(--margin);
  top: var(--margin);
}

:focus-visible {
  outline: 2px solid var(--graphite);
  outline-offset: 3px;
}
.walnut :focus-visible,
.cta-band :focus-visible,
footer :focus-visible {
  outline-color: var(--paper);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* grid */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--margin);
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--margin);
}

/* typography */
.h1-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.4rem, 10.5vw, 11rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--graphite);
}
.h1-display em { font-style: italic; color: var(--cocoa); }
.h1-display .gold { color: var(--gold); }

.h2-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.6vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--graphite);
}

.statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--graphite);
}
.statement em { font-style: italic; color: var(--cocoa); }

.ledger-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.6vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--graphite);
}

.numeral-giant {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  line-height: 0.8;
  color: var(--gold);
}

.footer-name {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 15vw, 15rem);
  line-height: 0.8;
  letter-spacing: -0.045em;
  color: var(--linen);
}
.footer-name .surname { color: var(--gold); }

.body-lead {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--body-ink);
  max-width: 34ch;
}
@media (max-width: 767px) { .body-lead { font-size: 16px; } }

.body-copy { max-width: 62ch; }
.body-small {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: var(--body-ink-soft);
  max-width: 40ch;
}

.annotation {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cocoa);
}

.numeral-small {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .06em;
  font-variant-numeric: tabular-nums;
  color: var(--cocoa);
}
.numeral-small.gold-numeral { color: var(--gold); font-size: 18px; }

/* motion primitives: Open / Rise / Draw */
.panel {
  position: relative;
  overflow: hidden;
  clip-path: inset(0 0 0 100%);
}
.panel.from-left { clip-path: inset(0 100% 0 0); }
.panel.from-bottom { clip-path: inset(100% 0 0 0); }
.panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-6%) scale(1.06);
}
.panel.from-left img { transform: translateX(6%) scale(1.06); }
.panel.from-bottom img { transform: translateY(6%) scale(1.06); }
.panel.is-open {
  clip-path: inset(0);
  transition: clip-path 1.4s var(--ease-house);
}
.panel.is-open img {
  transform: translate(0) scale(1);
  transition: transform 1.8s var(--ease-house);
}

.mask { overflow: hidden; display: block; }
.mask > span {
  display: block;
  transform: translateY(105%);
  transition: transform 1.2s var(--ease-house);
}
.mask.is-risen > span { transform: translateY(0); }

.rule {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  padding-bottom: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.rule::before {
  content: '';
  flex: 1;
  order: 3;
  height: 1px;
  background: var(--rule);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease-house);
}
.rule.is-drawn::before { transform: scaleX(1); }
.rule .num {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--cocoa);
  opacity: 0;
  transition: opacity 0.4s linear;
}
.rule .label {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cocoa);
  opacity: 0;
  transition: opacity 0.4s linear;
}
.rule.is-drawn .num, .rule.is-drawn .label { opacity: 1; transition-delay: 0.5s; }
.rule--bare::after { content: none; }

.hairline {
  height: 1px;
  background: var(--rule);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease-house);
}
.hairline.is-drawn { transform: scaleX(1); }

.fade-in {
  opacity: 0;
  transition: opacity 0.5s linear;
}
.fade-in.is-visible { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .panel { clip-path: inset(0) !important; }
  .panel img { transform: none !important; transition: none !important; }
  .mask > span { transform: translateY(0) !important; transition: none !important; }
  .rule::before, .hairline { transform: scaleX(1) !important; transition: none !important; }
  .rule .num, .rule .label, .fade-in { opacity: 1 !important; transition: none !important; }
}

/* nav */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-settle), border-color 0.35s var(--ease-settle), transform 0.4s var(--ease-house);
}
.site-nav.is-scrolled { background: var(--paper); border-bottom-color: var(--rule); }
.site-nav.is-hidden { transform: translateY(-100%); }
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo { display: flex; align-items: center; gap: var(--sp-1); }
.nav-logo img { width: 30px; height: auto; }
.nav-logo span {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--graphite);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.nav-links a {
  position: relative;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .01em;
  color: var(--graphite);
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--cocoa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-settle);
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-links a.is-leaving::after { transform-origin: right; }
.nav-hamburger { display: none; }
@media (prefers-reduced-motion: reduce) {
  .nav-links a::after { transition: none; }
}

/* areas dropdown */
.areas-item { position: relative; }
.areas-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 900px);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
  z-index: 49;
  padding: var(--sp-4);
  transition: clip-path 0.5s var(--ease-house), opacity 0.2s linear;
}
.areas-item:hover .areas-dropdown,
.areas-item:focus-within .areas-dropdown,
.areas-dropdown.is-open {
  clip-path: inset(0);
  opacity: 1;
  pointer-events: auto;
}
.areas-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2) var(--sp-4);
}
.areas-dropdown-grid a {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--graphite);
  display: flex;
  gap: var(--sp-2);
}
.areas-dropdown-grid a .n { font-family: var(--sans); font-size: 13px; color: var(--cocoa); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 18px 24px;
  border-radius: 2px;
  transition: background 0.3s var(--ease-settle), transform 0.1s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--graphite);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover, .btn-primary:focus-visible { background: var(--cocoa); }
.btn-primary .label {
  display: inline-block;
  overflow: hidden;
}
.btn-primary .arrow { transition: transform 0.3s var(--ease-settle); }
.btn-primary:hover .arrow, .btn-primary:focus-visible .arrow { transform: translateX(4px); }
.btn-secondary {
  color: var(--graphite);
  position: relative;
  padding: 0;
  border-radius: 0;
}
.btn-secondary::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left;
}
.btn-secondary:hover, .btn-secondary:focus-visible { color: var(--cocoa); }
.walnut .btn-primary, .cta-band .btn-primary { background: var(--paper); color: var(--graphite); }
.walnut .btn-secondary, .cta-band .btn-secondary { color: var(--paper); }

/* hero */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px var(--margin) var(--sp-6);
  align-items: end;
}
.hero-panel {
  grid-column: 7 / 13;
  grid-row: 1 / -1;
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100vh;
  background: var(--rule);
}
.hero-panel img { object-position: 72% 30%; }
.hero-panel-clone {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(3rem, 8vw, 6rem);
  padding-left: var(--margin);
  color: var(--paper);
  pointer-events: none;
  margin: 0;
}
.hero-copy {
  grid-column: 1 / 6;
  position: relative;
  z-index: 1;
  padding-bottom: clamp(3rem, 8vw, 6rem);
}
.hero h1, .hero-panel-clone { margin-bottom: var(--sp-3); }
.hero-italic { font-style: italic; color: var(--cocoa); }
.hero-panel-clone .hero-italic { color: var(--paper); }
.hero-sub { margin-bottom: var(--sp-3); }
.hero-actions { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; margin-bottom: var(--sp-4); }
.hero .rule { max-width: 46ch; }
.scroll-indicator {
  position: absolute;
  left: calc(var(--margin) + (100% - 2 * var(--margin)) / 12 * 5);
  bottom: var(--sp-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cocoa);
}
.scroll-indicator .line {
  width: 1px;
  height: 48px;
  background: var(--rule);
  transform: scaleY(0);
  transform-origin: top;
  animation: draw-y 0.8s var(--ease-house) forwards;
  animation-delay: 1.5s;
}
@keyframes draw-y { to { transform: scaleY(1); } }
@media (max-width: 1023px) {
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-panel { position: relative; grid-column: 1; width: 100%; height: 78vh; margin-top: var(--sp-4); }
  .hero-copy { grid-column: 1; }
  .scroll-indicator { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-indicator .line { animation: none; transform: scaleY(1); }
}

/* marquee */
.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding: var(--sp-2) 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: var(--sp-4);
  will-change: transform;
}
.marquee-track span {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cocoa);
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; }
  .marquee-track { animation: none !important; transform: none !important; }
}

/* generic section */
.section {
  padding: var(--sp-8) 0;
}
.section-head { margin-bottom: var(--sp-5); }

/* (01) philosophy — word ledger */
.philosophy { padding: var(--sp-8) 0; }
.word-ledger {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.3vw, 3.6rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  max-width: 20ch;
}
.word-ledger .w {
  color: var(--rule-strong);
  transition: color 0.2s linear;
}
.word-ledger .w.is-lit { color: var(--graphite); }
@media (prefers-reduced-motion: reduce) {
  .word-ledger .w { color: var(--graphite); transition: none; }
}

/* (02) areas of focus — ledger rows */
.areas-section { position: relative; }
.areas-list { border-top: 1px solid var(--rule); }
.area-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: baseline;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.area-row .n { font-family: var(--sans); font-size: 13px; color: var(--cocoa); }
.area-row .title { font-family: var(--serif); font-size: clamp(1.6rem, 3.4vw, 2.75rem); color: var(--graphite); }
.area-row .desc { font-family: var(--sans); font-weight: 300; font-size: 14px; color: var(--body-ink-soft); grid-column: 2; }
.area-row .arrow { justify-self: end; opacity: 0; transition: opacity 0.25s, transform 0.25s; }
.area-row:hover .arrow, .area-row:focus-visible .arrow { opacity: 1; transform: translateX(4px); }
.area-row:hover .title, .area-row:focus-visible .title { color: var(--cocoa); }

.areas-preview {
  position: fixed;
  top: 0; left: 0;
  width: 260px;
  height: 340px;
  pointer-events: none;
  z-index: 40;
  overflow: hidden;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.2s linear, clip-path 0.4s var(--ease-house);
}
.areas-preview.is-active { opacity: 1; clip-path: inset(0); }
.areas-preview img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1023px), (pointer: coarse) {
  .areas-preview { display: none; }
}

/* why work with nathalia — "the reading crop" */
.why-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 0 var(--gutter);
}
.why-photo-col { position: relative; }
.why-photo-frame {
  position: sticky;
  top: 96px;
  height: calc(100vh - 128px);
  max-height: 760px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--rule);
}
.why-photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.6s var(--ease-house);
}
.why-photo-frame img.crop-1 { transform: scale(1.9); transform-origin: 68% 27%; }
.why-photo-frame img.crop-2 { transform: scale(1.7); transform-origin: 66% 88%; }
.why-photo-frame img.crop-3 { transform: scale(1); transform-origin: 50% 50%; }
.why-photo-frame img.crop-4 { transform: scale(2); transform-origin: 80% 90%; }
.why-photo-frame img.crop-5 { transform: scale(1.5); transform-origin: 70% 30%; }
.why-photo-frame img.crop-6 { transform: scale(1.05) translateX(3%); transform-origin: 55% 50%; }
.why-annotation {
  position: absolute;
  left: var(--sp-3);
  bottom: var(--sp-3);
  padding-top: var(--sp-1);
  border-top: 1px solid var(--paper);
  font-family: var(--sans);
  font-size: 12px;
  color: var(--paper);
  overflow: hidden;
}
.why-lead { grid-column: 1 / -1; max-width: 62ch; margin-bottom: var(--sp-5); }
.why-items { border-top: 1px solid var(--rule); }
.why-item {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--rule);
  opacity: 0.32;
  transition: opacity 0.5s linear;
}
.why-item.is-active { opacity: 1; }
.why-item .numeral-small { display: block; margin-bottom: var(--sp-2); }
.why-item h3 { font-family: var(--serif); font-size: 1.75rem; color: var(--graphite); margin-bottom: var(--sp-1); }
.why-item p { font-family: var(--sans); font-weight: 300; font-size: 15px; line-height: 1.5; color: var(--body-ink-soft); max-width: 42ch; }
@media (prefers-reduced-motion: reduce) {
  .why-photo-frame img { transition: none; }
  .why-item { transition: none; }
}
@media (max-width: 767px) {
  .why-photo-frame { position: relative; top: auto; height: 50vh; max-height: none; }
  .why-item { min-height: auto; opacity: 1; }
}

/* (03) how it works */
.steps-section { }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: start;
}
.steps-frame {
  position: sticky;
  top: 96px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--rule);
}
.steps-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(100% 0 0 0);
  transform: scale(1.05);
  transition: clip-path 0.9s var(--ease-house), transform 0.9s var(--ease-house);
}
.steps-frame img.is-active { clip-path: inset(0); transform: scale(1); }
.step {
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--rule);
  opacity: 0.22;
  transition: opacity 0.5s linear;
}
.step:last-child { border-bottom: 1px solid var(--rule); }
.step.is-active { opacity: 1; }
.step-counter { display: flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-2); font-family: var(--sans); font-size: 12px; color: var(--body-ink-soft); }
.step-counter-bar { flex: 1; height: 1px; background: var(--rule); }
.step-counter-bar span { display: block; height: 1px; background: var(--cocoa); width: 25%; transition: width 0.6s var(--ease-house); }
.step .numeral-small { display: block; margin-bottom: var(--sp-1); }
.step h3 { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: var(--sp-1); color: var(--graphite); }
.step p { font-family: var(--sans); font-weight: 300; font-size: 15px; color: var(--body-ink-soft); max-width: 42ch; }
@media (prefers-reduced-motion: reduce) {
  .steps-frame img { transition: none; }
  .step { transition: none; }
}

/* (04) meet nathalia */
.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}
.meet-photo { aspect-ratio: 4 / 5; }
.meet-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  color: var(--graphite);
  margin-bottom: var(--sp-3);
}
.meet-credentials {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  color: var(--body-ink-soft);
  border-top: 1px solid var(--rule);
  padding-top: var(--sp-2);
  margin-bottom: var(--sp-3);
}

/* cta band (walnut) */
.cta-band {
  background: var(--walnut);
  color: var(--linen);
  padding: var(--sp-8) 0;
  position: relative;
}
.cta-band h2 { color: var(--paper); margin-bottom: var(--sp-4); max-width: 16ch; }
.cta-band .hero-actions { margin-bottom: 0; }
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}

/* footer colophon */
.site-footer {
  background: var(--walnut);
  color: var(--linen);
  padding: var(--sp-6) 0 var(--sp-4);
}
.footer-name-wrap { overflow: hidden; margin-bottom: var(--sp-5); }
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-4);
  border-top: 1px solid rgba(251,248,243,.24);
  padding-top: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.footer-cols a, .footer-cols span {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  color: var(--linen);
  margin-bottom: var(--sp-1);
}
.footer-legal {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12px;
  color: rgba(251,248,243,.6);
  border-top: 1px solid rgba(251,248,243,.24);
  padding-top: var(--sp-2);
}
.footer-legal a { color: rgba(251,248,243,.8); text-decoration: underline; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--graphite);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  flex-shrink: 0;
  width: 20px; height: 20px;
  position: relative;
  margin-left: var(--sp-3);
}
.faq-item .plus::before, .faq-item .plus::after {
  content: '';
  position: absolute;
  background: var(--graphite);
  transition: transform 0.3s var(--ease-settle);
}
.faq-item .plus::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.faq-item .plus::after { left: 50%; top: 0; height: 100%; width: 1px; transform: translateX(-50%); }
.faq-item[open] .plus::after { transform: translateX(-50%) rotate(90deg); }
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.4s var(--ease-house);
}
.faq-item[open] .faq-body { grid-template-rows: 1fr; }
.faq-body > div {
  overflow: hidden;
  padding-bottom: var(--sp-3);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  color: var(--body-ink-soft);
  max-width: 56ch;
}
@media (prefers-reduced-motion: reduce) {
  .faq-body { transition: none; }
  .faq-item .plus::before, .faq-item .plus::after { transition: none; }
}

/* ledger form */
.field {
  position: relative;
  border-bottom: 1px solid var(--rule);
  padding-bottom: var(--sp-1);
  margin-bottom: var(--sp-3);
}
.field::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--graphite);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-settle);
}
.field:focus-within::after { transform: scaleX(1); }
.field label {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--body-ink-soft);
  margin-bottom: 6px;
}
.field:focus-within label { color: var(--graphite); }
.field input, .field select, .field textarea {
  width: 100%;
  border: none;
  background: none;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--graphite);
  padding: 4px 0;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; }
.field.is-invalid { border-bottom-color: var(--cocoa); }
.field-msg {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--cocoa);
  opacity: 0;
  transition: opacity 0.25s linear;
  margin-top: 4px;
}
.field.is-invalid .field-msg { opacity: 1; }
.field-checkbox { display: flex; align-items: flex-start; gap: var(--sp-2); border-bottom: none; }
.field-checkbox input { width: auto; flex-shrink: 0; margin-top: 4px; }
.field-checkbox label { margin-bottom: 0; font-size: 14px; }
.field-help { font-family: var(--sans); font-size: 12px; color: var(--body-ink-soft); margin-top: 4px; }

/* utility */
.eyebrow { display: block; margin-bottom: var(--sp-2); }

/* mobile */
@media (max-width: 767px) {
  .steps-grid, .meet-grid, .why-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .steps-frame { position: relative; top: auto; aspect-ratio: auto; height: 44vh; }
  .footer-cols { grid-template-columns: 1fr; }
  .area-row { grid-template-columns: 40px 1fr; }
  .area-row .desc { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

