
/* --- Design Tokens --- */
:root {
  --navy:       #1B3A5C;
  --navy-dark:  #122840;
  --navy-light: #2A5080;
  --gold:       #C8A96E;
  --gold-light: #DFC08E;
  --slate:      #4A6380;
  --mist:       #EDF1F5;
  --white:      #FFFFFF;
  --text:       #1E2A38;
  --text-soft:  #4A5568;
  --text-muted: #718096;
  --border:     #D8E2EE;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-sm:  0 1px 4px rgba(27,58,92,.08);
  --shadow-md:  0 4px 20px rgba(27,58,92,.12);
  --shadow-lg:  0 12px 48px rgba(27,58,92,.16);

  --transition: .25s ease;
  --max-w:      1180px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--ff-display); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p, .section--navy .text-muted { color: rgba(255,255,255,.78); }
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-header { margin-bottom: 48px; }
.section-header p { color: var(--text-soft); max-width: 640px; margin-top: .75rem; }
.text-center { text-align: center; }
.text-center .section-header p { margin: .75rem auto 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: .9375rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: var(--shadow-md); }
.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo { width: 40px; height: 40px; flex-shrink: 0; }
.brand-name {
  font-family: var(--ff-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
  background: var(--mist);
}
.nav-cta {
  margin-left: 12px;
  padding: 8px 20px !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: var(--radius-md) !important;
}
.nav-cta:hover { background: var(--navy-light) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  z-index: 1100;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--mist); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--white);
  flex-direction: column;
  padding: 100px 32px 48px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--navy); }
.mobile-nav a:last-child { border-bottom: none; }
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .brand-name { color: var(--white); margin-bottom: 12px; }
.footer-desc { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--ff-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1600&q=80') center/cover no-repeat;
  opacity: .18;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--navy-dark) 40%, transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,.15);
  border: 1px solid rgba(200,169,110,.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.stat-item {}
.stat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: 4px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { color: var(--text-soft); font-size: .925rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; color: var(--navy-light); }
.feature-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mist);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 1.5rem;
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.125rem; }
.feature-card p { color: var(--text-soft); font-size: .9rem; }
.stat-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
}
.stat-card .num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .num span { color: var(--gold); }
.stat-card p { color: var(--text-soft); font-size: .875rem; }
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1200&q=70') center/cover no-repeat;
  opacity: .08;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 600px; font-size: 1.0625rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: .4; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text);
  font-size: .9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,92,.1);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.form-hint { font-size: .8rem; color: var(--text-muted); margin-top: 5px; }
.form-submit { margin-top: 8px; }
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}
.gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 0;
}
.person-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.person-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--border);
}
.person-card h4 { margin-bottom: 4px; }
.person-card .role { font-size: .85rem; color: var(--gold); font-weight: 600; }
.person-card p { font-size: .875rem; color: var(--text-soft); margin-top: 10px; }
.gen-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.gen-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  min-width: 600px;
}
.gen-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .85rem;
}
.gen-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}
.gen-table tr:last-child td { border-bottom: none; }
.gen-table tr:nth-child(even) td { background: var(--mist); }
.gen-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.gen-z { background: #E8F4FF; color: #1A6FAB; }
.gen-m { background: #E8F8EF; color: #1A7A4C; }
.gen-x { background: #FFF5E8; color: #A0600A; }
.gen-b { background: #F5E8FF; color: #7B1FA2; }
.donut-container { position: relative; width: 220px; height: 220px; flex-shrink: 0; }
.donut-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.donut-center .pct { font-family: var(--ff-display); font-size: 1.75rem; font-weight: 700; color: var(--navy); }
.donut-center .lbl { font-size: .75rem; color: var(--text-muted); }
.legend-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.legend-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.legend-label { font-size: .9rem; color: var(--text-soft); }
.legend-value { margin-left: auto; font-weight: 700; color: var(--text); font-size: .9rem; }
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy-dark);
  color: rgba(255,255,255,.85);
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: .9rem; min-width: 240px; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-accept {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .875rem;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.7);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: .875rem;
  transition: border-color var(--transition);
}
.cookie-decline:hover { border-color: rgba(255,255,255,.6); }
.policy-body h2 { font-size: 1.25rem; margin: 36px 0 12px; color: var(--navy); font-family: var(--ff-body); font-weight: 700; }
.policy-body h3 { font-size: 1.05rem; margin: 24px 0 8px; color: var(--text); font-family: var(--ff-body); font-weight: 600; }
.policy-body ul { margin: 12px 0 16px 20px; }
.policy-body ul li { list-style: disc; margin-bottom: 6px; font-size: .9375rem; color: var(--text-soft); }
.policy-body p { font-size: .9375rem; color: var(--text-soft); }
.policy-meta { font-size: .85rem; color: var(--text-muted); margin-bottom: 32px; }
.pull-quote {
  border-left: 4px solid var(--gold);
  padding: 20px 28px;
  background: var(--mist);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
}
.pull-quote p {
  font-family: var(--ff-display);
  font-size: 1.125rem;
  color: var(--navy);
  font-style: italic;
  margin: 0;
}
.pull-quote cite { display: block; margin-top: 8px; font-size: .85rem; color: var(--text-muted); font-style: normal; }
.progress-row { margin-bottom: 16px; }
.progress-meta { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: .875rem; }
.progress-meta span:first-child { color: var(--text-soft); }
.progress-meta span:last-child { font-weight: 700; color: var(--navy); }
.progress-track { height: 8px; background: var(--border); border-radius: 100px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 100px; background: var(--navy); transition: width 1s ease; }
.progress-fill.gold { background: var(--gold); }
.progress-fill.slate { background: var(--slate); }
.region-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.region-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow var(--transition);
}
.region-card:hover { box-shadow: var(--shadow-sm); }
.region-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--mist);
  color: var(--navy);
  flex-shrink: 0;
  font-size: 1.25rem;
}
.region-card h4 { font-size: .9rem; font-family: var(--ff-body); font-weight: 600; margin-bottom: 4px; }
.region-card p { font-size: .8rem; color: var(--text-muted); }
.notice-bar {
  background: #FEF3CD;
  border: 1px solid #F6CC6B;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: #856404;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 80vh; }
  .hero-stats { gap: 28px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  .cookie-inner { flex-direction: column; }
  .gen-table th, .gen-table td { padding: 10px 14px; font-size: .82rem; }
  .page-hero { padding: 52px 0 44px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn { padding: 11px 22px; }
}
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.color-gold { color: var(--gold); }
.color-muted { color: var(--text-muted); }
.fw-700 { font-weight: 700; }
.font-display { font-family: var(--ff-display); }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.rounded { border-radius: var(--radius-lg); }
.shadow { box-shadow: var(--shadow-md); }
.overflow-hidden { overflow: hidden; }
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  z-index: 9999;
  font-size: .875rem;
}
.skip-link:focus { top: 16px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
