/* ===========================================================
   ANOUANZÊ — DESIGN SYSTEM 2026
   Fichier partagé, importé AVANT style.css.
   Toutes les règles sont scopées sous .ds (sur <body class="ds">)
   afin de primer sur style.css sans impacter l'admin/membre.
   =========================================================== */

:root {
  --or: #FF6B00;   /* orange secondaire */
  --or-d: #e65f00;
  --gr: #009A44;   /* vert dominant */
  --grd: #005528;  /* vert foncé (nav/hero/sections) */
  --grm: #007a35;  /* vert moyen */
  --bg: #f4f8f5;   /* fond de page */
  --bd: #d8e8de;   /* bordures */
  --mu: #5a7a65;   /* texte atténué */
  --dk: #0d1f14;   /* texte foncé */
  --ft: #002a14;   /* footer */
  --ttl: 'Playfair Display', Georgia, serif;
  --bdy: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --sh: 0 8px 28px rgba(0, 64, 30, 0.10);
  --sh-h: 0 16px 40px rgba(0, 64, 30, 0.16);
}

/* ---------- BASE ---------- */
.ds {
  font-family: var(--bdy);
  color: var(--dk);
  background: var(--bg);
  line-height: 1.65;
}
.ds h1, .ds h2, .ds h3, .ds h4, .ds h5 {
  font-family: var(--ttl);
  font-weight: 700;
  line-height: 1.15;
  color: var(--grd);
}
.ds p { line-height: 1.7; }
.ds img { max-width: 100%; }
.ds .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.ds em { font-style: italic; color: var(--gr); }

/* ---------- BANDE TRICOLORE (haut & bas) ---------- */
.flag-strip {
  height: 5px;
  width: 100%;
  background: linear-gradient(to right,
    var(--or) 0 33.33%, #ffffff 33.33% 66.66%, var(--gr) 66.66% 100%);
}

/* ---------- NAVIGATION ---------- */
.ds .navbar {
  background: var(--grd);
  min-height: 104px;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 14px rgba(0, 42, 20, 0.28);
}
.ds .navbar .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 104px;
}
.ds .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.ds .logo .logo-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: conic-gradient(var(--or) 0 33.33%, #fff 0 66.66%, var(--gr) 0 100%);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.15);
}
.ds .logo .ds-logo-img { height: 84px; width: auto; display: block; }
.ds .footer-brand .fb-logo .ds-logo-img { height: 46px; width: auto; }
.ds .auth-card .auth-logo .ds-logo-img { height: 56px; width: auto; }
.ds .logo .logo-txt { display: flex; flex-direction: column; line-height: 1.05; }
.ds .logo .logo-name { color: #fff; font-size: 15px; font-weight: 700; font-family: var(--bdy); letter-spacing: .3px; }
.ds .logo .logo-sub { color: rgba(255,255,255,0.55); font-size: 9px; letter-spacing: .2px; }

.ds .nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
}
.ds .nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 18px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ds .nav-links a:hover { color: #fff; }
.ds .nav-links a.active {
  color: #fff;
  border-bottom-color: var(--or);
}
/* Dropdown (Événements) */
.ds .nav-item { position: relative; }
.ds .nav-item .dropdown-arrow { font-size: 8px; }
.ds .nav-dropdown {
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
  padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .22s;
  z-index: 200;
}
.ds .nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(2px); }
.ds .nav-dropdown a {
  display: block; padding: 9px 18px; color: var(--dk);
  font-size: 13.5px; border: none;
}
.ds .nav-dropdown a:hover { background: var(--bg); color: var(--gr); }

.ds .nav-auth { display: flex; align-items: center; gap: 1rem; }
.ds .nav-auth .btn-login {
  color: rgba(255,255,255,0.85);
  font-size: 14px; text-decoration: none; font-weight: 500;
}
.ds .nav-auth .btn-login:hover { color: #fff; }
.ds .nav-auth .btn-join {
  background: var(--or);
  color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 9px 18px;
  border-radius: 40px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.ds .nav-auth .btn-join:hover { background: var(--or-d); transform: translateY(-1px); }

.ds .mobile-menu-btn {
  display: none;
  background: none; border: none; color: #fff;
  font-size: 1.5rem; cursor: pointer; margin-left: auto;
}

/* Menu compte (membre connecté) */
.ds .user-menu { position: relative; }
.ds .user-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1px solid rgba(255,255,255,0.32); border-radius: 40px;
  padding: 9px 18px; font-family: var(--bdy); font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background .2s;
}
.ds .user-toggle:hover { background: rgba(255,255,255,0.22); }
.ds .user-dropdown {
  position: absolute; top: 100%; right: 0; margin-top: 8px;
  background: #fff; min-width: 200px; border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .2s; z-index: 200;
}
.ds .user-menu:hover .user-dropdown,
.ds .user-menu.open .user-dropdown { opacity: 1; visibility: visible; transform: translateY(2px); }
.ds .user-dropdown a,
.ds .user-dropdown button {
  display: block; width: 100%; text-align: left; box-sizing: border-box;
  padding: 10px 18px; color: var(--dk); font-size: 13.5px; font-family: var(--bdy);
  background: none; border: none; cursor: pointer; text-decoration: none;
}
.ds .user-dropdown a:hover,
.ds .user-dropdown button:hover { background: var(--bg); color: var(--gr); }
.ds .user-dropdown .user-status { display: block; padding: 8px 18px; font-size: 12.5px; color: var(--mu); border-bottom: 1px solid var(--bd); margin-bottom: 4px; }

/* ---------- HERO PAGE INTÉRIEURE ---------- */
.ds .page-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--grd);
  background-image: repeating-linear-gradient(120deg,
      rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px,
      transparent 1px, transparent 22px),
    repeating-linear-gradient(60deg,
      rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px,
      transparent 1px, transparent 22px);
  color: #fff;
  padding: 3rem 1.5rem;
  text-align: left;
}
.ds .page-hero .container { position: relative; z-index: 2; }
.ds .page-hero .hero-label {
  display: inline-block;
  font-size: 10px; text-transform: uppercase; letter-spacing: 3px;
  color: #7de0a8; font-weight: 600; margin-bottom: 12px;
}
.ds .page-hero h1 {
  color: #fff; font-size: clamp(28px, 4vw, 36px); margin: 0 0 8px;
}
.ds .page-hero h1 em { color: #7de0a8; font-style: italic; }
.ds .page-hero .hero-sub { color: rgba(255,255,255,0.45); font-size: 12px; }
.ds .page-hero .hero-letter {
  position: absolute; right: 2%; top: 50%; transform: translateY(-50%);
  font-family: var(--ttl); font-weight: 700;
  font-size: 220px; line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none; z-index: 1; user-select: none;
}

/* ---------- BREADCRUMB ---------- */
.ds .breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--bd);
  font-size: 13px;
}
.ds .breadcrumb .container { padding-top: 12px; padding-bottom: 12px; }
.ds .breadcrumb a { color: var(--mu); text-decoration: none; }
.ds .breadcrumb a:hover { color: var(--gr); }
.ds .breadcrumb .sep { color: var(--bd); margin: 0 8px; }
.ds .breadcrumb .current { color: var(--grd); font-weight: 600; }

/* ---------- SECTIONS GÉNÉRIQUES ---------- */
.ds .ds-section { padding: 4.5rem 0; }
.ds .ds-section.alt { background: #fff; }
.ds .ds-section.dark {
  background: var(--grd);
  position: relative; overflow: hidden;
}
.ds .ds-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.ds .ds-head .eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 3px;
  color: var(--or); font-weight: 600; display: block; margin-bottom: 10px;
}
.ds .ds-head h2 { font-size: clamp(26px, 3.4vw, 34px); margin: 0 0 12px; }
.ds .ds-section.dark .ds-head h2 { color: #fff; }
.ds .ds-head p { color: var(--mu); font-size: 15px; }
.ds .ds-section.dark .ds-head p { color: rgba(255,255,255,0.6); }
.ds .ds-head .rule {
  width: 90px; height: 4px; margin: 16px auto 0; border-radius: 2px;
  background: linear-gradient(to right, var(--or) 0 33%, #fff 33% 66%, var(--gr) 66% 100%);
}

/* ---------- BOUTONS ---------- */
.ds .ds-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--bdy); font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 40px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: all .25s;
}
.ds .ds-btn-green { background: var(--gr); color: #fff; }
.ds .ds-btn-green:hover { background: var(--grm); transform: translateY(-2px); }
.ds .ds-btn-orange { background: var(--or); color: #fff; box-shadow: 0 6px 18px rgba(255,107,0,.28); }
.ds .ds-btn-orange:hover { background: var(--or-d); transform: translateY(-2px); }
.ds .ds-btn-white { background: #fff; color: var(--grd); }
.ds .ds-btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-h); }
.ds .ds-btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.ds .ds-btn-ghost:hover { background: #fff; color: var(--grd); }
.ds .ds-btn-outline { background: transparent; color: var(--gr); border-color: var(--gr); }
.ds .ds-btn-outline:hover { background: var(--gr); color: #fff; }

/* ---------- CARTES GÉNÉRIQUES ---------- */
.ds .ds-card {
  background: #fff; border: 1px solid var(--bd); border-radius: 16px;
  box-shadow: var(--sh); transition: transform .3s, box-shadow .3s;
  overflow: hidden;
}
.ds .ds-card:hover { transform: translateY(-6px); box-shadow: var(--sh-h); }

/* ---------- CARROUSEL HERO (index) ---------- */
.ds .hero-car {
  position: relative; height: 800px; overflow: hidden;
  background: var(--grd);
}
.ds .hero-car .hc-track { display: flex; height: 100%; transition: transform .6s cubic-bezier(.45,.05,.2,1); }
.ds .hero-car .hc-slide {
  min-width: 100%; height: 100%; position: relative;
  display: flex; align-items: center;
  padding: 0 2.5rem;
}
.ds .hero-car .hc-slide::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 82% 20%, rgba(255,107,0,0.16) 0, transparent 32%),
    radial-gradient(circle at 90% 88%, rgba(0,154,68,0.30) 0, transparent 38%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0, rgba(255,255,255,.035) 1px, transparent 1px, transparent 26px);
  pointer-events: none;
}
.ds .hero-car .hc-inner {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 3.5rem 2.5rem;
}
.ds .hero-car .hc-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 6px 14px; border-radius: 30px; margin-bottom: 18px; color: #fff;
}
.ds .hc-badge.b-orange { background: var(--or); }
.ds .hc-badge.b-green { background: var(--gr); }
.ds .hc-badge.b-ghost { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.4); }
.ds .hero-car .hc-title {
  font-family: var(--ttl); color: #fff; font-size: clamp(26px, 4vw, 40px);
  max-width: 680px; margin: 0 0 14px; line-height: 1.12;
}
.ds .hero-car .hc-title em { color: #7de0a8; }
.ds .hero-car .hc-meta { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 24px; }
.ds .hero-car .hc-meta span { margin-right: 18px; }
.ds .hero-nav-btn, .ds .hc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.3);
  font-size: 1.3rem; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s;
}
.ds .hero-nav-btn:hover, .ds .hc-arrow:hover { background: var(--or); border-color: var(--or); }
.ds .hero-nav-btn.prev, .ds .hc-arrow.prev { left: 18px; }
.ds .hero-nav-btn.next, .ds .hc-arrow.next { right: 18px; }
.ds .hc-dots, .ds #heroSlidesDots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 9px; z-index: 10;
}
.ds .hc-dots button, .ds #heroSlidesDots .hero-dot {
  width: 10px; height: 10px; border-radius: 50%; cursor: pointer;
  border: 2px solid #fff; background: transparent; padding: 0;
  transition: background .25s, width .25s;
}
.ds .hc-dots button.active, .ds #heroSlidesDots .hero-dot.active { background: var(--or); border-color: var(--or); width: 26px; border-radius: 6px; }

/* ---------- GALERIE : filigrane / légende sur l'image ---------- */
.ds .gal-slide { position: relative; overflow: hidden; border-radius: 15px; }
.ds .gal-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 16px 14px;
  background: linear-gradient(to top, rgba(0,42,20,0.9) 0%, rgba(0,42,20,0.55) 55%, transparent 100%);
  color: #fff; font-family: var(--ttl); font-weight: 700; font-size: 1.05rem;
  line-height: 1.25; text-align: left; pointer-events: none;
}

/* ---------- TICKER ---------- */
.ds .ticker {
  background: var(--gr); color: #fff; overflow: hidden; white-space: nowrap;
  padding: 11px 0; font-size: 14px; font-weight: 500;
}
.ds .ticker .ticker-track { display: inline-block; padding-left: 100%; animation: ds-ticker 26s linear infinite; }
.ds .ticker .ticker-track span { margin: 0 2.5rem; }
.ds .ticker .ticker-track strong { color: #ffe2cc; }
@keyframes ds-ticker { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ---------- MISSION (3 cartes) ---------- */
.ds .mission-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.ds .mission-card {
  background: #fff; border: 1px solid var(--bd); border-radius: 16px;
  padding: 2.2rem 1.8rem; box-shadow: var(--sh); transition: transform .3s, box-shadow .3s;
  border-top: 4px solid var(--gr);
}
.ds .mission-card:hover { transform: translateY(-6px); box-shadow: var(--sh-h); }
.ds .mission-card .ic {
  width: 58px; height: 58px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px;
  background: #e9f6ee; color: var(--gr);
}
.ds .mission-card:nth-child(2) { border-top-color: var(--or); }
.ds .mission-card:nth-child(2) .ic { background: #fff1e6; color: var(--or); }
.ds .mission-card h3 { font-size: 20px; margin: 0 0 10px; }
.ds .mission-card p { color: var(--mu); font-size: 14.5px; margin: 0; }

/* ---------- À LA UNE / GRILLE ARTICLES ---------- */
.ds .article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.ds .art-card {
  background: #fff; border: 1px solid var(--bd); border-radius: 16px; overflow: hidden;
  box-shadow: var(--sh); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column;
  text-decoration: none; color: inherit; height: 100%;
}
.ds .art-card:hover { transform: translateY(-6px); box-shadow: var(--sh-h); }
.ds .art-thumb {
  height: 168px; position: relative;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 2.4rem;
  background: linear-gradient(135deg, var(--grm), var(--gr));
}
.ds .art-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ds .art-cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--or); color: #fff; font-size: 11px; font-weight: 600;
  padding: 4px 11px; border-radius: 20px;
}
.ds .art-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.ds .art-body h3 { font-size: 18px; margin: 0 0 8px; color: var(--grd); }
.ds .art-body p { color: var(--mu); font-size: 14px; margin: 0 0 14px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ds .art-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--mu); }
.ds .art-foot .more { color: var(--gr); font-weight: 600; }

/* ---------- ÉVÉNEMENTS (rangée de cards) ---------- */
.ds .events-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.ds .ev-card {
  background: #fff; border: 1px solid var(--bd); border-radius: 16px; overflow: hidden;
  box-shadow: var(--sh); transition: transform .3s, box-shadow .3s; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.ds .ev-card:hover { transform: translateY(-6px); box-shadow: var(--sh-h); }
.ds .ev-top { background: var(--gr); color: #fff; padding: 16px 18px; }
.ds .ev-card:nth-child(2) .ev-top { background: var(--grm); }
.ds .ev-card:nth-child(3) .ev-top { background: var(--grd); }
.ds .ev-card:nth-child(4) .ev-top { background: var(--or); }
.ds .ev-day { font-family: var(--ttl); font-size: 30px; font-weight: 700; line-height: 1; }
.ds .ev-month { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; }
.ds .ev-body { padding: 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.ds .ev-type { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--or); font-weight: 600; }
.ds .ev-body h3 { font-size: 16.5px; margin: 6px 0 8px; color: var(--grd); }
.ds .ev-body p { font-size: 13.5px; color: var(--mu); margin: 0 0 12px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ds .ev-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--mu); padding-top: 10px; border-top: 1px solid var(--bd); }
.ds .ev-foot .more { color: var(--gr); font-weight: 600; }

/* ---------- ACTIVITÉS NUMÉROTÉES (fond vert) ---------- */
.ds .act-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.ds .act-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 1.8rem 1.5rem; transition: background .3s, transform .3s;
}
.ds .act-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.ds .act-num { font-family: var(--ttl); font-size: 38px; font-weight: 700; color: var(--or); line-height: 1; }
.ds .act-card h3 { color: #fff; font-size: 18px; margin: 14px 0 8px; }
.ds .act-card p { color: rgba(255,255,255,0.6); font-size: 14px; margin: 0; }

/* ---------- CTA BAND ---------- */
.ds .cta-band { text-align: center; padding: 3.5rem 1.5rem; color: #fff; }
.ds .cta-band.orange { background: var(--or); }
.ds .cta-band.green { background: var(--gr); }
.ds .cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin: 0 0 10px; }
.ds .cta-band p { color: rgba(255,255,255,0.9); margin: 0 0 24px; font-size: 16px; }

/* ---------- STAT / METRIC CARDS ---------- */
.ds .stat-stack { display: flex; flex-direction: column; gap: 1rem; }
.ds .stat-card {
  background: #fff; border: 1px solid var(--bd); border-left: 4px solid var(--gr);
  border-radius: 12px; padding: 1.1rem 1.3rem;
}
.ds .stat-card:nth-child(even) { border-left-color: var(--or); }
.ds .stat-card .num { font-family: var(--ttl); font-size: 28px; font-weight: 700; color: var(--grd); }
.ds .stat-card .lbl { font-size: 13px; color: var(--mu); }
.ds .metric-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.ds .metric-card {
  background: #fff; border: 1px solid var(--bd); border-radius: 14px; padding: 1.4rem;
  text-align: center; box-shadow: var(--sh);
}
.ds .metric-card .num { font-family: var(--ttl); font-size: 32px; font-weight: 700; color: var(--gr); }
.ds .metric-card:nth-child(even) .num { color: var(--or); }
.ds .metric-card .lbl { font-size: 13px; color: var(--mu); margin-top: 4px; }

/* ---------- BLOCKQUOTE ---------- */
.ds blockquote.ds-quote {
  border-left: 4px solid var(--gr); background: #fff;
  padding: 1.2rem 1.5rem; margin: 1.5rem 0; border-radius: 0 12px 12px 0;
  font-style: italic; color: var(--grd); font-size: 17px;
}

/* ---------- TIMELINE ---------- */
.ds .timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 36px; }
.ds .timeline::before {
  content: ''; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--bd);
}
.ds .tl-item { position: relative; padding-bottom: 1.8rem; }
.ds .tl-item::before {
  content: ''; position: absolute; left: -32px; top: 4px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--gr); border: 3px solid var(--bg); box-shadow: 0 0 0 1px var(--bd);
}
.ds .tl-item:nth-child(even)::before { background: var(--or); }
.ds .tl-year { font-family: var(--ttl); font-weight: 700; color: var(--gr); font-size: 18px; }
.ds .tl-item:nth-child(even) .tl-year { color: var(--or); }
.ds .tl-text { color: var(--mu); font-size: 14.5px; }

/* ---------- IDENTITÉ LÉGALE ---------- */
.ds .legal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.ds .legal-item {
  background: #fff; border: 1px solid var(--bd); border-radius: 12px; padding: 1.1rem 1.3rem;
}
.ds .legal-item.full { grid-column: 1 / -1; }
.ds .legal-item .k { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--mu); }
.ds .legal-item .v { font-size: 16px; font-weight: 600; color: var(--grd); }

/* ---------- VALEURS (cartes semi-transparentes sur fond vert) ---------- */
.ds .values-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ds .value-tile {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px; padding: 2rem 1.6rem; text-align: center;
}
.ds .value-tile .ic { font-size: 2rem; margin-bottom: 14px; }
.ds .value-tile h3 { color: #fff; font-size: 19px; margin: 0 0 8px; }
.ds .value-tile p { color: rgba(255,255,255,0.65); font-size: 14px; margin: 0; }

/* ---------- FILTRES / RECHERCHE ---------- */
.ds .filter-bar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 2rem; }
.ds .chip {
  background: #fff; border: 1px solid var(--bd); color: var(--mu);
  padding: 9px 18px; border-radius: 30px; cursor: pointer; font-size: 14px; font-weight: 500;
  transition: all .2s; font-family: var(--bdy);
}
.ds .chip:hover { border-color: var(--gr); color: var(--gr); }
.ds .chip.active { background: var(--gr); border-color: var(--gr); color: #fff; }
.ds .search-input {
  flex: 1; min-width: 200px; padding: 11px 16px; border: 1px solid var(--bd);
  border-radius: 30px; font-size: 14px; font-family: var(--bdy); background: #fff; color: var(--dk);
}
.ds .search-input:focus { outline: none; border-color: var(--gr); }

/* ---------- ARTICLE FEATURED ---------- */
.ds .featured-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.6rem; margin-bottom: 3rem; }
.ds .featured-main {
  background: var(--grd); border-radius: 18px; overflow: hidden; color: #fff;
  position: relative; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end;
  text-decoration: none;
}
.ds .featured-main .fm-img { position: absolute; inset: 0; }
.ds .featured-main .fm-img img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.ds .featured-main .fm-body { position: relative; z-index: 2; padding: 2rem;
  background: linear-gradient(to top, rgba(0,42,20,.92), transparent); }
.ds .featured-main h2 { color: #fff; font-size: 26px; margin: 10px 0; }
.ds .featured-main p { color: rgba(255,255,255,0.75); font-size: 14.5px; margin: 0; }
.ds .featured-side { display: flex; flex-direction: column; gap: 1rem; }
.ds .fs-item {
  background: #fff; border: 1px solid var(--bd); border-radius: 12px; padding: 1rem 1.1rem;
  display: flex; gap: 12px; align-items: flex-start; text-decoration: none; color: inherit; transition: border-color .2s;
}
.ds .fs-item:hover { border-color: var(--gr); }
.ds .fs-item .fs-cat { font-size: 11px; color: var(--or); font-weight: 600; text-transform: uppercase; }
.ds .fs-item h4 { font-size: 14.5px; color: var(--grd); margin: 3px 0 0; }

/* ---------- PAGINATION ---------- */
.ds .pager { display: flex; justify-content: center; gap: 8px; margin-top: 2.5rem; }
.ds .pager button {
  width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--bd);
  background: #fff; color: var(--mu); cursor: pointer; font-family: var(--bdy); font-weight: 600;
}
.ds .pager button.active { background: var(--gr); border-color: var(--gr); color: #fff; }
.ds .pager button:hover:not(.active) { border-color: var(--gr); color: var(--gr); }

/* ---------- BANNIÈRE ÉVÉNEMENT PHARE ---------- */
.ds .event-feature {
  background: var(--or); color: #fff; border-radius: 18px; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center;
  padding: 2rem 2.2rem; margin-bottom: 2.5rem;
}
.ds .event-feature .ef-badge { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  background: rgba(255,255,255,0.2); padding: 5px 12px; border-radius: 20px; display: inline-block; margin-bottom: 12px; }
.ds .event-feature h2 { color: #fff; font-size: 28px; margin: 0 0 12px; }
.ds .event-feature .ef-meta { font-size: 14px; opacity: .92; margin-bottom: 18px; }
.ds .event-feature .ef-meta span { margin-right: 18px; }
.ds .event-feature .ef-date {
  background: var(--grd); border-radius: 14px; padding: 1.2rem 1.6rem; text-align: center; min-width: 130px;
}
.ds .event-feature .ef-date .d { font-family: var(--ttl); font-size: 44px; font-weight: 700; line-height: 1; }
.ds .event-feature .ef-date .m { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
.ds .event-feature .ef-date .y { font-size: 13px; opacity: .7; }

/* ---------- ONGLETS ---------- */
.ds .tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--bd); margin-bottom: 2rem; }
.ds .tabs button {
  background: none; border: none; padding: 12px 20px; font-size: 15px; font-weight: 600;
  color: var(--mu); cursor: pointer; border-bottom: 3px solid transparent; font-family: var(--bdy);
}
.ds .tabs button.active { color: var(--grd); border-bottom-color: var(--or); }

/* ---------- LISTE ÉVÉNEMENTS PASSÉS ---------- */
.ds .past-list { display: flex; flex-direction: column; gap: 1rem; }
.ds .past-item {
  background: #fff; border: 1px solid var(--bd); border-radius: 12px; padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: 1.2rem; text-decoration: none; color: inherit; transition: border-color .2s;
}
.ds .past-item:hover { border-color: var(--gr); }
.ds .past-date { background: var(--bg); border-radius: 10px; padding: .6rem 1rem; text-align: center; min-width: 64px; }
.ds .past-date .d { font-family: var(--ttl); font-size: 22px; font-weight: 700; color: var(--grd); }
.ds .past-date .m { font-size: 11px; text-transform: uppercase; color: var(--mu); }
.ds .past-item h4 { margin: 0; color: var(--grd); font-size: 16px; }
.ds .past-badge { margin-left: auto; font-size: 12px; background: #e9f6ee; color: var(--grm); padding: 4px 12px; border-radius: 20px; }

/* ---------- ANNUAIRE / MEMBRES ---------- */
.ds .member-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.ds .member-card {
  background: #fff; border: 1px solid var(--bd); border-radius: 16px; padding: 1.8rem 1.4rem;
  text-align: center; box-shadow: var(--sh); transition: transform .3s, box-shadow .3s; position: relative;
}
.ds .member-card:hover { transform: translateY(-6px); box-shadow: var(--sh-h); }
.ds .member-av {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ttl); font-size: 30px; font-weight: 700; color: #fff; position: relative;
  background: var(--gr);
}
.ds .member-card h3 { font-size: 17px; margin: 0 0 4px; color: var(--grd); }
.ds .member-card .role { color: var(--mu); font-size: 13.5px; margin: 0 0 12px; }
.ds .member-card .tag-bureau {
  display: inline-block; font-size: 11px; font-weight: 600; color: var(--grm);
  background: #e9f6ee; padding: 4px 12px; border-radius: 20px;
}
.ds .member-av .role-badge {
  position: absolute; top: -6px; right: -6px;
  font-size: 14px; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 1px solid var(--bd); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.ds .member-card.hidden { display: none; }

/* Annuaire des compétences : carte profil */
.ds .skill-card {
  background: #fff; border: 1px solid var(--bd); border-radius: 16px; padding: 1.8rem 1.4rem;
  text-align: center; box-shadow: var(--sh); transition: transform .3s, box-shadow .3s;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.ds .skill-card:hover { transform: translateY(-6px); box-shadow: var(--sh-h); }
.ds .skill-card .profession { color: var(--or); font-weight: 600; font-size: 14px; margin: 0 0 12px; }
.ds .skill-card .skills { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 12px; }
.ds .skill-tag { background: var(--bg); border: 1px solid var(--bd); color: var(--mu); font-size: 12px; padding: 4px 10px; border-radius: 14px; }
.ds .skill-card .view { margin-top: auto; color: var(--gr); font-weight: 600; font-size: 13px; }
.ds .skill-card.hidden { display: none; }
.ds .annuaire-search {
  background: #fff; border: 1px solid var(--bd); border-radius: 16px; padding: 1.2rem;
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2rem; align-items: center;
}
.ds .annuaire-search select {
  padding: 11px 16px; border: 1px solid var(--bd); border-radius: 30px; font-family: var(--bdy);
  font-size: 14px; background: #fff; color: var(--dk);
}

/* ---------- CONTACT 2 COLONNES ---------- */
.ds .contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; border-radius: 18px; overflow: hidden;
  box-shadow: var(--sh); border: 1px solid var(--bd); }
.ds .contact-left { background: var(--grd); color: #fff; padding: 2.4rem; }
.ds .contact-left h2 { color: #fff; font-size: 24px; margin: 0 0 18px; }
.ds .contact-map {
  display: block; height: 180px; border-radius: 12px; margin-bottom: 1.5rem; overflow: hidden;
  background: linear-gradient(135deg, var(--grm), var(--gr));
  position: relative; color: #fff; text-decoration: none;
}
.ds .contact-map .map-pin { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 6px; font-size: 13px; }
.ds .contact-info-item { display: flex; gap: 12px; margin-bottom: 1.1rem; align-items: flex-start; }
.ds .contact-info-item .ci-ic { font-size: 1.2rem; }
.ds .contact-info-item h4 { color: #fff; font-size: 14px; margin: 0 0 2px; }
.ds .contact-info-item p, .ds .contact-info-item a { color: rgba(255,255,255,0.75); font-size: 14px; margin: 0; text-decoration: none; }
.ds .contact-info-item a:hover { color: #fff; }
.ds .contact-socials { display: flex; gap: 10px; margin-top: 1.2rem; }
.ds .contact-socials a {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12); transition: background .2s;
}
.ds .contact-socials a:hover { background: var(--or); }
.ds .contact-socials a svg { width: 18px; height: 18px; fill: #fff; }
.ds .contact-right { background: #fff; padding: 2.4rem; }
.ds .contact-right h2 { font-size: 22px; margin: 0 0 18px; }

/* ---------- FORMULAIRES ---------- */
.ds .ds-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ds .ds-field { margin-bottom: 1.1rem; }
.ds .ds-field label { display: block; font-size: 13.5px; font-weight: 500; color: var(--grd); margin-bottom: 6px; }
.ds .ds-field input, .ds .ds-field select, .ds .ds-field textarea {
  width: 100%; padding: 12px 15px; border: 1px solid var(--bd); border-radius: 10px;
  font-size: 14.5px; font-family: var(--bdy); background: #fff; color: var(--dk); transition: border-color .2s;
}
.ds .ds-field input:focus, .ds .ds-field select:focus, .ds .ds-field textarea:focus {
  outline: none; border-color: var(--gr); box-shadow: 0 0 0 3px rgba(0,154,68,.12);
}
.ds .ds-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--mu); }
.ds .ds-check input { width: auto; margin-top: 3px; }
.ds .form-note { font-size: 12.5px; color: var(--mu); margin-top: 12px; }

/* ---------- AUTH CARD ---------- */
.ds .auth-wrap { display: flex; justify-content: center; padding: 3.5rem 1.5rem; }
.ds .auth-card {
  background: #fff; border: 1px solid var(--bd); border-radius: 18px; box-shadow: var(--sh);
  width: 100%; max-width: 420px; padding: 2.4rem;
}
.ds .auth-card.wide { max-width: 560px; }
.ds .auth-card .auth-logo { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 1.4rem; }
.ds .auth-card .auth-logo .logo-circle {
  width: 46px; height: 46px; border-radius: 50%;
  background: conic-gradient(var(--or) 0 33.33%, #fff 0 66.66%, var(--gr) 0 100%);
}
.ds .auth-card h1 { text-align: center; font-size: 24px; margin: 0 0 4px; }
.ds .auth-card .auth-sub { text-align: center; color: var(--mu); font-size: 14px; margin: 0 0 1.6rem; }
.ds .auth-foot { text-align: center; margin-top: 1.2rem; font-size: 14px; color: var(--mu); }
.ds .auth-foot a { color: var(--gr); font-weight: 600; text-decoration: none; }

/* ---------- FOOTER ---------- */
.ds footer {
  background: var(--ft); color: rgba(255,255,255,0.7); padding: 3.2rem 0 1.6rem; border: none;
}
.ds .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; }
.ds .footer-brand .fb-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ds .footer-brand .logo-circle {
  width: 34px; height: 34px; border-radius: 50%;
  background: conic-gradient(var(--or) 0 33.33%, #fff 0 66.66%, var(--gr) 0 100%);
}
.ds .footer-brand .fb-name { color: #fff; font-weight: 700; font-size: 17px; }
.ds .footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.ds footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; margin: 0 0 16px; }
.ds .footer-col a, .ds .footer-col p { display: block; color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 10px; text-decoration: none; }
.ds .footer-col a:hover { color: var(--or); }
.ds .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.4rem; margin-top: 1rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.ds .footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }

/* ---------- BOUTIQUE ---------- */
.ds .shop-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 2rem; }
.ds .cart-link {
  display: inline-flex; align-items: center; gap: 8px; margin-left: auto;
  background: var(--gr); color: #fff; padding: 10px 18px; border-radius: 40px;
  font-weight: 600; font-size: 14px; text-decoration: none; transition: background .2s;
}
.ds .cart-link:hover { background: var(--grm); }
.ds .cart-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 12px;
  background: var(--or); color: #fff; font-size: 12px; font-weight: 700;
}
.ds .shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.ds .shop-card {
  background: #fff; border: 1px solid var(--bd); border-radius: 16px; overflow: hidden;
  box-shadow: var(--sh); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column;
}
.ds .shop-card:hover { transform: translateY(-6px); box-shadow: var(--sh-h); }
.ds .shop-thumb {
  height: 200px; position: relative; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 3rem; background: linear-gradient(135deg, var(--grm), var(--gr));
}
.ds .shop-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ds .shop-type {
  position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; padding: 4px 11px; border-radius: 20px; color: #fff;
}
.ds .shop-type.t-physique { background: var(--gr); }
.ds .shop-type.t-ebook { background: var(--grd); }
.ds .shop-type.t-billet { background: var(--or); }
.ds .shop-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.ds .shop-body h3 { font-size: 18px; margin: 0 0 6px; color: var(--grd); }
.ds .shop-body p { color: var(--mu); font-size: 14px; margin: 0 0 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ds .shop-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ds .shop-price { font-family: var(--ttl); font-weight: 700; font-size: 22px; color: var(--grd); }
.ds .shop-soldout { color: #c0392b; font-size: 13px; font-weight: 600; }

/* Fiche produit */
.ds .product-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.ds .product-media {
  border-radius: 18px; overflow: hidden; min-height: 320px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 5rem; background: linear-gradient(135deg, var(--grm), var(--gr)); border: 1px solid var(--bd);
}
.ds .product-media img { width: 100%; height: 100%; object-fit: cover; }
.ds .product-info h1 { font-size: clamp(26px, 3vw, 34px); margin: 10px 0 12px; }
.ds .product-info .price { font-family: var(--ttl); font-weight: 700; font-size: 30px; color: var(--gr); margin: 6px 0 18px; }
.ds .product-info .desc { color: var(--mu); line-height: 1.8; margin-bottom: 22px; }
.ds .qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.ds .qty-ctrl { display: inline-flex; align-items: center; border: 1px solid var(--bd); border-radius: 30px; overflow: hidden; }
.ds .qty-ctrl button { width: 38px; height: 40px; border: none; background: #fff; font-size: 18px; cursor: pointer; color: var(--grd); }
.ds .qty-ctrl button:hover { background: var(--bg); }
.ds .qty-ctrl input { width: 46px; height: 40px; border: none; text-align: center; font-size: 16px; font-family: var(--bdy); }

/* Panier */
.ds .cart-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--bd); border-radius: 16px; overflow: hidden; }
.ds .cart-table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--mu); padding: 14px 16px; border-bottom: 1px solid var(--bd); }
.ds .cart-table td { padding: 14px 16px; border-bottom: 1px solid var(--bd); vertical-align: middle; }
.ds .cart-item { display: flex; align-items: center; gap: 12px; }
.ds .cart-thumb { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; background: linear-gradient(135deg, var(--grm), var(--gr)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; flex-shrink: 0; }
.ds .cart-remove { background: none; border: none; color: #c0392b; cursor: pointer; font-size: 14px; }
.ds .cart-summary { background: #fff; border: 1px solid var(--bd); border-radius: 16px; padding: 1.6rem; height: fit-content; }
.ds .cart-summary .line { display: flex; justify-content: space-between; margin-bottom: 12px; color: var(--mu); }
.ds .cart-summary .total { display: flex; justify-content: space-between; font-family: var(--ttl); font-weight: 700; font-size: 22px; color: var(--grd); border-top: 1px solid var(--bd); padding-top: 12px; margin-top: 6px; }
.ds .cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 1.8rem; align-items: start; }
.ds .cart-empty { text-align: center; padding: 3rem 1rem; color: var(--mu); }

@media (max-width: 1024px) { .ds .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .ds .shop-grid { grid-template-columns: 1fr; }
  .ds .product-wrap { grid-template-columns: 1fr; }
  .ds .cart-layout { grid-template-columns: 1fr; }
}

/* ---------- ANIMATIONS AU SCROLL ---------- */
.ds .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.ds .reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .ds .reveal { opacity: 1 !important; transform: none !important; }
  .ds .ticker .ticker-track { animation: none; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .ds .events-row, .ds .act-row, .ds .member-grid, .ds .metric-row { grid-template-columns: repeat(2, 1fr); }
  .ds .article-grid, .ds .mission-row, .ds .values-row { grid-template-columns: repeat(2, 1fr); }
  .ds .featured-wrap { grid-template-columns: 1fr; }
  .ds .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ds .mobile-menu-btn { display: block; }
  .ds .navbar .container { flex-wrap: wrap; }
  .ds .nav-links {
    display: none; position: absolute; top: 104px; left: 0; right: 0;
    background: var(--grd); flex-direction: column; align-items: stretch;
    padding: 10px 1.5rem; gap: 0; box-shadow: 0 10px 24px rgba(0,42,20,.3);
  }
  .ds .nav-links.active { display: flex; }
  .ds .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .ds .nav-links a.active { border-bottom-color: var(--or); }
  .ds .nav-item { width: 100%; }
  .ds .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: rgba(255,255,255,0.06); margin: 4px 0; }
  .ds .nav-dropdown a { color: rgba(255,255,255,0.8); }
  .ds .nav-auth {
    display: none; position: absolute; top: 104px; left: 0; right: 0;
    background: var(--grd); flex-direction: column; padding: 0 1.5rem 16px; gap: 10px;
  }
  .ds .nav-auth.active { display: flex; }
  .ds .nav-auth .btn-join, .ds .nav-auth .btn-login { width: 100%; text-align: center; }

  .ds .mission-row, .ds .article-grid, .ds .events-row, .ds .act-row,
  .ds .member-grid, .ds .metric-row, .ds .values-row, .ds .legal-grid { grid-template-columns: 1fr; }
  .ds .hero-car { height: 600px; }
  .ds .event-feature { grid-template-columns: 1fr; }
  .ds .ds-form .row2 { grid-template-columns: 1fr; }
  .ds .page-hero .hero-letter { font-size: 130px; right: -10px; opacity: .05; }
  .ds .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .ds .contact-left, .ds .contact-right { padding: 1.6rem; }
}
