:root {
  --ink: #1a1208;
  --muted: #6b5d4d;
  --line: #e4d9cc;
  --paper: #faf8f5;
  --white: #ffffff;
  --gold: #b8860b;
  --gold-light: #d4a234;
  --gold-dark: #8b6508;
  --teal: #0e8c7d;
  --green: #1a9960;
  --amber: #e8a020;
  --navy: #081522;
  --navy-soft: #10243a;
  --shadow: 0 24px 70px rgba(26, 18, 8, .14);
  --shadow-soft: 0 16px 40px rgba(26, 18, 8, .1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #faf8f5 0%, #f0ece4 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: 86px;
  line-height: .92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: 0;
}

p { margin-bottom: 0; }

/* ── Header ─────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(228, 217, 204, .74);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease, padding .2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 12px 34px rgba(26, 18, 8, .1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-logo {
  width: 122px;
  height: 58px;
  padding: 6px 8px;
  object-fit: contain;
  background: white;
  border: 1px solid rgba(228, 217, 204, .96);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(26, 18, 8, .08);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

/* ── Navigation ─────────────────────────────────────────────── */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: #3a2a1a;
  font-size: 14px;
  font-weight: 800;
}

.main-nav > a,
.main-nav .nav-dropdown-trigger {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.main-nav > a:hover,
.main-nav .nav-dropdown-trigger:hover {
  color: var(--gold);
  background: #fdf5e4;
}

.main-nav > a.is-active,
.main-nav .has-dropdown.is-active > .nav-dropdown-trigger {
  color: white;
  background: var(--gold);
  box-shadow: 0 10px 22px rgba(184, 134, 11, .25);
}

.has-dropdown {
  position: relative;
}

.nav-dropdown-trigger::after {
  content: "▾";
  margin-left: 6px;
  font-size: 12px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  display: none;
  flex-direction: column;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.has-dropdown.is-open .nav-dropdown {
  display: flex;
}

.nav-dropdown a {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #3a2a1a;
  transition: background .15s ease, color .15s ease;
}

.nav-dropdown a:hover {
  background: #fdf5e4;
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

/* ── Hero ────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 92svh;
  padding: 156px clamp(20px, 5vw, 80px) 50px;
  color: white;
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .75), transparent 72%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 21, 34, .96) 0%, rgba(8, 21, 34, .78) 46%, rgba(8, 21, 34, .28) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero-text {
  width: min(650px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .84);
  font-size: 20px;
}

.hero-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-stack span {
  padding: 8px 11px;
  color: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 800;
}

/* ── Audit panel (hero aside) ────────────────────────────────── */

.hero-audit-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 134, 11, .28);
  border-radius: 8px;
  background: rgba(5, 13, 24, .78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
  backdrop-filter: blur(18px);
}

.audit-panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(184, 134, 11, .18);
  background: rgba(184, 134, 11, .08);
}

.audit-panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f15b5b;
}

.audit-panel-top span:nth-child(2) { background: var(--amber); }
.audit-panel-top span:nth-child(3) { background: var(--green); }

.audit-panel-top strong {
  margin-left: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.audit-panel-body {
  padding: 24px;
}

.audit-panel-title {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.audit-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  font-weight: 600;
}

.audit-step:last-child {
  border-bottom: 0;
}

.audit-step-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.audit-step-icon.done {
  color: var(--green);
  background: rgba(26, 153, 96, .18);
}

.audit-step-icon.arrow {
  color: var(--gold-light);
  background: rgba(184, 134, 11, .18);
}

.audit-panel-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .1);
}

.audit-panel-foot span {
  padding: 14px 16px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .06);
  font-size: 13px;
  font-weight: 800;
}

/* ── Hero panel (stats) ──────────────────────────────────────── */

.hero-actions,
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button::after {
  content: ">";
  margin-left: 10px;
  font-size: 14px;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 16px 32px rgba(184, 134, 11, .30);
}

.button.primary:hover {
  box-shadow: 0 20px 42px rgba(184, 134, 11, .38);
}

.button.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, .14);
}

.button.secondary.light {
  color: var(--ink);
  background: white;
  border-color: white;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: 74px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.hero-panel div {
  padding: 24px;
  background: rgba(8, 21, 34, .72);
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.hero-panel div:last-child { border-right: 0; }

.hero-panel strong,
.hero-panel span { display: block; }

.hero-panel strong {
  margin-bottom: 6px;
  color: white;
  font-size: 26px;
  line-height: 1;
}

.hero-panel span {
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
}

/* ── Sections ────────────────────────────────────────────────── */

.section {
  padding: clamp(70px, 8vw, 118px) clamp(20px, 5vw, 80px);
}

.section-heading {
  width: min(850px, 100%);
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

/* ── Intro section ───────────────────────────────────────────── */

.intro {
  display: grid;
  grid-template-columns: minmax(300px, .74fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(184, 134, 11, .07), rgba(14, 140, 125, .07)),
    white;
}

.intro-copy { display: grid; gap: 24px; }

.intro-lead {
  padding: 28px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
  font-size: 24px;
  line-height: 1.32;
  font-weight: 900;
}

.intro-card-grid { display: grid; gap: 14px; }

.intro-card-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 30px rgba(26, 18, 8, .08);
}

.intro-card-grid span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: white;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  border-radius: 8px;
  font-weight: 900;
}

.intro-card-grid h3 { margin-bottom: 6px; }

.intro-card-grid p {
  color: var(--muted);
  font-size: 17px;
}

/* ── Services showcase ───────────────────────────────────────── */

.services-showcase {
  color: white;
  background: linear-gradient(135deg, #081522 0%, #10243a 62%, #0d3028 100%);
}

.services-showcase .section-heading p:not(.eyebrow),
.services-showcase .feature-card p {
  color: rgba(255, 255, 255, .74);
}

.feature-grid,
.service-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.feature-card::before {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 34px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold-light), var(--teal), var(--amber));
}

/* ── Method ──────────────────────────────────────────────────── */

.method {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(30px, 7vw, 96px);
  background: #f4efe6;
}

.method-visual,
.section-visual,
.page-hero-media {
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.method-visual img,
.section-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.method p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 19px;
}

.steps span {
  padding: 10px 14px;
  color: #4a3000;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

/* ── Missions (4 pillars) ────────────────────────────────────── */

.missions {
  background: white;
}

.missions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mission-card {
  padding: 32px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.mission-card .mission-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184, 134, 11, .12), rgba(14, 140, 125, .12));
  border: 1px solid rgba(184, 134, 11, .22);
  font-size: 22px;
}

.mission-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.mission-card p {
  color: var(--muted);
  font-size: 15px;
}

/* ── Fondateur quote ─────────────────────────────────────────── */

.fondateur {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
  background: linear-gradient(135deg, #081522 0%, #10243a 56%, #0d3028 100%);
  color: white;
}

.fondateur-quote {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(184, 134, 11, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
}

.fondateur-quote::before {
  content: "\201C";
  position: absolute;
  top: -18px;
  left: 24px;
  font-size: 80px;
  line-height: 1;
  color: var(--gold-light);
  font-family: Georgia, serif;
}

.fondateur-quote blockquote {
  margin: 0;
  padding: 0;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .88);
  font-style: italic;
}

.fondateur-quote cite {
  display: block;
  margin-top: 20px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 900;
  font-style: normal;
}

.fondateur-visual {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
}

.fondateur-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: .88;
}

/* ── Service/audience cards ──────────────────────────────────── */

.services {
  background: var(--navy);
  color: white;
}

.services .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
}

.service-card,
.audience-grid article {
  overflow: hidden;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover,
.audience-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 134, 11, .30);
  box-shadow: var(--shadow);
}

.service-card img,
.audience-grid img {
  width: 100%;
  height: 166px;
  object-fit: cover;
}

.service-card h3,
.service-card p,
.audience-grid h3,
.audience-grid p,
.audience-grid span,
.audience-grid .text-link {
  margin-left: 26px;
  margin-right: 26px;
}

.service-card h3,
.audience-grid h3 { margin-top: 24px; }

.service-card p,
.audience-grid p { color: var(--muted); }

.service-card p { padding-bottom: 28px; }

.page-cards { background: white; }

.light-card {
  color: var(--ink);
  background: #fdfbf8;
}

.audiences { background: white; }

.audience-grid span {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: #5a3600;
  background: #fdf0d0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 900;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
  font-size: 13px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 22px 26px 28px;
  padding: 10px 14px;
  color: white;
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
}

.card-link::after {
  content: ">";
  margin-left: 8px;
  font-size: 13px;
}

/* ── Contact ─────────────────────────────────────────────────── */

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 460px);
  gap: 34px;
  padding: clamp(74px, 8vw, 120px) clamp(20px, 5vw, 80px);
  color: white;
  background: linear-gradient(135deg, #081522 0%, #1a3a10 58%, #0d3028 100%);
}

.contact p {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.contact-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}

.contact-card p {
  margin-bottom: 10px;
}

.contact-card a {
  color: var(--gold-light);
}

.contact-card .button {
  width: 100%;
  margin-top: 18px;
}

.contact-logo {
  width: 136px;
  height: 74px;
  margin-bottom: 22px;
  padding: 8px 10px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
}

/* ── Footer ──────────────────────────────────────────────────── */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 80px);
  color: #d9e8d5;
  background: #06101b;
  font-size: 14px;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-meta a {
  color: white;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-cookie-link {
  padding: 0;
  color: white;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  cursor: pointer;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.footer-brand img {
  width: 94px;
  height: 48px;
  padding: 6px 8px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  color: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, .1);
  color: white;
}

/* ── Page hero ───────────────────────────────────────────────── */

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, .85fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  min-height: 74svh;
  padding: 148px clamp(20px, 5vw, 80px) 76px;
  color: white;
  overflow: hidden;
  background: linear-gradient(135deg, #07111d 0%, #1a3a10 56%, #0d3028 100%);
}

.page-hero .hero-text {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .82);
}

.page-hero h1 { font-size: 66px; }

.page-hero-media {
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
}

.page-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ── Split sections ──────────────────────────────────────────── */

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
  background: white;
}

.split-section.soft { background: #f4efe6; }

.section-visual { margin-top: 24px; }

.section-copy {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-soft);
}

.section-copy::before {
  content: "";
  display: block;
  width: 62px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--green));
}

.copy-lead {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.22;
  font-weight: 900;
}

.copy-points { display: grid; gap: 14px; }

.copy-points p {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  color: var(--muted);
  font-size: 18px;
}

.copy-points span {
  width: 9px;
  height: 9px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(184, 134, 11, .12);
}

/* ── Team page ───────────────────────────────────────────────── */

.team-hero { min-height: 60svh; }

.team-section { background: white; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.team-card-body { padding: 28px; }

.team-card-body h3 {
  margin-bottom: 4px;
  font-size: 20px;
}

.team-card-role {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.team-card-bio {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.team-skills span {
  padding: 4px 10px;
  color: #5a3600;
  background: #fdf0d0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

/* ── Partenaires page ────────────────────────────────────────── */

.partenaires-section { background: white; }
.partenaires-section.soft { background: var(--paper); }

.partenaires-anchor {
  display: block;
  height: 90px;
  margin-top: -90px;
  pointer-events: none;
}

.partenaires-intro {
  margin-bottom: 36px;
}

.partenaires-intro h2 {
  margin-bottom: 12px;
  font-size: 38px;
}

.partenaires-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.partenaire-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  transition: transform .2s ease, border-color .2s ease;
}

.partenaire-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 134, 11, .3);
}

.partenaire-card small {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

/* ── Cookie banner ───────────────────────────────────────────── */

.cookie-banner {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 22px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(228, 217, 204, .95);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 22px 60px rgba(26, 18, 8, .18);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] { display: none !important; }

.cookie-banner__title {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.cookie-banner__text {
  color: var(--muted);
  font-size: 15px;
}

.cookie-banner__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(320px, 100%);
  justify-self: end;
}

.cookie-banner__button {
  min-height: 44px;
  width: 100%;
  white-space: nowrap;
}

/* ── Legal ───────────────────────────────────────────────────── */

.legal-hero { min-height: 66svh; }

.legal-section { background: white; }

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.legal-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(184, 134, 11, .05), rgba(255, 255, 255, 0) 38%),
    #fdfbf8;
  box-shadow: var(--shadow-soft);
}

.legal-card h3 { margin-bottom: 22px; }

.legal-card dl,
.legal-card dd { margin: 0; }

.legal-card dl { display: grid; gap: 16px; }

.legal-card dl div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.legal-card dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-card dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-card dd {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.legal-copy-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  background: #f4efe6;
}

.legal-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.legal-copy h2 {
  margin-bottom: 16px;
  font-size: 34px;
}

.legal-copy p {
  color: var(--muted);
  font-size: 18px;
}

/* ── Qualiopi badge ──────────────────────────────────────────── */

.qualiopi-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-top: 24px;
  border: 1px solid rgba(184, 134, 11, .3);
  border-radius: 8px;
  background: rgba(184, 134, 11, .08);
  color: #5a3600;
  font-size: 13px;
  font-weight: 900;
}

.qualiopi-badge::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-size: 12px;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 1180px) {
  .brand-copy { display: none; }
  .missions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1080px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open { display: flex; }

  .main-nav > a,
  .main-nav .nav-dropdown-trigger {
    justify-content: center;
    min-height: 44px;
  }

  .nav-dropdown {
    position: static;
    display: flex;
    box-shadow: none;
    border: 0;
    background: #fdf8ef;
    border-radius: 6px;
    padding: 4px 8px;
  }

  .has-dropdown.is-open .nav-dropdown { display: flex; }

  .menu-toggle { display: block; }
}

@media (max-width: 900px) {
  h1 { font-size: 64px; }
  h2 { font-size: 42px; }

  .hero-layout,
  .page-hero,
  .method,
  .split-section,
  .fondateur,
  .intro {
    grid-template-columns: 1fr;
  }

  .hero-audit-panel { display: none; }
  .page-hero-media { display: none; }
  .fondateur-visual { display: none; }
  .method-visual { display: none; }

  .feature-grid,
  .service-grid,
  .team-grid,
  .partenaires-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  h1 { font-size: 46px; }
  h2 { font-size: 32px; }

  .hero-panel { grid-template-columns: 1fr; }
  .hero-panel div { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .14); }
  .hero-panel div:last-child { border-bottom: 0; }

  .feature-grid,
  .service-grid,
  .audience-grid,
  .team-grid,
  .partenaires-grid,
  .missions-grid,
  .legal-grid,
  .legal-copy-section,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-banner__actions { width: 100%; }

  .contact { grid-template-columns: 1fr; }
}
