/* ============================================
   EA International Holdings — components
   Brand: Georgia + Calibri | Navy + Gold + Cream
   ============================================ */

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--black);
  border-bottom: 0.75px solid var(--gold);
  box-shadow: 0 1px 0 var(--gold) inset;
}
.site-header::before {
  content: ''; display: block; height: 0.75px;
  background: var(--gold); opacity: 0.5;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) 0;
  gap: var(--space-6);
}
.nav-logo {
  display: flex; align-items: center; gap: var(--space-3);
  color: #fff;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo-text {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.nav-logo-text small {
  display: block;
  font-family: 'Calibri', sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-top: 2px;
}
.nav-links {
  display: flex; gap: var(--space-6); align-items: center;
}
.nav-links a {
  font-family: 'Calibri', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 200ms var(--ease);
  padding: var(--space-2) 0;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1.5px; background: var(--gold);
}
.nav-cta {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  transition: background 200ms var(--ease);
  border: 1px solid var(--gold);
  text-indent: 0.12em;
}
.nav-cta:hover { background: transparent; color: var(--gold); }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--gold);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 960px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--black); border-bottom: 0.75px solid var(--gold);
    padding: var(--space-4) var(--gutter); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: var(--space-4) 0; border-bottom: 0.5px solid rgba(201,162,75,0.2); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-logo img { height: 40px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  font-family: 'Calibri', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 250ms var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-dark {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-dark:hover { background: var(--gold); color: var(--navy-deep); }

/* ---------- Hero (cover style — black bg like brand cover) ---------- */
.hero {
  background: var(--black);
  color: #fff;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(3rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: ''; position: absolute; left: var(--gutter); right: var(--gutter);
  height: 0.75px; background: var(--gold);
}
.hero::before { top: 32px; }
.hero::after { bottom: 32px; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-6);
  font-family: 'Calibri', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 0.75px; background: var(--gold);
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: var(--text-hero);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--space-6);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-kicker {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--gold);
  margin-bottom: var(--space-6);
  font-weight: 400;
}
.hero-lede {
  font-family: 'Calibri', sans-serif;
  font-size: var(--text-lg);
  color: var(--silver);
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: var(--space-8);
}
.hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.hero-actions .btn-primary:hover { color: var(--gold); }

.hero-logo {
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-4);
}
.hero-logo img {
  width: 100%;
  max-width: 480px;
  height: auto;
}

/* Cover pillar strip (four numbered pillars from brand deck) */
.pillar-strip {
  background: var(--black);
  color: #fff;
  padding: var(--space-10) 0 var(--space-16);
  border-bottom: 0.75px solid var(--gold);
}
.pillar-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 0.75px solid var(--gold);
}
@media (max-width: 800px) {
  .pillar-strip-grid { grid-template-columns: repeat(2, 1fr); }
}
.pillar-strip-item {
  padding: var(--space-6) var(--space-5);
  border-right: 0.5px solid rgba(201,162,75,0.3);
}
.pillar-strip-item:last-child { border-right: none; }
@media (max-width: 800px) {
  .pillar-strip-item:nth-child(2n) { border-right: none; }
  .pillar-strip-item:nth-child(-n+2) { border-bottom: 0.5px solid rgba(201,162,75,0.3); }
}
.pillar-strip-num {
  font-family: Georgia, serif;
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}
.pillar-strip-title {
  font-family: Georgia, serif;
  font-size: 1.0625rem;
  color: #fff;
  line-height: 1.25;
}

/* ---------- Section ---------- */
section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-head {
  max-width: 780px;
  margin-bottom: var(--space-12);
}
.section-head .eyebrow { margin-bottom: var(--space-4); }
.section-head h2 {
  font-family: Georgia, serif;
  font-size: var(--text-3xl);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--navy);
}
.section-head h2 em { font-style: italic; color: var(--gold); }
.section-head p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-top: var(--space-5);
  max-width: 62ch;
  line-height: 1.6;
}

/* Section head with dual gold hairline (brand motif) */
.section-head-band {
  border-top: 0.75px solid var(--gold);
  border-bottom: 0.75px solid var(--gold);
  padding: var(--space-6) 0;
  margin-bottom: var(--space-12);
}
.section-head-band .eyebrow { margin-bottom: var(--space-2); }
.section-head-band h2 {
  font-family: Georgia, serif;
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--navy);
}

/* ---------- Pillars — navy background section ---------- */
.pillars {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
}
.pillars .section-head h2 { color: #fff; }
.pillars .section-head p { color: var(--silver); }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201,162,75,0.35);
  border: 0.75px solid var(--gold);
}
@media (max-width: 800px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar {
  background: var(--navy-deep);
  padding: var(--space-10) var(--space-8) var(--space-8);
  position: relative;
  transition: background 300ms var(--ease);
}
.pillar:hover { background: var(--navy); }
.pillar-num {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-deep);
  opacity: 0.55;
  position: absolute;
  right: var(--space-6);
  top: var(--space-4);
  font-weight: 400;
}
.pillar-eyebrow {
  font-family: 'Calibri', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}
.pillar h3 {
  font-family: Georgia, serif;
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-4);
  color: #fff;
  max-width: 20ch;
  line-height: 1.2;
}
.pillar-body {
  font-size: var(--text-base);
  color: var(--silver);
  line-height: 1.65;
}

/* ---------- Callout cards (surface bg, gold left rule — brand motif) ---------- */
.callout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-4);
}
.callout {
  background: var(--surface-2);
  border-left: 2px solid var(--gold);
  padding: var(--space-6);
}
.callout-label {
  font-family: 'Calibri', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}
.callout h4 {
  font-family: Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: var(--space-2);
  line-height: 1.25;
}
.callout p {
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.6;
}

/* ---------- Feature (image + text) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.feature-reverse .feature-visual { order: 2; }
@media (max-width: 900px) {
  .feature, .feature-reverse { grid-template-columns: 1fr; }
  .feature-reverse .feature-visual { order: 0; }
}
.feature-visual {
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--navy-deep);
  border: 0.75px solid var(--gold);
}
.feature-visual img { width: 100%; height: 100%; object-fit: cover; }
.feature-text .eyebrow { margin-bottom: var(--space-3); }
.feature-text h2 {
  font-family: Georgia, serif;
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: var(--space-5);
}
.feature-text p {
  font-size: var(--text-base);
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

/* ---------- Strategic matrix table (brand motif) ---------- */
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  border: 0.75px solid var(--navy);
  font-size: 0.9375rem;
}
.matrix-table thead {
  background: var(--navy);
  color: #fff;
}
.matrix-table th {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-family: 'Calibri', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-right: 0.5px solid rgba(255,255,255,0.15);
}
.matrix-table th:last-child { border-right: none; }
.matrix-table td {
  padding: var(--space-4) var(--space-5);
  border-bottom: 0.5px solid var(--line);
  border-right: 0.5px solid var(--line);
  vertical-align: top;
  color: var(--ink);
  line-height: 1.55;
}
.matrix-table td:last-child { border-right: none; }
.matrix-table tbody tr:last-child td { border-bottom: none; }
.matrix-table tbody tr:hover { background: var(--surface-2); }
.matrix-table .pillar-cell {
  font-family: Georgia, serif;
  color: var(--navy);
  font-weight: 400;
}
@media (max-width: 700px) {
  .matrix-table thead { display: none; }
  .matrix-table tr { display: block; border-bottom: 0.75px solid var(--navy); padding: var(--space-4) 0; }
  .matrix-table td { display: block; border: none; padding: var(--space-2) var(--space-4); }
  .matrix-table td::before {
    content: attr(data-label) " · ";
    font-family: 'Calibri', sans-serif; font-size: 0.6875rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  }
}

/* ---------- Stats ---------- */
.stats {
  background: var(--surface-2);
  border-top: 0.75px solid var(--gold);
  border-bottom: 0.75px solid var(--gold);
  padding: var(--space-16) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
}
.stat { text-align: left; }
.stat-value {
  font-family: Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
  font-feature-settings: 'tnum';
}
.stat-value em { color: var(--gold); font-style: italic; }
.stat-label {
  margin-top: var(--space-3);
  font-family: 'Calibri', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-deep);
  max-width: 22ch;
  line-height: 1.4;
}

/* ---------- Leadership card ---------- */
.leadership {
  background: var(--surface-2);
  border-top: 0.75px solid var(--gold);
  border-bottom: 0.75px solid var(--gold);
}
.leader-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .leader-card { grid-template-columns: 1fr; }
}
.leader-portrait {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--navy-deep);
  max-width: 340px;
  border: 0.75px solid var(--gold);
}
.leader-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.leader-name {
  font-family: Georgia, serif;
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: var(--space-2);
}
.leader-title {
  font-family: 'Calibri', sans-serif;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.leader-bio { color: var(--ink); line-height: 1.7; margin-bottom: var(--space-4); font-size: var(--text-base); }

/* ---------- CTA band (dark, black — brand closing style) ---------- */
.cta-band {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  position: relative;
  overflow: hidden;
  border-top: 0.75px solid var(--gold);
  border-bottom: 0.75px solid var(--gold);
}
.cta-band-inner { position: relative; max-width: 780px; margin: 0 auto; }
.cta-band .eyebrow { margin-bottom: var(--space-4); }
.cta-band h2 {
  font-family: Georgia, serif;
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--space-6);
}
.cta-band h2 em { color: var(--gold); font-style: italic; }
.cta-band p {
  font-size: var(--text-lg);
  color: var(--silver);
  margin-bottom: var(--space-8);
  max-width: 60ch;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

/* ---------- Footer band (brand motif — three columns w/ gold hairline) ---------- */
.site-footer {
  background: var(--black);
  color: var(--silver);
  padding-top: var(--space-16);
  border-top: 0.75px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img { max-width: 220px; margin-bottom: var(--space-4); }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 34ch;
  color: var(--silver);
}
.footer-heading {
  font-family: 'Calibri', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-links a {
  font-size: 0.875rem;
  color: var(--silver);
  transition: color 200ms var(--ease);
}
.footer-links a:hover { color: var(--gold); }

/* Brand footer bar: three columns, gold hairline top */
.footer-bar {
  padding: var(--space-5) 0;
  border-top: 0.75px solid var(--gold);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-4);
  align-items: center;
  font-family: 'Calibri', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-deep);
}
.footer-bar > *:nth-child(1) { text-align: left; }
.footer-bar > *:nth-child(2) { text-align: center; color: var(--gold); }
.footer-bar > *:nth-child(3) { text-align: right; }
.footer-bar a { color: var(--silver-deep); }
.footer-bar a:hover { color: var(--gold); }
@media (max-width: 700px) {
  .footer-bar { grid-template-columns: 1fr; text-align: center !important; }
  .footer-bar > * { text-align: center !important; }
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: var(--space-4); right: var(--space-4); bottom: var(--space-4);
  max-width: 720px; margin: 0 auto;
  background: var(--black); color: #fff;
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 90;
  align-items: center; gap: var(--space-4); flex-wrap: wrap;
  border: 0.75px solid var(--gold);
}
.cookie-banner.show { display: flex; }
.cookie-banner p {
  flex: 1; min-width: 240px;
  font-size: 0.875rem;
  color: var(--silver);
  line-height: 1.55;
}
.cookie-banner p a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: var(--space-2); }
.cookie-btn {
  padding: var(--space-3) var(--space-5);
  font-family: 'Calibri', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 200ms var(--ease);
  border: 1px solid transparent;
}
.cookie-accept { background: var(--gold); color: var(--navy-deep); }
.cookie-accept:hover { background: transparent; color: var(--gold); border-color: var(--gold); }
.cookie-decline { background: transparent; color: var(--silver); border-color: rgba(183,189,196,0.4); }
.cookie-decline:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Page hero (section-title style: navy-deep bg + big numeral) ---------- */
.page-hero {
  background: var(--navy-deep);
  color: #fff;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
  border-bottom: 0.75px solid var(--gold);
}
.page-hero::before,
.page-hero::after {
  content: ''; position: absolute; left: var(--gutter); right: var(--gutter);
  height: 0.75px; background: var(--gold);
}
.page-hero::before { top: 32px; }
.page-hero::after { bottom: 32px; }
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
}
@media (max-width: 800px) { .page-hero-inner { grid-template-columns: 1fr; } }
.page-hero .eyebrow { margin-bottom: var(--space-3); color: var(--gold); }
.page-hero h1 {
  font-family: Georgia, serif;
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  max-width: 22ch;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero .page-kicker {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--gold);
  margin-top: var(--space-4);
}
.page-hero p {
  margin-top: var(--space-5);
  font-size: var(--text-lg);
  color: var(--silver);
  max-width: 62ch;
  line-height: 1.6;
}
.page-hero-numeral {
  font-family: Georgia, serif;
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--gold-deep);
  opacity: 0.6;
  line-height: 0.85;
  text-align: right;
  font-weight: 400;
}

/* ---------- Prose ---------- */
.prose {
  max-width: 72ch;
  color: var(--ink);
}
.prose h2 {
  font-family: Georgia, serif;
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--navy);
  margin: var(--space-12) 0 var(--space-2);
  padding-top: var(--space-4);
  border-top: 0.75px solid var(--gold);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 {
  font-family: 'Calibri', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin: var(--space-8) 0 var(--space-3);
}
.prose p, .prose li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: var(--space-4);
}
.prose ul, .prose ol { margin: 0 0 var(--space-5) var(--space-6); }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a {
  color: var(--navy); text-decoration: underline;
  text-decoration-color: var(--gold); text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.prose a:hover { color: var(--gold); }
.prose strong { font-weight: 700; color: var(--navy); }
.prose hr { border: none; border-top: 0.75px solid var(--gold); margin: var(--space-10) 0; }
.prose .lede {
  font-family: Georgia, serif;
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: var(--space-8);
  padding-left: var(--space-5);
  border-left: 2px solid var(--gold);
}
.prose blockquote {
  border-left: 2px solid var(--gold);
  padding-left: var(--space-5);
  margin: var(--space-6) 0;
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--navy);
}
.prose .callout-note {
  background: var(--surface-2);
  border-left: 2px solid var(--gold);
  padding: var(--space-5) var(--space-6);
  margin: var(--space-6) 0;
}
.prose .callout-note p:last-child { margin-bottom: 0; }

/* ---------- Timeline (bio) ---------- */
.timeline { border-left: 1.5px solid var(--gold); padding-left: var(--space-8); margin-top: var(--space-8); }
.timeline-item { position: relative; padding-bottom: var(--space-10); }
.timeline-item::before {
  content: ''; position: absolute; left: calc(-1 * var(--space-8) - 5px); top: 6px;
  width: 10px; height: 10px; background: var(--gold);
  box-shadow: 0 0 0 3px var(--surface);
}
.timeline-year {
  font-family: 'Calibri', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.timeline-title {
  font-family: Georgia, serif;
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--navy);
  margin: var(--space-2) 0 var(--space-3);
}
.timeline-body { color: var(--ink); line-height: 1.7; font-size: 0.9375rem; }

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 {
  font-family: 'Calibri', sans-serif; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--space-3); margin-top: var(--space-6);
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p, .contact-info a { color: var(--ink); font-size: 1rem; line-height: 1.6; }
.contact-info a:hover { color: var(--gold); }

.form-field {
  display: block;
  margin-bottom: var(--space-5);
}
.form-field label {
  display: block;
  font-family: 'Calibri', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: var(--space-2); color: var(--navy);
}
.form-field .req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--line-strong);
  background: #fff;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 200ms var(--ease);
  font-family: 'Calibri', sans-serif;
}
.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(201,162,75,0.15);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-consent {
  display: flex; gap: var(--space-3); align-items: flex-start;
  margin-bottom: var(--space-6);
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.55;
}
.form-consent input { margin-top: 4px; flex-shrink: 0; accent-color: var(--gold); }
.form-consent a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.form-note {
  font-size: 0.75rem; color: var(--silver-deep); margin-top: var(--space-4); line-height: 1.55;
}

/* ---------- Scroll reveal (progressive enhancement) ---------- */
/* Only hide elements after JS marks them .will-reveal, so content is visible if JS never runs */
.will-reveal.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.will-reveal.reveal.visible { opacity: 1; transform: translateY(0); }

/* Small utilities */
.text-center { text-align: center; }
.mt-8 { margin-top: var(--space-8); }
