/* ============================================================
   ORBIT TRANSFORMATION
   Editorial / technical system. Real brand colours, restrained.
   League Spartan (display) · Source Sans 3 (text) · JetBrains Mono (meta)
   ============================================================ */

:root {
  --paper:   #FDEFD9;          /* warm cream canvas */
  --ink:     #1A1712;          /* near-black */
  --muted:   #7C6F5C;          /* warm taupe */
  --rule:    color-mix(in srgb, var(--ink) 13%, transparent);
  --field:   color-mix(in srgb, var(--ink) 4%, transparent);

  --cyan:      #12A1DB;        /* brand orbit-dot */
  --gold:      #E9AE2F;        /* brand gold */
  --gold-deep: #C68A12;

  /* dark "panel" sections (kept dark in both themes) */
  --panel:       #1A160F;
  --panel-ink:   #F4E9D6;
  --panel-muted: #A4947B;
  --panel-rule:  rgba(244,233,214,0.15);

  --btn-bg: var(--ink);
  --btn-fg: var(--paper);

  --serif: "League Spartan", system-ui, sans-serif;   /* display */
  --sans:  "Source Sans 3", system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1280px;
  --gut: clamp(16px, 2.2vw, 26px);
  --pad: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
  --paper:   #15120C;
  --ink:     #ECE2D2;
  --muted:   #9A8C76;
  --rule:    color-mix(in srgb, var(--ink) 15%, transparent);
  --field:   color-mix(in srgb, var(--ink) 6%, transparent);
  --cyan:    #38B4E8;
  --panel:       #0E0B06;
  --panel-ink:   #ECE2D2;
  --panel-muted: #948774;
  --panel-rule:  rgba(236,226,210,0.13);
}

html { color-scheme: light dark; }
[data-theme="dark"] { color-scheme: dark; }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 1.0625rem; line-height: 1.6;
  font-weight: 400; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color .5s var(--ease), color .5s var(--ease);
}
svg { display: block; } img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3 { margin: 0; font-weight: 600; }
p { margin: 0; } ul,ol,dl { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--cyan); color: #fff; }

/* ---------- grid ---------- */
.grid {
  display: grid; grid-template-columns: repeat(12, 1fr); column-gap: var(--gut);
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
}

/* ---------- type primitives ---------- */
.mono {
  font-family: var(--mono); font-size: .72rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.display { font-family: var(--serif); font-weight: 700; letter-spacing: -0.02em; line-height: 0.92; color: var(--ink); }
.display--md { font-size: clamp(2.1rem, 4.6vw, 3.5rem); line-height: 0.98; font-weight: 600; letter-spacing: -0.015em; }
.display--sm { font-size: clamp(1.45rem, 2.7vw, 2.15rem); line-height: 1.16; font-weight: 500; letter-spacing: -0.01em; }
.display--xs { font-size: clamp(1.35rem, 2.2vw, 1.7rem); line-height: 1; font-weight: 600; letter-spacing: -0.01em; }
.prose { font-size: 1.075rem; line-height: 1.62; color: color-mix(in srgb, var(--ink) 86%, var(--paper)); max-width: 60ch; }
.prose + .prose { margin-top: 1.1rem; }
.prose em { font-style: italic; color: var(--ink); }

/* ---------- buttons / links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--sans); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  padding: 1em 1.7em; border-radius: 2px; cursor: pointer;
  background: var(--btn-bg); color: var(--btn-fg); border: 1px solid var(--btn-bg);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.btn:hover { background: transparent; color: var(--btn-bg); }
.btn--full { width: 100%; }
.btn--text {
  background: none; border: none; color: var(--ink); padding: 1em 0;
  position: relative;
}
.btn--text span { transition: transform .25s var(--ease); display: inline-block; }
.btn--text:hover span { transform: translateY(3px); }
.link-cta {
  font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--rule);
  padding-bottom: 3px; transition: border-color .25s var(--ease), gap .25s; display: inline-flex; gap: .4em;
}
.link-cta:hover { border-color: var(--cyan); }
.link-cta span { color: var(--cyan); }

/* ---------- progress hairline ---------- */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--cyan); z-index: 300; }

/* ============================================================
   MASTHEAD
   ============================================================ */
.masthead {
  position: sticky; top: 0; z-index: 200;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(12px) saturate(1.2); -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid transparent; transition: border-color .4s var(--ease);
}
.masthead--scrolled { border-bottom-color: var(--rule); }
.masthead__inner { align-items: center; min-height: 68px; }
.wordmark {
  grid-column: span 4; display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--serif); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.01em; color: var(--ink);
}
.wordmark__mark { width: 22px; height: 22px; color: var(--ink); }
.wordmark__sub { font-weight: 400; color: var(--muted); }
.masthead__nav { grid-column: span 5; display: flex; gap: 1.8rem; justify-content: center; }
.masthead__nav a {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); transition: color .2s; display: inline-flex; align-items: baseline; gap: .4em;
}
.masthead__nav a .idx { color: var(--cyan); opacity: .7; }
.masthead__nav a:hover { color: var(--ink); }
.masthead__end { grid-column: span 3; display: flex; align-items: center; justify-content: flex-end; gap: 1.2rem; }

.theme { background: none; border: none; cursor: pointer; color: var(--ink); padding: 4px; display: inline-flex; }
.theme svg { width: 18px; height: 18px; }
.theme__sun { fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; }
.theme__moon { fill: var(--ink); display: none; }
[data-theme="dark"] .theme__sun { display: none; }
[data-theme="dark"] .theme__moon { display: block; }
.theme:hover { color: var(--cyan); }
[data-theme="dark"] .theme:hover .theme__moon { fill: var(--cyan); }

.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px 0; }
.burger span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 68px 0 auto 0; z-index: 199;
  background: var(--paper); border-bottom: 1px solid var(--rule);
  display: none; flex-direction: column; padding: 8px var(--pad) 24px;
  max-height: 0; overflow: hidden; transition: max-height .4s var(--ease);
}
.drawer a, .drawer__theme {
  font-family: var(--mono); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); padding: 16px 0; border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; gap: .7em; background: none; border-left: 0; border-right: 0; border-top: 0; cursor: pointer; text-align: left;
}
.drawer a .idx { color: var(--cyan); }
.drawer__theme { justify-content: space-between; }
.drawer__theme svg { width: 18px; height: 18px; }
.drawer__theme span { margin-right: auto; }
.drawer--open { max-height: 80vh; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(40px, 7vw, 90px) 0 0; }
.hero__inner { align-items: center; row-gap: 40px; }
.hero__copy { grid-column: 1 / span 7; }
.eyebrow { display: inline-block; margin-bottom: 1.6rem; padding-bottom: .5rem; border-bottom: 1px solid var(--rule); }
.hero .display { font-size: clamp(3.2rem, 9.5vw, 7rem); }
.hero__lede { margin-top: 1.8rem; font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.5; color: color-mix(in srgb, var(--ink) 84%, var(--paper)); max-width: 46ch; }
.hero__lede em { font-style: normal; color: var(--cyan); font-weight: 600; }
.hero__actions { margin-top: 2.4rem; display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }

.hero__plot { grid-column: 8 / span 5; margin: 0; position: relative; aspect-ratio: 1; }
.hero__plate {
  position: absolute; inset: 0; overflow: hidden; border-radius: 5px;
  background: #060910; border: 1px solid rgba(244,233,214,0.12);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.55);
}
.hero__plot figcaption { position: absolute; bottom: -2rem; right: 0; text-align: right; }
.plate-note { color: var(--cyan); }
.globe { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.plot--overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.plot { width: 100%; height: auto; overflow: visible; }
/* overlay sits on the dark space field in BOTH themes → fixed light strokes */
.plot--overlay .plot__ring  { fill: none; stroke: rgba(244,233,214,0.12); stroke-width: 1; }
.plot--overlay .plot__ticks { fill: none; stroke: rgba(244,233,214,0.42); stroke-width: 7; stroke-dasharray: 1 12.4; }
.plot--overlay .plot__cross { stroke: rgba(244,233,214,0.5); stroke-width: 1; }
.plot--overlay .plot__label line { stroke: rgba(244,233,214,0.45); stroke-width: 1; }
.plot--overlay text { font-family: var(--mono); font-size: 12.5px; letter-spacing: .08em; fill: rgba(244,233,214,0.85); }
.plot--overlay .plot__r { fill: rgba(244,233,214,0.5); }

.hero__meta { margin-top: clamp(50px, 7vw, 96px); padding: 18px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); display: flex; gap: clamp(20px, 4vw, 60px); }
.hero__meta-end { margin-left: auto; }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section { padding: clamp(72px, 10vw, 150px) 0; border-top: 1px solid var(--rule); }
.section--dark {
  --ink: var(--panel-ink); --muted: var(--panel-muted); --rule: var(--panel-rule);
  --btn-bg: var(--panel-ink); --btn-fg: var(--panel);
  background: var(--panel); color: var(--panel-ink); border-top: none;
}
.section--dark .prose { color: color-mix(in srgb, var(--panel-ink) 80%, var(--panel)); }
.section--dark .eyebrow, .section--dark .hero__lede { color: var(--panel-ink); }

.sec-head { grid-column: 1 / -1; margin-bottom: clamp(32px, 5vw, 64px); }
.sec-head__label { display: inline-block; }
.sec-head--split { display: grid; grid-template-columns: 1fr; gap: 1rem; }

/* ============================================================
   APPROACH
   ============================================================ */
.approach__lead { grid-column: 1 / span 7; }
.approach__lead .prose { margin-top: 1.6rem; }
.ledger { grid-column: 9 / span 4; margin-top: .4rem; border-top: 1px solid var(--rule); }
.ledger__row {
  display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; row-gap: .35rem;
  padding: 1.3rem 0; border-bottom: 1px solid var(--rule); align-items: baseline;
}
.ledger__idx { grid-row: span 2; color: var(--cyan); }
.ledger__title { font-size: 1.08rem; font-weight: 600; letter-spacing: -0.01em; }
.ledger__note { font-size: .96rem; color: var(--muted); line-height: 1.45; }

/* ============================================================
   SERVICES (accordion ledger)
   ============================================================ */
.sec-head--split { grid-template-columns: 1fr; }
@media (min-width: 760px) { .sec-head--split { grid-template-columns: auto 1fr; align-items: end; gap: 3rem; } .sec-head__aside { max-width: 38ch; justify-self: end; } }
.svc { grid-column: 1 / -1; border-top: 1px solid var(--rule); }
.svc__row { border-bottom: 1px solid var(--rule); }
.svc__head {
  width: 100%; background: none; border: none; cursor: pointer; color: inherit; text-align: left;
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 1.4rem;
  padding: clamp(1.3rem, 2.6vw, 2rem) 0;
}
.svc__idx { color: var(--cyan); }
.svc__name { transition: transform .35s var(--ease); }
.svc__tag { justify-self: end; }
.svc__toggle { position: relative; width: 16px; height: 16px; }
.svc__toggle::before, .svc__toggle::after { content: ""; position: absolute; background: var(--ink); transition: transform .35s var(--ease), opacity .35s; }
.svc__toggle::before { top: 7.25px; left: 0; width: 16px; height: 1.5px; }
.svc__toggle::after { left: 7.25px; top: 0; width: 1.5px; height: 16px; }
.svc__row.is-open .svc__toggle::after { transform: scaleY(0); }
.svc__row.is-open .svc__name { transform: translateX(8px); }
.svc__head:hover .svc__name { transform: translateX(8px); }
.svc__body { overflow: hidden; max-height: 0; transition: max-height .45s var(--ease); }
.svc__row.is-open .svc__body { max-height: 32rem; }
.svc__body .prose { padding: 0 0 .4rem; max-width: 56ch; margin-left: calc(2ch + 1.4rem); }
.svc__list { display: flex; flex-wrap: wrap; gap: 1.4rem; padding: 1rem 0 1.3rem; margin-left: calc(2ch + 1.4rem); }
.svc__list li { color: var(--muted); }
.svc__list li::before { content: "— "; color: var(--cyan); }
.svc__foot {
  margin-left: calc(2ch + 1.4rem); padding: 0 0 2rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  border-top: 1px solid var(--rule); padding-top: 1.1rem;
}
.svc__out { color: var(--muted); }
.svc__out::before { content: ""; }

/* ---- funnel (the path to Erin) ---- */
.funnel { grid-column: 1 / -1; margin-top: clamp(48px, 6vw, 88px); }
.funnel__label { color: var(--cyan); margin-bottom: 1.8rem; }
.funnel__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.funnel__step { background: var(--panel); padding: clamp(1.4rem, 2.4vw, 2rem); position: relative; }
.funnel__num { color: var(--cyan); }
.funnel__h { margin: .9rem 0 .6rem; }
.funnel__p { color: var(--muted); font-size: .98rem; line-height: 1.5; }
.funnel__step:not(:last-child)::after {
  content: "→"; position: absolute; top: 50%; right: -0.75em; transform: translateY(-50%);
  font-family: var(--mono); color: var(--cyan); z-index: 2; background: var(--panel); padding: .2em 0;
}
.funnel__cta { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; margin-top: 2rem; }
.funnel__note { color: var(--muted); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { row-gap: 48px; }
.about__meta { grid-column: 1 / span 4; }
.factsheet { margin-top: 2rem; border-top: 1px solid var(--rule); }
.factsheet > div { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--rule); }
.factsheet dt { color: var(--muted); }
.factsheet dd { color: var(--ink); text-align: right; }
.portrait {
  margin-top: 2rem; aspect-ratio: 4/5; border: 1px solid var(--rule); border-radius: 3px;
  background:
    repeating-linear-gradient(135deg, color-mix(in srgb, var(--ink) 4%, transparent) 0 2px, transparent 2px 9px),
    color-mix(in srgb, var(--ink) 3%, transparent);
  position: relative; display: flex; align-items: flex-end; padding: 1.3rem;
}
.portrait__id {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-55%);
  font-family: var(--serif); font-weight: 700; font-size: clamp(3rem, 8vw, 5rem); color: color-mix(in srgb, var(--ink) 18%, transparent);
  letter-spacing: .04em;
}
.portrait__cap { position: relative; }
.about__body { grid-column: 6 / span 7; }
.about__body .prose { margin-top: 1.6rem; }
.pull { margin: 2.2rem 0; padding-left: 1.6rem; border-left: 2px solid var(--gold); }
.pull p { font-family: var(--serif); font-weight: 500; font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.3; letter-spacing: -0.01em; }
.about__body .link-cta { margin-top: .4rem; }

/* ============================================================
   SIGNAL / metrics + testimonial
   ============================================================ */
.metrics { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.metric { padding: clamp(1.6rem, 3vw, 2.6rem) 1.4rem clamp(1.6rem,3vw,2.6rem) 0; border-right: 1px solid var(--rule); }
.metric:last-child { border-right: none; }
.metric__num { display: block; font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1; }
.metric__label { display: block; margin-top: .9rem; padding-right: 1rem; }
.testimonial { grid-column: 1 / span 9; margin-top: clamp(44px, 5vw, 72px); }
.testimonial p { font-size: clamp(1.3rem, 1.9vw, 1.85rem); line-height: 1.32; letter-spacing: -0.01em; max-width: 40rem; }
.testimonial footer { margin-top: 1.5rem; }
.testimonial__ph { opacity: .55; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { row-gap: 44px; align-items: start; }
.contact__lead { grid-column: 1 / span 5; }
.contact__lead .display { margin-top: 1.4rem; }
.contact__lead .prose { margin-top: 1.4rem; }
.contact__direct { margin-top: 2rem; }
.contact__direct a { color: var(--cyan); border-bottom: 1px solid color-mix(in srgb, var(--cyan) 40%, transparent); padding-bottom: 2px; }
.contact__steps { margin: 1.9rem 0; display: grid; gap: .75rem; }
.contact__steps li { display: flex; gap: .85em; align-items: baseline; color: var(--muted); }
.contact__steps li span { color: var(--cyan); }
.form-wrap { grid-column: 7 / span 6; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field { margin-bottom: 1.6rem; }
.field label { display: block; margin-bottom: .5rem; }
.field input, .field textarea, .select select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--rule);
  border-radius: 0; padding: .55em 0; font-family: var(--sans); font-size: 1.08rem; color: var(--ink);
  transition: border-color .25s; resize: vertical;
}
.field input:focus, .field textarea:focus, .select select:focus { outline: none; border-bottom-color: var(--cyan); }
.field input.invalid, .field textarea.invalid { border-bottom-color: #d2553b; }
.field__err { display: block; margin-top: .4rem; color: #d2553b; letter-spacing: .04em; }
.select { position: relative; }
.select select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 1.4em; }
.select::after {
  content: ""; position: absolute; right: 2px; top: 46%; width: 7px; height: 7px;
  border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted);
  transform: translateY(-50%) rotate(45deg); pointer-events: none;
}
.form .btn { margin-top: .6rem; }
.form__note { margin-top: 1.2rem; letter-spacing: .03em; }
.form__note.ok { color: #2c8a5b; } .form__note.err { color: #d2553b; }

/* booking step (revealed after a valid intake) */
.booking { border: 1px solid var(--rule); border-radius: 5px; padding: clamp(1.6rem, 3vw, 2.4rem); background: var(--field); }
.booking__eyebrow { color: var(--cyan); }
.booking__h { margin: .9rem 0 .5rem; }
.booking__p { color: var(--muted); max-width: 42ch; margin-bottom: 1.6rem; }
.booking__back { display: block; margin-top: 1.2rem; background: none; border: none; color: var(--muted); cursor: pointer; padding: 0; letter-spacing: .06em; }
.booking__back:hover { color: var(--ink); }

/* ---- self-owned slot-picker ---- */
.scheduler { border: 1px solid var(--rule); border-radius: 5px; padding: clamp(1.6rem, 3vw, 2.4rem); background: var(--field); }
.sched__msg { color: var(--muted); }
.sched__eyebrow { color: var(--cyan); margin-bottom: 1.3rem; }
.sched__days { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.sched__day { background: none; border: 1px solid var(--rule); border-radius: 100px; padding: .5em 1.05em; cursor: pointer; color: var(--muted); font-family: var(--mono); font-size: .78rem; letter-spacing: .04em; white-space: nowrap; transition: color .2s, border-color .2s, background .2s; }
.sched__day:hover { color: var(--ink); border-color: var(--ink); }
.sched__day.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.sched__times { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: .55rem; }
.sched__time { background: none; border: 1px solid var(--rule); border-radius: 4px; padding: .75em .4em; cursor: pointer; color: var(--ink); font-family: var(--mono); font-size: .82rem; transition: color .15s, border-color .15s, background .15s; }
.sched__time:hover { border-color: var(--cyan); color: var(--cyan); }
.sched__time.is-sel { background: var(--cyan); border-color: var(--cyan); color: #fff; }
.sched__tz { color: var(--muted); margin-top: 1.2rem; font-size: .72rem; }
.sched__confirm { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; padding-top: 1.4rem; border-top: 1px solid var(--rule); }
.sched__chosen { color: var(--ink); letter-spacing: .03em; }
.sched__err { color: #d2553b; margin-top: 1rem; letter-spacing: .03em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--panel); color: var(--panel-ink); --rule: var(--panel-rule); --muted: var(--panel-muted); }
.footer__inner { padding-top: clamp(50px, 7vw, 90px); padding-bottom: 48px; row-gap: 36px; }
.footer__brand { grid-column: 1 / span 6; }
.footer__brand .wordmark { color: var(--panel-ink); margin-bottom: 1.2rem; }
.footer__brand .wordmark__mark { color: var(--panel-ink); }
.footer__brand .wordmark__sub { color: var(--panel-muted); }
.footer__tag { color: var(--panel-muted); max-width: 34ch; line-height: 1.7; text-transform: none; letter-spacing: .02em; }
.footer__col { grid-column: span 3; display: flex; flex-direction: column; gap: .9rem; }
.footer__h { color: var(--panel-ink); opacity: .55; margin-bottom: .3rem; }
.footer__col a { color: var(--panel-muted); transition: color .2s; text-transform: none; letter-spacing: .02em; }
.footer__col a:hover { color: var(--cyan); }
.footer__base { padding: 22px 0; border-top: 1px solid var(--panel-rule); display: flex; justify-content: space-between; color: var(--panel-muted); }

/* ============================================================
   REVEAL
   ============================================================ */
.js [data-reveal] { opacity: 0; transform: translateY(16px); }
.js [data-reveal].is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .masthead__nav { display: none; }
  .masthead__end .link-cta { display: none; }
  .wordmark { grid-column: 1 / span 8; }
  .masthead__end { grid-column: 9 / span 4; }
  .burger { display: flex; }
  .drawer { display: flex; }

  .hero__copy { grid-column: 1 / span 12; }
  .hero__plot { grid-column: 1 / span 12; max-width: 440px; margin: 8px auto 0; }
  .hero__plot figcaption { text-align: left; }

  .approach__lead, .ledger { grid-column: 1 / span 12; }
  .ledger { margin-top: 2.4rem; }
  .about__meta, .about__body { grid-column: 1 / span 12; }
  .contact__lead, .form-wrap { grid-column: 1 / span 12; }
  .footer__brand { grid-column: 1 / span 12; }
  .footer__col { grid-column: span 6; }

  .funnel__steps { grid-template-columns: 1fr; }
  .funnel__step:not(:last-child)::after { content: "↓"; right: auto; left: clamp(1.4rem,2.4vw,2rem); top: auto; bottom: -0.85em; transform: none; }
}
@media (max-width: 560px) {
  .svc__head { grid-template-columns: auto 1fr auto; }
  .svc__tag { display: none; }
  .svc__body .prose, .svc__list, .svc__foot { margin-left: 0; }
  .svc__foot { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: none; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .hero__meta { flex-wrap: wrap; gap: 10px 24px; }
  .hero__meta-end { display: none; }
  .footer__base { flex-direction: column; gap: .4rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
}
