/* ════════════════════════════════════════════════════════════════
   Horizon Education Consultants — marketing site
   Shared stylesheet. Editorial / premium. Midnight base, sienna accent.
   ════════════════════════════════════════════════════════════════ */

:root {
  --midnight: #0E1F3A;
  --midnight-deep: #081428;
  --midnight-soft: #1B2E4D;
  --sienna: #A8543A;
  --sienna-deep: #8B4530;
  --sienna-soft: #C57655;
  --cream: #F0E8D2;
  --cream-deep: #E5DBBF;
  --cream-soft: #F6EEDC;
  --bone: #FBF6E9;
  --camel: #B68A5C;
  --camel-light: #D4B891;
  --slate: #4A5363;
  --ink: #14171C;
  --white: #FFFFFF;
  --line: rgba(14, 31, 58, 0.13);
  --line-soft: rgba(14, 31, 58, 0.07);
  --line-cream: rgba(240, 232, 210, 0.20);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1200px;
  --gutter: clamp(22px, 5vw, 72px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bone);
  color: var(--midnight);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--midnight); color: var(--cream); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ─────────────────────────────────────────── Layout helpers */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 132px); }
.section-sm { padding-block: clamp(48px, 6vw, 88px); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ─────────────────────────────────────────── Type atoms */
.eyebrow {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sienna);
  font-variation-settings: "opsz" 14;
  display: inline-block;
}
.eyebrow.slate { color: var(--slate); }
.eyebrow.cream { color: var(--sienna-soft); }

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 88px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  font-variation-settings: "opsz" 72;
  text-wrap: balance;
}
.display em { font-style: italic; font-weight: 300; color: var(--sienna-soft); }

.h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.027em;
  line-height: 1.02;
  font-variation-settings: "opsz" 60;
  text-wrap: balance;
}
.h1 em { font-style: italic; color: var(--sienna); }

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -0.022em;
  line-height: 1.08;
  font-variation-settings: "opsz" 40;
  text-wrap: balance;
}
.h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 25px);
  letter-spacing: -0.016em;
  line-height: 1.16;
}
.lede {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
  letter-spacing: -0.008em;
  color: var(--midnight);
  text-wrap: pretty;
}
.lede.muted { color: var(--slate); }
.prose {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.62;
  color: var(--midnight);
  text-wrap: pretty;
}
.prose.muted { color: var(--slate); }
.prose em { font-style: italic; }
.prose + .prose { margin-top: 1.1em; }
.kicker {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--slate);
}
.sienna-text { color: var(--sienna); }

/* ─────────────────────────────────────────── Buttons */
.btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 26px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--sienna); color: var(--cream-soft); }
.btn-primary:hover { background: var(--sienna-deep); }
.btn-dark { background: var(--midnight); color: var(--cream); }
.btn-dark:hover { background: var(--midnight-soft); }
.btn-ghost { border: 1px solid var(--line); color: var(--midnight); }
.btn-ghost:hover { border-color: var(--midnight); background: rgba(14,31,58,0.04); }
.btn-ghost-cream { border: 1px solid var(--line-cream); color: var(--cream); }
.btn-ghost-cream:hover { border-color: var(--cream); background: rgba(240,232,210,0.07); }
.btn .arrow { transition: transform 160ms ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-lg { padding: 17px 32px; font-size: 14px; }

.textlink {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--sienna);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 160ms ease, gap 160ms ease;
}
.textlink:hover { border-color: var(--sienna); gap: 11px; }
.textlink.cream { color: var(--sienna-soft); }
.textlink.cream:hover { border-color: var(--sienna-soft); }

/* ─────────────────────────────────────────── Logo lockup */
.lockup { display: inline-flex; align-items: center; gap: 12px; }
.lockup .badge { display: block; flex-shrink: 0; }
.lockup .word-block { display: flex; flex-direction: column; }
.lockup .word {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 23px;
  letter-spacing: -0.022em;
  line-height: 0.95;
  font-variation-settings: "opsz" 32;
}
.lockup .word-sub {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 4px;
}
.lockup.on-dark .word-sub { color: var(--camel-light); }

/* ─────────────────────────────────────────── Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 233, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease;
}
.nav.on-dark {
  background: var(--midnight);
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 15px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.on-dark .lockup .word { color: var(--cream); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--midnight);
  padding: 8px 14px;
  border-radius: 3px;
  transition: background 140ms ease, color 140ms ease;
  position: relative;
}
.nav.on-dark .nav-link { color: var(--cream); }
.nav-link:hover { color: var(--sienna); }
.nav.on-dark .nav-link:hover { color: var(--sienna-soft); }
.nav-link.active { color: var(--sienna); }
.nav.on-dark .nav-link.active { color: var(--sienna-soft); }
.nav-link.external::after {
  content: "↗";
  font-size: 11px;
  margin-left: 4px;
  opacity: 0.6;
}
.nav-cta { margin-left: 8px; }
.nav-cta-btn { background: var(--midnight); color: var(--cream); }
.nav-cta-btn:hover { background: var(--midnight-soft); }
.nav.on-dark .nav-cta-btn { background: var(--sienna); color: var(--cream-soft); }
.nav.on-dark .nav-cta-btn:hover { background: var(--sienna-deep); }
.nav-lang { border: 1px solid var(--line); border-radius: 3px; padding: 7px 11px !important; margin-left: 8px; font-size: 13px; }
.nav.on-dark .nav-lang { border-color: var(--line-cream); }
.nav-lang:hover { border-color: var(--sienna); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; width: 30px; height: 30px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 1.6px; width: 22px; background: var(--midnight); transition: transform 200ms ease, opacity 200ms ease; }
.nav.on-dark .nav-toggle span { background: var(--cream); }

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--midnight);
  color: var(--cream);
  flex-direction: column;
  padding: 26px var(--gutter) 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.mobile-menu-close { font-size: 30px; color: var(--cream); line-height: 1; }
.mobile-menu .lockup .word { color: var(--cream); }
.mobile-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-link .ext { font-size: 16px; color: var(--sienna-soft); }
.mobile-menu .btn { margin-top: 32px; justify-content: center; }

/* ─────────────────────────────────────────── Hero (dark) */
.hero {
  background: var(--midnight);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::after {
  /* soft sun glow upper-right */
  content: "";
  position: absolute;
  top: -28%;
  right: -8%;
  width: 60vw;
  height: 60vw;
  max-width: 760px;
  max-height: 760px;
  background: radial-gradient(circle, rgba(197,118,85,0.20) 0%, rgba(197,118,85,0.06) 38%, transparent 66%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(72px, 12vw, 150px) var(--gutter) clamp(72px, 11vw, 132px);
  position: relative;
  z-index: 1;
}
.hero .display { color: var(--cream); max-width: 17ch; }
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 10px 18px 10px 14px;
  border: 1px solid var(--line-cream);
  border-radius: 100px;
  background: rgba(240,232,210,0.04);
}
.hero-trust .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sienna-soft); flex-shrink: 0; }
.hero-trust .txt {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--cream);
}
.hero-trust .txt strong { font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; align-items: center; }

/* ─────────────────────────────────────────── Section head */
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head.center { margin-inline: auto; }

/* ─────────────────────────────────────────── Methodology banner (the WHY) */
.why-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--midnight);
}
.why-cell {
  padding: 28px 28px 30px;
  border-right: 1px solid var(--line);
}
.why-cell:last-child { border-right: none; }
.why-cell .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--sienna);
  margin-bottom: 12px;
}
.why-cell h3 { margin-bottom: 8px; }
.why-cell p { font-family: var(--serif); font-size: 16.5px; line-height: 1.52; color: var(--slate); text-wrap: pretty; }

/* ─────────────────────────────────────────── Timeline (the HOW) — hero graphic */
.timeline { position: relative; margin-top: 8px; }
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.tl-step {
  position: relative;
  padding: 40px 26px 34px;
  border-right: 1px solid var(--line);
}
.tl-step:last-child { border-right: none; }
.tl-rail {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--line);
}
.tl-step .node {
  position: absolute;
  top: -7px;
  left: 26px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bone);
  border: 2px solid var(--sienna);
}
.tl-step.is-narrative .node { background: var(--sienna); }
.tl-grade {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 16px;
}
.tl-verb {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--midnight);
  margin-bottom: 6px;
  font-variation-settings: "opsz" 40;
}
.tl-output {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--sienna);
  margin-bottom: 14px;
}
.tl-output::before { content: "→ "; font-style: normal; color: var(--slate); opacity: 0.6; }
.tl-desc { font-family: var(--serif); font-size: 15.5px; line-height: 1.5; color: var(--slate); text-wrap: pretty; }

/* ─────────────────────────────────────────── Cards / programs */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 34px 30px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.card.hover-lift:hover {
  border-color: var(--sienna);
  transform: translateY(-3px);
  box-shadow: 0 20px 44px -28px rgba(14,31,58,0.4);
}
.card .prog-meta {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.card .prog-abbr {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--sienna);
}
.card .prog-when {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  text-align: right;
}
.card h3 { margin-bottom: 12px; }
.card .card-body { font-family: var(--serif); font-size: 16.5px; line-height: 1.55; color: var(--slate); flex: 1; text-wrap: pretty; }
.card .card-foot { margin-top: 22px; }
.card .maps-to {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─────────────────────────────────────────── Dark band (founder, proof, CTA) */
.band-dark { background: var(--midnight); color: var(--cream); }
.band-dark .h1, .band-dark .h2, .band-dark .display { color: var(--cream); }
.band-dark .lede { color: var(--cream); }
.band-dark .lede.muted { color: rgba(240,232,210,0.74); }
.band-dark .eyebrow { color: var(--sienna-soft); }
.band-cream { background: var(--cream); }
.band-bone { background: var(--bone); }
.band-soft { background: var(--cream-soft); }

/* ─────────────────────────────────────────── Founder note */
.founder {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.founder-aside {}
.founder-portrait {
  aspect-ratio: 4/5;
  border-radius: 4px;
  background: var(--midnight-soft);
  border: 1px solid var(--line-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-portrait .ph-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,232,210,0.4);
  text-align: center;
  padding: 16px;
}
.founder-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 22px;
  color: var(--cream);
}
.founder-cred {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(240,232,210,0.7);
  margin-top: 8px;
}
.founder-quote .q {
  font-family: var(--serif);
  font-size: clamp(19px, 2.1vw, 23px);
  line-height: 1.56;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-wrap: pretty;
}
.founder-quote .q + .q { margin-top: 1.05em; }
.founder-quote .q em { font-style: italic; color: var(--sienna-soft); }

/* ─────────────────────────────────────────── Proof / stats */
.proof-line {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.4;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.proof-line em { font-style: italic; color: var(--sienna-soft); }

/* ─────────────────────────────────────────── Results / logo wall */
.accept-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.accept-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 104px;
  justify-content: center;
}
.accept-item .school { font-family: var(--serif); font-size: 21px; font-weight: 500; letter-spacing: -0.018em; line-height: 1.12; }
.accept-item .note { font-family: var(--sans); font-size: 12px; letter-spacing: 0.04em; color: var(--slate); }
.accept-item.placeholder .school { color: var(--slate); opacity: 0.5; font-style: italic; font-weight: 400; }

.testimonial {
  border-left: 2px solid var(--sienna);
  padding: 4px 0 4px 26px;
}
.testimonial .q { font-family: var(--serif); font-size: clamp(19px, 2.1vw, 24px); line-height: 1.5; letter-spacing: -0.01em; text-wrap: pretty; }
.testimonial .q em { font-style: italic; }
.testimonial .by { font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.03em; color: var(--slate); margin-top: 16px; }

/* ─────────────────────────────────────────── Media feed */
.feed { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.post {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px 30px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease, transform 200ms ease;
}
.post:hover { border-color: var(--sienna); transform: translateY(-2px); }
.post.feature { grid-column: 1 / -1; }
.post-meta {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate);
}
.post-meta .cat { color: var(--sienna); font-weight: 600; }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--slate); opacity: 0.5; }
.post h3 { margin-bottom: 12px; }
.post .post-feature-title { font-size: clamp(28px, 3.4vw, 42px); }
.post .excerpt { font-family: var(--serif); font-size: 16.5px; line-height: 1.55; color: var(--slate); flex: 1; text-wrap: pretty; }
.post .post-foot { margin-top: 22px; }

.media-empty {
  border: 1px dashed var(--line);
  border-radius: 4px;
  padding: 48px 40px;
  text-align: center;
  background: var(--cream-soft);
}

/* ─────────────────────────────────────────── FAQ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--midnight);
}
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--sienna); transition: transform 220ms ease, opacity 220ms ease;
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1.6px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 1.6px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.faq-a-inner {
  padding: 0 4px 28px;
  font-family: var(--serif);
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 70ch;
  text-wrap: pretty;
}

/* ─────────────────────────────────────────── Contact / form */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 6vw, 84px); align-items: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 12px 14px;
  transition: border-color 150ms ease;
}
.field select { font-family: var(--sans); font-size: 15px; }
.field textarea { resize: vertical; line-height: 1.55; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sienna); }
.form-note { font-family: var(--sans); font-size: 12.5px; color: var(--slate); margin-top: 4px; line-height: 1.5; }
.form-success {
  background: var(--midnight);
  color: var(--cream);
  border-radius: 4px;
  padding: 40px 36px;
  text-align: center;
}

.contact-aside-card {
  background: var(--midnight);
  color: var(--cream);
  border-radius: 4px;
  padding: 36px 34px;
}
.contact-aside-card .eyebrow { color: var(--sienna-soft); margin-bottom: 18px; }
.contact-line { display: flex; flex-direction: column; gap: 3px; margin-bottom: 22px; }
.contact-line .lbl { font-family: var(--sans); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--camel-light); }
.contact-line .val { font-family: var(--serif); font-size: 19px; color: var(--cream); }
.contact-line a.val:hover { color: var(--sienna-soft); }
.calendar-embed {
  border: 1px dashed var(--line-cream);
  border-radius: 4px;
  padding: 28px;
  text-align: center;
  margin-top: 8px;
}

/* ─────────────────────────────────────────── CTA band */
.cta-band { text-align: center; }
.cta-band .display { margin-inline: auto; max-width: 18ch; }
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }

/* ─────────────────────────────────────────── Footer */
.footer { background: var(--midnight-deep); color: var(--cream); }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) var(--gutter) 40px;
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-cream); }
.footer .lockup .word { color: var(--cream); }
.footer-tag { font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.5; color: rgba(240,232,210,0.8); margin-top: 20px; max-width: 34ch; }
.footer-col h4 { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--camel-light); margin-bottom: 18px; }
.footer-col a, .footer-col .line {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  color: rgba(240,232,210,0.85);
  padding: 5px 0;
  transition: color 140ms ease;
}
.footer-col a:hover { color: var(--sienna-soft); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-top: 26px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(240,232,210,0.55);
}
.footer-bottom .socials { display: flex; gap: 18px; }
.footer-bottom .socials a:hover { color: var(--sienna-soft); }

/* ─────────────────────────────────────────── Reveal
   Content is always visible (no hiding). Kept as a hook only. */
.reveal { opacity: 1; transform: none; }

/* ─────────────────────────────────────────── Strategy Vault CTA */
.vault-cta {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.vault-cta-card {
  background: var(--midnight); color: var(--cream);
  border-radius: 6px; padding: clamp(28px, 4vw, 42px); text-align: center;
}
.vault-cta-price { display: flex; align-items: baseline; justify-content: center; gap: 9px; }
.vault-cta-price .amt { font-family: var(--serif); font-weight: 500; font-size: 58px; letter-spacing: -0.03em; line-height: 1; color: var(--cream); }
.vault-cta-price .cur { font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sienna-soft); }
.vault-cta-note { font-family: var(--serif); font-size: 14.5px; line-height: 1.5; color: rgba(240,232,210,0.74); margin: 12px 0 24px; }
.vault-cta-card .btn { width: 100%; justify-content: center; }
.vault-cta-card .textlink { color: var(--sienna-soft); margin-top: 16px; display: inline-block; }
@media (max-width: 820px) { .vault-cta { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────── Responsive */
@media (max-width: 1040px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta.desktop-only { display: none; }
  .founder { grid-template-columns: 1fr; }
  .founder-aside { max-width: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .feed { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .why-banner { grid-template-columns: 1fr; }
  .why-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .why-cell:last-child { border-bottom: none; }
  .timeline-grid { grid-template-columns: 1fr; }
  .tl-rail { display: none; }
  .tl-step { border-right: none; border-left: 2px solid var(--line); padding: 18px 0 30px 28px; }
  .tl-step .node { top: 6px; left: -8px; }
  .accept-list { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 460px) {
  .accept-list { grid-template-columns: 1fr; }
  .lockup .word { font-size: 20px; }
}
