/*
================================================================
  FONDATION JULIETTE & LUC ETOGO MBEZELE
  Design System Global — style.css v2.0
  www.fondationetogombezele.org
  Standard : Grandes fondations internationales
================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════ */
:root {
  /* Couleurs */
  --bleu:        #1B3A6B;
  --bleu-fonce:  #0F2647;
  --bleu-nuit:   #071728;
  --or:          #C9A227;
  --or-clair:    #E8C84A;
  --or-pale:     rgba(201,162,39,0.12);
  --creme:       #FAF6EE;
  --creme-fonce: #F0E8D5;
  --blanc:       #FFFFFF;
  --texte:       #1C1C1C;
  --texte-c:     #5C5247;
  --texte-leger: rgba(92,82,71,0.6);
  --vert-ok:     #1A6B3C;
  --rouge:       #C0392B;

  /* Espacements */
  --nav-h:     72px;
  --max-w:     1140px;
  --gutter:    48px;
  --gutter-sm: 24px;

  /* Typographie */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  /* Ombres */
  --shadow-sm:  0 1px 4px rgba(27,58,107,0.06);
  --shadow-md:  0 4px 20px rgba(27,58,107,0.08);
  --shadow-lg:  0 12px 48px rgba(27,58,107,0.12);
  --shadow-xl:  0 24px 80px rgba(27,58,107,0.16);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  0.3s;
}

/* ════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--creme);
  color: var(--texte);
  overflow-x: hidden;
  padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-sans); cursor: pointer; }

/* ════════════════════════════════════════
   BARRE DE LECTURE
════════════════════════════════════════ */
.progress-bar {
  position: fixed;
  top: var(--nav-h); left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--or), var(--or-clair));
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250,246,238,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow var(--dur) var(--ease);
}
nav.scrolled {
  box-shadow: 0 2px 32px rgba(27,58,107,0.08);
  border-bottom-color: rgba(201,162,39,0.25);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 600;
  color: var(--bleu);
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.nav-logo-text span {
  display: block;
  font-size: 8.5px;
  font-weight: 400;
  color: var(--or);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Liens nav */
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--texte-c);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--dur) var(--ease);
  position: relative;
  padding-bottom: 3px;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--or);
  transition: width var(--dur) var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--bleu); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* CTA nav */
.btn-nav-don {
  background: var(--or);
  color: var(--bleu) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-decoration: none;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  border: 2px solid var(--or);
}
.btn-nav-don::after { display: none !important; }
.btn-nav-don:hover {
  background: var(--bleu) !important;
  border-color: var(--bleu);
  color: var(--blanc) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--bleu);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

/* ════════════════════════════════════════
   PAGE BANNER (bannières pages intérieures)
════════════════════════════════════════ */
.page-banner {
  background: var(--bleu-fonce);
  padding: 80px var(--gutter) 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(201,162,39,0.04) 0%, transparent 45%);
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.3), transparent);
}
.page-banner-inner { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; }
.page-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.22);
  color: rgba(201,162,39,0.85);
  padding: 7px 20px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.page-banner-label::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--or);
}
.page-banner h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--blanc);
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.page-banner h1 em { font-style: italic; color: var(--or); font-weight: 400; }
.page-banner h1 strong { font-weight: 700; color: var(--blanc); }
.page-banner p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-banner-divider {
  width: 48px; height: 1px;
  background: var(--or);
  margin: 22px auto 0;
  opacity: 0.5;
}

/* ════════════════════════════════════════
   FIL D'ARIANE
════════════════════════════════════════ */
.breadcrumb {
  background: var(--creme-fonce);
  padding: 14px var(--gutter);
  border-bottom: 1px solid rgba(201,162,39,0.1);
}
.breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--texte-leger);
}
.breadcrumb a {
  color: var(--texte-c);
  text-decoration: none;
  transition: color var(--dur);
}
.breadcrumb a:hover { color: var(--or); }
.breadcrumb .sep { opacity: 0.35; font-size: 10px; }
.breadcrumb .current { color: var(--bleu); font-weight: 500; }

/* ════════════════════════════════════════
   TYPOGRAPHIE UTILITAIRES
════════════════════════════════════════ */
.section-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label.centered { justify-content: center; }
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 32px; height: 1px;
  background: rgba(201,162,39,0.4);
}
.section-label.left::before,
.section-label.left::after { display: none; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--bleu);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--or); }
.section-title strong { font-weight: 700; }
.section-title.white { color: var(--blanc); }
.section-title.large { font-size: clamp(2.4rem, 4.5vw, 3.8rem); }

.section-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
}
.section-sep::before {
  content: '';
  display: block;
  width: 56px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.5));
}
.section-sep::after {
  content: '';
  display: block;
  width: 56px; height: 1px;
  background: linear-gradient(270deg, transparent, rgba(201,162,39,0.5));
}
.section-sep span { color: var(--or); font-size: 14px; }

.text-body {
  font-size: 0.96rem;
  line-height: 1.9;
  color: var(--texte-c);
  font-weight: 300;
}
.text-body strong { color: var(--bleu); font-weight: 600; }
.text-body p + p { margin-top: 18px; }

.lead-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--texte-c);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   BOUTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 15px 32px;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn-gold {
  background: var(--or);
  color: var(--bleu);
  border-color: var(--or);
}
.btn-gold:hover {
  background: var(--or-clair);
  border-color: var(--or-clair);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,0.3);
}
.btn-blue {
  background: var(--bleu);
  color: var(--blanc);
  border-color: var(--bleu);
}
.btn-blue:hover {
  background: var(--bleu-fonce);
  border-color: var(--bleu-fonce);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,58,107,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--bleu);
  border-color: rgba(27,58,107,0.3);
}
.btn-outline:hover {
  background: var(--bleu);
  color: var(--blanc);
  border-color: var(--bleu);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-or {
  background: transparent;
  color: var(--or);
  border-color: rgba(201,162,39,0.4);
}
.btn-outline-or:hover {
  background: var(--or);
  color: var(--bleu);
  border-color: var(--or);
}
.btn-sm { padding: 10px 22px; font-size: 10.5px; }
.btn-lg { padding: 18px 44px; font-size: 12px; }

/* ════════════════════════════════════════
   CARDS COMMUNES
════════════════════════════════════════ */
.card {
  background: var(--blanc);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card-bordered {
  border-left: 3px solid var(--or);
}
.card-body { padding: 28px 30px; }

/* ════════════════════════════════════════
   STATS / COMPTEURS
════════════════════════════════════════ */
.stat-block { text-align: center; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--or);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
}
.stat-label.dark { color: var(--texte-c); }

/* ════════════════════════════════════════
   FORMULAIRES
════════════════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texte-c);
}
.form-group label .req { color: var(--or); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(201,162,39,0.2);
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  background: var(--creme);
  color: var(--texte);
  outline: none;
  transition: border-color var(--dur), background var(--dur), box-shadow var(--dur);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--or);
  background: var(--blanc);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.07);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(92,82,71,0.35);
  font-size: 13px;
}
.form-group textarea { height: 110px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A227' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-full { grid-column: 1 / -1; }
.form-hint {
  font-size: 11px;
  color: var(--texte-leger);
  font-style: italic;
}
.form-section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.form-section-title::after {
  content: '';
  flex: 1; height: 1px;
  background: rgba(201,162,39,0.18);
}

/* ════════════════════════════════════════
   ANIMATIONS REVEAL
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ════════════════════════════════════════
   CITATION
════════════════════════════════════════ */
.citation-section {
  background: linear-gradient(135deg, var(--bleu-fonce) 0%, var(--bleu) 100%);
  padding: 100px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.citation-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,162,39,0.06) 0%, transparent 60%);
}
.citation-guillemet {
  font-family: var(--font-serif);
  font-size: 220px;
  color: rgba(201,162,39,0.05);
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.citation-section blockquote {
  max-width: 760px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.citation-section blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--blanc);
  line-height: 1.6;
  margin-bottom: 28px;
}
.citation-section blockquote p strong { color: var(--or); font-style: normal; font-weight: 600; }
.citation-section blockquote cite {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-style: normal;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--bleu-nuit);
  color: rgba(255,255,255,0.45);
  padding: 80px var(--gutter) 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }

/* Bandeau supérieur avant footer */
.footer-cta-band {
  background: var(--or);
  padding: 40px var(--gutter);
}
.footer-cta-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-cta-band h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bleu);
  margin-bottom: 4px;
}
.footer-cta-band p {
  font-size: 0.87rem;
  color: rgba(27,58,107,0.65);
  font-weight: 300;
}
.footer-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Grille footer */
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 32px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-logo-icon { width: 44px; height: 44px; opacity: 0.8; }
.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  line-height: 1.35;
}
.footer-logo-name span {
  display: block;
  font-size: 9px;
  font-weight: 400;
  color: var(--or);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 3px;
}
.footer-brand-desc {
  font-size: 0.82rem;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-legal-num {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.footer-col h5 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-list a {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  font-weight: 300;
  transition: color var(--dur);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links-list a::before {
  content: '';
  width: 14px; height: 1px;
  background: rgba(201,162,39,0.35);
  flex-shrink: 0;
  transition: width var(--dur), background var(--dur);
}
.footer-links-list a:hover { color: var(--or); }
.footer-links-list a:hover::before { width: 20px; background: var(--or); }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-icon { opacity: 0.6; margin-top: 1px; }

/* Réseaux sociaux footer */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all var(--dur);
  text-decoration: none;
}
.footer-social-btn:hover {
  background: rgba(201,162,39,0.15);
  border-color: rgba(201,162,39,0.35);
  transform: translateY(-2px);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  transition: color var(--dur);
}
.footer-bottom a:hover { color: var(--or); }

/* ════════════════════════════════════════
   BANDEAU CTA SECTION
════════════════════════════════════════ */
.cta-section {
  padding: 80px var(--gutter);
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 12px;
}
.cta-section p {
  font-size: 0.94rem;
  color: var(--texte-c);
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 28px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   TAGS / BADGES
════════════════════════════════════════ */
.tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 2px;
}
.tag-bleu { background: rgba(27,58,107,0.08); color: var(--bleu); }
.tag-or   { background: rgba(201,162,39,0.12); color: var(--or); }
.tag-vert { background: rgba(26,107,60,0.1); color: var(--vert-ok); }

/* ════════════════════════════════════════
   DIVIDER
════════════════════════════════════════ */
.divider {
  width: 48px; height: 1px;
  background: var(--or);
  opacity: 0.5;
}
.divider.centered { margin: 0 auto; }
.divider.large { width: 80px; }

/* ════════════════════════════════════════
   RESPONSIVE GLOBAL
════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --gutter: 32px; --max-w: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --gutter: 20px; }
  nav { padding: 0 var(--gutter); }
  .nav-right { gap: 12px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--creme);
    padding: 20px;
    gap: 0;
    border-bottom: 1px solid rgba(201,162,39,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(201,162,39,0.08); }
  .nav-links a { display: block; padding: 13px 0; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; }
  .nav-links a.active { color: var(--or); }
  .btn-nav-don { display: block !important; text-align: center; margin-top: 12px; padding: 13px 22px !important; width: 100%; font-size: 12px !important; border-radius: 3px; }
  .nav-burger { display: flex; }
  .page-banner { padding: 56px var(--gutter) 48px; }
  .breadcrumb { padding: 12px var(--gutter); }
  .citation-section { padding: 72px var(--gutter); }
  footer { padding: 56px var(--gutter) 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-cta-band { padding: 32px var(--gutter); }
  .footer-cta-band-inner { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}
