/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--serif); color: var(--ink-900); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }
a { color: inherit; }

/* === TOKENS === */
:root {
  --navy-900: #061320;
  --navy-800: #0d1f33;
  --navy-700: #162b43;
  --navy-600: #243858;
  --blue-600: #1B6AD1;
  --blue-500: #2E80EE;
  --blue-400: #56A0F5;
  --blue-300: #8fc3ff;
  --paper: #f5f7fa;
  --paper-2: #e8ecf1;
  --line: #dde2e8;
  --ink-900: #061320;
  --ink-700: #2d3f52;
  --ink-500: #607080;
  --on-dark: rgba(255,255,255,0.92);
  --on-dark-muted: rgba(255,255,255,0.62);
  --serif: 'EB Garamond', Georgia, serif;
  --sans: 'Archivo', system-ui, sans-serif;
  --r-lg: 16px;
  --shadow-card: 0 2px 12px rgba(6,19,32,0.08);
  --shadow-lift: 0 10px 40px rgba(6,19,32,0.16);
  --shadow-md: 0 4px 24px rgba(6,19,32,0.10);
}

/* === LAYOUT === */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 8px rgba(6,19,32,.06);
}
.site-header .wrap { display: flex; align-items: center; gap: 28px; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 38px; object-fit: contain; }
.wordmark { font-family: var(--sans); font-weight: 800; font-size: 20px; color: var(--navy-900); letter-spacing: 0.04em; }
.main-nav { display: flex; gap: 2px; margin-left: auto; }
.main-nav a { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink-700); text-decoration: none; padding: 6px 14px; border-radius: 8px; transition: color .2s, background .2s; white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: var(--navy-900); background: rgba(6,19,32,.07); }
.header-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle { display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--ink-700); background: none; border: 1px solid var(--line); border-radius: 6px; padding: 5px 10px; cursor: pointer; transition: .2s; white-space: nowrap; }
.lang-toggle:hover { color: var(--navy-900); border-color: var(--ink-700); }
.lang-toggle .cur { color: var(--navy-900); }
.lang-toggle svg { width: 14px; height: 14px; stroke: var(--ink-500); flex-shrink: 0; }
.nav-toggle { display: none; align-items: center; gap: 6px; height: 40px; padding: 0 12px; border: none; background: none; cursor: pointer; border-radius: 8px; color: var(--ink-700); transition: background .2s; }
.nav-toggle:hover { background: rgba(6,19,32,.07); }
.nav-toggle-label { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--ink-700); }
.nav-toggle svg { width: 20px; height: 20px; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 14px; font-weight: 700; padding: 12px 22px; border-radius: 8px; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all .2s; background: none; line-height: 1; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--blue-500); color: #fff; border-color: var(--blue-500); }
.btn-primary:hover { background: var(--blue-600); border-color: var(--blue-600); }
.btn-outline { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }
.btn.on-dark { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.btn.on-dark:hover { border-color: #fff; color: #fff; }

/* === HERO === */
.hero { position: relative; overflow: hidden; min-height: 520px; display: flex; align-items: center; color: var(--on-dark); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-bg .ph { width: 100%; height: 100%; min-height: unset; background: var(--navy-700); }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(6,19,32,.6) 0%, rgba(6,19,32,.5) 40%, rgba(6,19,32,.75) 100%); }
.hero .wrap { position: relative; z-index: 2; padding-top: 48px; padding-bottom: 48px; width: 100%; }
.hero-centered .wrap { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero h1 { font-family: var(--serif); font-size: 72px; font-weight: 700; color: #fff; line-height: 1.08; margin-bottom: 20px; }
.hero-lead { font-family: var(--serif); font-size: 20px; color: var(--on-dark-muted); line-height: 1.65; max-width: 680px; margin-bottom: 16px; }
.breadcrumb { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .4; }

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; }
h2 { font-size: 46px; font-weight: 700; color: var(--ink-900); }
h3 { font-size: 26px; font-weight: 600; color: var(--ink-900); }
p { font-family: var(--serif); }
.kicker { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-500); display: block; margin-bottom: 14px; }
.eyebrow { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--blue-500); display: block; margin-bottom: 14px; }
.lead { font-size: 18px; color: var(--ink-500); line-height: 1.65; font-family: var(--serif); }
.pill { display: inline-block; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-500); border: 1px solid rgba(46,128,238,.3); border-radius: 100px; padding: 5px 14px; margin-bottom: 20px; }

/* === SECTIONS === */
.section { padding: 96px 0; }
.section-navy { background: var(--navy-800); color: var(--on-dark); }
.section-navy h2 { color: #fff; }
.section-navy h3 { color: #fff; }
.section-navy .lead { color: var(--on-dark-muted); }
.section-navy .kicker, .section-navy .eyebrow { color: var(--blue-400); }
.section-light { background: var(--paper); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 16px; }
.stats-section { background: var(--paper); padding: 32px 0; }

/* === CARD GRID === */
.card-grid { display: grid; gap: 26px; }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }

/* === PHOTO CARD === */
.photo-card { border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.photo-card > img { display: block; width: 100%; height: 240px; object-fit: cover; flex-shrink: 0; }
.ph { flex: 1; min-height: 220px; background: linear-gradient(135deg, #c8d4de 0%, #a8b8c8 100%); display: grid; place-items: center; }
.ph-label { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 12px; font-weight: 600; color: rgba(6,19,32,.5); text-align: center; padding: 16px; line-height: 1.4; }
.ph-label svg { width: 20px; height: 20px; opacity: .5; flex-shrink: 0; }
.pc-body { padding: 24px 28px; }
.pc-body h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.pc-body p { font-size: 15.5px; color: var(--ink-500); line-height: 1.6; margin-bottom: 16px; font-family: var(--serif); }
.arrow-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-size: 13.5px; font-weight: 700; color: var(--blue-500); text-decoration: none; transition: gap .2s; }
.arrow-link:hover { gap: 10px; }
.arrow-link svg { width: 18px; height: 18px; }

/* === STATS === */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card { text-align: center; padding: 20px 16px; border-radius: var(--r-lg); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-card); }
.stat-card .num { font-family: var(--serif); font-size: 38px; font-weight: 700; color: var(--ink-900); line-height: 1; margin-bottom: 6px; }
.stat-card .lbl { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-500); }

/* === ABOUT (section-navy) === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-copy h2 { color: #fff; margin-bottom: 12px; }
.about-copy .about-sub { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--blue-400); margin-bottom: 22px; display: block; }
.about-copy p { font-size: 17px; color: var(--on-dark-muted); line-height: 1.7; margin-bottom: 18px; font-family: var(--serif); }
.about-cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.about-media { position: relative; }
.about-media > img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--r-lg); display: block; }
.about-media .ph { height: 480px; border-radius: var(--r-lg); }
.about-badge { position: absolute; bottom: -20px; left: -20px; background: #fff; border-radius: var(--r-lg); padding: 18px 22px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-lift); }
.bdg-icon { width: 40px; height: 40px; color: var(--blue-500); display: flex; align-items: center; }
.bdg-icon svg { width: 100%; height: 100%; }
.yr { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--ink-900); display: flex; flex-direction: column; }
.yr small { font-family: var(--sans); font-size: 11px; font-weight: 600; color: var(--ink-500); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; font-style: normal; }

/* === PARTNERS === */
.partners { background: var(--paper); }
.partners .wrap { text-align: center; padding-top: 64px; padding-bottom: 64px; }
.partners h2 { font-size: 38px; margin-bottom: 40px; }
.partner-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.plogo { display: flex; align-items: center; opacity: .75; transition: opacity .2s; }
.plogo:hover { opacity: 1; }
.plogo svg { height: 52px; width: auto; max-width: 180px; }
@media (max-width: 640px) {
  .partner-logos { gap: 28px 32px; }
  .plogo svg { height: 36px; max-width: 120px; }
}

/* === TICKS === */
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.ticks li { display: flex; gap: 14px; font-size: 17px; line-height: 1.5; color: var(--ink-700); font-family: var(--serif); }
.ticks li svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 3px; color: var(--blue-500); }
.section-navy .ticks li { color: var(--on-dark-muted); }
.section-navy .ticks li svg { color: var(--blue-400); }

/* === FOOTER === */
.footer { background: var(--navy-900); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-col.footer-brand .logo { margin-bottom: 18px; align-items: flex-start; }
.footer-brand .logo-img { height: 36px; object-fit: contain; }
.footer-brand p { font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 18px; font-style: normal; }
.footer-col h4 { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer-col a { display: block; font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,.65); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col .gap { height: 20px; }
.footer-info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.fi-item { display: flex; align-items: flex-start; gap: 10px; }
.fi-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; stroke: rgba(255,255,255,.35); }
.fi-item span, .fi-item a { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; line-height: 1.5; display: inline; margin-bottom: 0 !important; }
.fi-item a:hover { color: rgba(255,255,255,.85); }
.fsoc { display: inline-flex !important; align-items: center; gap: 8px; font-family: var(--sans); font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6) !important; text-decoration: none !important; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; padding: 8px 14px; transition: background .2s, color .2s, border-color .2s; margin-bottom: 0 !important; }
.fsoc:hover { background: rgba(255,255,255,.08) !important; color: #fff !important; border-color: rgba(255,255,255,.3) !important; }
.fsoc svg { width: 16px; height: 16px; fill: currentColor; }
.footer-map { display: flex; flex-direction: column; gap: 14px; }
.map-btn { display: inline-flex !important; align-items: center; gap: 6px; font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--blue-400) !important; text-decoration: none; margin-bottom: 0 !important; }
.map-btn:hover { color: var(--blue-300) !important; }
.map-btn svg { width: 16px; height: 16px; }
.footer-map iframe { border-radius: 12px; display: block; }
.footer-bottom { padding: 20px 0; }
.footer-bottom span, .footer-bottom p { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* === REVEAL ANIMATION === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: 16px; left: 16px; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  h2 { font-size: 34px; }
  .hero h1 { font-size: 44px; }
  .hero .wrap { padding-top: 32px; padding-bottom: 32px; }
  .hero-lead { font-size: 17px; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cols-2 { grid-template-columns: 1fr; }
  .main-nav { display: none; flex-direction: column; position: fixed; inset: 64px 0 0; background: var(--navy-900); padding: 24px 20px; gap: 4px; z-index: 99; overflow-y: auto; }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 18px; padding: 12px 16px; border-radius: 10px; }
  .header-right { margin-left: auto; }
  .nav-toggle { display: flex; }
  .nav-toggle-label { display: none; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: 1fr; }
}

/* === ROADMAP (A-Propos) === */
.roadmap { display: flex; align-items: flex-start; gap: 0; }
.rm-phase { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.rm-year { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--blue-600); text-transform: uppercase; }
.rm-bar { width: 3px; height: 48px; border-radius: 4px; }
.rm-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-card); padding: 28px 24px; width: 100%; border-top: 3px solid var(--blue-600); }
.rm-phase:nth-child(3) .rm-card { border-color: var(--navy-900); }
.rm-phase:nth-child(5) .rm-card { border-color: #1a3a5c; }
.rm-tag { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 10px; }
.rm-card h3 { font-size: 18px; margin-bottom: 14px; color: var(--navy-900); line-height: 1.3; }
.rm-card ul { padding-left: 18px; }
.rm-card li { font-family: var(--sans); font-size: 13.5px; color: var(--ink-700); line-height: 1.6; margin-bottom: 6px; }
.rm-connector { display: flex; align-items: center; padding-top: 120px; flex-shrink: 0; }
.rm-connector svg { width: 40px; height: 24px; }
@media (max-width: 900px) {
  .roadmap { flex-direction: column; gap: 24px; }
  .rm-connector { display: none; }
  .rm-bar { height: 24px; }
}

/* === OPERATING MODEL (A-Propos) === */
.om-grid { display: flex; flex-direction: column; gap: 32px; }
.om-level { background: var(--paper); border-radius: var(--r-lg); padding: 28px; }
.om-level-coe { background: var(--navy-900); }
.om-level-found { background: var(--navy-800); }
.om-level-label { font-family: var(--sans); font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 20px; }
.om-level-coe .om-level-label, .om-level-found .om-level-label { color: rgba(255,255,255,.4); }
.om-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.om-card { background: #fff; border-radius: 12px; padding: 20px 18px; }
.om-card-coe { background: rgba(255,255,255,.08); text-align: center; padding: 20px 14px; }
.om-level-coe .om-card h4 { color: rgba(255,255,255,.85); font-size: 14px; }
.om-icon { margin-bottom: 12px; }
.om-card h4 { font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--navy-900); margin-bottom: 6px; }
.om-card p { font-family: var(--sans); font-size: 12.5px; color: var(--ink-500); line-height: 1.5; }
.om-found-row { display: flex; flex-wrap: wrap; gap: 10px; }
.om-found-row span { font-family: var(--sans); font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.75); background: rgba(255,255,255,.1); border-radius: 20px; padding: 6px 14px; }
@media (max-width: 900px) {
  .om-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .om-cards { grid-template-columns: 1fr; }
}

/* === TEAM TABLE (A-Propos) === */
.team-table-wrap { overflow-x: auto; }
.team-table { width: 100%; border-collapse: collapse; }
.team-table th { font-family: var(--sans); font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-500); padding: 12px 20px; text-align: left; border-bottom: 2px solid var(--line); white-space: nowrap; }
.team-table td { font-family: var(--sans); font-size: 14px; color: var(--ink-700); padding: 18px 20px; border-bottom: 1px solid var(--line); line-height: 1.5; vertical-align: top; }
.team-table tr:last-child td { border-bottom: none; }
.team-table td:first-child { white-space: nowrap; }
.team-table tbody tr:hover td { background: var(--paper); }

/* === GOVERNANCE (A-Propos) === */
.gov-principles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.gov-card { background: var(--paper); border-radius: var(--r-lg); padding: 28px 24px; }
.gov-icon { color: var(--blue-600); margin-bottom: 16px; }
.gov-card h4 { font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--navy-900); margin-bottom: 10px; }
.gov-card p { font-family: var(--sans); font-size: 13.5px; color: var(--ink-700); line-height: 1.6; }
@media (max-width: 1024px) {
  .gov-principles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .gov-principles { grid-template-columns: 1fr; }
}
