/* SEIP 2026 — Shared Design System */

@import url('https://api.fontshare.com/v2/css?f[]=general-sans@200,300,400,500,600,700&display=swap');

:root {
  /* Brand */
  --blue: #19537E;
  --blue-deep: #0E3A5A;
  --blue-ink: #061F33;
  --blue-night: #0A1A2A;

  --orange: #D0531F;
  --orange-bright: #E76A33;
  --orange-deep: #A33E14;

  /* Neutrals */
  --cream: #F8F4EC;
  --cream-light: #FCFAF5;
  --paper: #FFFFFF;
  --white: #FFFFFF;
  --ink: #0C0C0D;
  --charcoal: #1A1A1C;
  --graphite: #2C2C30;
  --slate: #5C5C62;
  --mute: #8B8B92;
  --line: rgba(12, 12, 13, 0.08);
  --line-strong: rgba(12, 12, 13, 0.14);
  --line-light: rgba(255, 255, 255, 0.10);

  /* Semantic */
  --bg: var(--paper);
  --fg: var(--ink);

  /* Type */
  --font: 'General Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max: 1440px;
  --pad: clamp(20px, 4vw, 64px);
  --gutter: clamp(16px, 2.5vw, 32px);

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-feature-settings: "ss01", "ss02", "cv01";
  font-weight: 400;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--orange); color: var(--white); }

/* Justification de tous les blocs de paragraphes (césure FR pour éviter les grands écarts) */
p { text-align: left; -webkit-hyphens: none; hyphens: none; }

/* Type scale */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow.no-line::before { display: none; }

.display-xl {
  font-size: clamp(44px, 7.2vw, 104px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.display-l {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.display-m {
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.display-s {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.headline {
  font-size: clamp(19px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.018em;
}
.body-l {
  font-size: clamp(15.5px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--graphite);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.body { font-size: 15px; line-height: 1.6; color: var(--graphite); }
.small { font-size: 13px; color: var(--slate); }

.italic { font-style: italic; font-family: 'General Sans', serif; font-feature-settings: normal; }
.serif-feel { font-style: italic; font-weight: 400; letter-spacing: -0.02em; }

/* Containers */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

section { position: relative; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: all .25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn .arrow {
  display: inline-flex;
  width: 22px; height: 22px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.15);
  transition: transform .3s ease, background .3s ease;
}
.btn:hover .arrow { transform: translateX(2px); }

.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-bright); transform: translateY(-1px); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--blue-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-ghost-dark:hover { background: var(--white); color: var(--ink); }

.btn-sm { height: 38px; padding: 0 16px; font-size: 13px; }
.btn-lg { height: 54px; padding: 0 28px; font-size: 15px; }

/* Tag / chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
}
.chip-light {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}
.chip-dot::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* Nav */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 8px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar a { color: var(--white); }
.topbar .live::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(208, 83, 31, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(208, 83, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(208, 83, 31, 0); }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(250, 250, 247, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav.dark {
  background: rgba(10, 26, 42, 0.6);
  border-bottom-color: rgba(255,255,255,0.08);
  color: var(--white);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 17px;
  flex-shrink: 0;
}
.brand-mark {
  width: 36px; height: 36px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: var(--orange);
}
.brand-mark span { position: relative; z-index: 1; }
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.brand-name b { font-weight: 600; font-size: 16px; letter-spacing: -0.02em; }
.brand-name small { font-size: 10.5px; color: var(--slate); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.nav.dark .brand-name small { color: rgba(255,255,255,0.55); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 999px;
  transition: background .2s;
  letter-spacing: -0.005em;
}
.nav-links a:hover { background: rgba(0,0,0,0.05); }
.nav.dark .nav-links a:hover { background: rgba(255,255,255,0.08); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* Dropdowns */
.nav-links li { position: relative; }
.nav-links a .caret {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.55;
  transition: transform .2s;
}
.nav-links li:hover > a .caret,
.nav-links li:focus-within > a .caret { transform: rotate(225deg) translateY(-1px); opacity: 1; }
.nav-links li:hover > a,
.nav-links li:focus-within > a { background: rgba(0,0,0,0.05); }

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 320px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.2), 0 8px 20px -8px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 100;
  list-style: none;
  display: grid;
  gap: 2px;
}
.dropdown.wide { min-width: 460px; grid-template-columns: 1fr 1fr; gap: 4px; }

.nav-links li:hover > .dropdown,
.nav-links li:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: grid !important;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  letter-spacing: -0.005em;
}
.dropdown a:hover { background: var(--cream) !important; }
.dropdown a .icn {
  width: 28px; height: 28px;
  background: var(--cream);
  border-radius: 7px;
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: background .2s, color .2s;
}
.dropdown a:hover .icn { background: var(--ink); color: var(--white); }
.dropdown a:hover .icn svg { stroke: var(--white); }
.dropdown a .icn svg { width: 14px; height: 14px; stroke: var(--ink); stroke-width: 1.6; fill: none; transition: stroke .2s; }
.dropdown a .txt b { display: block; font-size: 14px; font-weight: 500; line-height: 1.25; }
.dropdown a .txt span { display: block; font-size: 12px; color: var(--slate); margin-top: 2px; line-height: 1.4; font-weight: 400; }

.dropdown-foot {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--slate);
  letter-spacing: -0.005em;
}
.dropdown-foot a { padding: 0 !important; background: none !important; color: var(--orange) !important; display: inline !important; }

@media (max-width: 1024px) {
  .dropdown { display: none !important; }
}

.menu-btn { display: none; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

@media (max-width: 640px) {
  .topbar .top-left span:not(:first-child) { display: none; }
  .topbar { font-size: 11.5px; }
  .nav-inner { height: 64px; }
  .brand-name small { display: none; }
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 96px var(--pad) 32px;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-light);
}
.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.85); }
.footer-col a:hover { color: var(--orange-bright); }
.footer-brand .display-s { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; line-height: 1.65; max-width: 360px; }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .footer-legal { display: flex; gap: 24px; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }

/* Page header (interior pages) */
.page-hero {
  background: var(--blue-night);
  color: var(--white);
  padding: 112px var(--pad) 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 80% -10%, rgba(208, 83, 31, 0.22), transparent 60%),
    radial-gradient(600px 400px at 5% 100%, rgba(25, 83, 126, 0.5), transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; }
.page-hero .crumbs {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.page-hero .crumbs a { color: rgba(255,255,255,0.8); }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; font-size: 16px; line-height: 1.6; }

.page-hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.page-hero-meta .stat {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 16px;
}
.page-hero-meta .stat b {
  display: block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
}
.page-hero-meta .stat span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
}

/* Section utilities */
.section-pad { padding: clamp(80px, 10vw, 160px) 0; }
.section-pad-sm { padding: clamp(60px, 7vw, 100px) 0; }

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .meta { font-size: 14px; color: var(--slate); max-width: 460px; line-height: 1.6; }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

.divider {
  height: 1px;
  background: var(--line);
}
.divider-dark { background: var(--line-light); }

/* Sticky CTA mobile */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  background: var(--ink);
  color: var(--white);
  padding: 12px 16px 12px 20px;
  border-radius: 999px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.mobile-cta .pill {
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 700px) { .mobile-cta { display: flex; } }

/* ============================================================
   SHARED INSTITUTIONAL CHROME (top strip · nav-lite · footer-lite)
   used by interior pages — mirrors index.html
   ============================================================ */
.ph { position: relative; overflow: hidden; background: repeating-linear-gradient(135deg, rgba(12,12,13,0.05) 0 2px, transparent 2px 11px), var(--cream); display: grid; place-items: center; }
.ph.on-dark { background: repeating-linear-gradient(135deg, rgba(255,255,255,0.07) 0 2px, transparent 2px 11px), rgba(255,255,255,0.04); }
.ph .ph-lbl { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); background: rgba(255,255,255,0.78); padding: 5px 9px; border-radius: 4px; text-align: center; line-height: 1.4; }
.ph.on-dark .ph-lbl { background: rgba(0,0,0,0.34); color: rgba(255,255,255,0.7); }

.lite-strip { display: flex; justify-content: space-between; align-items: center; padding: 11px var(--pad); font-size: 11.5px; letter-spacing: 0.05em; background: var(--ink); color: rgba(255,255,255,0.66); }
.lite-strip a { color: #fff; font-weight: 500; }
.lite-strip .live::before { content:""; display:inline-block; width:6px; height:6px; border-radius:50%; background:var(--orange); margin-right:8px; vertical-align:1px; box-shadow:0 0 0 0 rgba(208,83,31,0.5); animation:pulse 1.8s infinite; }
.lite-strip .left { display:flex; gap:18px; align-items:center; }
.lite-strip .right { display:flex; gap:18px; align-items:center; }
.lite-strip .langsw { display:inline-flex; gap:7px; align-items:center; color:rgba(255,255,255,0.45); }
.lite-strip .langsw b { color:#fff; font-weight:600; }
.lite-strip .langsw a { color:rgba(255,255,255,0.55); }
@media (max-width:760px){ .lite-strip .left span:not(.live){display:none;} .lite-strip .right a:not(:last-child){display:none;} .lite-strip .langsw{display:none;} }

.nav-lite { position: sticky; top:0; z-index:50; background: rgba(255,255,255,0.86); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom:1px solid var(--line); }
.nav-lite-inner { max-width:1320px; margin:0 auto; padding:0 var(--pad); height:66px; display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:28px; }
.nav-lite .brand { font-size:15px; font-weight:600; letter-spacing:-0.02em; display:inline-flex; align-items:center; gap:10px; }
.nav-lite .brand-logo { height:34px; width:auto; display:block; }
.nav-lite .brand-mark { width:30px; height:30px; background:var(--ink); color:#fff; border-radius:7px; display:grid; place-items:center; font-size:11px; font-weight:600; position:relative; overflow:hidden; }
.nav-lite .brand-mark::after { content:""; position:absolute; inset:auto 0 0 0; height:36%; background:var(--orange); }
.nav-lite .brand-mark span { position:relative; z-index:1; }
@media (max-width:760px){ .nav-lite .brand-logo { height:30px; } }
.nav-lite ul { list-style:none; display:flex; gap:2px; justify-self:center; }
.nav-lite ul > li > a { display:inline-flex; align-items:center; padding:8px 12px; font-size:13.5px; font-weight:500; border-radius:999px; transition:background .2s; }
.nav-lite ul > li > a:hover, .nav-lite ul > li > a.current { background:rgba(0,0,0,0.06); }
.nav-lite .end { display:flex; gap:8px; justify-content:flex-end; align-items:center; }
.nav-lite li { position:relative; }
.nav-lite .caret-lite { display:inline-block; width:6px; height:6px; margin-left:6px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor; transform:rotate(45deg) translateY(-1px); opacity:0.45; transition:transform .2s, opacity .2s; }
.nav-lite li:hover > a .caret-lite { transform:rotate(225deg); opacity:1; }
.nav-lite li:hover > a { background:rgba(0,0,0,0.06); }
.nav-lite .sub { display:grid; list-style:none; position:absolute; top:calc(100% + 8px); left:-8px; min-width:318px; background:#fff; border:1px solid var(--line); border-radius:12px; padding:8px; box-shadow:0 22px 54px -18px rgba(0,0,0,0.2), 0 6px 16px -6px rgba(0,0,0,0.06); opacity:0; visibility:hidden; transform:translateY(-6px); transition:opacity .2s, transform .2s, visibility .2s; z-index:100; }
.nav-lite li:hover > .sub { opacity:1; visibility:visible; transform:translateY(0); }
.nav-lite .sub a { display:block; padding:11px 14px; border-radius:8px; font-size:13.5px; font-weight:500; color:var(--ink); }
.nav-lite .sub a:hover { background:var(--cream); }
.nav-lite .sub a b { display:block; font-weight:500; line-height:1.25; }
.nav-lite .sub a span { display:block; font-size:11.5px; color:var(--slate); margin-top:3px; line-height:1.4; font-weight:400; }
@media (max-width:1080px){ .nav-lite .sub{display:none !important;} .nav-lite-inner{grid-template-columns:1fr auto;} .nav-lite-inner > ul{display:none;} }

/* ---- Menu mobile (hamburger) ---- */
.nav-toggle { display:none; flex-direction:column; justify-content:center; gap:5px; width:44px; height:44px; border-radius:9px; border:1px solid var(--line-strong); background:transparent; flex:0 0 auto; }
.nav-toggle span { display:block; width:20px; height:2px; background:var(--ink); margin:0 auto; transition:transform .25s, opacity .2s; }
body.nav-open .nav-toggle span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2){ opacity:0; }
body.nav-open .nav-toggle span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
.nav-lite .nav-mobile { display:none; position:absolute; top:100%; left:0; right:0; background:#fff; border-top:1px solid var(--line); box-shadow:0 24px 40px -22px rgba(0,0,0,.25); max-height:0; overflow:hidden; transition:max-height .32s ease; z-index:60; }
body.nav-open .nav-lite .nav-mobile { max-height:calc(100vh - 66px); overflow-y:auto; -webkit-overflow-scrolling:touch; }
.nav-lite .nav-mobile ul { list-style:none; margin:0; padding:6px var(--pad) 0; display:block; }
.nav-lite .nav-mobile > ul > li { border-bottom:1px solid var(--line); position:static; }
.nav-lite .nav-mobile > ul > li > a { display:block; padding:15px 2px; font-size:16px; font-weight:500; color:var(--ink); border-radius:0; }
.nav-lite .nav-mobile ul ul { padding:0 0 12px 14px; }
.nav-lite .nav-mobile ul ul li a { display:block; padding:8px 2px; font-size:13.5px; color:var(--slate); font-weight:400; }
.nav-lite .nav-mobile-cta { padding:18px var(--pad) 26px; }
.nav-lite .nav-mobile-cta .btn { width:100%; justify-content:center; }
@media (max-width:1080px){
  .nav-toggle { display:flex; }
  .nav-lite .end .btn { display:none; }
  .nav-lite .nav-mobile { display:block; }
}
@media (max-width:480px){
  .nav-lite .nav-mobile > ul > li > a { font-size:15px; }
}

.footer-lite { padding:80px var(--pad) 30px; border-top:1px solid var(--line); background:#fff; }
.footer-lite-inner { max-width:1320px; margin:0 auto; }
.footer-lite-top { display:grid; grid-template-columns:1.6fr repeat(4,1fr); gap:44px; padding-bottom:52px; border-bottom:1px solid var(--line); }
.footer-lite-brand { font-size:clamp(19px,2vw,26px); font-weight:500; letter-spacing:-0.025em; line-height:1.2; max-width:360px; }
.footer-logo { height:46px; width:auto; display:block; }
.footer-lite-brand .sub { margin-top:14px; font-size:13px; font-weight:400; color:var(--slate); line-height:1.55; }
.footer-lite-col h4 { font-size:11px; text-transform:uppercase; letter-spacing:0.16em; color:var(--mute); font-weight:600; margin-bottom:16px; }
.footer-lite-col ul { list-style:none; display:grid; gap:9px; }
.footer-lite-col a { font-size:13.5px; color:var(--charcoal); transition:color .2s; }
.footer-lite-col a:hover { color:var(--orange); }
.footer-lite-bottom { padding-top:22px; display:flex; justify-content:space-between; align-items:center; font-size:12px; color:var(--mute); flex-wrap:wrap; gap:14px; }
.footer-lite-bottom .legal { display:flex; gap:18px; }
.footer-lite-bottom .legal a { color:var(--slate); }
@media (max-width:900px){ .footer-lite-top{grid-template-columns:1fr 1fr;} .footer-lite-brand{grid-column:1/-1;} }
@media (max-width:540px){ .footer-lite-top{grid-template-columns:1fr; gap:30px;} }

.btn-accent { background:var(--orange); color:#fff; border:1px solid var(--orange); }
.btn-accent:hover { background:var(--orange-bright); border-color:var(--orange-bright); }
.btn-ink { background:var(--ink); color:#fff; border:1px solid var(--ink); }
.btn-ink:hover { background:var(--blue-deep); border-color:var(--blue-deep); }
.btn-line { background:transparent; color:var(--ink); border:1px solid var(--line-strong); }
.btn-line:hover { background:var(--ink); color:#fff; border-color:var(--ink); }
.btn-line-light { background:transparent; color:#fff; border:1px solid rgba(255,255,255,0.28); }
.btn-line-light:hover { background:#fff; color:var(--ink); }

/* interior page hero meta + crumbs already styled via .page-hero in this file */
.page-hero .eyebrow { color: rgba(255,255,255,0.6); }
