/* ============================================================
   HIGHMONT HERITAGE — Stylesheet v2
   Design: Lone Pine Succession structure × HH navy/gold palette
   Fonts: Cormorant Garamond (display) · DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #1a2744;
  --navy-mid:   #243557;
  --gold:       #c9a84c;
  --gold-hover: #b8963d;
  --gold-pale:  #f5edd6;
  --cream:      #f7f3ec;
  --cream-dark: #ede8de;
  --white:      #ffffff;
  --text:       #1e1e1e;
  --text-mid:   #4a4a4a;
  --text-light: #767676;
  --border:     #e0dbd1;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --nav-h:     76px;
  --max-w:     1160px;
  --max-w-sm:  760px;
  --section-v: 100px;
  --radius:    3px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.74;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; height: auto; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
}

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.container--sm {
  max-width: var(--max-w-sm);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Reveal animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 40px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--navy);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav__inner {
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--gold);
}
.nav__logo-mark svg {
  height: 28px;
  width: auto;
}
.nav__logo-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.2);
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}
.nav__logo-sub {
  display: none;
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav__link:hover,
.nav__link.active { color: var(--white); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

/* Nav CTA */
.nav__cta {
  padding: 10px 26px;
  font-size: 0.8125rem;
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 16px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--navy);
  padding: 24px 40px 32px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  flex-direction: column;
  gap: 4px;
}
.nav__drawer.open { display: flex; }
.nav__drawer .nav__link {
  padding: 10px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav__drawer .nav__link::after { display: none; }
.nav__drawer .btn { margin-top: 16px; width: fit-content; }

/* ══════════════════════════════════════════════════════════════
   HERO — Full-screen
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 40px 80px;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}
.hero__inner {
  max-width: 780px;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '—';
  display: inline-block;
  margin: 0 10px;
  opacity: 0.5;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero__link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.hero__link:hover { color: var(--gold); }
.hero__link::after {
  content: ' →';
  opacity: 0.7;
}

/* ══════════════════════════════════════════════════════════════
   MISSION STRIP
══════════════════════════════════════════════════════════════ */
.mission {
  background: var(--white);
  padding: var(--section-v) 40px;
  text-align: center;
}
.mission__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--navy);
  max-width: 860px;
  margin: 0 auto;
}
.mission__rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 32px auto 0;
}

/* ══════════════════════════════════════════════════════════════
   FOUNDER SECTION
══════════════════════════════════════════════════════════════ */
.founder {
  background: var(--cream);
  padding: var(--section-v) 40px;
}
.founder__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.founder__photo {
  aspect-ratio: 4/5;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.founder__photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.2);
}
.founder__photo-placeholder svg {
  width: 80px;
  height: 54px;
  color: rgba(201,168,76,0.25);
}
.founder__photo-placeholder span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}
.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.founder__content {}
.founder__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.founder__name {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 28px;
}
.founder__bio {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
}
.founder__bio + .founder__bio { margin-top: 16px; }

/* ══════════════════════════════════════════════════════════════
   PROCESS PREVIEW (homepage)
══════════════════════════════════════════════════════════════ */
.process-preview {
  background: var(--white);
  padding: var(--section-v) 40px;
}
.process-preview__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: start;
}
.process-preview__visual {
  aspect-ratio: 4/3;
  background: var(--cream);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  overflow: hidden;
}
.process-preview__visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
}
.process-preview__visual-placeholder svg {
  width: 56px; height: 56px;
  opacity: 0.3;
}
.process-preview__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-preview__content {}
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 40px;
}

.process-steps { display: flex; flex-direction: column; gap: 40px; margin-bottom: 48px; }
.process-step { display: flex; gap: 28px; align-items: flex-start; }
.process-step__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  text-align: right;
  opacity: 0.7;
}
.process-step__body {}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.process-step__text {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.72;
}

/* ══════════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--navy);
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  padding: 80px 40px;
  text-align: center;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .cta-banner__sub { white-space: normal; }
}
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════
   PAGE HEADER (inner pages)
══════════════════════════════════════════════════════════════ */
.page-header {
  background: var(--navy);
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  padding: calc(var(--nav-h) + 64px) 40px 72px;
  text-align: center;
}
.page-header__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-header__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-header__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   PROCESS PAGE — Full steps
══════════════════════════════════════════════════════════════ */
.process-intro {
  background: var(--white);
  padding: 72px 40px 60px;
  text-align: center;
}
.process-intro__text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: var(--text-mid);
  line-height: 1.78;
}

.process-full {
  background: var(--cream);
  padding: var(--section-v) 40px;
}
.process-full__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-full-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 48px;
  padding-bottom: 64px;
  position: relative;
}
.process-full-step:last-child { padding-bottom: 0; }
.process-full-step__number-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-full-step__num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
}
.process-full-step__line {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin-top: 12px;
}
.process-full-step:last-child .process-full-step__line { display: none; }
.process-full-step__body { padding-top: 8px; }
.process-full-step__subtitle {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.process-full-step__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.process-full-step__text {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.82;
}

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--white);
  padding: var(--section-v) 40px;
}
.faq-section__inner {
  max-width: 780px;
  margin: 0 auto;
}
.faq-section__header {
  text-align: center;
  margin-bottom: 64px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.faq-question__icon svg {
  width: 12px; height: 12px;
  stroke: var(--text-mid);
  transition: transform 0.3s var(--ease), stroke 0.2s;
}
.faq-item.open .faq-question { color: var(--gold); }
.faq-item.open .faq-question__icon {
  background: var(--gold);
  border-color: var(--gold);
}
.faq-item.open .faq-question__icon svg {
  stroke: var(--navy);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer__inner {
  padding-bottom: 28px;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.78;
  max-width: 680px;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--cream);
  padding: var(--section-v) 40px;
}
.contact-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

/* Form side */
.contact-form-col {}
.contact-form-col h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-form-col .lead {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}
.form { display: flex; flex-direction: column; gap: 20px; }
.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.field input:focus,
.field textarea:focus { border-color: var(--navy); }
.field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.field--honeypot { display: none !important; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-status {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  display: none;
}
.form-status.success { display: block; background: #edf7f0; color: #1a5c34; border: 1px solid #b8e0c8; }
.form-status.error   { display: block; background: #fdf3f3; color: #7a2020; border: 1px solid #f0c8c8; }

/* Info side */
.contact-info-col {
  background: var(--navy);
  padding: 48px 40px;
  border-radius: 2px;
  color: rgba(255,255,255,0.7);
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.contact-info-col .info-logo {
  color: var(--gold);
  margin-bottom: 32px;
}
.contact-info-col .info-logo svg { height: 32px; width: auto; }
.contact-info__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-info__title {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}
.contact-info-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 28px 0;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.contact-info-item__label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}
.contact-info-item__value {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
}
.contact-info-item__value a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 48px 40px 32px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer__brand {}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--gold);
}
.footer__brand-logo svg { height: 20px; width: auto; }
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
}
.footer__brand-sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}
.footer__nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════════════════════
   404 PAGE
══════════════════════════════════════════════════════════════ */
.not-found {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 40px 80px;
  text-align: center;
  background: var(--cream);
}
.not-found__inner { max-width: 520px; }
.not-found__num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 400;
  color: var(--navy);
  opacity: 0.07;
  line-height: 1;
  margin-bottom: -20px;
}
.not-found__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
}
.not-found__sub {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 40px;
  line-height: 1.7;
}
.not-found__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.not-found .btn--outline-navy { }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-v: 80px; }
  .container, .container--sm { padding: 0 32px; }
  .founder__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .process-preview__inner { grid-template-columns: 1fr; }
  .process-preview__visual { position: relative; top: auto; max-width: 480px; }
  .contact-section__inner { grid-template-columns: 1fr; }
  .contact-info-col { position: static; }
}

@media (max-width: 768px) {
  :root { --section-v: 64px; --nav-h: 64px; }
  .container, .container--sm { padding: 0 24px; }

  /* Nav */
  .nav__inner { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__cta.desktop-only { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero { padding: calc(var(--nav-h) + 32px) 24px 60px; }

  /* Mission */
  .mission { padding: 60px 24px; }

  /* Founder */
  .founder { padding: 60px 24px; }
  .founder__inner { grid-template-columns: 1fr; gap: 40px; }
  .founder__photo { max-width: 320px; margin: 0 auto; }

  /* Process preview */
  .process-preview { padding: 60px 24px; }
  .process-preview__inner { grid-template-columns: 1fr; gap: 48px; }

  /* Page header */
  .page-header { padding: calc(var(--nav-h) + 48px) 24px 56px; }

  /* Process full */
  .process-full { padding: 60px 24px; }
  .process-full-step { grid-template-columns: 60px 1fr; gap: 0 28px; }
  .process-full-step__num { font-size: 3.5rem; }

  /* FAQ */
  .faq-section { padding: 60px 24px; }

  /* Contact */
  .contact-section { padding: 60px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 40px 24px 28px; }
  .footer__top { flex-direction: column; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .process-full-step { grid-template-columns: 48px 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.25);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.22);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  min-width: 200px;
}
.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-banner__accept {
  padding: 10px 24px;
  font-size: 0.8125rem;
  border-radius: 40px;
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.cookie-banner__accept:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}
.cookie-banner__decline {
  padding: 10px 20px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  border: none;
  background: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.cookie-banner__decline:hover { color: rgba(255,255,255,0.85); }

@media (max-width: 768px) {
  .cookie-banner { padding: 16px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__accept { flex: 1; text-align: center; }
}
