/* ==========================================================================
   Kingsley Group — site stylesheet
   Palette per brand brief: navy #14213F, antique gold #B79A5B, ivory #F7F4EC.
   Display: EB Garamond. Body: Manrope. Both self-hosted (fonts.css).
   ========================================================================== */

:root {
  --navy: #14213F;
  --navy-2: #0E1830;
  --navy-3: #1E2F5A;
  --gold: #B79A5B;
  --gold-2: #D6C08C;      /* lighter gold for text on navy */
  --gold-dim: #8F7642;    /* darker gold for text on ivory (AA contrast) */
  --ivory: #F7F4EC;
  --ivory-2: #FCFAF5;
  --sand: #EEE8DA;
  --ink: #1A1F2E;
  --muted: #545B72;
  --rule: rgba(20, 33, 63, 0.14);
  --rule-strong: rgba(20, 33, 63, 0.28);
  --rule-dark: rgba(247, 244, 236, 0.16);
  --serif: "EB Garamond", Garamond, "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --max: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.nav-open { overflow: hidden; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.section--navy :focus-visible, .site-footer :focus-visible { outline-color: var(--gold-2); }

.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 1000;
  background: var(--gold); color: var(--navy); padding: 10px 18px; text-decoration: none; font-weight: 600;
}
.skip-link:focus { left: 12px; }

.container { width: min(var(--max), 100%); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { width: min(820px, 100%); }
.container--prose { width: min(760px, 100%); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; color: var(--navy); margin: 0; line-height: 1.12; letter-spacing: -0.005em; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.3rem); line-height: 1.06; }
h2 { font-size: clamp(1.95rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }
em, .accent { font-style: italic; }
h1 em, h2 em { color: var(--gold-dim); }
.section--navy h1 em, .section--navy h2 em, .hero h1 em, .page-hero h1 em { color: var(--gold-2); }
.eyebrow {
  display: block; font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 18px;
}
.section--navy .eyebrow, .hero .eyebrow, .page-hero .eyebrow, .article-hero .eyebrow { color: var(--gold-2); }
.lede { font-family: var(--serif); font-size: clamp(1.2rem, 1.6vw, 1.4rem); line-height: 1.5; color: var(--navy); }
.section--navy .lede { color: rgba(247, 244, 236, 0.86); }
.muted { color: var(--muted); }
.small { font-size: 0.88rem; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 18px; color: var(--muted); }
.section--navy .section-head p { color: rgba(247, 244, 236, 0.78); }
.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }
.rule--gold { width: 56px; border-top: 2px solid var(--gold); margin: 22px 0 0; }
.section-head--center .rule--gold { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 15px 28px; text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
  line-height: 1.2; text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn--navy { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-3); border-color: var(--navy-3); }
.btn--gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--rule-strong); }
.btn--outline:hover { border-color: var(--navy); }
.btn--outline-ivory { background: transparent; color: var(--ivory); border-color: rgba(247, 244, 236, 0.45); }
.btn--outline-ivory:hover { border-color: var(--ivory); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }
.text-link {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 3px;
}
.text-link:hover { color: var(--gold-dim); }
.section--navy .text-link { color: var(--ivory); }
.section--navy .text-link:hover { color: var(--gold-2); }
.inline-link { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.inline-link:hover { color: var(--gold-dim); }
.section--navy .inline-link:hover { color: var(--gold-2); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ivory);
  border-top: 3px solid var(--gold); border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(20, 33, 63, 0.08); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); width: 100%; max-width: none; padding-inline: clamp(20px, 2.5vw, 40px); }
.brand { display: block; flex: 0 0 auto; }
.brand img { height: 42px; width: auto; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav__list { list-style: none; display: flex; align-items: center; gap: 10px; }
.nav__list a {
  display: block; padding: 10px 12px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); text-decoration: none; position: relative; white-space: nowrap;
}
.nav__list a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav__list a:hover::after, .nav__list a[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { padding: 12px 20px; font-size: 0.68rem; }
.menu-toggle {
  display: none; align-items: center; gap: 10px; background: none; border: 1px solid var(--rule-strong);
  color: var(--navy); font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 10px 14px; cursor: pointer;
}
.menu-toggle__bars { position: relative; width: 18px; height: 1px; background: currentColor; display: block; }
.menu-toggle__bars::before, .menu-toggle__bars::after { content: ""; position: absolute; left: 0; width: 18px; height: 1px; background: currentColor; }
.menu-toggle__bars::before { top: -6px; } .menu-toggle__bars::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after { top: 0; transform: rotate(-45deg); }
.mobile-nav { position: fixed; inset: calc(var(--header-h) + 4px) 0 0 0; background: var(--navy); z-index: 99; overflow-y: auto; padding: 28px var(--gutter) 48px; }
.mobile-nav[hidden] { display: none; }
.mobile-nav ul { list-style: none; margin-bottom: 28px; }
.mobile-nav li { border-bottom: 1px solid var(--rule-dark); }
.mobile-nav ul a {
  display: block; padding: 18px 4px; color: var(--ivory); text-decoration: none;
  font-family: var(--serif); font-size: 1.5rem;
}
.mobile-nav ul a[aria-current="page"] { color: var(--gold-2); }
.mobile-nav .btn { width: 100%; }

@media (max-width: 1360px) {
  .nav { gap: 22px; }
  .nav__list { gap: 2px; }
  .nav__list a { padding: 10px 9px; font-size: 0.68rem; letter-spacing: 0.14em; }
  .nav__list a::after { left: 9px; right: 9px; }
}
@media (max-width: 1199px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 1023px) {
  :root { --header-h: 72px; }
  .brand img { height: 36px; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(44px, 6vw, 80px); }
.section--sand { background: var(--sand); }
.section--white { background: var(--ivory-2); }
.section--navy { background: var(--navy); color: rgba(247, 244, 236, 0.86); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--ivory); }
.section--navy p { color: rgba(247, 244, 236, 0.82); }
.section--navy .muted { color: rgba(247, 244, 236, 0.66); }
.section--bordered { border-top: 1px solid var(--rule); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; overflow: hidden; background: var(--navy); color: var(--ivory);
  padding: clamp(72px, 10vw, 128px) 0 0; text-align: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(183, 154, 91, 0.18), transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 100%, rgba(30, 47, 90, 0.9), transparent 70%);
}
.hero__mark {
  position: absolute; left: 50%; top: 34%; width: min(520px, 90vw); transform: translate(-50%, -50%);
  opacity: 0.05; pointer-events: none; user-select: none;
}
.hero__inner { position: relative; width: min(880px, 100%); margin-inline: auto; padding-inline: var(--gutter); }
.hero h1 { color: var(--ivory); }
.hero .lede { margin: 26px auto 0; max-width: 620px; color: rgba(247, 244, 236, 0.84); }
.hero .btn-row { margin-top: 38px; }
.hero__media { position: relative; margin-top: clamp(48px, 7vw, 88px); }
.hero__media .container { position: relative; z-index: 1; }
.hero__media::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 45%; background: var(--ivory); }
.hero__note { margin-top: 22px; font-size: 0.8rem; letter-spacing: 0.04em; color: rgba(247, 244, 236, 0.6); }

/* Page hero (inner pages) */
.page-hero { background: var(--navy); color: var(--ivory); padding-block: clamp(64px, 9vw, 112px); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 100% 0%, rgba(183, 154, 91, 0.16), transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--ivory); max-width: 820px; }
.page-hero .lede { margin-top: 24px; max-width: 640px; color: rgba(247, 244, 236, 0.84); }
.page-hero--split .container { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.page-hero .btn-row { margin-top: 32px; }
@media (max-width: 860px) { .page-hero--split .container { grid-template-columns: 1fr; } }

/* ---------- Media & placeholders ---------- */
.media { margin: 0; aspect-ratio: var(--ratio, 3 / 2); width: 100%; overflow: hidden; background: var(--navy-2); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.ph {
  position: relative; display: flex; align-items: flex-end;
  background:
    linear-gradient(135deg, rgba(183, 154, 91, 0.16), transparent 55%),
    linear-gradient(180deg, var(--navy-3), var(--navy-2));
  outline: 1px solid rgba(183, 154, 91, 0.35); outline-offset: -10px;
}
.ph::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.16;
  background: url("../img/mark-gold.png") center / auto 46% no-repeat;
}
.ph__label {
  position: relative; margin: 26px; padding: 10px 14px; background: rgba(14, 24, 48, 0.72);
  font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.06em; color: var(--gold-2); line-height: 1.4;
  display: inline-flex; flex-direction: column; gap: 2px; max-width: calc(100% - 52px);
}
.ph__tag { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(247, 244, 236, 0.6); }
.media--framed { box-shadow: 0 30px 60px -30px rgba(14, 24, 48, 0.55); }

/* ---------- Layout helpers ---------- */
.grid { display: grid; gap: clamp(24px, 3vw, 40px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 7vw, 96px); align-items: center; }
.split--text-wide { grid-template-columns: 1.2fr 0.8fr; }
.split--media-wide { grid-template-columns: 0.85fr 1.15fr; }
.split--top { align-items: start; }
.split > .media { width: 100%; }
@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split, .split--text-wide, .split--media-wide { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ---------- Cards ---------- */
.cards { display: grid; gap: 0; border: 1px solid var(--rule); background: var(--ivory-2); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card { padding: clamp(26px, 3vw, 40px); border-right: 1px solid var(--rule); }
.card:last-child { border-right: 0; }
.card__num { font-family: var(--serif); font-size: 1.2rem; color: var(--gold-dim); letter-spacing: 0.05em; margin-bottom: 18px; display: block; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.97rem; }
.card--link { text-decoration: none; display: block; transition: background 0.25s var(--ease); }
.card--link:hover { background: var(--sand); }
.card .text-link { margin-top: 18px; display: inline-block; }
.section--navy .cards { border-color: var(--rule-dark); background: rgba(255, 255, 255, 0.03); }
.section--navy .card { border-right-color: var(--rule-dark); }
.section--navy .card p { color: rgba(247, 244, 236, 0.74); }
.section--navy .card__num { color: var(--gold-2); }
@media (max-width: 960px) {
  .cards--3, .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .cards--3 .card:nth-child(2n), .cards--4 .card:nth-child(2n) { border-right: 0; }
  .cards--3 .card:nth-child(-n+2), .cards--4 .card:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .cards--3 .card:nth-child(3) { border-right: 0; }
  .cards--4 .card:nth-child(3) { border-bottom: 1px solid var(--rule); }
}
@media (max-width: 600px) {
  .cards--2, .cards--3, .cards--4 { grid-template-columns: 1fr; }
  .card { border-right: 0 !important; border-bottom: 1px solid var(--rule); }
  .card:last-child { border-bottom: 0 !important; }
}

/* Feature list (advantages) */
.features { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
.features li { padding-top: 22px; border-top: 1px solid var(--gold); }
.features h3 { margin-bottom: 12px; }
.features p { color: var(--muted); font-size: 0.97rem; }
.section--navy .features li { border-top-color: rgba(183, 154, 91, 0.6); }
.section--navy .features p { color: rgba(247, 244, 236, 0.78); }
@media (max-width: 860px) { .features { grid-template-columns: 1fr; } }

/* Programs strip */
.programs { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.program { display: flex; flex-direction: column; min-height: 300px; padding: clamp(26px, 3vw, 40px); text-decoration: none; border: 1px solid var(--rule); background: var(--ivory-2); transition: border-color 0.25s var(--ease), transform 0.25s var(--ease); }
.program:hover { border-color: var(--gold); transform: translateY(-2px); }
.program--primary { background: var(--navy); color: var(--ivory); border-color: var(--navy); grid-row: span 2; }
.program--primary h3, .program--primary p { color: var(--ivory); }
.program.program--primary p { color: rgba(247, 244, 236, 0.78); }
.program--primary:hover { border-color: var(--gold); }
.program__kicker { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dim); font-weight: 600; margin-bottom: 14px; display: block; }
.program--primary .program__kicker { color: var(--gold-2); }
.program h3 { margin-bottom: 10px; }
.program p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }
.program__foot { margin-top: auto; }
.program--primary .text-link { color: var(--ivory); }
@media (max-width: 960px) { .programs { grid-template-columns: 1fr 1fr; } .program--primary { grid-column: span 2; grid-row: auto; min-height: 260px; } }
@media (max-width: 600px) { .programs { grid-template-columns: 1fr; } .program--primary { grid-column: auto; } .program { min-height: 0; } }

/* ---------- Journey steps ---------- */
.steps { list-style: none; counter-reset: step; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.steps::before { content: ""; position: absolute; left: 0; right: 0; top: 22px; height: 1px; background: var(--rule-strong); }
.section--navy .steps::before { background: var(--rule-dark); }
.step { position: relative; padding: 0 28px 0 0; }
.step__num {
  position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gold); background: var(--ivory);
  font-family: var(--serif); font-size: 1.15rem; color: var(--navy); margin-bottom: 22px;
}
.section--navy .step__num { background: var(--navy); color: var(--gold-2); }
.section--sand .step__num { background: var(--sand); }
.step h3 { font-size: 1.28rem; margin-bottom: 10px; }
.step p { font-size: 0.93rem; color: var(--muted); }
.step__form { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dim); font-weight: 600; display: block; margin-top: 10px; }
.section--navy .step__form { color: var(--gold-2); }
.steps--vertical { grid-template-columns: 1fr; }
.steps--vertical::before { top: 0; bottom: 0; left: 22px; right: auto; width: 1px; height: auto; }
.steps--vertical .step { display: grid; grid-template-columns: 44px 1fr; gap: 22px; padding: 0 0 32px; }
.steps--vertical .step:last-child { padding-bottom: 0; }
.steps--vertical .step__num { margin-bottom: 0; }
@media (max-width: 1023px) {
  .steps { grid-template-columns: 1fr; gap: 0; }
  .steps::before { top: 0; bottom: 0; left: 22px; right: auto; width: 1px; height: auto; }
  .step { display: grid; grid-template-columns: 44px 1fr; gap: 22px; padding: 0 0 36px; }
  .step:last-child { padding-bottom: 0; }
  .step__num { margin-bottom: 0; }
}

/* ---------- Facts table ---------- */
.facts { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.facts th, .facts td { text-align: left; vertical-align: top; padding: 18px 0; border-bottom: 1px solid var(--rule); }
.facts th { width: 34%; font-family: var(--sans); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dim); padding-right: 24px; }
.facts td { color: var(--ink); }
.facts tr:last-child th, .facts tr:last-child td { border-bottom: 0; }
.section--navy .facts th { color: var(--gold-2); }
.section--navy .facts td { color: rgba(247, 244, 236, 0.9); }
.section--navy .facts th, .section--navy .facts td { border-bottom-color: var(--rule-dark); }
.table-wrap { overflow-x: auto; }
@media (max-width: 600px) {
  .facts th, .facts td { display: block; width: auto; padding: 0; border: 0; }
  .facts th { padding-top: 18px; padding-bottom: 6px; }
  .facts td { padding-bottom: 18px; border-bottom: 1px solid var(--rule); }
  .section--navy .facts td { border-bottom-color: var(--rule-dark); }
}

/* ---------- Notices ---------- */
.notice {
  border-left: 2px solid var(--gold); padding: 14px 20px; background: rgba(183, 154, 91, 0.08);
  font-size: 0.9rem; color: var(--muted);
}
.section--navy .notice { background: rgba(183, 154, 91, 0.1); color: rgba(247, 244, 236, 0.78); }
.section--navy .notice p { color: rgba(247, 244, 236, 0.78); }
.notice--tight { margin-top: 24px; }
.disclaimer { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }
.disclaimer p + p { margin-top: 10px; }
.disclaimer strong { color: var(--navy); font-weight: 600; }

/* ---------- Prose (articles & long pages) ---------- */
.prose { font-size: 1.06rem; line-height: 1.78; }
.prose > * + * { margin-top: 1.2em; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-top: 2.2em; margin-bottom: 0.5em; }
.prose h3 { font-size: 1.35rem; margin-top: 1.8em; margin-bottom: 0.4em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: 0.5em; }
.prose a { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-dim); }
.prose blockquote { margin: 1.6em 0; padding: 0 0 0 22px; border-left: 2px solid var(--gold); font-family: var(--serif); font-size: 1.3rem; line-height: 1.45; color: var(--navy); }
.prose .notice { margin-top: 1.6em; }
.prose table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.prose th, .prose td { text-align: left; padding: 12px 14px 12px 0; border-bottom: 1px solid var(--rule); vertical-align: top; }
.prose th { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dim); font-weight: 600; }

/* ---------- Article ---------- */
.article-hero { background: var(--navy); color: var(--ivory); padding-block: clamp(56px, 8vw, 96px); }
.article-hero h1 { color: var(--ivory); font-size: clamp(2.1rem, 4.4vw, 3.4rem); max-width: 860px; }
.article-hero .lede { margin-top: 22px; max-width: 700px; color: rgba(247, 244, 236, 0.82); }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--gold-2); margin-top: 26px; }
.article-meta span { display: inline-flex; gap: 8px; align-items: center; }
.article-current { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; padding: 16px 0; border-bottom: 1px solid var(--rule); font-size: 0.86rem; color: var(--muted); margin-bottom: clamp(36px, 5vw, 56px); }
.article-current strong { color: var(--navy); font-weight: 600; }
.article-body .media { margin: 0 0 clamp(36px, 5vw, 56px); }
.article-footer { margin-top: clamp(40px, 6vw, 72px); padding-top: 28px; border-top: 1px solid var(--rule); }
.article-footer h3 { font-size: 1.1rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 12px; }
.sources { list-style: none; font-size: 0.9rem; color: var(--muted); }
.sources li { padding: 8px 0; border-bottom: 1px solid var(--rule); }
.sources li:last-child { border-bottom: 0; }
.sources a { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }

/* Insights index cards */
.posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 48px); }
.post { text-decoration: none; display: block; }
.post .media { margin-bottom: 20px; transition: transform 0.35s var(--ease); }
.post:hover .media { transform: translateY(-3px); }
.post__meta { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--gold-dim); margin-bottom: 10px; display: flex; gap: 14px; flex-wrap: wrap; }
.post h3 { margin-bottom: 10px; }
.post p { color: var(--muted); font-size: 0.97rem; }
.post__flag { color: #8A5A2B; }
.section--navy .post__meta { color: var(--gold-2); }
.section--navy .post p { color: rgba(247, 244, 236, 0.74); }
@media (max-width: 760px) { .posts { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form-panel { background: var(--ivory-2); border: 1px solid var(--rule); padding: clamp(26px, 4vw, 44px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); }
.form-field .opt { color: var(--muted); font-weight: 400; letter-spacing: 0.04em; text-transform: none; }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: var(--ivory);
  border: 1px solid var(--rule-strong); padding: 13px 14px; width: 100%; border-radius: 0;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(183, 154, 91, 0.2); }
.form-actions { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 18px; }
.form-status { margin-top: 18px; padding: 14px 18px; font-size: 0.95rem; border-left: 2px solid var(--gold); background: rgba(183, 154, 91, 0.1); }
.form-status--err { border-left-color: #9A3B3B; background: rgba(154, 59, 59, 0.08); }
/* Honeypot: kept off-screen, never display:none (bots skip hidden inputs) */
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-2); color: rgba(247, 244, 236, 0.78); padding: clamp(56px, 7vw, 88px) 0 40px; border-top: 3px solid var(--gold); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 44px; border-bottom: 1px solid var(--rule-dark); }
.footer__brand img { width: 220px; height: auto; margin-bottom: 20px; }
.footer__assoc { font-size: 0.88rem; max-width: 320px; color: rgba(247, 244, 236, 0.62); }
.footer__h { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; margin-bottom: 18px; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 9px; font-size: 0.92rem; }
.footer__col a { color: rgba(247, 244, 236, 0.82); text-decoration: none; }
.footer__col a:hover { color: var(--gold-2); }
.footer__p { font-size: 0.92rem; color: rgba(247, 244, 236, 0.72); }
.footer__p a { color: var(--ivory); text-decoration: underline; text-decoration-color: rgba(183, 154, 91, 0.6); text-underline-offset: 3px; }
.footer__legal { padding-top: 30px; font-size: 0.8rem; line-height: 1.65; color: rgba(247, 244, 236, 0.58); max-width: 980px; }
.footer__copy { margin-top: 14px; }
@media (max-width: 960px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn:hover, .program:hover, .post:hover .media { transform: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Misc ---------- */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat { padding: 22px 0; border-top: 1px solid var(--rule); }
.stat__k { font-family: var(--serif); font-size: 1.7rem; color: var(--navy); line-height: 1.1; }
.stat__v { font-size: 0.86rem; color: var(--muted); margin-top: 6px; }
.section--navy .stat { border-top-color: var(--rule-dark); }
.section--navy .stat__k { color: var(--ivory); }
.section--navy .stat__v { color: rgba(247, 244, 236, 0.66); }
@media (max-width: 700px) { .stat-row { grid-template-columns: 1fr; gap: 0; } }
.cta-band { text-align: center; }
.cta-band h2 { max-width: 760px; margin-inline: auto; }
.cta-band p { max-width: 560px; margin: 20px auto 0; }
.cta-band .btn-row { margin-top: 34px; }
.breadcrumb { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--gold-2); margin-bottom: 22px; }
.breadcrumb a { text-decoration: none; color: inherit; }
.breadcrumb a:hover { text-decoration: underline; }
.definitions { margin: 0; }
.definition { display: grid; grid-template-columns: 220px 1fr; gap: 12px 32px; padding: 22px 0; border-top: 1px solid var(--rule); }
.definitions .definition:last-child { border-bottom: 1px solid var(--rule); }
.definition dt { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); }
.definition dd { margin: 0; color: var(--muted); font-size: 0.97rem; }
@media (max-width: 640px) { .definition { grid-template-columns: 1fr; gap: 6px; } }
.aside-box { background: var(--ivory-2); border: 1px solid var(--rule); padding: clamp(24px, 3vw, 36px); }
.aside-box h3 { font-size: 1.3rem; margin-bottom: 12px; }
.aside-box p { font-size: 0.95rem; color: var(--muted); }
.aside-box .btn { margin-top: 18px; }
.section--navy .aside-box { background: rgba(255, 255, 255, 0.04); border-color: var(--rule-dark); }
.section--navy .aside-box p { color: rgba(247, 244, 236, 0.74); }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 40px; }
.mb-2 { margin-bottom: 24px; }
