@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,300&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bleu-nuit: #0d1b2a;
  --bleu-nuit-mid: #1a2d42;
  --bleu-nuit-light: #243650;
  --gris-anthracite: #2e2e2e;
  --gris-anthracite-mid: #4a4a4a;
  --vert-foret: #2d5a3d;
  --vert-foret-light: #3a7050;
  --ocre-jaune: #c8933a;
  --ocre-jaune-light: #d9a84e;
  --blanc-doux: #f7f5f2;
  --gris-clair: #e8e4df;
  --gris-texte: #6b6560;
  --blanc-pur: #ffffff;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --shadow-soft: 0 2px 16px rgba(13,27,42,0.08);
  --shadow-mid: 0 4px 32px rgba(13,27,42,0.12);
  --shadow-strong: 0 8px 48px rgba(13,27,42,0.18);
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Playfair Display', Georgia, serif;
  background-color: var(--blanc-doux);
  color: var(--gris-anthracite);
  line-height: 1.6;
  min-width: 320px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--vert-foret);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--vert-foret-light);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.2;
  color: var(--bleu-nuit);
}

p {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.7;
  color: var(--gris-anthracite);
  font-size: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-spacing {
  padding: 96px 0;
}

.section-spacing--lg {
  padding: 128px 0;
}

.section-spacing--sm {
  padding: 64px 0;
}

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 147, 58, 0.15);
  transition: box-shadow var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 2px 24px rgba(13,27,42,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo-mark {
  width: 36px;
  height: 36px;
  background-color: var(--ocre-jaune);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bleu-nuit);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.header-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blanc-pur);
  letter-spacing: 0.5px;
}

.header-logo-text span {
  color: var(--ocre-jaune);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-nav a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 8px 16px;
  transition: color var(--transition);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: var(--ocre-jaune);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.header-nav a:hover {
  color: var(--blanc-pur);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  transform: scaleX(1);
}

.header-nav a.active {
  color: var(--blanc-pur);
}

.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.header-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--blanc-pur);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background-color: var(--bleu-nuit);
  z-index: 999;
  padding: 24px 0;
  border-top: 1px solid rgba(200, 147, 58, 0.2);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 14px 48px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), background-color var(--transition);
}

.mobile-menu a:hover {
  color: var(--ocre-jaune);
  background-color: rgba(255,255,255,0.04);
}

/* ===== FOOTER ===== */
#site-footer {
  background-color: var(--bleu-nuit);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 0 48px 64px;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo-mark {
  width: 32px;
  height: 32px;
  background-color: var(--ocre-jaune);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bleu-nuit);
}

.footer-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blanc-pur);
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.footer-edu-notice {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--ocre-jaune);
  letter-spacing: 0.3px;
  line-height: 1.5;
  padding: 12px 16px;
  border-left: 2px solid var(--ocre-jaune);
  background-color: rgba(200, 147, 58, 0.06);
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blanc-pur);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--ocre-jaune);
}

.footer-contact-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-hours {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 48px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-disclaimer {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(200, 147, 58, 0.7);
  text-align: right;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bleu-nuit);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px 96px;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ocre-jaune);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--ocre-jaune);
}

.hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--blanc-pur);
  max-width: 760px;
  margin-bottom: 32px;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--ocre-jaune);
  font-style: normal;
}

.hero-desc {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--bleu-nuit);
  background-color: var(--ocre-jaune);
  padding: 14px 28px;
  border: 2px solid var(--ocre-jaune);
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition);
}

.btn-primary:hover {
  background-color: var(--ocre-jaune-light);
  border-color: var(--ocre-jaune-light);
  color: var(--bleu-nuit);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background-color: transparent;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--blanc-pur);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--bleu-nuit);
  background-color: transparent;
  padding: 14px 28px;
  border: 2px solid var(--bleu-nuit);
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition);
}

.btn-outline-dark:hover {
  background-color: var(--bleu-nuit);
  color: var(--blanc-pur);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ===== TWO-COLUMN SECTION ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

.two-col-text {}

.two-col-image {}

.two-col-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-strong);
}

.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ocre-jaune);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background-color: var(--ocre-jaune);
}

h2.section-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: var(--bleu-nuit);
  margin-bottom: 24px;
  text-wrap: balance;
}

h2.section-title--light {
  color: var(--blanc-pur);
}

.section-body {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gris-anthracite);
  margin-bottom: 24px;
}

.section-body--light {
  color: rgba(255,255,255,0.75);
}

.styled-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.styled-list li {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gris-anthracite);
  display: flex;
  gap: 12px;
}

.styled-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--vert-foret);
  flex-shrink: 0;
  margin-top: 8px;
}

.styled-list--light li {
  color: rgba(255,255,255,0.8);
}

.styled-list--light li::before {
  background-color: var(--ocre-jaune);
}

/* ===== DARK SECTION ===== */
.section-dark {
  background-color: var(--bleu-nuit);
}

.section-dark-mid {
  background-color: var(--bleu-nuit-mid);
}

.section-anthracite {
  background-color: var(--gris-anthracite);
}

.section-cream {
  background-color: var(--blanc-doux);
}

.section-grey {
  background-color: var(--gris-clair);
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background-color: var(--blanc-pur);
  border: 1px solid var(--gris-clair);
  padding: 32px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: rgba(13,27,42,0.2);
  box-shadow: var(--shadow-mid);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.card-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ocre-jaune);
  margin-bottom: 10px;
}

.card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--bleu-nuit);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card p {
  font-size: 0.9rem;
  color: var(--gris-texte);
  line-height: 1.65;
}

.card-dark {
  background-color: var(--bleu-nuit-mid);
  border: 1px solid rgba(255,255,255,0.08);
}

.card-dark:hover {
  border-color: rgba(200,147,58,0.3);
}

.card-dark h3 {
  color: var(--blanc-pur);
}

.card-dark p {
  color: rgba(255,255,255,0.6);
}

/* ===== GLOSSARY RAIL ===== */
.glossary-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

.glossary-rail {
  background-color: var(--bleu-nuit);
  padding: 36px 32px;
  position: sticky;
  top: 100px;
}

.glossary-rail h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ocre-jaune);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,147,58,0.3);
}

.glossary-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.glossary-item:last-child {
  border-bottom: none;
}

.glossary-term {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--blanc-pur);
  margin-bottom: 6px;
}

.glossary-def {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ===== STAT STRIP ===== */
.stat-strip {
  background-color: var(--bleu-nuit-light);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(200,147,58,0.2);
  border-bottom: 1px solid rgba(200,147,58,0.2);
}

.stat-item {
  text-align: center;
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ocre-jaune);
  margin-bottom: 8px;
}

.stat-value {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--blanc-pur);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-desc {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ===== MYTH/FACT ===== */
.myth-fact-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.myth-fact-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.myth-box, .fact-box {
  padding: 28px 32px;
}

.myth-box {
  background-color: rgba(46, 46, 46, 0.06);
  border-left: 3px solid var(--gris-anthracite-mid);
}

.fact-box {
  background-color: rgba(45, 90, 61, 0.08);
  border-left: 3px solid var(--vert-foret);
}

.myth-box-label, .fact-box-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.myth-box-label {
  color: var(--gris-anthracite-mid);
}

.fact-box-label {
  color: var(--vert-foret);
}

.myth-box p, .fact-box p {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gris-anthracite);
}

/* ===== TIMELINE ===== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background-color: rgba(200,147,58,0.3);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
  padding-left: 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--bleu-nuit);
  border: 2px solid var(--ocre-jaune);
}

.timeline-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ocre-jaune);
  margin-bottom: 6px;
}

.timeline-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--bleu-nuit);
  margin-bottom: 10px;
}

.timeline-body {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gris-texte);
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gris-clair);
}

.faq-item {
  border-bottom: 1px solid var(--gris-clair);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
  text-align: left;
}

.faq-question-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--bleu-nuit);
  line-height: 1.4;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gris-clair);
  transition: background-color var(--transition), border-color var(--transition);
}

.faq-icon::before {
  content: '+';
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--bleu-nuit);
  line-height: 1;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  background-color: var(--bleu-nuit);
  border-color: var(--bleu-nuit);
}

.faq-item.open .faq-icon::before {
  content: '−';
  color: var(--blanc-pur);
}

.faq-answer {
  display: none;
  padding: 0 0 24px;
}

.faq-answer.visible {
  display: block;
}

.faq-answer p {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gris-texte);
}

/* ===== SECTION DIVIDER ===== */
.divider {
  width: 100%;
  height: 1px;
  background-color: var(--gris-clair);
}

.divider-ocre {
  background-color: rgba(200,147,58,0.3);
}

.divider-vertical {
  width: 1px;
  height: 48px;
  background-color: var(--gris-clair);
  margin: 0 auto;
}

/* ===== FULL WIDTH IMAGE ===== */
.full-width-image-section {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.full-width-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-width-image-section .image-caption {
  position: absolute;
  bottom: 24px;
  right: 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ===== DISCLAIMER BOX ===== */
.disclaimer-box {
  background-color: var(--gris-clair);
  border-left: 3px solid var(--gris-anthracite-mid);
  padding: 20px 24px;
  margin-top: 40px;
}

.disclaimer-box p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--gris-texte);
  line-height: 1.6;
}

.attention-box {
  background-color: rgba(200, 147, 58, 0.08);
  border: 1px solid rgba(200, 147, 58, 0.3);
  border-left: 4px solid var(--ocre-jaune);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.attention-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ocre-jaune);
  color: var(--bleu-nuit);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 2px;
}

.attention-box p {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gris-anthracite);
}

/* ===== SOFT CTA ===== */
.soft-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.soft-cta h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--blanc-pur);
  margin-bottom: 16px;
  text-wrap: balance;
}

.soft-cta p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

/* ===== INFO NOTICE ===== */
.info-notice {
  background-color: rgba(45, 90, 61, 0.07);
  border: 1px solid rgba(45, 90, 61, 0.2);
  padding: 24px 28px;
}

.info-notice-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--vert-foret);
  margin-bottom: 8px;
}

.info-notice p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--gris-texte);
  line-height: 1.6;
}

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
  background-color: var(--bleu-nuit);
  padding: 160px 48px 80px;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--blanc-pur);
  margin-bottom: 16px;
  text-wrap: balance;
}

.page-hero p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  line-height: 1.7;
}

/* ===== BLOG ===== */
.blog-card {
  background-color: var(--blanc-pur);
  border: 1px solid var(--gris-clair);
  transition: box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-mid);
  border-color: rgba(13,27,42,0.15);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-category {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ocre-jaune);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--bleu-nuit);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--gris-texte);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--vert-foret);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.blog-card-link::after {
  content: '→';
}

.blog-card-link:hover {
  gap: 10px;
  color: var(--vert-foret-light);
}

/* ===== BLOG ARTICLE ===== */
.article-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

.article-main {}

.article-hero-image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  margin-bottom: 48px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.article-meta-category {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blanc-pur);
  background-color: var(--vert-foret);
  padding: 4px 10px;
}

.article-meta-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--gris-texte);
}

.article-main h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--bleu-nuit);
  line-height: 1.15;
  margin-bottom: 32px;
  text-wrap: balance;
}

.article-main h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--bleu-nuit);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.article-main h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--bleu-nuit);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-main p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gris-anthracite);
  margin-bottom: 20px;
}

.article-main ul, .article-main ol {
  margin: 0 0 24px 24px;
}

.article-main ul {
  list-style: disc;
}

.article-main ol {
  list-style: decimal;
}

.article-main ul li, .article-main ol li {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gris-anthracite);
  margin-bottom: 8px;
}

.article-callout {
  background-color: var(--blanc-doux);
  border-left: 3px solid var(--ocre-jaune);
  padding: 20px 24px;
  margin: 32px 0;
}

.article-callout p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--bleu-nuit);
  margin: 0;
  line-height: 1.65;
}

.article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-box {
  background-color: var(--blanc-pur);
  border: 1px solid var(--gris-clair);
  padding: 28px;
}

.sidebar-box h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--bleu-nuit);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gris-clair);
}

.sidebar-box ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-box ul li {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--gris-texte);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}

.sidebar-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background-color: var(--ocre-jaune);
  border-radius: 50%;
}

.sidebar-box ul li a {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--vert-foret);
  text-decoration: none;
}

.sidebar-box ul li a:hover {
  color: var(--vert-foret-light);
}

.sidebar-notice {
  background-color: var(--bleu-nuit);
  border: none;
}

.sidebar-notice h4 {
  color: var(--ocre-jaune);
  border-color: rgba(200,147,58,0.2);
}

.sidebar-notice p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===== DEFINITION LIST ===== */
dl.definition-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gris-clair);
}

dl.definition-list dt {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bleu-nuit);
  padding: 16px 0 6px;
}

dl.definition-list dd {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  color: var(--gris-texte);
  line-height: 1.65;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gris-clair);
  margin: 0;
}

/* ===== SIMPLE TABLE ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blanc-pur);
  background-color: var(--bleu-nuit);
  padding: 14px 20px;
  text-align: left;
}

.info-table td {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  color: var(--gris-anthracite);
  padding: 14px 20px;
  border-bottom: 1px solid var(--gris-clair);
  line-height: 1.6;
}

.info-table tr:last-child td {
  border-bottom: none;
}

.info-table tr:nth-child(even) td {
  background-color: var(--blanc-doux);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--bleu-nuit);
}

.form-field input,
.form-field textarea {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--gris-anthracite);
  background-color: var(--blanc-pur);
  border: 1px solid var(--gris-clair);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--vert-foret);
}

.form-field textarea {
  min-height: 160px;
}

.form-submit-btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--blanc-pur);
  background-color: var(--bleu-nuit);
  border: 2px solid var(--bleu-nuit);
  padding: 15px 32px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color var(--transition), color var(--transition);
}

.form-submit-btn:hover {
  background-color: var(--vert-foret);
  border-color: var(--vert-foret);
}

/* ===== POLICY PAGES ===== */
.policy-content h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--bleu-nuit);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 48px;
  border-top: 1px solid var(--gris-clair);
}

.policy-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--bleu-nuit);
  margin-top: 24px;
  margin-bottom: 12px;
}

.policy-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gris-anthracite);
  margin-bottom: 16px;
}

.policy-content ul, .policy-content ol {
  margin: 0 0 20px 24px;
}

.policy-content ul {
  list-style: disc;
}

.policy-content ol {
  list-style: decimal;
}

.policy-content ul li, .policy-content ol li {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gris-anthracite);
  margin-bottom: 6px;
}

/* ===== THANK YOU ===== */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bleu-nuit);
}

.thank-you-inner {
  text-align: center;
  max-width: 560px;
  padding: 64px 32px;
}

.thank-you-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(200,147,58,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 1.5rem;
  color: var(--ocre-jaune);
}

.thank-you-inner h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--blanc-pur);
  margin-bottom: 16px;
}

.thank-you-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(13,27,42,0.98);
  border-top: 1px solid rgba(200,147,58,0.2);
  z-index: 9999;
  padding: 20px 48px;
  display: none;
}

.cookie-banner.visible {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  flex: 1;
  min-width: 280px;
}

.cookie-text a {
  color: var(--ocre-jaune);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  transition: background-color var(--transition), color var(--transition);
}

.cookie-btn-accept {
  background-color: var(--ocre-jaune);
  color: var(--bleu-nuit);
}

.cookie-btn-accept:hover {
  background-color: var(--ocre-jaune-light);
}

.cookie-btn-refuse {
  background-color: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn-refuse:hover {
  color: var(--blanc-pur);
  border-color: rgba(255,255,255,0.5);
}

.cookie-btn-more {
  background-color: transparent;
  color: var(--ocre-jaune);
  border: 1px solid rgba(200,147,58,0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cookie-btn-more:hover {
  border-color: var(--ocre-jaune);
  color: var(--ocre-jaune-light);
}

/* ===== SECTION SEPARATORS ===== */
.ocre-line {
  width: 60px;
  height: 2px;
  background-color: var(--ocre-jaune);
  margin-bottom: 24px;
}

.wide-ocre-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--ocre-jaune), transparent);
  margin: 64px 0;
}

/* ===== HEALTH DISCLAIMER PAGE ===== */
.health-disclaimer-hero {
  background-color: var(--gris-anthracite);
  padding: 160px 48px 80px;
}

/* ===== ABOUT MUSEUM SECTION ===== */
.about-intro-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .header-hamburger {
    display: flex;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 32px 48px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .two-col.reverse {
    direction: ltr;
  }

  .two-col-image img {
    height: 360px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .glossary-section {
    grid-template-columns: 1fr;
  }

  .glossary-rail {
    position: static;
  }

  .article-wrap {
    grid-template-columns: 1fr;
    padding: 48px 32px;
  }

  .article-sidebar {
    position: static;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px;
  }

  .myth-fact-pair {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 120px 32px 80px;
  }

  .page-hero {
    padding: 140px 32px 60px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .container--wide {
    padding: 0 20px;
  }

  .section-spacing {
    padding: 64px 0;
  }

  .section-spacing--lg {
    padding: 80px 0;
  }

  .header-inner {
    padding: 0 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 0 20px 40px;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .footer-bottom-disclaimer {
    text-align: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
    padding: 24px 20px;
  }

  .cookie-banner.visible {
    flex-direction: column;
    padding: 20px;
  }

  .hero-content {
    padding: 110px 20px 70px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .page-hero {
    padding: 120px 20px 48px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .health-disclaimer-hero {
    padding: 120px 20px 48px;
  }

  .mobile-menu a {
    padding: 14px 24px;
  }

  .article-hero-image {
    height: 260px;
  }

  .about-intro-image {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

/* ===== ATTENTION BOX (health-disclaimer) ===== */
.attention-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background-color: rgba(200, 147, 58, 0.07);
  border: 1px solid rgba(200, 147, 58, 0.35);
  border-left: 4px solid var(--ocre-jaune);
  padding: 32px 36px;
  margin-bottom: 48px;
}

.attention-box-icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.attention-box-content {}

.attention-box-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ocre-jaune);
  margin-bottom: 12px;
}

.attention-box-content p {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gris-anthracite);
}

/* ===== COOKIE TABLE ===== */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-family: 'DM Sans', sans-serif;
}

.cookie-table thead tr {
  background-color: var(--bleu-nuit);
}

.cookie-table thead th {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blanc-pur);
  padding: 14px 16px;
  text-align: left;
  border: none;
}

.cookie-table tbody tr {
  border-bottom: 1px solid var(--gris-clair);
}

.cookie-table tbody tr:nth-child(even) {
  background-color: var(--blanc-doux);
}

.cookie-table tbody td {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gris-anthracite);
  padding: 16px;
  vertical-align: top;
}

.cookie-table tbody td code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  background-color: rgba(13,27,42,0.06);
  padding: 2px 6px;
  color: var(--bleu-nuit);
}

/* ===== INFO CONTEXT BLOCK ===== */
.info-context-block {
  background-color: var(--blanc-doux);
  border-top: 2px solid var(--gris-clair);
  padding: 28px 32px;
}

.info-context-block h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gris-anthracite-mid);
  margin-bottom: 10px;
}

.info-context-block p {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gris-texte);
}

/* ===== THANK YOU PAGE ===== */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blanc-doux);
  padding: 120px 32px 80px;
}

.thankyou-inner {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.thankyou-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  background-color: rgba(45, 90, 61, 0.07);
  border: 1px solid rgba(45, 90, 61, 0.2);
}

.thankyou-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ocre-jaune);
  margin-bottom: 16px;
}

.thankyou-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bleu-nuit);
  margin-bottom: 20px;
  line-height: 1.15;
}

.thankyou-lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gris-anthracite);
  margin-bottom: 28px;
}

.thankyou-notice {
  background-color: var(--blanc-pur);
  border: 1px solid var(--gris-clair);
  border-left: 3px solid var(--vert-foret);
  padding: 20px 24px;
  margin-bottom: 32px;
  text-align: left;
}

.thankyou-notice p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gris-anthracite-mid);
}

.thankyou-divider {
  width: 48px;
  height: 1px;
  background-color: var(--gris-clair);
  margin: 0 auto 28px;
}

.thankyou-sub {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--gris-texte);
  margin-bottom: 36px;
  line-height: 1.6;
}

.thankyou-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .attention-box {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .cookie-table {
    font-size: 0.82rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .thankyou-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .thankyou-section {
    padding: 120px 20px 64px;
  }
}
