:root {
  --ink: #0b1726;
  --navy: #102338;
  --navy-2: #172f49;
  --gold: #c79b48;
  --gold-2: #e0c277;
  --river: #206e83;
  --paper: #f7f4ee;
  --white: #ffffff;
  --muted: #617084;
  --line: rgba(16, 35, 56, 0.12);
  --shadow: 0 24px 70px rgba(11, 23, 38, 0.14);
  --radius: 22px;
  --max-width: 1180px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); }
h1, h2, h3, blockquote { margin: 0; line-height: 1.05; }
h1, h2, blockquote { font-family: Georgia, "Times New Roman", serif; letter-spacing: -0.035em; }
h1 { font-size: clamp(3rem, 7vw, 6.8rem); max-width: 980px; }
h2 { font-size: clamp(2rem, 4vw, 4rem); }
h3 { font-size: 1.15rem; }

.container { width: min(100% - 40px, var(--max-width)); margin-inline: auto; }
.narrow { max-width: 880px; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(199, 155, 72, 0.25), transparent 28rem),
    linear-gradient(135deg, var(--ink), var(--navy));
}
.section-dark p { color: rgba(255, 255, 255, 0.72); }
.section-muted { background: #edf0ef; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 238, 0.9);
  border-bottom: 1px solid var(--river);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.8rem; font-weight: 700; line-height: 0; }
.brand-logo {
  display: block;
  width: 108px;
  height: auto;
  border-radius: 14px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: -0.08em;
}
.brand-text { text-transform: uppercase; font-size: 0.76rem; letter-spacing: 0.14em; line-height: 1.25; }
.brand-text strong { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1.35rem; font-size: 0.94rem; font-weight: 700; }
.nav-links a { color: rgba(11, 23, 38, 0.74); }
.nav-links a:hover, .nav-links .active { color: var(--ink); }
.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta):focus-visible {
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--river);
  text-underline-offset: 0.35em;
}
.nav-cta {
  padding: 0.8rem 1.05rem;
  border: 1px solid rgba(199, 155, 72, 0.65);
  border-radius: 999px;
  color: var(--ink) !important;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  padding: 0.7rem;
}
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

.hero { padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(3rem, 7vw, 6rem); align-items: end; }
.hero-copy { display: grid; gap: 1.7rem; }
.hero-lede { max-width: 720px; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.5rem; }
.eyebrow {
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.78rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--ink); box-shadow: 0 14px 30px rgba(199, 155, 72, 0.25); }
.button-secondary { border: 1px solid rgba(255, 255, 255, 0.28); color: var(--white); }

.hero-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.card-kicker { margin-bottom: 1rem; color: var(--gold-2) !important; font-weight: 800; }
.metrics-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.metrics-list li { padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.metrics-list strong, .metrics-list span { display: block; }
.metrics-list strong { color: var(--white); }
.metrics-list span { color: rgba(255, 255, 255, 0.68); font-size: 0.94rem; margin-top: 0.25rem; }

.intro-band, .split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.intro-band p:last-child { font-size: 1.12rem; }
.section-heading { display: grid; gap: 0.85rem; max-width: 760px; margin-bottom: 2rem; }
.section-heading.light h2 { color: var(--white); }
.cards { display: grid; gap: 1.2rem; }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .profile-card, .sector-card {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(16, 35, 56, 0.06);
}
.card { display: grid; gap: 0.85rem; }
.card-number, .sector-icon { color: var(--gold); font-weight: 800; letter-spacing: 0.08em; }
.dark-cards .card { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.13); }
.dark-cards .card h3 { color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1.8rem; color: var(--navy); font-weight: 800; }
.light-link { color: var(--gold-2); }

.feature-list { display: grid; gap: 1.1rem; }
.feature-list > div { padding: 1.4rem 0 1.4rem 1.3rem; border-left: 3px solid var(--gold); }
.feature-list h3 { margin-bottom: 0.4rem; }
.rich-text { display: grid; gap: 1rem; }
.timeline { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: rgba(255, 255, 255, 0.55); }
.timeline li { display: grid; gap: 0.4rem; padding: 1.35rem; border-right: 1px solid var(--line); }
.timeline li:last-child { border-right: 0; }
.timeline strong { color: var(--navy); }
.timeline span { color: var(--muted); }

.cta-section { padding-top: 0; }
.cta-card {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: calc(var(--radius) + 10px);
  background: var(--white);
  box-shadow: var(--shadow);
}
.cta-card div { display: grid; gap: 0.7rem; max-width: 760px; }
.page-hero { padding: clamp(5rem, 10vw, 8rem) 0; }
.page-hero .narrow { display: grid; gap: 1.25rem; }
.page-hero p:last-child { font-size: clamp(1.05rem, 2vw, 1.28rem); }
.profile-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.profile-card { display: grid; gap: 0.8rem; }
.statement-band { text-align: center; }
.quote-mark { font-family: Georgia, "Times New Roman", serif; font-size: 6rem; line-height: 0.4; color: var(--gold-2) !important; }
blockquote { font-size: clamp(2rem, 5vw, 4.7rem); color: var(--white); }
.sector-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.sector-card { display: grid; gap: 0.9rem; }
.sector-card h2 { font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: -0.02em; font-size: clamp(1.35rem, 2vw, 1.8rem); }
.sector-card ul { margin: 0.3rem 0 0; padding-left: 1.15rem; color: var(--navy); }
.sector-card li + li { margin-top: 0.35rem; }
.sector-card.highlighted { background: linear-gradient(135deg, var(--navy), var(--ink)); color: var(--white); }
.sector-card.highlighted p, .sector-card.highlighted li { color: rgba(255, 255, 255, 0.74); }

.site-footer { padding: 3rem 0; color: rgba(255, 255, 255, 0.72); background: #07101d; }
.site-footer p { color: rgba(255, 255, 255, 0.64); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.6fr 1fr; gap: 2rem; align-items: start; }
.footer-grid > div { display: grid; gap: 0.7rem; }
.footer-grid a:hover { color: var(--gold-2); }
.footer-title { font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.78rem; color: var(--gold-2); }
.small-print { font-size: 0.82rem; }

@media (max-width: 900px) {
  .hero-grid, .intro-band, .split, .footer-grid { grid-template-columns: 1fr; }
  .three-col, .profile-grid, .timeline { grid-template-columns: 1fr 1fr; }
  .hero-card { max-width: 520px; }
  .cta-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max-width)); }
  .nav { min-height: 72px; }
  .brand-logo { width: 86px; }
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    inset: 72px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.75rem; }
  .nav-cta { text-align: center; }
  .hero { padding-top: 4rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .three-col, .profile-grid, .timeline, .sector-grid { grid-template-columns: 1fr; }
  .timeline li { border-right: 0; border-bottom: 1px solid var(--line); }
  .timeline li:last-child { border-bottom: 0; }
}
