/* ==========================================================================
   SOUND B2B v2 — Shape 1 (long-scroll)
   Clean-sheet design system. Same brand tokens, new component library.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- tokens ---------- */
:root {
  /* palette */
  --navy: #171A46;
  --navy-deep: #1B328B;
  --gold: #E7BA47;
  --gold-dark: #8F732C;
  --cream: #F4EFE9;
  --sand: #E2DDD1;
  --ink: #261C02;
  --white: #FFFFFF;
  --hair: rgba(38, 28, 2, 0.10);
  --hair-strong: rgba(38, 28, 2, 0.22);
  --hair-light: rgba(255, 255, 255, 0.14);
  --muted: rgba(38, 28, 2, 0.62);
  --muted-light: rgba(255, 255, 255, 0.68);

  /* type */
  --display: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* scale */
  --text-hero: clamp(3rem, 6vw, 5.25rem);
  --text-h1: clamp(2.4rem, 4.4vw, 3.75rem);
  --text-h2: clamp(1.9rem, 3.2vw, 2.75rem);
  --text-h3: clamp(1.25rem, 1.6vw, 1.5rem);
  --text-lead: clamp(1.15rem, 1.35vw, 1.35rem);
  --text-body: 1.0625rem;
  --text-small: 0.9375rem;
  --text-mono: 0.75rem;

  /* rhythm */
  --sec-y: clamp(96px, 12vw, 168px);
  --sec-y-tight: clamp(56px, 7vw, 96px);
  --gutter: clamp(24px, 4vw, 56px);
  --wrap: 1280px;
  --wrap-narrow: 960px;
  --radius: 3px;

  /* motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--text-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }

/* ---------- type helpers ---------- */
.display { font-family: var(--display); font-weight: 400; letter-spacing: -0.015em; line-height: 1.05; }
.display em { font-style: italic; color: var(--gold-dark); font-weight: 400; }
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--text-mono);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow--light { color: var(--gold); }
.lead { font-size: var(--text-lead); line-height: 1.55; color: var(--muted); max-width: 62ch; }
.lead--light { color: var(--muted-light); }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding: var(--sec-y) 0; position: relative; }
.section--tight { padding: var(--sec-y-tight) 0; }
.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy .display em { color: var(--gold); }
.section--navy .lead { color: var(--muted-light); }
.section--navy .eyebrow { color: var(--gold); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--hair);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  max-width: var(--wrap); margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav__logo {
  font-family: var(--display); font-size: 1.4rem; font-weight: 500;
  letter-spacing: 0.28em; color: var(--navy);
}
.nav__links { display: flex; gap: 40px; }
.nav__links a {
  font-size: var(--text-small); font-weight: 500; color: var(--ink);
  position: relative; padding: 6px 0;
  transition: color 0.24s var(--ease-out);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--gold-dark); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold-dark);
}
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__burger {
  display: none; width: 32px; height: 32px;
  position: relative;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  position: absolute; left: 5px;
  transition: transform 0.32s var(--ease-out), opacity 0.24s var(--ease-out);
}
.nav__burger span:nth-child(1) { top: 10px; }
.nav__burger span:nth-child(2) { top: 15px; }
.nav__burger span:nth-child(3) { top: 20px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; inset: 68px 0 0 0; z-index: 40;
  background: var(--white);
  padding: 48px var(--gutter) 96px;
  flex-direction: column; gap: 32px;
  animation: fadeUp 0.32s var(--ease-out);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-family: var(--display); font-size: 1.9rem; color: var(--navy);
  border-bottom: 1px solid var(--hair);
  padding-bottom: 14px;
}
.mobile-menu a.accent { color: var(--gold-dark); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-family: var(--sans); font-size: var(--text-small); font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: transform 0.28s var(--ease-out), background 0.24s var(--ease-out), color 0.24s var(--ease-out), border-color 0.24s var(--ease-out);
  cursor: pointer;
}
.btn .arr { transition: transform 0.32s var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }
.btn--primary { background: var(--gold); color: var(--navy); }
.btn--primary:hover { background: var(--navy); color: var(--gold); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--hair-strong);
}
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn--ghost-light {
  background: transparent; color: var(--white);
  border: 1px solid var(--hair-light);
}
.btn--ghost-light:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- HOME HERO (long-scroll, image-forward) ---------- */
.hero {
  position: relative;
  min-height: min(100vh, 880px);
  display: grid; grid-template-columns: 1fr; align-items: end;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 1;
  background-image: url('../img/hero-home.jpg');
  background-size: cover;
  background-position: center 42%;
  opacity: 1;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(23,26,70,0.35) 0%, rgba(23,26,70,0.10) 30%, rgba(23,26,70,0.55) 78%, rgba(23,26,70,0.94) 100%),
    linear-gradient(90deg, rgba(23,26,70,0.55) 0%, rgba(23,26,70,0.15) 45%, rgba(23,26,70,0) 100%);
}
.hero__inner {
  position: relative; z-index: 3;
  max-width: var(--wrap); margin: 0 auto;
  padding: 220px var(--gutter) 96px;
  width: 100%;
}
.hero__eyebrow {
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}
.hero__h1 {
  font-family: var(--display); font-weight: 400;
  font-size: var(--text-hero);
  line-height: 1.02; letter-spacing: -0.02em;
  max-width: 15ch;
  margin-bottom: 32px;
}
.hero__h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero__sub {
  font-size: var(--text-lead); line-height: 1.5;
  max-width: 58ch;
  color: rgba(255,255,255,0.86);
  margin-bottom: 44px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- PAGE HEROES (interior) ---------- */
.phero {
  background: var(--navy); color: var(--white);
  padding: 168px 0 120px;
  position: relative;
  overflow: hidden;
}
.phero--image {
  min-height: 620px;
  padding: 168px 0 96px;
}
.phero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.42; z-index: 1;
}
.phero__scrim {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(23,26,70,0.55) 0%, rgba(23,26,70,0.35) 50%, rgba(23,26,70,0.88) 100%);
}
.phero__inner {
  position: relative; z-index: 3;
  max-width: var(--wrap); margin: 0 auto;
  padding: 0 var(--gutter);
}
.phero .eyebrow { color: var(--gold); margin-bottom: 24px; display: inline-block; }
.phero__h1 {
  font-family: var(--display); font-weight: 400;
  font-size: var(--text-h1);
  line-height: 1.05; letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 28px;
}
.phero__h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.phero .lead { color: rgba(255,255,255,0.82); }

/* ---------- section headers ---------- */
.shead { max-width: var(--wrap-narrow); }
.shead > .eyebrow { margin-bottom: 20px; display: inline-block; }
.shead > h2 {
  font-family: var(--display); font-weight: 400;
  font-size: var(--text-h2); line-height: 1.08; letter-spacing: -0.015em;
  max-width: 22ch;
  margin-bottom: 24px;
}
.shead > h2 em { font-style: italic; color: var(--gold-dark); font-weight: 400; }
.section--navy .shead > h2 em { color: var(--gold); }
.shead > .lead { margin-top: 8px; }

/* ---------- PROBLEM BEAT (three-line) ---------- */
.beat {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.15; letter-spacing: -0.015em;
  color: var(--navy);
  max-width: 22ch;
  margin: 0 auto;
  text-align: center;
}
.beat > span { display: block; }
.beat em { font-style: italic; color: var(--gold-dark); font-weight: 400; }

/* ---------- MANIFESTO / long paragraph block ---------- */
.manifesto {
  max-width: 720px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.manifesto em { font-style: italic; color: var(--gold-dark); font-weight: 400; }
.section--navy .manifesto { color: var(--white); }
.section--navy .manifesto em { color: var(--gold); }

/* ---------- SPLIT (image + text, alternates) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.split--flip .split__text { order: 2; }
.split--flip .split__media { order: 1; }
.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split__media--wide { aspect-ratio: 5 / 4; }
.split__text .eyebrow { margin-bottom: 20px; display: inline-block; }
.split__text h2 {
  font-family: var(--display); font-weight: 400;
  font-size: var(--text-h2); line-height: 1.08; letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.split__text h2 em { font-style: italic; color: var(--gold-dark); font-weight: 400; }
.section--navy .split__text h2 em { color: var(--gold); }
.split__text p { margin-bottom: 18px; color: var(--muted); line-height: 1.65; }
.section--navy .split__text p { color: rgba(255,255,255,0.78); }
.split__text p:last-of-type { margin-bottom: 0; }
.split__cta { margin-top: 32px; }

/* ---------- TECH LIST (mechanism section, food-scientist audience) ---------- */
.tech-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.tech-list li {
  position: relative;
  padding: 18px 0 18px 22px;
  border-top: 1px solid var(--hair);
  font-size: var(--text-small);
  color: var(--muted);
  line-height: 1.65;
}
.tech-list li:last-child { border-bottom: 1px solid var(--hair); }
.tech-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 8px;
  height: 1px;
  background: var(--gold-dark);
}
.tech-list li strong {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.tech-list a {
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  transition: border-color 160ms ease, color 160ms ease;
}
.tech-list a:hover {
  color: var(--ink);
  border-bottom-color: var(--gold-dark);
}

/* ---------- STEPPER (engagement path, on navy) ---------- */
.stepper {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stepper__step {
  border-top: 1px solid rgba(231, 186, 71, 0.35);
  padding-top: 22px;
}
.stepper__num {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1;
}
.stepper__body h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  line-height: 1.25;
}
.stepper__body p {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .stepper { grid-template-columns: 1fr; gap: 22px; }
  .stepper__step { padding-top: 18px; }
  .stepper__num { font-size: 26px; margin-bottom: 12px; }
}

/* ---------- DIVISION (owner columns) ---------- */
.division {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--hair-strong);
  border-bottom: 1px solid var(--hair-strong);
}
.division__col {
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
}
.division__col + .division__col {
  border-left: 1px solid var(--hair-strong);
}
.division__col .eyebrow { margin-bottom: 18px; display: inline-block; }
.division__col h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 1.6rem; line-height: 1.15;
  margin-bottom: 24px;
  color: var(--navy);
}
.division__col ul li {
  padding: 14px 0;
  border-top: 1px solid var(--hair);
  font-size: var(--text-small);
  color: var(--ink);
  line-height: 1.55;
}
.division__col ul li:first-child { border-top: none; padding-top: 0; }

/* ---------- DIVISION on navy (moat + division merged section) ---------- */
.division--onnavy {
  margin-top: clamp(64px, 7vw, 96px);
  border-top-color: var(--hair-light);
  border-bottom-color: var(--hair-light);
}
.division--onnavy .division__col + .division__col {
  border-left-color: var(--hair-light);
}
.division--onnavy .division__col .eyebrow { color: var(--gold); }
.division--onnavy .division__col h3 { color: var(--white); }
.division--onnavy .division__col ul li {
  color: rgba(255,255,255,0.82);
  border-top-color: var(--hair-light);
}

/* ---------- COMPACT PROOF STRIP (replaces ledger on home) ---------- */
.section--strip { padding: clamp(40px, 5vw, 64px) 0; }
.proof-strip {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: baseline;
}
.proof-strip--two { grid-template-columns: 1fr 1fr; max-width: 900px; margin: 0 auto; }
.proof-strip__item {
  padding: 4px 0;
  border-top: 1px solid var(--hair-strong);
  padding-top: 20px;
}
.proof-strip__label {
  font-family: var(--sans);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.proof-strip__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem); line-height: 1.2;
  color: var(--navy);
}

/* ---------- STEPS (numbered process) ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: clamp(48px, 6vw, 80px); }
.step {
  display: grid; grid-template-columns: 120px 1fr 1fr; gap: clamp(24px, 4vw, 56px);
  padding: clamp(32px, 4vw, 48px) 0;
  border-top: 1px solid var(--hair-strong);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--hair-strong); }
.step__num {
  font-family: var(--display); font-size: 2.2rem; font-weight: 400; font-style: italic;
  color: var(--gold-dark); line-height: 1;
}
.step__title {
  font-family: var(--display); font-weight: 400;
  font-size: 1.4rem; line-height: 1.2; letter-spacing: -0.01em;
  color: var(--navy);
}
.step__body p { color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.step__body p:last-child { margin-bottom: 0; }
.section--navy .step { border-top-color: var(--hair-light); }
.section--navy .step:last-child { border-bottom-color: var(--hair-light); }
.section--navy .step__title { color: var(--white); }
.section--navy .step__num { color: var(--gold); }
.section--navy .step__body p { color: rgba(255,255,255,0.72); }

/* ---------- LEDGER (three-column proof, quiet) ---------- */
.ledger {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
  margin-top: clamp(48px, 6vw, 72px);
}
.ledger__item {
  border-top: 1px solid var(--hair-strong);
  padding-top: 28px;
}
.section--navy .ledger__item { border-top-color: var(--hair-light); }
.ledger__label {
  font-family: var(--sans); font-size: var(--text-mono);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 500;
  margin-bottom: 14px;
}
.section--navy .ledger__label { color: var(--gold); }
.ledger__title {
  font-family: var(--display); font-weight: 400;
  font-size: 1.35rem; line-height: 1.2; color: var(--navy);
  margin-bottom: 12px;
}
.section--navy .ledger__title { color: var(--white); }
.ledger__body { font-size: var(--text-small); line-height: 1.6; color: var(--muted); }
.section--navy .ledger__body { color: rgba(255,255,255,0.72); }

/* ---------- ROLES (audience cards, no stats) ---------- */
.roles {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(48px, 6vw, 72px);
}
.role-card {
  padding: clamp(28px, 3vw, 40px);
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.34s var(--ease-out), box-shadow 0.34s var(--ease-out), border-color 0.34s var(--ease-out);
}
.role-card:hover {
  transform: translateY(-3px);
  border-color: var(--hair-strong);
  box-shadow: 0 24px 48px -32px rgba(23,26,70,0.24);
}
.section--cream .role-card { background: var(--white); }
.role-card .eyebrow { margin-bottom: 18px; display: inline-block; }
.role-card h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 1.35rem; line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.role-card p { font-size: var(--text-small); line-height: 1.6; color: var(--muted); }

/* ---------- MOAT (three-card IP row) ---------- */
.moat {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(48px, 6vw, 72px);
}
.moat-card {
  padding: clamp(32px, 3vw, 44px);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hair-light);
  border-radius: var(--radius);
}
.moat-card .eyebrow { margin-bottom: 20px; display: block; color: var(--gold); }
.moat-card h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 1.35rem; line-height: 1.2;
  color: var(--white);
  margin-bottom: 18px;
}
.moat-card p { font-size: var(--text-small); line-height: 1.6; color: rgba(255,255,255,0.72); }
.moat__resolve {
  margin-top: clamp(48px, 5vw, 64px);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-style: italic;
  color: var(--gold);
  text-align: center;
  line-height: 1.35;
  max-width: 44ch;
  margin-left: auto; margin-right: auto;
}

/* ---------- TEAM (grid of small cards) ---------- */
.team {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(48px, 6vw, 72px);
}
.member {
  padding: 28px 0;
  border-top: 1px solid var(--hair-strong);
}
.section--navy .member { border-top-color: var(--hair-light); }
.member__mono {
  font-size: var(--text-mono);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 500;
  margin-bottom: 14px;
}
.section--navy .member__mono { color: var(--gold); }
.member h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 1.2rem; line-height: 1.25;
  color: var(--navy);
  margin-bottom: 6px;
}
.section--navy .member h3 { color: var(--white); }
.member__role {
  font-size: var(--text-small); color: var(--gold-dark); font-weight: 500;
  margin-bottom: 14px;
}
.section--navy .member__role { color: var(--gold); }
.member p { font-size: var(--text-small); line-height: 1.55; color: var(--muted); }
.section--navy .member p { color: rgba(255,255,255,0.72); }

/* ---------- INTAKE FORM ---------- */
.intake {
  max-width: 720px;
  margin-top: clamp(48px, 5vw, 72px);
}
.intake__row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.intake label { display: block; }
.intake label > span {
  display: block;
  font-size: var(--text-mono); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  margin-bottom: 10px;
}
.intake input,
.intake select,
.intake textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hair-light);
  padding: 12px 0;
  color: var(--white);
  font-family: var(--sans);
  font-size: var(--text-body);
  transition: border-color 0.24s var(--ease-out);
  border-radius: 0;
}
.intake input:focus,
.intake select:focus,
.intake textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.intake select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E7BA47' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; }
.intake option { background: var(--navy); color: var(--white); }
.intake textarea { resize: vertical; min-height: 120px; }
.intake__full { margin-bottom: 20px; }
.intake__submit { margin-top: 32px; }
.intake__thanks {
  padding: 40px 0;
  color: var(--white);
}
.intake__thanks h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 1.8rem; margin-bottom: 12px;
}
.intake__thanks a { color: var(--gold); border-bottom: 1px solid rgba(231,186,71,0.4); }

/* light form variant (for Contact) */
.form--light .intake label > span { color: var(--gold-dark); }
.form--light .intake input,
.form--light .intake select,
.form--light .intake textarea {
  border-bottom-color: var(--hair-strong);
  color: var(--ink);
}
.form--light .intake input:focus,
.form--light .intake select:focus,
.form--light .intake textarea:focus { border-color: var(--gold-dark); }
.form--light .intake select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238F732C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); }
.form--light .intake option { background: var(--white); color: var(--ink); }

/* ---------- DIRECT LINES (contact) ---------- */
.direct {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hair-strong);
  border-bottom: 1px solid var(--hair-strong);
  margin-top: clamp(48px, 5vw, 72px);
}
.direct__col {
  padding: clamp(36px, 4vw, 52px) clamp(28px, 3vw, 40px);
}
.direct__col + .direct__col { border-left: 1px solid var(--hair-strong); }
.direct--single { grid-template-columns: minmax(0, 640px); justify-content: start; }
.direct__email { margin-top: 4px; margin-bottom: 20px; word-break: break-all; }
.direct__email a { color: var(--navy); border-bottom: 1px solid rgba(11,20,48,0.15); transition: color .2s, border-color .2s; }
.direct__email a:hover { color: var(--gold-dark); border-bottom-color: var(--gold-dark); }
.direct__col .eyebrow { margin-bottom: 18px; display: inline-block; }
.direct__col h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 1.5rem; color: var(--navy);
  margin-bottom: 6px;
}
.direct__col .member__role { margin-bottom: 20px; }
.direct__col a.email {
  font-size: 1.1rem; color: var(--gold-dark); font-weight: 500;
  border-bottom: 1px solid rgba(143,115,44,0.32);
  display: inline-block; margin-bottom: 20px;
  transition: color 0.24s var(--ease-out), border-color 0.24s var(--ease-out);
}
.direct__col a.email:hover { color: var(--navy); border-color: var(--navy); }
.direct__col p { color: var(--muted); font-size: var(--text-small); line-height: 1.6; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.72);
  padding: clamp(72px, 8vw, 112px) 0 40px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  margin-bottom: 64px;
}
.footer__logo {
  display: inline-block;
  font-family: var(--display); font-size: 1.6rem; letter-spacing: 0.28em;
  color: var(--white);
  margin-bottom: 24px;
}
.footer__tagline {
  font-family: var(--display); font-style: italic;
  font-size: 1.15rem; line-height: 1.5;
  color: rgba(255,255,255,0.82);
  max-width: 42ch;
  margin-bottom: 28px;
}
.footer h4 {
  font-size: var(--text-mono); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  margin-bottom: 18px;
}
.footer ul li {
  padding: 6px 0;
}
.footer ul li a {
  font-size: var(--text-small); color: rgba(255,255,255,0.72);
  transition: color 0.2s var(--ease-out);
}
.footer ul li a:hover { color: var(--gold); }
.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--hair-light);
  display: flex; justify-content: space-between; align-items: center;
  font-size: var(--text-small);
  color: rgba(255,255,255,0.52);
}
.footer__bottom a { color: rgba(255,255,255,0.52); }
.footer__bottom a:hover { color: var(--gold); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: block; }
  .hero__inner { padding: 160px var(--gutter) 72px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--flip .split__text, .split--flip .split__media { order: 0; }
  .split__media { aspect-ratio: 5 / 4; }
  .division { grid-template-columns: 1fr; }
  .division__col + .division__col { border-left: none; border-top: 1px solid var(--hair-strong); }
  .division--onnavy .division__col + .division__col { border-top-color: var(--hair-light); }
  .step { grid-template-columns: 60px 1fr; gap: 20px; }
  .step__body { grid-column: 1 / -1; padding-left: 60px; }
  .ledger, .roles, .moat, .team, .proof-strip { grid-template-columns: 1fr; }
  .direct { grid-template-columns: 1fr; }
  .direct__col + .direct__col { border-left: none; border-top: 1px solid var(--hair-strong); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .intake__row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .intake__row > label { margin-bottom: 20px; }
}
@media (max-width: 640px) {
  .team { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__grid > div:first-child { grid-column: auto; }
}
