:root {
  --ink: #10192B;
  --ink-soft: #4A5875;
  --navy: #0B2545;
  --navy-800: #142F52;
  --navy-900: #081A34;
  --gold: #A8811E;
  --gold-bright: #C9A227;
  --gold-soft: #D8B94A;
  --paper: #F3F4F7;
  --paper-raised: #FFFFFF;
  --hairline: rgba(11, 37, 69, 0.14);
  --hairline-strong: rgba(11, 37, 69, 0.28);
  --on-navy: #E7E9EE;
  --on-navy-soft: #9FAAC0;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); }
body {
  font-family: -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--gold-bright); color: #10192B; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 2px; }

.display {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  text-wrap: balance;
}
.label {
  font-family: "Century Gothic", "Avenir Next", Futura, "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}
.tabular { font-variant-numeric: tabular-nums; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 800px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 640px) { .wrap, .wrap-narrow { padding: 0 22px; } }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: var(--navy); border-bottom: 1px solid rgba(216,185,74,0.22); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--on-navy); }
.brand svg { width: 22px; height: 22px; }
.brand span { font-family: "Century Gothic", "Avenir Next", Futura, sans-serif; font-size: 15px; letter-spacing: 0.12em; font-weight: 600; }
.navlinks { display: flex; gap: 30px; }
.navlinks a {
  font-family: "Century Gothic", "Avenir Next", Futura, sans-serif;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--on-navy-soft); padding: 4px 0; border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.navlinks a:hover, .navlinks a[aria-current="page"] { color: var(--gold-bright); border-color: var(--gold-bright); }
.navtag {
  font-family: "Century Gothic", "Avenir Next", Futura, sans-serif;
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-bright); border: 1px solid rgba(216,185,74,0.4); padding: 5px 10px; white-space: nowrap;
}
@media (max-width: 900px) { .navlinks, .navtag { display: none; } }

/* ---------- Hero (home) ---------- */
.hero { position: relative; background: var(--navy); color: var(--on-navy); padding: 120px 0 96px; overflow: hidden; }
.hero-mark { position: absolute; top: 50%; left: 50%; width: 1100px; max-width: none; transform: translate(-50%, -46%); opacity: 0.15; pointer-events: none; }
.hero .wrap { position: relative; }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; color: var(--gold-bright); font-size: 11.5px; margin-bottom: 30px; }
.hero-eyebrow::after { content: ""; width: 46px; height: 1px; background: rgba(216,185,74,.5); }
.hero h1 { margin: 0 0 26px; font-weight: 500; font-size: clamp(38px, 6vw, 74px); line-height: 1.08; max-width: 16ch; }
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero-sub { margin: 0 0 40px; max-width: 54ch; font-size: 18px; color: var(--on-navy-soft); }
.hero-cta { display: inline-flex; align-items: center; gap: 10px; font-family: "Century Gothic", "Avenir Next", Futura, sans-serif; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-bright); border-bottom: 1px solid rgba(216,185,74,.5); padding-bottom: 6px; }
.hero-cta svg { width: 14px; height: 14px; transition: transform .2s ease; }
.hero-cta:hover svg { transform: translateX(4px); }
.hero-line { position: absolute; right: 6%; bottom: 0; width: 320px; height: 200px; opacity: .9; }
.hero-line path { fill: none; stroke: var(--gold-bright); stroke-width: 1.4; stroke-dasharray: 900; stroke-dashoffset: 900; animation: draw 2.4s ease forwards .3s; }
@media (prefers-reduced-motion: reduce) { .hero-line path { animation: none; stroke-dashoffset: 0; } }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- Page header (inner pages) ---------- */
.pagehead { background: var(--navy); color: var(--on-navy); padding: 68px 0 56px; border-bottom: 3px solid var(--gold); }
.pagehead .label { color: var(--gold-bright); font-size: 11.5px; }
.pagehead h1 { margin: 14px 0 0; font-size: clamp(32px, 5vw, 50px); font-weight: 500; }
.pagehead p { margin: 16px 0 0; max-width: 62ch; color: var(--on-navy-soft); font-size: 16.5px; }

/* ---------- Stats strip ---------- */
.stats { background: var(--paper-raised); border-bottom: 1px solid var(--hairline); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline); }
.stat { background: var(--paper-raised); padding: 28px 26px; }
.stat .label { display: block; color: var(--gold); font-size: 10.5px; margin-bottom: 8px; }
.stat .value { font-size: 19px; font-weight: 600; }
@media (max-width: 780px) { .stats .wrap { grid-template-columns: repeat(2, 1fr); } }

/* ---------- section shell ---------- */
section.block { padding: 88px 0; }
section.block.tight { padding: 56px 0; }
.section-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 36px; }
.section-num { font-family: "Century Gothic", "Avenir Next", Futura, sans-serif; font-size: 12px; color: var(--gold); letter-spacing: .06em; }
.section-head h2 { margin: 0; font-size: clamp(24px, 3.2vw, 34px); font-weight: 500; }
.section-head::after { content: ""; flex: 1; height: 1px; background: var(--hairline); align-self: center; }

/* ---------- Prose (legal / long-form) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 21px; font-weight: 600; margin: 44px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 16.5px; font-weight: 600; margin: 26px 0 10px; }
.prose p { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 16px; }
.prose ul, .prose ol { color: var(--ink-soft); font-size: 15.5px; padding-left: 20px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--gold); }
.prose strong { color: var(--ink); }
.prose a { color: var(--navy); border-bottom: 1px solid var(--hairline-strong); }
.updated { font-size: 13px; color: var(--ink-soft); margin-bottom: 40px; font-style: italic; }

/* ---------- Manifesto ---------- */
.manifesto { background: var(--navy-800); color: var(--on-navy); }
.manifesto .wrap { max-width: 920px; }
.manifesto blockquote { margin: 0 0 26px; font-size: clamp(22px, 3.4vw, 34px); line-height: 1.32; font-style: italic; }
.manifesto blockquote .accent { color: var(--gold-bright); font-style: normal; }
.manifesto p.note { margin: 0; max-width: 64ch; color: var(--on-navy-soft); font-size: 15.5px; border-top: 1px solid rgba(216,185,74,.22); padding-top: 22px; }

/* ---------- Philosophy / pillars ---------- */
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 820px) { .philosophy-grid { grid-template-columns: 1fr; gap: 40px; } }
.philosophy-grid p { color: var(--ink-soft); font-size: 16px; max-width: 46ch; }
.more { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font-family: "Century Gothic", "Avenir Next", Futura, sans-serif; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--hairline-strong); padding-bottom: 4px; }
.pillars { display: grid; gap: 26px; }
.pillar { display: grid; grid-template-columns: 34px 1fr; gap: 16px; }
.pillar .num { font-family: "Iowan Old Style", Palatino, Georgia, serif; font-style: italic; font-size: 22px; color: var(--gold); }
.pillar h4 { margin: 0 0 4px; font-size: 15.5px; font-weight: 600; }
.pillar p { margin: 0; font-size: 14px; color: var(--ink-soft); max-width: none; }

/* ---------- Values grid ---------- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.value-card .label { color: var(--gold); font-size: 11px; display: block; margin-bottom: 8px; }
.value-card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 600; }
.value-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Sector grid ---------- */
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
@media (max-width: 980px) { .sector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sector-grid { grid-template-columns: 1fr; } }
.sector-card { background: var(--paper-raised); padding: 30px 26px; min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; }
.sector-card .icon { width: 26px; height: 26px; color: var(--gold); margin-bottom: 18px; }
.sector-card h3 { margin: 0 0 8px; font-size: 16.5px; font-weight: 600; }
.sector-card p { margin: 0; font-size: 13.5px; color: var(--ink-soft); }
.sector-num { font-family: "Century Gothic", "Avenir Next", Futura, sans-serif; font-size: 10.5px; color: var(--ink-soft); letter-spacing: .1em; margin-bottom: 6px; }

/* ---------- Geography strip ---------- */
.geo-strip { background: var(--paper-raised); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: 44px 0; }
.geo-list { display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: baseline; }
.geo-list span { font-family: "Iowan Old Style", Palatino, Georgia, serif; font-size: 20px; color: var(--ink); }
.geo-list .sep { color: var(--gold); font-size: 14px; }

/* ---------- Timeline (histoire) ---------- */
.timeline { display: grid; gap: 0; border-left: 1px solid var(--hairline-strong); }
.tl-item { position: relative; padding: 0 0 36px 30px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -5px; top: 4px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold-bright); }
.tl-year { font-family: "Century Gothic", "Avenir Next", Futura, sans-serif; font-size: 11.5px; letter-spacing: .08em; color: var(--gold); margin-bottom: 6px; display: block; }
.tl-item h4 { margin: 0 0 6px; font-size: 16.5px; font-weight: 600; }
.tl-item p { margin: 0; font-size: 14.5px; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Quote block ---------- */
.quote-block { border-left: 3px solid var(--gold); padding: 4px 0 4px 26px; margin: 32px 0; }
.quote-block p { font-family: "Iowan Old Style", Palatino, Georgia, serif; font-style: italic; font-size: 19px; color: var(--ink); margin: 0 0 8px; }
.quote-block cite { font-style: normal; font-size: 13px; color: var(--ink-soft); }

/* ---------- Governance grid ---------- */
.gov-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.gov-card { background: var(--paper-raised); padding: 26px 24px; }
.gov-card .label { color: var(--gold); font-size: 10.5px; display: block; margin-bottom: 10px; }
.gov-card .value { font-size: 16px; font-weight: 600; }
.gov-card .sub { margin-top: 6px; font-size: 13px; color: var(--ink-soft); }

/* ---------- Compliance strip ---------- */
.compliance-strip { background: var(--navy-900); color: var(--on-navy-soft); padding: 38px 0; }
.compliance-strip .wrap { display: flex; gap: 22px; align-items: flex-start; }
.compliance-strip svg { flex: none; width: 20px; height: 20px; margin-top: 3px; color: var(--gold-bright); }
.compliance-strip p { margin: 0; font-size: 13.5px; max-width: 76ch; }
.compliance-strip strong { color: var(--on-navy); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-grid address { font-style: normal; font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 28px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: "Century Gothic", "Avenir Next", Futura, sans-serif; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--hairline-strong); background: var(--paper-raised); color: var(--ink);
  padding: 11px 13px; font-family: inherit; font-size: 14.5px; border-radius: 2px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.submit-btn {
  font-family: "Century Gothic", "Avenir Next", Futura, sans-serif; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--navy); color: #fff; border: none; padding: 14px 28px; cursor: pointer; transition: background .2s ease;
}
.submit-btn:hover { background: var(--navy-800); }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 14px; }

/* ---------- Legal index ---------- */
.legal-list { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.legal-list a { background: var(--paper-raised); padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; font-size: 14.5px; }
.legal-list a:hover { color: var(--gold); }
.legal-list svg { width: 14px; height: 14px; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy); color: var(--on-navy-soft); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-grid .label { color: var(--gold-bright); font-size: 10.5px; display: block; margin-bottom: 16px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand svg { width: 20px; height: 20px; }
.footer-brand span { font-family: "Century Gothic", "Avenir Next", Futura, sans-serif; font-size: 14px; letter-spacing: .1em; font-weight: 600; color: var(--on-navy); }
.footer-grid address { font-style: normal; font-size: 13.5px; line-height: 1.7; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a { font-size: 13.5px; }
.footer-grid a:hover { color: var(--gold-bright); }
.footer-bottom { border-top: 1px solid rgba(216,185,74,.18); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; }

.icon-inline { width: 14px; height: 14px; vertical-align: -2px; }
