/* ==========================================================================
   White Globe Initiative — Global Stylesheet
   ========================================================================== */

:root {
  --navy-950: #0d1f30;
  --navy-900: #12293f;
  --navy-800: #17324f;
  --navy-700: #1f4468;
  --navy-600: #2d5a86;
  --gold-600: #a97c2f;
  --gold-500: #c69b4b;
  --gold-400: #d8b877;
  --gold-100: #f3e6cb;
  --cream-50: #faf7f1;
  --cream-100: #f3ede1;
  --cream-200: #e9e0cf;
  --line: #e2dac8;
  --ink: #22282f;
  --ink-soft: #4b5158;
  --white: #ffffff;
  --green-600: #5f7a4f;
  --shadow-sm: 0 1px 3px rgba(13, 31, 48, 0.08);
  --shadow-md: 0 8px 24px rgba(13, 31, 48, 0.12);
  --shadow-lg: 0 20px 48px rgba(13, 31, 48, 0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --font-serif: Georgia, Cambria, "Times New Roman", Times, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container: 1180px;
}

:root[data-theme="dark"] {
  --cream-50: #0d1620;
  --cream-100: #121d29;
  --cream-200: #1a2836;
  --line: #263444;
  --ink: #eef2f6;
  --ink-soft: #b7c2cc;
  --white: #101b27;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.55);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --cream-50: #0d1620;
    --cream-100: #121d29;
    --cream-200: #1a2836;
    --line: #263444;
    --ink: #eef2f6;
    --ink-soft: #b7c2cc;
    --white: #101b27;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.55);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--cream-50);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; margin: 0 0 0.5em; color: var(--navy-900); font-weight: 700; }
:root[data-theme="dark"] h1, :root[data-theme="dark"] h2, :root[data-theme="dark"] h3, :root[data-theme="dark"] h4 { color: #f2ede0; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) h1, :root:not([data-theme="light"]) h2, :root:not([data-theme="light"]) h3, :root:not([data-theme="light"]) h4 { color: #f2ede0; }
}
p { margin: 0 0 1em; color: var(--ink-soft); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.9em;
}
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--alt { background: var(--cream-100); }
.section--navy { background: var(--navy-900); color: var(--cream-100); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #c9d3dc; }
.section-head { max-width: 720px; margin: 0 0 40px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.lede { font-size: 1.15rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold-500); color: var(--navy-950); }
.btn-primary:hover { background: var(--gold-400); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: inherit; border-color: currentColor; opacity: 0.85; }
.btn-ghost:hover { opacity: 1; background: rgba(255,255,255,0.06); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
:root[data-theme="dark"] .site-header, @media (prefers-color-scheme: dark) { }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-serif); font-size: 1.18rem; color: var(--navy-900); }
.brand-text span { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; }

.nav-desk { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; flex-shrink: 0; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 12px 11px;
  font-size: 0.89rem;
  font-weight: 600;
  color: var(--navy-800);
  border-radius: 8px;
  white-space: nowrap;
}
.nav-link:hover { background: var(--cream-200); }
.nav-item.active > .nav-link { color: var(--gold-600); }
.caret { font-size: 0.6rem; transition: transform 0.15s ease; opacity: 0.7; }
.nav-item:hover .caret { transform: rotate(180deg); }

.mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 300px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  display: grid;
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  translate: 0 6px;
  transition: opacity 0.16s ease, translate 0.16s ease, visibility 0.16s;
}
.mega.mega--wide { min-width: 460px; grid-template-columns: 1fr 1fr; }
.nav-item:hover .mega, .nav-item.mega-open .mega { opacity: 1; visibility: visible; translate: 0 0; }
.mega-group h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 10px;
}
.mega-group a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 500;
}
.mega-group a:hover { background: var(--cream-100); color: var(--navy-900); }
.mega-group a small { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.78rem; margin-top: 2px; }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center; justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  z-index: 501;
}
.nav-toggle .bars {
  position: relative;
  width: 22px; height: 16px;
  pointer-events: none;
}
.nav-toggle .bars span {
  position: absolute; left: 0;
  width: 100%; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav-toggle .bars span:nth-child(1) { top: 0; }
.nav-toggle .bars span:nth-child(2) { top: 7px; }
.nav-toggle .bars span:nth-child(3) { top: 14px; }
.nav-toggle.is-open .bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav-toggle.is-open .bars span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .bars span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

@media (max-width: 1200px) {
  .nav-desk, .header-cta .btn-primary { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-nav {
  position: fixed; inset: 0;
  background: var(--cream-50);
  z-index: 600;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px 60px;
  display: none;
  animation: mnavIn 0.2s ease;
}
.mobile-nav.open { display: block; }
@keyframes mnavIn { from { opacity: 0; } to { opacity: 1; } }
body.nav-open { overflow: hidden; }
.mnav-header {
  position: sticky; top: 0; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; margin-bottom: 4px;
  background: var(--cream-50);
  border-bottom: 1px solid var(--line);
}
.mnav-brand { display: flex; align-items: center; gap: 10px; }
.mnav-brand img { height: 34px; }
.mnav-brand strong { font-family: var(--font-serif); color: var(--navy-900); font-size: 1rem; }
.mnav-close {
  width: 44px; height: 44px;
  border-radius: 10px; border: 1px solid var(--line);
  background: var(--white); color: var(--navy-900);
  font-size: 1.15rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.mnav-close:active { background: var(--cream-200); }
.mnav-top { display: flex; justify-content: space-between; align-items: center; padding: 16px 6px; border-bottom: 1px solid var(--line); font-weight: 700; color: var(--navy-900); touch-action: manipulation; cursor: pointer; }
.mnav-top .chev { transition: transform 0.2s; }
.mnav-group.open .mnav-top .chev { transform: rotate(90deg); }
.mnav-panel { display: none; padding: 6px 6px 14px 14px; }
.mnav-group.open .mnav-panel { display: block; }
.mnav-panel a { display: block; padding: 12px 8px; color: var(--ink-soft); font-weight: 600; border-radius: 8px; touch-action: manipulation; }
.mnav-panel a:hover, .mnav-panel a:active { background: var(--cream-200); }
.mnav-panel .mnav-sub { padding-left: 12px; }
a.mnav-top { touch-action: manipulation; }

/* ---- Hero (home) ---- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
}
.hero video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.42;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,31,48,0.55) 0%, rgba(13,31,48,0.78) 60%, var(--navy-950) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.6rem); max-width: 820px; }
.hero p.lede { color: #d7dfe6; max-width: 600px; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-eyebrow { color: var(--gold-400); }

/* ---- Ticker ---- */
.ticker-wrap {
  background: var(--navy-800);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  white-space: nowrap;
}
.ticker { display: inline-flex; align-items: center; gap: 48px; padding: 12px 0; animation: ticker 34s linear infinite; }
.ticker span { display: inline-flex; align-items: center; gap: 10px; font-size: 0.86rem; font-weight: 600; }
.ticker b { color: var(--gold-400); font-family: var(--font-serif); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Switchboard grid (home) ---- */
.switchboard { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .switchboard { grid-template-columns: 1fr; } }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 8px; }
@media (max-width: 760px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.stat-card .num { font-family: var(--font-serif); font-size: 2rem; color: var(--navy-900); display: block; }
.stat-card .lbl { font-size: 0.82rem; color: var(--ink-soft); }
.stat-card .delta { font-size: 0.78rem; font-weight: 700; }
.delta.up { color: var(--green-600); }
.delta.down { color: #b3462c; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  height: 100%;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card .tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy-800); background: var(--gold-100); border-radius: 999px;
  padding: 4px 11px; margin-bottom: 12px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { font-size: 0.94rem; margin-bottom: 14px; }
.card-meta { font-size: 0.78rem; color: var(--ink-soft); display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--line); }
.card-foot a { font-weight: 700; font-size: 0.86rem; color: var(--navy-800); }
.card-foot a:hover { color: var(--gold-600); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .grid-3 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---- Page header (interior pages) ---- */
.page-hero {
  background: var(--navy-900);
  color: #fff;
  padding: 64px 0 46px;
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(1200px 400px at 85% -20%, rgba(198,155,75,0.25), transparent 60%);
}
.page-hero .container { position: relative; }
.breadcrumb { font-size: 0.82rem; color: var(--gold-400); margin-bottom: 14px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: #cdd6de; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.6rem); max-width: 780px; }
.page-hero p { color: #c9d3dc; max-width: 640px; font-size: 1.02rem; }

/* ---- Section nav pills (sub-navigation within a hub page) ---- */
.subnav { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 4px; }
.subnav a {
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 0.86rem; font-weight: 600; color: var(--navy-800); background: var(--white);
}
.subnav a:hover, .subnav a.current { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

/* ---- Tables (data listings) ---- */
.data-table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 0.92rem; }
.data-table th { text-align: left; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); padding: 10px 14px; border-bottom: 2px solid var(--line); }
.data-table td { padding: 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table tr:hover td { background: var(--cream-100); }
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.data-table .dl { white-space: nowrap; font-weight: 700; font-size: 0.82rem; color: var(--navy-800); }
.data-table .dl:hover { color: var(--gold-600); }
.pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; background: var(--gold-100); color: var(--navy-800); }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
.gallery-photo {
  aspect-ratio: 4/3; position: relative; display: flex; align-items: flex-end;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: #fff; padding: 16px;
}
.gallery-photo::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(198,155,75,0.35), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(255,255,255,0.12), transparent 40%);
}
.gallery-photo span { position: relative; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; }
.gallery-body { padding: 16px 18px; }
.gallery-body h3 { font-size: 1rem; margin-bottom: 6px; }
.gallery-body p { font-size: 0.86rem; margin-bottom: 12px; }
.gallery-links { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-links a { font-size: 0.78rem; font-weight: 700; padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line); }
.gallery-links a:hover { background: var(--cream-200); }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-bar button {
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--white);
  font-weight: 600; font-size: 0.85rem; cursor: pointer; color: var(--ink);
}
.filter-bar button.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
[data-gallery-item] { transition: opacity 0.2s ease; }
[data-gallery-item].hidden-item { display: none; }

/* ---- Team ---- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-avatar {
  width: 100%; aspect-ratio: 1; border-radius: 50%; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold-500), var(--navy-700));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700;
  max-width: 140px;
}
img.team-avatar {
  object-fit: cover; border: 3px solid var(--white); box-shadow: var(--shadow-sm);
}
.team-card { text-align: center; }
.team-card h3 { margin-bottom: 2px; font-size: 1.05rem; }
.team-card .role { color: var(--gold-600); font-weight: 700; font-size: 0.82rem; margin-bottom: 10px; display: block; }
.team-card p { font-size: 0.88rem; }

/* ---- Timeline / list rows ---- */
.list-row { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.list-row:first-child { padding-top: 0; }
.list-row:last-child { border-bottom: none; }
.list-row .idx { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold-500); flex-shrink: 0; width: 44px; }
.list-row h3 { font-size: 1.05rem; margin-bottom: 6px; }

/* ---- Forms ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 700; color: var(--navy-900); }
.field input, .field select, .field textarea {
  padding: 12px 14px; border-radius: 8px; border: 1px solid var(--line); background: var(--white);
  font-family: inherit; font-size: 0.94rem; color: var(--ink);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold-500); outline-offset: 1px; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 4px; }
.contact-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .contact-tiles { grid-template-columns: 1fr; } }

/* ---- Partner strip (homepage) ---- */
.partner-strip-section { padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-100); }
.partner-strip { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.partner-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); flex-shrink: 0;
}
.partner-logo { display: flex; align-items: center; }
.partner-logo img {
  height: 36px; width: auto; max-width: 140px; object-fit: contain;
  filter: grayscale(1); opacity: 0.65;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.partner-logo:hover img { opacity: 1; filter: grayscale(0); }
@media (max-width: 640px) {
  .partner-strip { gap: 26px; }
  .partner-label { width: 100%; text-align: center; margin-bottom: 2px; }
  .partner-logo img { height: 30px; }
}

/* ---- Coming soon empty state (shared) ---- */
.coming-soon {
  min-height: 60vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 60px 24px; gap: 22px;
}
.coming-soon h2 { font-size: 1.8rem; }

/* ---- Build animation (Elementary Education) ---- */
.build-anim { display: flex; align-items: flex-end; gap: 10px; height: 80px; }
.build-anim span {
  width: 16px; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  animation: buildRise 1.8s ease-in-out infinite;
}
.build-anim span:nth-child(1) { animation-delay: 0s; }
.build-anim span:nth-child(2) { animation-delay: 0.2s; }
.build-anim span:nth-child(3) { animation-delay: 0.4s; }
.build-anim span:nth-child(4) { animation-delay: 0.6s; }
@keyframes buildRise {
  0%, 100% { height: 18px; opacity: 0.45; }
  50% { height: 70px; opacity: 1; }
}

/* ---- Disclosure / transparency blocks ---- */
.disclosure-block { border-left: 4px solid var(--gold-500); background: var(--white); border-radius: 0 var(--radius) var(--radius) 0; padding: 22px 26px; margin-bottom: 18px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.disclosure-block h3 { font-size: 1.05rem; }

/* ---- CTA banner ---- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 6px; font-size: 1.5rem; }
.cta-banner p { color: #cdd6de; margin-bottom: 0; }

/* ---- Footer ---- */
.site-footer { background: var(--navy-950); color: #b9c3cc; padding: 64px 0 26px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 40px; flex-shrink: 0; }
.footer-brand-text { display: flex; flex-direction: column; gap: 3px; }
.footer-brand strong { font-family: var(--font-serif); color: #fff; font-size: 1.05rem; line-height: 1.2; }
.footer-address { font-size: 0.76rem; color: #8a97a3; letter-spacing: 0.01em; }
.site-footer h4 { color: #fff; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; font-family: var(--font-sans); }
.site-footer ul li { margin-bottom: 9px; }
.site-footer a { color: #b9c3cc; font-size: 0.88rem; }
.site-footer a:hover { color: var(--gold-400); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: rgba(255,255,255,0.08); }

/* ---- Misc ---- */
.divider { height: 1px; background: var(--line); margin: 48px 0; border: none; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.center-copy { max-width: 760px; margin: 0 auto; text-align: center; }
.icon-circle {
  width: 48px; height: 48px; border-radius: 50%; background: var(--gold-100); color: var(--navy-800);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 14px;
}
.quote-block { font-family: var(--font-serif); font-size: 1.3rem; color: var(--navy-900); font-style: italic; border-left: 3px solid var(--gold-500); padding-left: 22px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy-900); color: #fff; padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
