/* =========================================================================
   305 FOUNDERS — Design System v2
   Navy + gold editorial luxury. Cinematic, centered, premium.
   Brand kept: navy #0D2244, gold #C9A96E, Playfair + Inter (identity-preserved).
   ========================================================================= */

/* ----------------------------------------------------------------- TOKENS */
:root {
  --navy-900: #081A36;
  --navy-850: #0A1E3D;
  --navy-800: #0D2244;   /* brand background */
  --navy-700: #132D58;   /* surfaces */
  --navy-600: #1B3A6B;
  --navy-500: #2A4A7F;

  --gold: #C9A96E;
  --gold-bright: #E3C68C;
  --gold-deep: #A98A4F;
  --gold-glow: rgba(201, 169, 110, 0.35);

  /* Text — warm, legible, never harsh pure white */
  --ink: #F4F1EA;
  --ink-soft: #DADDE4;
  --ink-muted: #9DACC4;
  --white: #FBFAF6;

  --line: rgba(255, 255, 255, 0.10);
  --line-gold: rgba(201, 169, 110, 0.30);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --container-narrow: 860px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --section-y: clamp(4.5rem, 9vw, 9rem);
  --radius: 2px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-raise: 0 30px 70px -34px rgba(0, 0, 0, 0.85);
  --glow-gold: 0 0 0 1px rgba(201,169,110,0.30), 0 26px 60px -34px rgba(0,0,0,0.85), 0 0 48px -14px rgba(201,169,110,0.18);
}

/* ------------------------------------------------------------------ RESET */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
body {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.1875rem);
  line-height: 1.75;
  font-weight: 400;
  color: var(--ink);
  background: var(--navy-800);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--navy-900); }

/* --------------------------------------------------------------- TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; color: var(--white); letter-spacing: -0.01em; }
.h-display { font-size: clamp(2.75rem, 6.2vw, 5.5rem); font-weight: 600; line-height: 1.03; }
.h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); line-height: 1.07; }
.h3 { font-size: clamp(1.4rem, 1.8vw, 1.85rem); }
.h4 { font-size: clamp(1.15rem, 1.2vw, 1.35rem); }
em, .accent-em { font-style: italic; color: var(--gold); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.14rem, 1.3vw, 1.42rem); line-height: 1.62; color: var(--ink); font-weight: 400; }
strong { color: var(--ink); font-weight: 600; }
.text-gold { color: var(--gold); }
.text-soft { color: var(--ink-soft); }
.text-muted { color: var(--ink-muted); }

/* Eyebrow — gold hairline label. Flanking gradient lines when centered. */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75em;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.eyebrow--flank, .eyebrow.center,
.section-head .eyebrow { justify-content: center; }
.eyebrow--flank::after, .eyebrow.center::after,
.section-head .eyebrow::after { content: ""; width: 32px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

/* ------------------------------------------------------------------ LAYOUT */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.band-900 { background: var(--navy-900); }
.band-850 { background: var(--navy-850); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* Section heads are centered by default (the premium standard). */
.section-head { max-width: 760px; margin: 0 auto clamp(2.75rem, 5vw, 4.25rem); text-align: center; }
.section-head .eyebrow { margin-bottom: 1.35rem; }
.section-head p { margin-top: 1.15rem; font-size: 1.12rem; color: var(--ink-soft); }
.section-head--left { margin-inline: 0; text-align: left; }
.section-head--left .eyebrow { justify-content: flex-start; }
.section-head--left .eyebrow::after { display: none; }

.grid { display: grid; gap: var(--gap); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.hairline { height: 1px; background: var(--line); border: 0; }

/* ------------------------------------------------------------------ BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.95em 1.65em; border-radius: var(--radius);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative; white-space: nowrap; overflow: hidden;
}
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--gold); color: var(--navy-900); box-shadow: 0 14px 34px -16px var(--gold-glow); }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 20px 44px -16px var(--gold-glow); }
.btn-primary::after { content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent); transform: skewX(-18deg); }
.btn-primary:hover::after { animation: sheen 0.9s var(--ease); }
@keyframes sheen { to { left: 150%; } }
.btn-ghost { color: var(--ink); border: 1px solid var(--line-gold); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--gold); color: var(--white); background: rgba(201,169,110,0.10); transform: translateY(-2px); }
.btn-lg { padding: 1.1em 2.1em; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.link-arrow { display: inline-flex; align-items: center; gap: 0.5em; color: var(--gold); font-weight: 600; font-size: 0.95rem; }
.link-arrow .arrow { transition: transform 0.35s var(--ease); }
.link-arrow:hover { color: var(--gold-bright); }
.link-arrow:hover .arrow { transform: translateX(5px); }

/* ------------------------------------------------------------------- HEADER */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; padding-block: 1.4rem;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding-block: 0.7rem; background: rgba(8, 26, 54, 0.85);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line); box-shadow: 0 10px 40px -24px rgba(0,0,0,0.9);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: baseline; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--white); letter-spacing: 0.01em; }
.brand-mark { display: none; }              /* no emblem */
.brand b { color: var(--gold); font-weight: 600; margin-left: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); position: relative; padding-block: 0.3rem; transition: color 0.25s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--gold); transition: width 0.3s var(--ease); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links .mobile-cta { display: none; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform 0.35s var(--ease), opacity 0.2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------- HERO */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; text-align: center; overflow: hidden; padding-top: 6rem; }
.hero--inner { min-height: 76vh; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-photo {
  position: absolute; inset: -3%;
  background: url("../img/miami-hero.jpg") center 58% / cover no-repeat;
  transform: scale(1.06); will-change: transform;
  animation: kenburns 28s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.06) translateY(0); } to { transform: scale(1.15) translateY(-1.6%); } }
.hero-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,26,54,0.95) 0%, rgba(8,26,54,0.52) 24%, rgba(10,30,61,0.40) 52%, rgba(8,26,54,0.82) 86%, rgba(8,26,54,0.98) 100%),
    radial-gradient(125% 80% at 50% 44%, rgba(8,26,54,0) 0%, rgba(8,26,54,0.42) 68%, rgba(8,26,54,0.78) 100%);
}
.hero-glow {
  position: absolute; left: 50%; top: 32%; width: 72vw; height: 60vw; max-width: 920px; max-height: 780px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,169,110,0.24), transparent 60%);
  filter: blur(34px); pointer-events: none; animation: drift 20s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: translate(-54%, -50%); } to { transform: translate(-46%, -43%); } }
.hero-motes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-motes i { position: absolute; bottom: 14%; width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: 0; box-shadow: 0 0 9px 1px rgba(201,169,110,0.7); animation: mote 15s linear infinite; }
@keyframes mote { 0% { transform: translateY(40px) scale(0.8); opacity: 0; } 14% { opacity: 0.8; } 78% { opacity: 0.5; } 100% { transform: translateY(-220px) scale(1); opacity: 0; } }
.grain { position: absolute; inset: 0; opacity: 0.05; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* Soft focus behind the hero text: eases the photo's busyness for legibility
   without reading as a glass panel (feathered backdrop-blur + gentle navy scrim). */
.hero-bg::after {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(94%, 940px); height: min(66%, 560px); pointer-events: none; z-index: 1;
  background: radial-gradient(ellipse at center, rgba(8,26,54,0.50) 0%, rgba(8,26,54,0.30) 46%, rgba(8,26,54,0) 74%);
  -webkit-mask: radial-gradient(ellipse at center, #000 40%, transparent 78%);
  mask: radial-gradient(ellipse at center, #000 40%, transparent 78%);
}
.hero--inner .hero-bg::after { height: min(72%, 460px); }

.hero-inner { position: relative; z-index: 2; max-width: 900px; margin-inline: auto; text-shadow: 0 2px 34px rgba(8,26,54,0.45); }
.hero-inner .eyebrow { margin-bottom: 1.9rem; }
.hero h1 { margin-bottom: 1.3rem; }
.hero-tag { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(1.3rem, 2.3vw, 2rem); color: var(--ink); margin-bottom: 1.5rem; }
.hero .lead { max-width: 650px; margin: 0 auto 2.5rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero--inner .crumb { justify-content: center; }

.scroll-cue { display: flex; flex-direction: column; align-items: center; gap: 0.55rem; width: max-content; margin: 2.4rem auto 0; color: var(--ink-muted); font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; }
.scroll-cue .track { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-cue .track::after { content: ""; position: absolute; top: -50%; left: 0; width: 1px; height: 50%; background: var(--gold); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0% { top: -50%; } 60%, 100% { top: 100%; } }

/* --------------------------------------------------------------------- STATS */
.stats-strip { border-block: 1px solid var(--line); background: var(--navy-850); }
.stats-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem 2rem; padding-block: clamp(2.2rem, 4vw, 3.2rem); }
.stat { flex: 1 1 140px; min-width: 130px; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 600; color: var(--gold); line-height: 1; letter-spacing: -0.01em; }
.stat .label { margin-top: 0.6rem; font-size: 0.88rem; color: var(--ink-muted); line-height: 1.45; }

/* --------------------------------------------------------------------- CARDS */
.card {
  position: relative; background: var(--navy-700);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.7rem, 2.4vw, 2.5rem);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
  overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(130% 100% at 0% 0%, rgba(201,169,110,0.07), transparent 55%); opacity: 0; transition: opacity 0.45s var(--ease); pointer-events: none; }
.card:hover { transform: translateY(-4px); border-color: var(--line-gold); box-shadow: var(--glow-gold); }
.card:hover::before { opacity: 1; }
.card .idx { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold); letter-spacing: 0.05em; margin-bottom: 1.1rem; display: inline-block; }
.card h3 { margin-bottom: 0.85rem; }
.card p { font-size: 1rem; color: var(--ink-soft); }

/* Reality cards — equal height, baseline pinned */
.reality-card { display: flex; flex-direction: column; padding-top: 2.6rem; }
.reality-card .big-idx { position: absolute; top: 1.2rem; right: 1.4rem; font-family: var(--font-display); font-size: 3.4rem; color: rgba(201,169,110,0.16); line-height: 1; }
.reality-card .tag { margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--gold); font-style: italic; font-family: var(--font-display); }
.reality-card h3, .reality-card h4 { margin-bottom: 0.85rem; }

.feature-list { display: grid; gap: 0.7rem; margin-top: 1.2rem; }
.feature-list li { display: flex; gap: 0.7rem; align-items: baseline; font-size: 0.98rem; color: var(--ink-soft); }
.feature-list li::before { content: ""; flex: none; width: 6px; height: 6px; margin-top: 0.5em; background: var(--gold); transform: rotate(45deg); }

/* ----------------------------------------------------------- OFFERINGS (HOME) */
.offerings { display: grid; gap: var(--gap); }
.offer-feature {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center; background: linear-gradient(135deg, var(--navy-700), var(--navy-850));
  border: 1px solid var(--line-gold); border-radius: var(--radius); padding: clamp(2rem, 4vw, 3.5rem); overflow: hidden;
  text-align: left;
}
.offer-feature::after { content: ""; position: absolute; top: -40%; right: -10%; width: 50%; height: 180%; background: radial-gradient(circle, var(--gold-glow), transparent 65%); filter: blur(34px); opacity: 0.4; pointer-events: none; animation: pulse 7s ease-in-out infinite alternate; }
@keyframes pulse { from { opacity: 0.28; } to { opacity: 0.5; } }
/* "flag" is now an eyebrow label, not a pill */
.flag { display: inline-flex; align-items: center; gap: 0.7em; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.flag::before { content: ""; width: 28px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.offer-feature h3 { font-size: clamp(1.9rem, 3vw, 2.7rem); margin-bottom: 0.7rem; }
.offer-feature .sub { color: var(--gold); font-size: 1rem; margin-bottom: 1.1rem; font-weight: 500; font-style: italic; font-family: var(--font-display); }
.offer-feature .relative { position: relative; z-index: 2; }

/* six-driver chips → elegant inline gold list (no pills) */
.chip-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 0; margin-top: 1.7rem; }
.chip { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.chip:not(:last-child)::after { content: "·"; margin: 0 0.85rem; color: var(--line-gold); }

.offer-pair { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.offer-card { display: flex; flex-direction: column; }
.offer-card .idx-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.3rem; }
.offer-card .kicker { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); }
.offer-card .idx { margin: 0; font-size: 1.6rem; }
.offer-card h3 { font-size: 1.55rem; }
.offer-card .sub { color: var(--gold); font-size: 0.95rem; margin-bottom: 0.9rem; font-weight: 500; }
.offer-card .cta-row { margin-top: auto; padding-top: 1.5rem; }

/* ----------------------------------------------------------------- PRINCIPALS */
.principal { background: var(--navy-700); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.principal:hover { transform: translateY(-4px); border-color: var(--line-gold); box-shadow: var(--glow-gold); }
.principal .photo { position: relative; width: 100%; aspect-ratio: 7 / 5; overflow: hidden; border-bottom: 1px solid var(--line-gold); }
.principal .photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; transition: transform 0.8s var(--ease); }
.principal:hover .photo img { transform: scale(1.05); }
.principal .photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,26,54,0.45)); }
.principal .body { padding: clamp(1.6rem, 2.6vw, 2.3rem); }
.principal h3 { margin-bottom: 0.3rem; }
.principal .role { color: var(--gold); font-size: 0.92rem; font-weight: 500; margin-bottom: 1.1rem; }
.principal .bio { font-size: 1rem; margin-top: 1.1rem; color: var(--ink-soft); }

/* ------------------------------------------------------------------- EVENTS */
.event-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.meta-grid > div { background: var(--navy-800); padding: 1.3rem 1.5rem; }
.meta-grid .k { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.35rem; }
.meta-grid .v { font-size: 1.1rem; color: var(--white); font-family: var(--font-display); }

/* ---------------------------------------------------------------------- FAQ */
.faq-group { margin-bottom: 2.5rem; }
.faq-group > .glabel { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 1rem; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; text-align: left; padding: 1.4rem 0; font-size: 1.08rem; font-weight: 500; color: var(--ink); transition: color 0.25s var(--ease); }
.faq-q:hover { color: var(--white); }
.faq-q .sign { flex: none; width: 22px; height: 22px; position: relative; }
.faq-q .sign::before, .faq-q .sign::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--gold); transition: transform 0.35s var(--ease), opacity 0.35s var(--ease); }
.faq-q .sign::before { width: 14px; height: 1.5px; }
.faq-q .sign::after { width: 1.5px; height: 14px; }
.faq-item.open .faq-q .sign::after { transform: rotate(90deg); opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.5s var(--ease); }
.faq-a-inner { padding: 0 0 1.5rem; color: var(--ink-soft); font-size: 1.02rem; max-width: 70ch; }
.faq-item.open .faq-a { max-height: 480px; }

/* --------------------------------------------------------------------- FORM */
.apply-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.assure { display: grid; gap: 1rem; margin-top: 1.8rem; }
.assure li { display: flex; gap: 0.8rem; align-items: center; font-size: 1rem; color: var(--ink-soft); }
.assure li .tick { flex: none; width: 24px; height: 24px; border: 1px solid var(--line-gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold); }
.form-card { background: var(--navy-700); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.6rem); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.5rem; }
.field input, .field select { width: 100%; font-family: inherit; font-size: 1rem; color: var(--white); background: var(--navy-850); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.85em 1em; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.field input::placeholder { color: #6f80a0; }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.15); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1em center; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-note { font-size: 0.85rem; color: var(--ink-muted); margin-top: 1rem; text-align: center; }

/* ------------------------------------------------------------------ CTA BAND */
.cta-band { position: relative; text-align: center; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 50% 0%, rgba(201,169,110,0.16), transparent 60%); pointer-events: none; }
.cta-band h2 { position: relative; max-width: 18ch; margin-inline: auto; }
.cta-band .cta-row { position: relative; margin-top: 2.2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .fineprint { position: relative; margin-top: 1.6rem; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); }

/* ------------------------------------------------------------------- FOOTER */
.site-footer { background: var(--navy-900); border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.98rem; max-width: 38ch; color: var(--ink-soft); }
.footer-col h5 { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 1.1rem; font-family: var(--font-body); font-weight: 600; }
.footer-col a { display: block; font-size: 0.98rem; color: var(--ink-soft); padding: 0.35rem 0; transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--ink-muted); }

/* ===================================================== SUBPAGE COMPONENTS === */
.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.driver { position: relative; background: var(--navy-700); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.1rem 1.8rem; transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease); overflow: hidden; }
.driver::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 100% at 100% 0%, rgba(201,169,110,0.08), transparent 55%); opacity: 0; transition: opacity 0.45s var(--ease); }
.driver:hover { transform: translateY(-4px); border-color: var(--line-gold); box-shadow: var(--glow-gold); }
.driver:hover::before { opacity: 1; }
.driver .dnum { font-family: var(--font-display); font-size: 0.9rem; color: var(--gold); letter-spacing: 0.1em; }
.driver h4 { margin: 0.7rem 0 0.6rem; font-size: 1.3rem; }
.driver p { font-size: 0.96rem; color: var(--ink-soft); }
.driver .ic { width: 40px; height: 40px; color: var(--gold); margin-bottom: 1rem; position: relative; }

.timeline { display: grid; gap: 0; counter-reset: step; max-width: 820px; margin-inline: auto; }
.tl-step { display: grid; grid-template-columns: 92px 1fr; gap: 1.6rem; padding: 1.9rem 0; border-top: 1px solid var(--line); position: relative; transition: padding-left 0.4s var(--ease); }
.tl-step:last-child { border-bottom: 1px solid var(--line); }
.tl-step:hover { padding-left: 0.6rem; }
.tl-step .tl-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); line-height: 1; }
.tl-step .tl-phase { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.5rem; }
.tl-step h4 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.tl-step p { font-size: 1rem; color: var(--ink-soft); max-width: 60ch; }

.tool { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.6rem; background: var(--navy-700); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.tool:hover { border-color: var(--line-gold); transform: translateY(-3px); box-shadow: var(--glow-gold); }
.tool .tool-ic { flex: none; width: 46px; height: 46px; border: 1px solid var(--line-gold); border-radius: var(--radius); display: grid; place-items: center; color: var(--gold); }
.tool h4 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.tool p { font-size: 0.95rem; color: var(--ink-soft); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.rev .split-media { order: -1; }
.media-card { position: relative; border: 1px solid var(--line-gold); border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, var(--navy-700), var(--navy-850)); padding: 2.5rem; min-height: 320px; display: flex; }

.pull-quote { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.25; color: var(--white); max-width: 24ch; }
.pull-quote .mark { color: var(--gold); font-style: italic; }
.cta-band .pull-quote, .center .pull-quote { margin-inline: auto; }

.outcomes { columns: 2; column-gap: 3rem; }
.outcomes li { break-inside: avoid; display: flex; gap: 0.7rem; align-items: baseline; padding: 0.6rem 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 1.02rem; }
.outcomes li::before { content: "\2192"; color: var(--gold); }

.crumb { display: inline-flex; align-items: center; gap: 0.5em; color: var(--ink-muted); font-size: 0.9rem; margin-bottom: 1.6rem; transition: color 0.25s var(--ease); }
.crumb:hover { color: var(--gold); }

/* =================================================== REVEAL ANIMATIONS ===== */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-34px); }
[data-reveal="left"].in { transform: none; }
[data-reveal="scale"] { transform: scale(0.96); }
[data-reveal="scale"].in { transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); }
[data-stagger].in > * { opacity: 1; transform: none; }
.reveal-mask { display: inline-block; overflow: hidden; padding-bottom: 0.08em; }
.reveal-mask > span { display: inline-block; transform: translateY(110%); transition: transform 0.95s var(--ease-out); }
.loaded .reveal-mask > span, .reveal-mask.in > span { transform: none; }

/* ===================================================== RESPONSIVE ========== */
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { gap: 0; }
  .cols-3, .cols-4, .model-grid { grid-template-columns: 1fr 1fr; }
  .offer-feature { grid-template-columns: 1fr; }
  .offer-pair { grid-template-columns: 1fr; }
  .event-grid, .apply-wrap, .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    padding: 2rem 2.5rem; background: var(--navy-850); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform 0.45s var(--ease); z-index: 90;
    box-shadow: -30px 0 80px -30px rgba(0,0,0,0.8);
  }
  .nav-links.open { display: flex; transform: none; }
  .nav-links a { font-size: 1.25rem; font-family: var(--font-display); color: var(--ink); }
  .nav-links a::after { display: none; }
  .nav-links .mobile-cta { display: inline-flex; margin-top: 0.5rem; }
}
@media (max-width: 620px) {
  .cols-2, .cols-3, .cols-4, .model-grid, .field-row, .meta-grid { grid-template-columns: 1fr; }
  .outcomes { columns: 1; }
  .tl-step { grid-template-columns: 1fr; gap: 0.5rem; }
  .stats-strip .container { gap: 1.5rem; }
  .stat { flex-basis: 42%; }
  .hero { min-height: 92svh; }
}

/* =================================================== ATOM (six drivers) ==== */
.atom { width: 100%; max-width: 440px; margin-inline: auto; display: block; }
.atom .orbits { transform-box: view-box; transform-origin: 240px 190px; animation: atom-spin 46s linear infinite; }
@keyframes atom-spin { to { transform: rotate(360deg); } }
.atom .halo { animation: atom-pulse 6s ease-in-out infinite; }
@keyframes atom-pulse { 0%, 100% { opacity: 0.18; } 50% { opacity: 0.6; } }
.atom .core-glow { animation: atom-core 7s ease-in-out infinite alternate; }
@keyframes atom-core { from { opacity: 0.45; } to { opacity: 0.95; } }

/* ============================================== GOLD DRIP DIVIDER ========== */
/* The "dripping gold" hairline from the scroll cue, reused between paired
   tiles: a faint vertical line in the column gap with a gold bead that falls. */
.gold-divide { position: relative; }
.gold-divide::before {
  content: ""; position: absolute; top: 7%; bottom: 7%; left: calc(50% - 0.5px);
  width: 1px; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, transparent, var(--line-gold) 14%, var(--line-gold) 86%, transparent);
}
.gold-divide::after {
  content: ""; position: absolute; left: calc(50% - 1px); top: 7%; width: 2px; height: 28px;
  pointer-events: none; z-index: 2; border-radius: 2px;
  background: linear-gradient(180deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 12px 2px rgba(201,169,110,0.45);
  animation: drip 3.6s var(--ease) infinite;
}
@keyframes drip {
  0% { top: 3%; opacity: 0; }
  16% { opacity: 1; }
  84% { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}

/* =============================================== SECTION MOTES ============= */
/* Slow-rising gold motes (the hero's signature) for the dark sections. */
.has-motes { position: relative; overflow: hidden; }
.has-motes > .container { position: relative; z-index: 1; }
.section-motes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.section-motes i {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold-bright); opacity: 0;
  box-shadow: 0 0 10px 2px rgba(201,169,110,0.75);
  animation: rise-mote var(--dur, 20s) linear infinite;
}
@keyframes rise-mote {
  0% { transform: translateY(20px) scale(0.6); opacity: 0; }
  16% { opacity: 0.9; }
  70% { opacity: 0.55; }
  100% { transform: translateY(var(--travel, -240px)) scale(1); opacity: 0; }
}

/* Hide the drip divider once paired tiles stack into a single column. */
@media (max-width: 980px) {
  .offer-pair.gold-divide::before, .offer-pair.gold-divide::after { display: none; }
}
@media (max-width: 620px) {
  .gold-divide::before, .gold-divide::after { display: none; }
}

/* =================================================== CALENDAR ============== */
.cal-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 2rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.cal-filter { position: relative; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.03em; color: var(--ink-muted); padding: 0.45rem 0; transition: color 0.25s var(--ease); }
.cal-filter::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--gold); transition: width 0.3s var(--ease); }
.cal-filter:hover { color: var(--ink); }
.cal-filter.active { color: var(--white); }
.cal-filter.active::after { width: 100%; }

.cal-shell { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }

/* Month grid */
.cal-month { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--navy-850); }
.cal-month-head { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--line); }
.cal-month-head h3 { font-size: 1.3rem; }
.cal-month-head .mtag { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-grid .dow { text-align: center; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
.cal-cell { min-height: 80px; padding: 0.5rem 0.55rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; }
.cal-cell:nth-child(7n) { border-right: 0; }
.cal-cell.empty { background: rgba(255,255,255,0.014); }
.cal-cell .dnum { font-family: var(--font-display); font-size: 0.9rem; color: var(--ink-soft); }
.cal-cell.past .dnum { color: var(--ink-muted); opacity: 0.55; }
.cal-cell.today .dnum { color: var(--navy-900); background: var(--gold); width: 1.6rem; height: 1.6rem; border-radius: 50%; display: grid; place-items: center; font-weight: 600; }
.cal-ev { display: block; margin-top: 0.4rem; padding-left: 0.6rem; font-size: 0.66rem; line-height: 1.3; color: var(--gold); position: relative; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal-ev::before { content: ""; position: absolute; left: 0; top: 0.45em; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 6px rgba(201,169,110,0.6); }
.cal-cell.past .cal-ev { color: var(--ink-muted); }
.cal-cell.past .cal-ev::before { background: var(--ink-muted); box-shadow: none; }
.cal-ev.is-hidden { display: none; }

/* Upcoming list */
.cal-up h3 { font-size: 1.3rem; margin-bottom: 1.4rem; }
.event-list { display: grid; gap: 1rem; }
.event-card { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; padding: 1.3rem 1.4rem; background: var(--navy-700); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.event-card:hover { border-color: var(--line-gold); transform: translateY(-3px); box-shadow: var(--glow-gold); }
.event-card.is-hidden { display: none; }
.event-date { text-align: center; padding-right: 1.3rem; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; min-width: 56px; }
.event-date .d { font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1; }
.event-date .m { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); margin-top: 0.35rem; }
.event-date .wd { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-top: 0.2rem; }
.event-body .cat { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.45rem; }
.event-body h4 { font-size: 1.08rem; line-height: 1.28; margin-bottom: 0.55rem; color: var(--white); }
.event-meta { display: flex; flex-wrap: wrap; gap: 0.3rem 0.9rem; font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 0.75rem; }
.event-meta span { position: relative; }
.event-meta span + span::before { content: "·"; margin-right: 0.9rem; color: var(--line-gold); }
.cal-empty { display: none; padding: 1.6rem; text-align: center; color: var(--ink-muted); border: 1px dashed var(--line); border-radius: var(--radius); font-size: 0.95rem; }
.cal-empty.show { display: block; }
.cal-note { margin-top: 1.4rem; font-size: 0.82rem; color: var(--ink-muted); }

@media (max-width: 980px) {
  .cal-shell { grid-template-columns: 1fr; }
  .cal-up h3 { margin-top: 0.5rem; }
}
@media (max-width: 620px) {
  .cal-month { display: none; }
  .cal-filters { gap: 0.4rem 1.2rem; font-size: 0.85rem; }
}

/* =================================================== INSIGHTS HUB ========= */
/* (track filters reuse .cal-filters / .cal-filter from the calendar) */
.post-feature { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; background: linear-gradient(135deg, var(--navy-700), var(--navy-850)); border: 1px solid var(--line-gold); border-radius: var(--radius); overflow: hidden; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.post-feature .pf-media { position: relative; min-height: 300px; overflow: hidden; background: var(--navy-850); }
.post-feature .pf-media img { width: 100%; height: 100%; object-fit: cover; }
.post-feature .pf-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(8,26,54,0.15), rgba(8,26,54,0.6)); }
.post-feature .pf-body { padding: clamp(1.9rem, 3.5vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.post-feature .flag { margin-bottom: 1.1rem; }
.post-feature h2 { font-size: clamp(1.65rem, 2.8vw, 2.5rem); line-height: 1.1; margin-bottom: 1rem; }
.post-feature .excerpt { color: var(--ink-soft); margin-bottom: 1.5rem; max-width: 52ch; }

.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--gap); }
.post-card { position: relative; display: flex; flex-direction: column; background: var(--navy-700); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 2.4vw, 2.1rem); transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.post-card:hover { transform: translateY(-4px); border-color: var(--line-gold); box-shadow: var(--glow-gold); }
.post-card.is-hidden { display: none; }
.post-cat { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.85rem; }
.post-card h3 { font-size: 1.3rem; line-height: 1.28; margin-bottom: 0.7rem; }
.post-card h3 a { position: relative; }
.post-card h3 a::after { content: ""; position: absolute; inset: 0; }
.post-card .excerpt { font-size: 0.96rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.post-meta { margin-top: auto; display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--ink-muted); }
.post-meta .avatar { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-gold); flex: none; }
.post-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-muted); flex: none; }

/* Newsletter signup */
.newsletter { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-700), var(--navy-850)); border: 1px solid var(--line-gold); border-radius: var(--radius); padding: clamp(2.2rem, 5vw, 3.8rem); text-align: center; }
.newsletter::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(201,169,110,0.14), transparent 60%); pointer-events: none; }
.newsletter > * { position: relative; }
.newsletter h2 { margin-bottom: 0.9rem; }
.newsletter p { max-width: 54ch; margin: 0 auto 1.9rem; color: var(--ink-soft); }
.newsletter-form { display: flex; gap: 0.8rem; max-width: 500px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input { flex: 1 1 230px; font-family: inherit; font-size: 1rem; color: var(--white); background: var(--navy-850); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.9em 1.1em; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.newsletter-form input::placeholder { color: #6f80a0; }
.newsletter-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.15); }
.newsletter .form-note { margin-top: 1.1rem; font-size: 0.82rem; color: var(--ink-muted); }

/* =================================================== ARTICLE ============== */
.article-wrap { max-width: 768px; margin-inline: auto; }
.article-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.article-head .post-cat { display: inline-block; margin-bottom: 1.1rem; }
.article-head h1 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; margin-bottom: 1.5rem; }
.article-head .standfirst { font-size: clamp(1.15rem, 1.5vw, 1.4rem); line-height: 1.5; color: var(--ink); font-style: italic; font-family: var(--font-display); max-width: 60ch; margin: 0 auto 1.8rem; }
.byline { display: inline-flex; align-items: center; gap: 0.8rem; }
.byline .avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-gold); }
.byline .who { text-align: left; }
.byline .name { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.byline .when { color: var(--ink-muted); font-size: 0.82rem; margin-top: 0.15rem; }
.byline .when span + span::before { content: "·"; margin: 0 0.5rem; }

.tldr { background: var(--navy-700); border: 1px solid var(--line-gold); border-radius: var(--radius); padding: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: clamp(2rem, 4vw, 3rem); }
.tldr .label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.7rem; display: flex; align-items: center; gap: 0.6rem; }
.tldr .label::before { content: ""; width: 22px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.tldr p { color: var(--ink); font-size: 1.02rem; margin: 0; }

.article-body { font-size: 1.12rem; line-height: 1.8; color: var(--ink); }
.article-body > * + * { margin-top: 1.45rem; }
.article-body h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.15; color: var(--white); margin-top: 2.8rem; margin-bottom: 0.2rem; }
.article-body h3 { font-size: 1.3rem; color: var(--white); margin-top: 2.1rem; }
.article-body p { color: var(--ink); }
.article-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-gold); transition: color 0.2s var(--ease); }
.article-body a:hover { color: var(--gold-bright); text-decoration-color: var(--gold); }
.article-body strong { color: var(--white); font-weight: 600; }
.article-body ul, .article-body ol { padding-left: 0; display: grid; gap: 0.7rem; }
.article-body li { color: var(--ink-soft); }
.article-body ul li { list-style: none; position: relative; padding-left: 1.4rem; }
.article-body ul li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }
.article-body ol { list-style: none; counter-reset: li; }
.article-body ol li { position: relative; padding-left: 2rem; counter-increment: li; }
.article-body ol li::before { content: counter(li); position: absolute; left: 0; top: 0; font-family: var(--font-display); color: var(--gold); font-size: 0.95rem; }
.article-body blockquote { margin: 2.4rem 0; text-align: center; font-family: var(--font-display); font-style: italic; font-size: clamp(1.35rem, 2.2vw, 1.75rem); line-height: 1.4; color: var(--white); }
.article-body blockquote::before { content: "\201C"; display: block; font-family: var(--font-display); font-size: 3.2rem; line-height: 0.4; color: var(--gold); margin-bottom: 0.7rem; }

.takeaways { background: var(--navy-850); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.2rem); margin: 2.8rem 0; }
.takeaways .label { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.1rem; }
.takeaways ul { display: grid; gap: 0.85rem; }
.takeaways li { list-style: none; position: relative; padding-left: 1.5rem; color: var(--ink-soft); }
.takeaways li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }

.article-faq { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.article-faq h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--white); margin-bottom: 0.5rem; }

.author-box { display: flex; gap: 1.3rem; align-items: flex-start; padding: clamp(1.5rem, 3vw, 2rem); background: var(--navy-700); border: 1px solid var(--line); border-radius: var(--radius); margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.author-box img { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-gold); flex: none; }
.author-box .name { font-family: var(--font-display); color: var(--white); font-size: 1.2rem; }
.author-box .role { color: var(--gold); font-size: 0.88rem; margin: 0.25rem 0 0.7rem; }
.author-box p { font-size: 0.96rem; color: var(--ink-soft); margin: 0; }

.article-share { display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--ink-muted); flex-wrap: wrap; }
.article-share a { color: var(--gold); font-weight: 600; }

.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap); }

@media (max-width: 980px) {
  .post-feature { grid-template-columns: 1fr; }
  .post-feature .pf-media { min-height: 220px; }
}
@media (max-width: 620px) {
  .newsletter-form { flex-direction: column; }
  .author-box { flex-direction: column; gap: 1rem; }
}

/* ============================================ REDUCED MOTION ============== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-reveal], [data-stagger] > *, .reveal-mask > span { opacity: 1 !important; transform: none !important; }
  .hero-photo { animation: none; }
}
