*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img,
video {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  font-family: inherit;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ── TOKENS ── */
:root {
  --coral: #f26b5a;
  --coral-d: #d9523f;
  --salmon: #f5a882;
  --yellow: #f2c020;
  --brown: #503024;
  --brown-d: #3a2018;
  --cream: #f7f0dc;
  --cream-d: #ede3c8;
  --white: #fdfaf3;

  --f: "acumin-variable-concept", "acumin-variable", sans-serif;
  --f-serif: "Cormorant Garamond", Georgia, serif;

  --fv-disp: "wdth" 60, "wght" 900;
  --fv-semi: "wdth" 75, "wght" 700;
  --fv-body: "wdth" 100, "wght" 400;

  --r: 12px;
  --r-sm: 6px;

  --bdr: rgba(80, 48, 36, 0.16);
  --bdr-lt: rgba(80, 48, 36, 0.1);
  --bdr-dark: rgba(247, 240, 220, 0.1);

  --max: 1200px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--f);
  font-variation-settings: var(--fv-body);
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
  line-height: 1.55;
}

/* ── TYPE HELPERS ── */
.disp {
  font-weight: 900;
  font-stretch: condensed;
  font-variation-settings: var(--fv-disp);
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.semi-disp {
  font-weight: 700;
  font-stretch: condensed;
  font-variation-settings: var(--fv-semi);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  font-variation-settings:
    "wdth" 90,
    "wght" 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.h2-serif {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 700;
  font-stretch: normal;
  font-variation-settings: normal;
  color: var(--coral);
}

/* ── SKIP ── */
.skip {
  position: fixed;
  top: -100%;
  left: 20px;
  z-index: 9999;
  background: var(--coral);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  transition: top 120ms;
}
.skip:focus {
  top: 12px;
}
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ══════════════════════════════════════════
       NAV
    ══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(247, 240, 220, 0.97);
  backdrop-filter: blur(16px);
}
.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links li {
  display: flex;
  align-items: center;
}
.nav-links a {
  display: block;
  font-size: 12px;
  font-weight: 700;
  font-variation-settings:
    "wdth" 90,
    "wght" 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  padding: 9px 14px;
  border-radius: var(--r-sm);
  transition:
    background 140ms,
    color 140ms;
  white-space: nowrap;
}
.nav-links a:not(.nav-cta):hover {
  background: var(--cream-d);
}
.nav-cta {
  background: var(--brown) !important;
  color: var(--cream) !important;
  padding: 9px 20px !important;
}
.nav-cta:hover {
  background: var(--brown-d) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  background: none;
  border: 1px solid var(--bdr);
  border-radius: var(--r-sm);
}
.nav-burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--brown);
  border-radius: 2px;
  transition:
    transform 200ms,
    opacity 200ms;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ══════════════════════════════════════════
       HERO :fond corail, card with radius
    ══════════════════════════════════════════ */
#hero {
  background: var(--coral);
  min-height: calc(100dvh - 90px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 90px 20px 8px;
  border-radius: 12px;
  overflow: hidden;
}
.hero-left {
  padding: 72px max(48px, 6vw) 20px max(48px, 8vw);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.hero-location {
  font-size: 10px;
  font-weight: 700;
  font-variation-settings:
    "wdth" 90,
    "wght" 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.92);
}
.hero-logo {
  width: min(380px, 62vw);
}
.hero-tagline {
  font-family: var(--f-serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: rgba(247, 240, 220, 0.98);
}
.hero-desc {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(247, 240, 220, 0.9);
  max-width: 460px;
}
.hero-desc strong {
  color: var(--cream);
  font-variation-settings:
    "wdth" 100,
    "wght" 700;
}
.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  margin: 0;
  border: 1px solid rgba(247, 240, 220, 0.18);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.hero-meta-item {
  flex: 1;
  padding: 18px 20px;
  border-right: 1px solid rgba(247, 240, 220, 0.12);
}
.hero-meta-item:last-child {
  border-right: none;
}
.hero-meta-label {
  font-size: 11px;
  font-weight: 700;
  font-variation-settings:
    "wdth" 90,
    "wght" 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.82);
  display: block;
  margin-bottom: 4px;
}
.hero-meta-value {
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 700;
  font-stretch: condensed;
  font-variation-settings: var(--fv-semi);
  color: var(--cream);
  line-height: 1.1;
}

.hero-right {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr;
  grid-template-rows: 2fr 1.1fr;
  gap: 12px;
  padding: 16px 16px 16px 0;
  overflow: hidden;
}
.hero-mosaic-img {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  min-height: 0;
}
.hero-mosaic-img:nth-child(1) {
  grid-row: 1 / 3;
}
.hero-mosaic-img:nth-child(2) {
  grid-column: 2 / 4;
}
.hero-mosaic-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-mosaic-img:nth-child(2) img {
  object-position: center 35%;
}
.hero-mosaic-img:nth-child(3) img,
.hero-mosaic-img:nth-child(4) img {
  object-position: center 15%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  border: 1px solid rgba(247, 240, 220, 0.28);
  border-radius: 100px;
  padding: 7px 14px 7px 10px;
}
.hero-badge-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.95);
  line-height: 1.2;
}
.hero-badge-value {
  font-size: 13px;
  font-weight: 700;
  font-stretch: condensed;
  font-variation-settings: var(--fv-semi);
  color: var(--cream);
  line-height: 1.1;
  border-left: 1px solid rgba(247, 240, 220, 0.28);
  padding-left: 10px;
}

/* ══════════════════════════════════════════
       SECTIONS :frameless par défaut sur fond crème
       Les classes modificatrices ajoutent le card treatment
    ══════════════════════════════════════════ */
section {
  margin: 0 20px 8px;
  padding: 80px 48px;
}
.section-light {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  overflow: hidden;
}
.section-dark {
  background: var(--brown-d);
  color: var(--cream);
  border-radius: 12px;
  overflow: hidden;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

#concernes {
  max-width: var(--max);
  margin: 0 auto 32px;
}

/* ══════════════════════════════════════════
       PARTNER STRIP
    ══════════════════════════════════════════ */
.partner-strip {
  margin: 0 20px 8px;
  padding: 28px 48px;
}
.partner-strip-label {
  font-size: 12px;
  font-weight: 700;
  font-variation-settings:
    "wdth" 90,
    "wght" 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(80, 48, 36, 0.68);
  text-align: center;
  margin-bottom: 18px;
  display: block;
}
.partner-strip-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.partner-strip-logos a {
  display: flex;
  align-items: center;
}
.partner-strip-logos img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: opacity 200ms;
}
.partner-strip-logos a:hover img {
  opacity: 0.75;
}
.logo-blend-white {
  mix-blend-mode: multiply;
}

/* ══════════════════════════════════════════
       MANIFESTE
    ══════════════════════════════════════════ */
.manifeste-wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}
.manifeste-h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 28px;
}
.manifeste-h2 em {
  font-style: italic;
  font-variation-settings:
    "wdth" 100,
    "wght" 400;
  color: var(--coral);
}
.manifeste-text p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(80, 48, 36, 0.8);
  margin-bottom: 20px;
}
.manifeste-text strong {
  color: var(--brown);
  font-variation-settings:
    "wdth" 100,
    "wght" 700;
}

.thema-block {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--bdr);
}
.thema-list {
  margin-top: 16px;
  columns: 2;
  column-gap: 28px;
}
.thema-list li {
  font-size: 16px;
  color: rgba(80, 48, 36, 0.8);
  line-height: 1.5;
  padding: 6px 0;
  border-bottom: 1px solid rgba(80, 48, 36, 0.08);
  break-inside: avoid;
}
.thema-list li::before {
  content: "- ";
  color: var(--coral);
  font-weight: 700;
}

.manifeste-right {
  position: sticky;
  top: 100px;
}
.manifeste-photos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.manifeste-photo {
  border-radius: var(--r);
  overflow: hidden;
}
.manifeste-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.manifeste-photo:first-child img {
  aspect-ratio: 16/9;
}

/* ══════════════════════════════════════════
       MOMENT FORT :séquence sombre (pull + stats)
    ══════════════════════════════════════════ */
#moment-fort {
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}
.moment-pull {
  background: var(--brown-d);
  color: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  padding: 96px 48px 80px;
  text-align: center;
  max-width: var(--max);
  margin: 0 auto 8px;
}
.pull-q {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(247, 240, 220, 0.88);
  max-width: 860px;
  margin: 0 auto;
}
.pull-q .pull-line {
  display: block;
}
.pull-q em {
  font-style: normal;
  color: var(--yellow);
}
.pull-attr {
  margin-top: 48px;
  font-size: 10px;
  font-weight: 700;
  font-variation-settings:
    "wdth" 90,
    "wght" 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.68);
}

.moment-stats {
  padding: 48px 48px 72px;
  background: var(--cream);
  border-top: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: var(--max);
  margin: 0 auto;
}
.stat-card {
  border-radius: var(--r);
  padding: 36px 28px;
  background: var(--coral);
  color: var(--cream);
}
.stat-card:nth-child(2) {
  background: var(--yellow);
  color: var(--brown);
}
.stat-card:nth-child(3) {
  background: var(--salmon);
  color: var(--brown);
}
.stat-card:nth-child(4) {
  background: var(--brown);
  color: var(--cream);
}
.stat-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 52px);
  color: currentColor;
  line-height: 1.05;
  margin-bottom: 14px;
  display: block;
}
.stat-num em {
  font-style: normal;
  opacity: 0.65;
  font-size: 0.55em;
  font-weight: 400;
  display: block;
  margin-top: 3px;
}
.stat-label {
  font-size: 13px;
  color: currentColor;
  opacity: 0.72;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
       PROGRAMME :projets
    ══════════════════════════════════════════ */
#programme {
  padding: 72px 48px;
}
.prog-header {
  margin-bottom: 40px;
}
.prog-h2 {
  font-size: clamp(40px, 5vw, 72px);
}
.prog-h2 em {
  font-style: italic;
  font-variation-settings:
    "wdth" 100,
    "wght" 400;
  color: var(--coral);
}

.projets-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.projet-main {
  grid-row: 1 / 3;
  background: var(--brown);
  border-radius: var(--r);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}
.projet-secondary {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 36px 32px;
}
.projet-num {
  font-size: 64px;
  line-height: 0.85;
  margin-bottom: 16px;
  display: block;
}
.projet-main .projet-num {
  color: rgba(247, 240, 220, 0.14);
}
.projet-secondary .projet-num {
  color: rgba(80, 48, 36, 0.09);
}
.projet-date {
  font-size: 12px;
  font-weight: 700;
  font-variation-settings:
    "wdth" 90,
    "wght" 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.projet-main .projet-date {
  color: var(--salmon);
}
.projet-secondary .projet-date {
  color: var(--coral);
}
.projet-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  font-stretch: condensed;
  font-variation-settings: var(--fv-semi);
  line-height: 1.1;
  margin-bottom: 12px;
}
.projet-main .projet-title {
  color: var(--cream);
}
.projet-secondary .projet-title {
  color: var(--brown);
}
.projet-desc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.projet-main .projet-desc {
  color: rgba(247, 240, 220, 0.85);
}
.projet-secondary .projet-desc {
  color: rgba(80, 48, 36, 0.8);
}

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  font-variation-settings:
    "wdth" 90,
    "wght" 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.tag-yellow {
  background: rgba(242, 192, 32, 0.18);
  color: var(--brown);
  border: 1px solid rgba(242, 192, 32, 0.35);
}
.projet-gratuit {
  font-size: 13px;
  color: rgba(247, 240, 220, 0.88);
  margin-top: 16px;
  display: block;
}
.tag-outline {
  border: 1px solid rgba(80, 48, 36, 0.25);
  color: rgba(80, 48, 36, 0.48);
}

/* ══════════════════════════════════════════
       PROGRAMME JOURNÉE (intégré dans Intervenants)
    ══════════════════════════════════════════ */
.sublabel {
  font-size: 12px;
  font-weight: 700;
  font-variation-settings:
    "wdth" 90,
    "wght" 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(80, 48, 36, 0.65);
  display: block;
  margin-bottom: 18px;
}

/* ══════════════════════════════════════════
       INTERVENANTS
    ══════════════════════════════════════════ */
.intervenants-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}
.intervenants-h2 {
  font-size: clamp(36px, 4.5vw, 64px);
}
.intervenants-h2 em {
  font-style: italic;
  font-variation-settings:
    "wdth" 100,
    "wght" 400;
  color: var(--coral);
}
.announce {
  background: var(--cream);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 28px 24px;
  align-self: center;
}
.announce p {
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(80, 48, 36, 0.82);
  margin-bottom: 20px;
}
.announce strong {
  color: var(--brown);
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "wght" 700;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
.speaker-card {
  background: var(--cream);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform 150ms;
}
.speaker-card:hover {
  transform: translateY(-2px);
}
.speaker-photo {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--cream-d);
}
.speaker-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.speaker-photo img.failed {
  display: none;
}
.speaker-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.speaker-fallback span {
  font-size: 13px;
  font-weight: 700;
  font-variation-settings:
    "wdth" 75,
    "wght" 700;
  color: rgba(80, 48, 36, 0.38);
  text-align: center;
  line-height: 1.3;
}
.speaker-info {
  padding: 14px 14px 18px;
  display: flex;
  flex-direction: column;
}
.speaker-chip {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 700;
  font-variation-settings:
    "wdth" 90,
    "wght" 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
}
.speaker-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 2px;
  line-height: 1.3;
}
.speaker-role {
  font-size: 12px;
  color: rgba(80, 48, 36, 0.75);
  line-height: 1.4;
}
.speaker-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 9px;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
  opacity: 0.65;
  transition: opacity 150ms;
}
.speaker-link:hover {
  opacity: 1;
}

.artistes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 40px;
}
.artiste-card {
  background: var(--cream);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 16px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
}
.artiste-photo {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--cream-d);
  position: relative;
  flex-shrink: 0;
}
.artiste-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.artiste-photo img.failed {
  display: none;
}
.artiste-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.artiste-fallback span {
  font-size: 12px;
  font-style: italic;
  color: rgba(80, 48, 36, 0.32);
  text-align: center;
  padding: 4px;
}
.artiste-chip {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-block;
  margin-bottom: 4px;
}
.artiste-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 2px;
}
.artiste-role {
  font-size: 12px;
  color: rgba(80, 48, 36, 0.75);
  margin-bottom: 3px;
}
.artiste-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
}

.prog-journee-h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 12px;
}
.prog-intro {
  font-size: 14px;
  color: rgba(80, 48, 36, 0.8);
  line-height: 1.75;
  margin-bottom: 16px;
}
.prog-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.prog-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(80, 48, 36, 0.12);
  background: var(--white);
  transition: border-color 150ms;
}
.prog-row:hover {
  border-color: var(--brown);
}
.prog-row.feat {
  background: rgba(242, 107, 90, 0.06);
  border-color: rgba(242, 107, 90, 0.22);
}
.prog-row[data-room="audi"] {
  box-shadow: inset 4px 0 0 0 var(--coral);
}
.prog-row[data-room="ft"] {
  box-shadow: inset 4px 0 0 0 var(--brown);
}
.prog-room {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 100px;
  margin-bottom: 6px;
}
.prog-room.audi {
  background: rgba(242, 107, 90, 0.12);
  color: var(--coral-d);
}
.prog-room.ft {
  background: rgba(80, 48, 36, 0.1);
  color: var(--brown);
}
.prog-intro .audi {
  color: var(--coral-d);
  font-weight: 700;
}
.prog-intro .ft {
  color: var(--brown);
  font-weight: 700;
}
.prog-time {
  font-size: 12px;
  font-weight: 700;
  font-variation-settings:
    "wdth" 90,
    "wght" 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(80, 48, 36, 0.7);
  white-space: nowrap;
  min-width: 90px;
}
.prog-row.feat .prog-time {
  color: var(--coral);
}
.prog-content {
  flex: 1;
}
.prog-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 2px;
}
.prog-sub {
  font-size: 12px;
  color: rgba(80, 48, 36, 0.72);
}
.prog-sub a {
  color: var(--coral);
  font-weight: 700;
}
.prog-sub a:hover {
  text-decoration: underline;
}
.prog-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  white-space: nowrap;
  background: rgba(242, 107, 90, 0.1);
  color: var(--coral);
}
.prog-tag.tbc {
  background: none;
  border: 1px solid rgba(80, 48, 36, 0.3);
  color: rgba(80, 48, 36, 0.58);
}

/* ══════════════════════════════════════════
       LIEU
    ══════════════════════════════════════════ */
.lieu-h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 36px;
}
.lieu-h2 em {
  font-style: italic;
  font-variation-settings:
    "wdth" 100,
    "wght" 400;
  color: var(--coral);
}
.lieu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.lieu-info p {
  font-size: 16px;
  color: rgba(80, 48, 36, 0.82);
  line-height: 1.85;
  margin-bottom: 22px;
}
.lieu-info strong {
  color: var(--brown);
}
.lieu-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.lieu-item {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.lieu-item::before {
  content: "-";
  color: var(--coral);
  flex-shrink: 0;
}
.lieu-item span {
  font-size: 14px;
  color: var(--brown);
}
.espaces-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.espace-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(80, 48, 36, 0.08);
}
.espace-row:last-child {
  border-bottom: none;
}
.espace-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
}
.espace-cap {
  font-size: 13px;
  color: rgba(80, 48, 36, 0.75);
}
.lieu-visual {
  border-radius: var(--r);
  overflow: hidden;
}
.lieu-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.lieu-map {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
}

/* ══════════════════════════════════════════
       ORGANISATION
    ══════════════════════════════════════════ */
.org-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.org-h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  margin-bottom: 20px;
}
.org-h2 em {
  font-style: italic;
  font-variation-settings:
    "wdth" 100,
    "wght" 400;
  color: var(--coral);
}
.org-text p {
  font-size: 15px;
  color: rgba(80, 48, 36, 0.82);
  line-height: 1.85;
  margin-bottom: 16px;
}
.org-text strong {
  color: var(--brown);
  font-variation-settings:
    "wdth" 100,
    "wght" 700;
}
.org-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: stretch;
}
.org-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 28px 24px;
  height: 100%;
}
.org-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
}
.org-card-text {
  font-size: 13px;
  color: rgba(80, 48, 36, 0.78);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
       PARTENAIRES
    ══════════════════════════════════════════ */
.part-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.part-h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  margin-bottom: 0;
}
.part-grid {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}
.part-logo {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.part-logo img {
  max-height: 100px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 200ms;
}
a.part-logo {
  transition: border-color 150ms;
}
a.part-logo:hover {
  border-color: var(--brown);
}
a.part-logo:hover img {
  opacity: 1;
}
.part-slot {
}
.part-slot-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.part-slot-bar {
  width: 64px;
  height: 28px;
  background: var(--bdr);
  border-radius: 4px;
}
.part-slot-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(80, 48, 36, 0.65);
}

.part-cta {
  max-width: var(--max);
  width: calc(100% - 40px);
  margin: 0 auto 8px;
  padding: 40px 48px;
  background: var(--brown);
  border-radius: var(--r);
}
.part-cta .section-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.remerciements-standalone {
  margin: 0 20px 8px;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.remerciements-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.remerciements-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.remerciements-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(80, 48, 36, 0.65);
}
.part-cta-h {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--cream);
}
.part-cta-h em {
  font-style: italic;
  font-variation-settings:
    "wdth" 100,
    "wght" 400;
  color: var(--salmon);
}
.part-cta p {
  font-size: 14px;
  color: rgba(247, 240, 220, 0.82);
  line-height: 1.7;
  margin-top: 10px;
  max-width: 480px;
}

.remerciements {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--bdr-lt);
}
.remerciements-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(80, 48, 36, 0.68);
  display: block;
  margin-bottom: 10px;
}

/* ══════════════════════════════════════════
       PRESSE :section claire
    ══════════════════════════════════════════ */
#presse .eyebrow {
  color: var(--coral);
}
.presse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.presse-h2 {
  font-size: clamp(36px, 4.5vw, 64px);
}
.presse-h2 em {
  font-style: italic;
  font-variation-settings:
    "wdth" 100,
    "wght" 400;
  color: var(--coral);
}
.presse-text p {
  font-size: 15px;
  color: rgba(80, 48, 36, 0.82);
  line-height: 1.85;
  margin-bottom: 18px;
}
.presse-text strong {
  color: var(--brown);
}
.presse-text p:last-of-type {
  margin-bottom: 28px;
}
.presse-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.presse-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 22px;
  transition: border-color 150ms;
}
.presse-card:hover {
  border-color: var(--brown);
}
.presse-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
  display: block;
}
.presse-card p {
  font-size: 13px;
  color: rgba(80, 48, 36, 0.8);
  line-height: 1.7;
  margin-bottom: 12px;
}

.presse-figs {
  padding-top: 40px;
  border-top: 1px solid var(--bdr);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.presse-fig {
  padding: 32px 28px;
  border-right: 1px solid var(--bdr);
}
.presse-fig:last-child {
  border-right: none;
}
.presse-fig-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--coral);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.presse-fig-label {
  font-size: 16px;
  color: rgba(80, 48, 36, 0.8);
  line-height: 1.55;
}

/* ══════════════════════════════════════════
       BÉNÉVOLAT :section corail card
    ══════════════════════════════════════════ */
#benevolat {
  background: var(--coral);
  color: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.benevolat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
#benevolat .eyebrow {
  color: rgba(247, 240, 220, 0.92);
}
#benevolat .h2-serif {
  color: var(--yellow);
}
.part-cta .h2-serif {
  color: var(--salmon);
}
.benevolat-h2 {
  font-size: clamp(40px, 5vw, 72px);
  color: var(--cream);
}
.benevolat-h2 em {
  font-style: italic;
  font-variation-settings:
    "wdth" 100,
    "wght" 400;
}
.benevolat-text p {
  font-size: 15px;
  color: rgba(247, 240, 220, 0.95);
  line-height: 1.85;
  margin-bottom: 18px;
}
.benevolat-cec {
  font-size: 13px;
  color: rgba(247, 240, 220, 0.88);
  line-height: 1.7;
}
.benevolat-cec a {
  color: var(--yellow);
  font-weight: 700;
}
.benevolat-card {
  background: rgba(80, 48, 36, 0.18);
  border: 1px solid rgba(80, 48, 36, 0.22);
  border-radius: var(--r);
  padding: 44px 36px;
  text-align: center;
}
.benevolat-quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 24px;
}
.benevolat-sub {
  font-size: 13px;
  color: rgba(247, 240, 220, 0.9);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
       NEWSLETTER :section frameless sur crème
    ══════════════════════════════════════════ */
#newsletter {
  padding: 56px 48px;
}
.nl-inner {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}
.nl-eyebrow {
  color: var(--coral);
}
.nl-h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 12px;
}
.nl-h2 em {
  font-style: italic;
  font-variation-settings:
    "wdth" 100,
    "wght" 400;
  color: var(--coral);
}
.nl-desc {
  font-size: 14px;
  color: rgba(80, 48, 36, 0.8);
  line-height: 1.75;
  margin-bottom: 24px;
}
.nl-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.nl-form input {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  border: 1px solid var(--bdr);
  background: var(--white);
  color: var(--brown);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-family: var(--f);
  outline: none;
  transition: border-color 150ms;
}
.nl-form input::placeholder {
  color: rgba(80, 48, 36, 0.32);
}
.nl-form input:focus {
  border-color: var(--coral);
}
.nl-success {
  display: none;
  padding: 14px 20px;
  background: rgba(242, 107, 90, 0.08);
  border: 1px solid rgba(242, 107, 90, 0.2);
  border-radius: var(--r-sm);
  margin-top: 14px;
  font-size: 13px;
  color: var(--coral);
  font-weight: 600;
}
.nl-error {
  display: none;
  padding: 14px 20px;
  background: rgba(80, 48, 36, 0.06);
  border: 1px solid rgba(80, 48, 36, 0.18);
  border-radius: var(--r-sm);
  margin-top: 14px;
  font-size: 13px;
  color: var(--brown);
}
.nl-note {
  font-size: 12px;
  color: rgba(80, 48, 36, 0.65);
  margin-top: 12px;
}

/* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
footer {
  background: var(--brown-d);
  padding: 56px 48px 40px;
  margin: 0 20px 24px;
  border-radius: 12px;
  overflow: hidden;
}
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(247, 240, 220, 0.06);
}
.footer-logo img {
  height: 56px;
  width: auto;
  margin-bottom: 14px;
}
.footer-sub {
  font-size: 13px;
  color: rgba(247, 240, 220, 0.82);
  line-height: 1.9;
  max-width: 210px;
}
.footer-socials {
  display: flex;
  gap: 5px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer-socials a {
  font-size: 12px;
  font-weight: 700;
  font-variation-settings:
    "wdth" 90,
    "wght" 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 240, 220, 0.82);
  padding: 5px 10px;
  border: 1px solid rgba(247, 240, 220, 0.14);
  border-radius: 4px;
  transition:
    color 150ms,
    border-color 150ms;
}
.footer-socials a:hover {
  color: rgba(247, 240, 220, 0.9);
  border-color: rgba(247, 240, 220, 0.28);
}
.footer-nav {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  font-variation-settings:
    "wdth" 90,
    "wght" 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(247, 240, 220, 0.82);
  transition: color 150ms;
}
.footer-col a:hover {
  color: rgba(247, 240, 220, 0.92);
}
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  font-size: 12px;
  color: rgba(247, 240, 220, 0.72);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
       BOUTONS
    ══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f);
  font-size: 13px;
  font-weight: 700;
  font-variation-settings:
    "wdth" 90,
    "wght" 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition:
    background 140ms,
    color 140ms,
    opacity 140ms,
    transform 120ms;
}
.btn:active {
  transform: scale(0.97);
}
.btn-coral {
  background: var(--coral);
  color: #fff;
}
.btn-coral:hover {
  background: var(--coral-d);
}
.btn-brown {
  background: var(--brown);
  color: var(--cream);
}
.btn-brown:hover {
  background: var(--brown-d);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--brown);
  font-weight: 800;
}
.btn-yellow:hover {
  opacity: 0.88;
}
.btn-cream {
  background: var(--cream);
  color: var(--brown);
  font-weight: 800;
}
.btn-cream:hover {
  opacity: 0.88;
}
.btn-outline-inv {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 240, 220, 0.32);
}
.btn-outline-inv:hover {
  background: rgba(247, 240, 220, 0.08);
}
.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--bdr);
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--cream);
}

/* ══════════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.pull-line {
  display: block;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.pull-q.in .pull-line:nth-child(1) {
  opacity: 1;
  transform: none;
}
.pull-q.in .pull-line:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}
.pull-q.in .pull-line:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}
.pull-q.in .pull-line:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.32s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .pull-line {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(253, 250, 243, 0.98);
    backdrop-filter: blur(16px);
    padding: 12px;
    gap: 3px;
    border-bottom: 1px solid var(--bdr);
  }
  .nav-links.open a {
    font-size: 14px;
    padding: 13px 16px;
    border-radius: var(--r-sm);
  }
  .nav-links.open a:not(.nav-cta):hover {
    background: var(--cream-d);
  }
  .nav-links.open .nav-cta {
    text-align: center;
    margin-top: 4px;
  }
  .nav-burger {
    display: flex;
  }

  #hero {
    grid-template-columns: 1fr;
    margin: 90px 10px 8px;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 48px 24px 20px;
    gap: 32px;
  }

  section {
    margin: 0 10px 6px;
    padding: 48px 20px;
    border-radius: 10px;
  }
  .partner-strip {
    margin: 0 10px 6px;
    border-radius: 10px;
    padding: 20px;
  }
  footer {
    margin: 0 10px 16px;
    border-radius: 10px;
    padding: 40px 20px;
  }
  .moment-pull {
    padding: 56px 20px 48px;
  }
  .moment-stats {
    padding: 40px 20px 56px;
  }
  #benevolat {
    padding: 56px 20px;
  }
  #newsletter {
    padding: 40px 20px;
  }

  .manifeste-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .manifeste-right {
    position: static;
  }
  .manifeste-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .manifeste-photo:first-child {
    grid-column: 1/-1;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .projets-layout {
    grid-template-columns: 1fr;
  }
  .projet-main {
    grid-row: auto;
    min-height: auto;
  }

  .intervenants-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .speakers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .artistes-grid {
    grid-template-columns: 1fr;
  }
  .prog-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .prog-time {
    min-width: auto;
    font-size: 15px;
  }
  .prog-tag {
    align-self: flex-start;
    margin-top: 2px;
  }

  .lieu-grid,
  .org-grid,
  .benevolat-grid,
  .presse-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .org-cards {
    grid-template-columns: 1fr;
  }

  .part-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .part-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .part-cta {
    padding: 28px 24px;
    width: calc(100% - 20px);
  }
  .part-cta .section-inner {
    flex-direction: column;
  }
  #benevolat {
    width: calc(100% - 20px);
  }

  .presse-figs {
    grid-template-columns: 1fr;
  }
  .presse-fig {
    border-right: none;
    border-bottom: 1px solid var(--bdr);
  }
  .presse-fig:last-child {
    border-bottom: none;
  }

  .footer-top {
    flex-direction: column;
    gap: 28px;
  }
  .footer-nav {
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .speakers-grid {
    grid-template-columns: 1fr;
  }
  .speaker-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
  .speaker-photo {
    width: 88px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
  }
  .speaker-info {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════
       UTILITY :classes extraites des inline styles
    ══════════════════════════════════════════ */

/* Image avec recadrage contain (logo Maison de Santé dans card speaker) */
.img-contain {
  object-fit: contain;
  object-position: center;
  padding: 16px;
  background: #fff;
}

/* Modificateurs d'espacement sur .sublabel */
.sublabel-mt40 {
  margin-top: 40px;
}
.sublabel-mt16 {
  margin-top: 16px;
}

/* Grille partenaires 4 colonnes (desktop) */
.part-grid-4col {
  grid-template-columns: repeat(4, 1fr);
}

/* Bloc co-organisation :CTA bas de section */
.co-org-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.co-org-invite {
  font-size: 15px;
  color: rgba(80, 48, 36, 0.85);
  line-height: 1.6;
}

/* Bloc action sous liste d'informations lieu */
.int-action {
  margin-top: 24px;
}

/* Logos dans la section Remerciements */
.remerciements-logo {
  max-height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* Lien héritant la couleur du parent (body text, footer) */
.link-inherit {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-inherit {
  color: inherit;
  text-decoration: none;
}
.footer-inherit:hover {
  text-decoration: underline;
}

/* Variante bouton plus petit */
.btn-sm {
  font-size: 13px;
  padding: 8px 18px;
  min-height: 36px;
}

/* Container de texte bénévolat */
.benevolat-text {
  margin-top: 24px;
}

/* Google Tag Manager :fallback noscript (remplace style="display:none") */
.gtm-noscript {
  display: none;
  visibility: hidden;
}

/* Organisation :logo UEL */
.org-uel-logo {
  max-height: 140px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin: 24px 0 0;
}

/* Organisation :card don (pleine largeur, fond sombre) */
.org-card-don {
  grid-column: 1 / -1;
  background: var(--brown-d);
  border-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  height: auto;
}
.org-card-don .org-card-title {
  color: var(--yellow);
  font-size: 15px;
}
.org-card-don .org-card-text {
  color: rgba(247, 240, 220, 0.78);
  margin-top: 6px;
  font-size: 14px;
}
.org-don-body {
  flex: 1;
  min-width: 200px;
}
.org-don-platform {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.75;
  margin-left: 4px;
}
@media (max-width: 520px) {
  .org-card-don {
    flex-direction: column;
    align-items: flex-start;
  }
}
