/* =============================================================
   NOMNIE CLUB — version aboutie & interactive
   Charte : chocolat / crème / jaune / moutarde / brique / vert
   Fonts  : Anton (display) · Poppins (texte) · Caveat (manuscrit)
   ============================================================= */

:root {
  /* ===== CHARTE OFFICIELLE NOMNIE =====
     Primaires : crème #F6F4F0 · jaune #FFBF00 · brun #63341A
     Secondaires : jaune pâle #F6DE91 · blanc #FFFFFF
     (pas de rouge ni de vert — les anciennes variables sont remappées
      dans la palette pour ne rien casser) */
  --chocolat: #63341A;        /* brun principal (texte + éléments sombres) */
  --chocolat-deep: #4a2713;   /* brun foncé */
  --creme: #F6F4F0;           /* fond principal */
  --creme-light: #FFFFFF;     /* blanc (cartes) */
  --pale: #F6DE91;            /* jaune pâle (secondaire) */
  --jaune: #FFBF00;           /* jaune signature (CTA, accents) */
  --moutarde: #FFBF00;        /* remap → jaune */
  --brique: #63341A;          /* remap → brun (aucun rouge dans la charte) */
  --vert: #F6DE91;            /* remap → jaune pâle (aucun vert dans la charte) */
  --vert-light: #EBCF7A;

  --pop: 5px 5px 0 0 var(--chocolat);
  --soft: 0 20px 45px -24px rgba(99, 52, 26, 0.55);
  --r: 22px;
  --maxw: 1300px;
  --fd: "Londrina Solid", "Arial Narrow", sans-serif;  /* charte : Londrina Solid */
  --fb: "Poppins", system-ui, sans-serif;
  --fs: "Caveat", cursive;
  --nav-h: 66px;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--fb); color: var(--chocolat);
  line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
  /* ===== DA GÉNÉRALE : gradient chaud crème → terracotta (identité 67%) ===== */
  background:
    radial-gradient(1000px 720px at 8% 4%, rgba(255,247,231,.95), rgba(255,247,231,0) 60%),
    radial-gradient(1200px 1000px at 94% 98%, rgba(176,84,50,.34), rgba(176,84,50,0) 55%),
    radial-gradient(900px 900px at 78% 40%, rgba(214,148,102,.18), rgba(214,148,102,0) 55%),
    linear-gradient(158deg, #f6ecdc 0%, #f1ddc0 44%, #e4b78d 78%, #d89a6d 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #f1ddc0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--jaune); color: var(--chocolat); }
h1,h2,h3,h4 { font-family: var(--fd); font-weight: 900; line-height: .92; text-transform: uppercase; letter-spacing: .01em; }
:focus-visible { outline: 3px solid var(--brique); outline-offset: 3px; border-radius: 4px; }

/* ---------------- utilitaires ---------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: 56px; position: relative; }
.eyebrow { font-family: var(--fb); font-weight: 700; text-transform: uppercase; letter-spacing: .22em; font-size: .72rem; color: var(--brique); display: inline-flex; align-items: center; gap: 8px; }
.eyebrow::before,
.eyebrow::after { content: ""; width: 26px; height: 2px; background: currentColor; flex: none; }
.center { text-align: center; } .center .eyebrow { justify-content: center; }
.muted { color: rgba(59,36,28,.72); }
.h-title { font-size: clamp(2.3rem, 5.5vw, 4.3rem); }
.lead { font-size: 1.18rem; max-width: 62ch; }
.script { font-family: var(--fs); color: var(--brique); }

/* reveal au scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* doodles SVG (couronne, étoile, gribouillage) */
.doodle { position: absolute; pointer-events: none; color: var(--brique); }

/* ---------------- barre de progression + header ---------------- */
.progress { position: fixed; top: 0; left: 0; height: 4px; width: 0; z-index: 60; background: var(--brique); }
.header { position: fixed; inset: 0 0 auto 0; z-index: 55; background: var(--jaune); border-bottom: 2px solid var(--chocolat); transition: box-shadow .3s; }
.header.scrolled { box-shadow: 0 6px 20px -10px rgba(35,20,13,.55); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 40px; height: 40px; }
.brand-name { font-family: var(--fd); font-size: 1.55rem; color: var(--chocolat); }
.brand-name span { color: var(--brique); }
.nav-links { display: none; align-items: center; gap: 8px; list-style: none; }
.nav-links a { position: relative; font-weight: 600; font-size: .9rem; color: rgba(59,36,28,.85); padding: 8px 13px; border-radius: 999px; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--chocolat); background: rgba(59,36,28,.08); }
.nav-links a.active { color: var(--jaune); background: var(--chocolat); }
.nav-cta { display: none; background: var(--brique); color: var(--creme); border-color: var(--chocolat); box-shadow: var(--pop); }
.nav-cta:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 0 var(--chocolat); background: var(--brique); }
.burger { display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: var(--chocolat); border: 2px solid var(--chocolat); border-radius: 999px; }
.burger span { width: 20px; height: 2px; background: var(--creme); transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: var(--nav-h) 0 0 0; z-index: 54; background: var(--creme); padding: 24px 20px; transform: translateY(-12px); opacity: 0; pointer-events: none; visibility: hidden; transition: opacity .25s, transform .25s, visibility .25s; overflow-y: auto; }
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
.mobile-menu a:not(.btn) { display: flex; justify-content: space-between; align-items: center; font-family: var(--fd); font-size: 1.8rem; color: var(--chocolat); padding: 15px 0; border-bottom: 1px solid rgba(59,36,28,.12); }
.mobile-menu a:not(.btn) span { color: var(--brique); }
.mobile-menu .btn { margin-top: 22px; }

/* ---------------- boutons ---------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: .95rem; line-height: 1.1; padding: 14px 24px; border-radius: 999px; border: 2px solid var(--chocolat); transition: transform .18s, box-shadow .18s, background .18s, color .18s; }
.btn-primary { background: var(--jaune); color: var(--chocolat); box-shadow: var(--pop); }
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 0 var(--chocolat); }
.btn-dark { background: var(--chocolat); color: var(--creme); }
.btn-dark:hover { transform: translateY(-2px); background: var(--chocolat-deep); }
.btn-cream { background: var(--creme); color: var(--chocolat); box-shadow: var(--pop); }
.btn-cream:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 0 var(--chocolat); }
.btn-outline { background: transparent; color: var(--chocolat); }
.btn-outline:hover { background: var(--chocolat); color: var(--creme); }
.btn-sm { padding: 9px 16px; font-size: .85rem; }
.btn-block { width: 100%; }

/* ---------------- pastilles ---------------- */
.pill { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; padding: 5px 12px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; border: 2px solid var(--chocolat); white-space: nowrap; }
.pill-jaune { background: var(--jaune); color: var(--chocolat); }
.pill-vert { background: var(--vert); color: var(--chocolat); }
.pill-brique { background: var(--brique); color: var(--creme); }
.pill-moutarde { background: var(--moutarde); color: var(--chocolat); }
.pill-choco { background: var(--chocolat); color: var(--creme); }
.pill-cream { background: var(--creme); color: var(--chocolat); }
.pill-ghost { background: transparent; border-style: dashed; border-color: rgba(59,36,28,.4); color: rgba(59,36,28,.7); }

/* ---------------- SLOT PHOTO ---------------- */
.photo-slot { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; padding: 14px;
  background: repeating-linear-gradient(45deg, var(--creme), var(--creme) 11px, var(--creme-light) 11px, var(--creme-light) 22px);
  border: 2px dashed rgba(59,36,28,.4); color: rgba(59,36,28,.62); }
.photo-slot .cam { font-size: 1.6rem; opacity: .8; }
.photo-slot .lbl { font-family: var(--fd); font-size: .95rem; letter-spacing: .06em; color: var(--chocolat); }
.photo-slot .desc { font-size: .72rem; max-width: 28ch; line-height: 1.35; }
.media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--chocolat); border-radius: inherit; }
.media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }

/* ---------------- marquee ---------------- */
.marquee { overflow: hidden; padding: 11px 0; border-block: 2px solid var(--chocolat); }
.marquee.j { background: var(--jaune); } .marquee.b { background: var(--brique); }
.marquee-track { display: flex; flex-wrap: nowrap; width: max-content; animation: slide 40s linear infinite; }
.marquee.b .marquee-track { animation-duration: 46s; }
.marquee span { flex: 0 0 auto; font-family: var(--fd); font-size: 1.35rem; text-transform: uppercase; white-space: nowrap; padding-right: 26px; }
.marquee.j span { color: var(--chocolat); } .marquee.b span { color: var(--creme); }
@keyframes slide { to { transform: translateX(-50%); } }

/* =====================================================
   HERO (sombre + spotlight + slogan stacké + polaroïds)
   ===================================================== */
.hero { position: relative; min-height: 90vh; display: grid; place-items: center; background: var(--chocolat-deep); color: var(--creme); overflow: hidden; padding-top: var(--nav-h); }
.hero .grain { position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); }
.hero-spot { position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(340px circle at var(--mx, 78%) var(--my, 12%), rgba(255,194,26,.28), rgba(255,194,26,.06) 40%, transparent 62%); transition: background .1s; }
.hero-inner { position: relative; z-index: 2; display: grid; gap: 26px; align-items: center; }
.hero-pre { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,240,214,.1); border: 1.5px solid rgba(255,240,214,.28); border-radius: 999px; padding: 7px 14px; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; width: max-content; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brique); position: relative; }
.dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--brique); animation: ping 2s ease-out infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .6 } 100% { transform: scale(2.6); opacity: 0 } }
.hero h1 { font-size: clamp(2.9rem, 12vw, 5.4rem); color: var(--creme); }
.hero h1 .y { color: var(--jaune); } .hero h1 .r { color: var(--brique); }
.hero h1 .u { position: relative; white-space: nowrap; }
.hero h1 .u::after { content: ""; position: absolute; left: -2px; right: -2px; bottom: 2px; height: .18em; background: var(--brique); border-radius: 6px; z-index: -1; }
.hero-sub { max-width: 42ch; color: rgba(255,240,214,.8); font-size: 1.06rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.hero-pills .pill { animation: bob 4s ease-in-out infinite; }
.hero-pills .pill:nth-child(2n) { animation-duration: 5s; }
.hero-pills .pill:nth-child(3n) { animation-duration: 6s; }
@keyframes bob { 50% { transform: translateY(-6px); } }

/* collage polaroïds hero */
.hero-collage { position: relative; height: 360px; }
.polaroid-f { position: absolute; background: #fff; padding: 8px 8px 0; border: 2px solid var(--chocolat); border-radius: 6px; box-shadow: 0 18px 40px -16px rgba(0,0,0,.7); width: 168px; }
.polaroid-f .ph { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 3px; background: var(--chocolat); }
.polaroid-f figcaption { font-family: var(--fs); font-size: 1.15rem; text-align: center; color: var(--chocolat); padding: 5px 0 7px; }
.pf1 { top: 6%; left: 4%; transform: rotate(-7deg); animation: floaty 7s ease-in-out infinite; }
.pf2 { top: 0; right: 6%; transform: rotate(6deg); animation: floaty 8.5s ease-in-out infinite; }
.pf3 { bottom: 2%; left: 24%; transform: rotate(4deg); animation: floaty 7.8s ease-in-out infinite; z-index: 2; }
@keyframes floaty { 50% { transform: translateY(-14px) rotate(var(--rot, 0deg)); } }
.pf1 { --rot: -7deg; } .pf2 { --rot: 6deg; } .pf3 { --rot: 4deg; }
.hero-disco { position: absolute; right: 8%; bottom: 30%; font-size: 2.4rem; animation: spin 9s linear infinite; z-index: 1; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------------- ADN bulles ---------------- */
.adn-bubbles { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }

/* ---------------- cartes / grilles ---------------- */
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { position: relative; background: var(--creme-light); border: 2px solid var(--chocolat); border-radius: var(--r); box-shadow: var(--soft); overflow: visible; height: 100%; transition: transform .22s, box-shadow .22s; }
.card > .media:first-child { border-top-left-radius: var(--r); border-top-right-radius: var(--r); }
.card:hover { transform: translateY(-4px); box-shadow: 0 26px 48px -22px rgba(59,36,28,.62); }
.card-pad { padding: 26px 24px; }

/* axes */
.axis { display: flex; flex-direction: column; min-height: 200px; padding: 26px 22px; border-radius: var(--r); border: 2px solid var(--chocolat); box-shadow: var(--pop); transition: transform .2s, box-shadow .2s; }
.axis:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 0 var(--chocolat); }
.axis .ico { font-size: 2.4rem; } .axis h3 { font-size: 1.9rem; margin: 10px 0 6px; } .axis .go { margin-top: auto; font-weight: 700; }
.axis-events { background: var(--jaune); }
.axis-deals { background: var(--brique); color: var(--creme); }
.axis-comm { background: var(--vert); color: var(--chocolat); }

/* tuiles décoratives */
.tile { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--creme); text-align: center; }

/* ---------------- Événements (filtres + tickets) ---------------- */
.filters { display: flex; gap: 8px; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; -ms-overflow-style: none; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.chip { flex: 0 0 auto; white-space: nowrap; border: 2px solid rgba(59,36,28,.2); background: var(--creme-light); color: rgba(59,36,28,.75); border-radius: 999px; padding: 9px 16px; font-size: .85rem; font-weight: 600; transition: .2s; }
.chip:hover { border-color: var(--chocolat); }
.chip.active { background: var(--chocolat); color: var(--creme); border-color: var(--chocolat); }
.event-card.hide { display: none; }
.event-tags { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; z-index: 2; }
.event-status { position: absolute; bottom: 10px; left: 10px; z-index: 2; }
.event-meta { list-style: none; display: grid; gap: 7px; margin: 12px 0; font-size: .88rem; color: rgba(59,36,28,.82); }
.event-meta li { display: flex; gap: 8px; align-items: center; }
.event-meta .bullet { width: 8px; height: 8px; border-radius: 50%; background: var(--jaune); border: 1px solid var(--chocolat); flex: none; }
.price { font-family: var(--fd); font-size: 1.5rem; color: var(--brique); }
.info-band { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; justify-content: center; background: var(--creme-light); border: 2px solid var(--chocolat); border-radius: 16px; padding: 13px 18px; font-size: .85rem; font-weight: 600; }
.info-band .sep { opacity: .3; }
.pay-badge { display: inline-flex; align-items: center; gap: 5px; font-size: .68rem; font-weight: 700; border: 1.5px solid rgba(59,36,28,.25); border-radius: 8px; padding: 3px 8px; color: rgba(59,36,28,.75); }

/* ---------------- Bons plans ---------------- */
.deal-hero { background: var(--chocolat); color: var(--creme); border-radius: var(--r); border: 2px solid var(--chocolat); padding: 28px 22px; box-shadow: var(--soft); overflow: hidden; }
.deal-hero .big { font-family: var(--fd); font-size: clamp(2rem, 9vw, 3.2rem); color: var(--jaune); line-height: .95; }
.deal-hero-inner { display: grid; gap: 22px; }
.deal-photo { position: relative; aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; border: 2px solid rgba(255,240,214,.3); }
.deal { position: relative; padding: 18px; border-radius: 16px; border: 2px solid var(--chocolat); background: var(--creme-light); display: flex; flex-direction: column; gap: 6px; transition: transform .2s; overflow: hidden; }
.deal:hover { transform: translateY(-3px); }
.deal .off { font-family: var(--fd); font-size: 1.8rem; color: var(--brique); }
.deal .lock { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 6px; background: rgba(59,36,28,.82); color: var(--creme); font-weight: 700; letter-spacing: .03em; transition: opacity .25s; }
.deal:hover .lock { opacity: 0; }

/* ---------------- Précarité (stat inspi #2) ---------------- */
.precarity { background: var(--creme-light); overflow: hidden; }
.precarity-grid { display: grid; gap: 20px; align-items: center; }
.stat-huge { position: relative; display: grid; place-items: center; width: fit-content; margin-inline: auto; padding: 8px 0; }
.stat-circle { display: block; width: min(58vw, 250px); aspect-ratio: 1; border-radius: 50%; background: var(--chocolat); animation: softpulse 4.5s ease-in-out infinite; }
/* NB : l'ancien .stat-num plein-cadre (position:absolute) a été retiré — il entrait en conflit
   avec la bannière éditoriale .stat-banner .stat-num (défini plus bas) et superposait le 67% au message. */
@keyframes softpulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.035); } }
/* liste à puces façon fiche */
.spec { list-style: none; display: grid; gap: 10px; margin-top: 16px; }
.spec li { display: flex; align-items: flex-start; gap: 10px; }
.spec .dotb { width: 10px; height: 10px; border-radius: 50%; background: var(--jaune); border: 1.5px solid var(--chocolat); margin-top: 7px; flex: none; }

/* ---------------- Communauté / form ---------------- */
.comm-grid { display: grid; gap: 30px; }
.form-shell { background: var(--creme-light); border: 2px solid var(--chocolat); border-radius: var(--r); padding: 24px; box-shadow: var(--soft); color: var(--chocolat); }
.tally-flag { display: inline-flex; align-items: center; gap: 6px; background: var(--jaune); color: var(--chocolat); border: 2px dashed var(--chocolat); border-radius: 999px; padding: 5px 12px; font-size: .72rem; font-weight: 700; }
.field { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.field label { font-weight: 600; font-size: .85rem; }
.field input, .field select { border: 2px solid rgba(59,36,28,.25); border-radius: 14px; padding: 12px 14px; font: inherit; background: #fff; color: var(--chocolat); width: 100%; }
.field input:focus-visible, .field select:focus-visible { outline: 3px solid var(--brique); outline-offset: 2px; border-color: var(--chocolat); }

/* ---------------- Steps ---------------- */
.step { display: flex; gap: 14px; align-items: flex-start; }
.step .n { flex: none; width: 46px; height: 46px; border-radius: 50%; border: 2px solid currentColor; display: grid; place-items: center; font-family: var(--fd); font-size: 1.3rem; }

/* ---------------- Impact ---------------- */
.stat .num { font-family: var(--fd); font-size: clamp(2.6rem, 11vw, 3.6rem); color: var(--jaune); line-height: 1; }
.stat p { font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,240,214,.85); }

/* ---------------- Témoignages ---------------- */
.quote { font-family: var(--fd); font-size: 3rem; line-height: .5; color: var(--jaune); }
.avatar-mini { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--chocolat); background: var(--jaune); display: grid; place-items: center; font-family: var(--fd); font-size: 1.1rem; flex: none; }

/* ---------------- Équipe (doodles inspi #3) ---------------- */
.team-card { position: relative; text-align: center; }
.team-photo { position: relative; aspect-ratio: 1; border-radius: 16px; overflow: hidden; border: 2px solid var(--chocolat); background: var(--brique); }
.team-card:nth-child(2n) .team-photo { background: var(--vert); }
.team-card:nth-child(3n) .team-photo { background: var(--moutarde); }
.team-doodle { position: absolute; top: -14px; right: -8px; color: var(--chocolat); z-index: 3; transform: rotate(8deg); }
.team-card:nth-child(2n) .team-doodle { left: -8px; right: auto; transform: rotate(-10deg); }
.team-name { font-family: var(--fd); font-size: 1.3rem; margin-top: 12px; }
.team-role { color: var(--brique); font-weight: 700; font-size: .85rem; }

/* ---------------- Partenaires ---------------- */
.partner { height: 92px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 12px; border: 2px dashed rgba(59,36,28,.3); border-radius: 14px; background: var(--creme-light); font-family: var(--fd); font-size: .95rem; color: rgba(59,36,28,.65); transition: .2s; }
.partner:hover { border-style: solid; color: var(--chocolat); transform: translateY(-3px); }

/* ---------------- Galerie (polaroïds + lightbox) ---------------- */
.gallery-strip { display: flex; gap: 16px; overflow-x: auto; padding: 12px 4px 24px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.gallery-strip::-webkit-scrollbar { display: none; }
.polarow { flex: 0 0 200px; scroll-snap-align: center; background: #fff; padding: 10px 10px 0; border: 2px solid var(--chocolat); border-radius: 6px; box-shadow: var(--soft); cursor: pointer; transition: transform .25s; }
.gallery-strip .polarow:nth-child(odd) { transform: rotate(-3deg); }
.gallery-strip .polarow:nth-child(even) { transform: rotate(3deg); }
.gallery-strip .polarow:hover, .gallery-strip .polarow:focus-visible { transform: rotate(0) translateY(-6px); z-index: 2; }
.polarow .phb { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 3px; background: var(--chocolat); }
.polarow figcaption { font-family: var(--fs); font-size: 1.15rem; text-align: center; color: var(--chocolat); padding: 6px 0 8px; }

.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(35,20,13,.92); padding: 20px; }
.lightbox.open { display: flex; }
.lightbox figure { position: relative; max-width: 520px; width: 100%; background: #fff; padding: 14px 14px 0; border: 2px solid var(--chocolat); border-radius: 8px; }
.lightbox .phb { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; background: var(--chocolat); }
.lightbox figcaption { font-family: var(--fs); font-size: 1.6rem; text-align: center; color: var(--chocolat); padding: 8px 0 12px; }
.lightbox-close { position: absolute; top: -16px; right: -16px; width: 44px; height: 44px; border-radius: 50%; background: var(--jaune); border: 2px solid var(--chocolat); font-size: 1.1rem; display: grid; place-items: center; }

/* ---------------- Footer ---------------- */
.footer { background: var(--chocolat); color: var(--creme); padding: 48px 0 28px; }
.footer a { color: rgba(255,240,214,.78); } .footer a:hover { color: var(--creme); }
.footer h4 { font-family: var(--fd); color: var(--jaune); font-size: 1.1rem; margin-bottom: 12px; }
.footer ul { list-style: none; display: grid; gap: 8px; font-size: .9rem; }
.foot-brand .brand-name { color: var(--creme); } .foot-brand .brand-name span { color: var(--jaune); }
.social { display: inline-flex; padding: 8px 14px; border: 1px solid rgba(255,240,214,.3); border-radius: 999px; font-size: .8rem; font-weight: 600; margin-right: 8px; }
.social:hover { background: var(--jaune); color: var(--chocolat); border-color: var(--jaune); }
.foot-bottom { border-top: 1px solid rgba(255,240,214,.15); margin-top: 32px; padding-top: 18px; font-size: .82rem; color: rgba(255,240,214,.6); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }

/* back to top */
.totop { position: fixed; right: 18px; bottom: 18px; z-index: 40; width: 50px; height: 50px; border-radius: 50%; background: var(--jaune); border: 2px solid var(--chocolat); box-shadow: var(--pop); font-size: 1.2rem; display: grid; place-items: center; opacity: 0; pointer-events: none; transform: translateY(12px); transition: .25s; }
.totop.show { opacity: 1; pointer-events: auto; transform: none; }

/* ===== HERO bannière collage (inspi Вечеринка) ===== */
.hero-collage-bg { position: absolute; inset: 0; z-index: 0; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 5px; }
.hero-tile { position: relative; overflow: hidden; display: grid; place-items: center; background: var(--chocolat); color: rgba(255,240,214,.5); font-size: 1.3rem; }
.hero-tile:nth-child(3n) { background: #4a2b1f; }
.hero-tile:nth-child(4n) { background: var(--vert); }
.hero-tile:nth-child(5n) { background: var(--brique); }
.hero-tile small { position: absolute; bottom: 5px; font-family: var(--fb); font-size: .52rem; letter-spacing: .1em; text-transform: uppercase; opacity: .6; }
.hero-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse at 50% 44%, rgba(35,20,13,.5), rgba(35,20,13,.9)); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 26px 20px; }
.hero-emblem { width: clamp(76px, 15vw, 120px); margin: 8px auto 12px; filter: drop-shadow(0 8px 18px rgba(0,0,0,.55)); }
.hero-word { font-size: clamp(3.6rem, 16vw, 8.6rem); color: var(--creme); line-height: .82; text-shadow: 0 6px 26px rgba(0,0,0,.6); }
.hero-word span { color: var(--jaune); }
.hero-phrase { font-weight: 700; font-size: clamp(1.05rem, 3.7vw, 1.7rem); color: var(--jaune); margin-top: 16px; text-shadow: 0 2px 12px rgba(0,0,0,.7); }
.hero-cta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero-badge2 { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,240,214,.12); border: 1.5px solid rgba(255,240,214,.32); border-radius: 999px; padding: 6px 14px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--creme); }

/* ===== Section rouge "c'est quoi Nomnie" (inspi #1) ===== */
.redwall { position: relative; overflow: hidden; background: var(--brique); color: var(--creme); }
.red-tag { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; letter-spacing: .12em; font-size: .74rem; text-transform: uppercase; color: rgba(255,240,214,.85); border: 1.5px solid rgba(255,240,214,.35); border-radius: 999px; padding: 6px 14px; }
.red-hero { position: relative; text-align: center; padding: 30px 0; }
.red-title { font-size: clamp(2.5rem, 10.5vw, 5.8rem); color: var(--creme); line-height: .9; }
.red-title span { color: var(--jaune); }
.red-accent { font-family: var(--fs); font-size: clamp(1.7rem, 5.5vw, 2.8rem); color: var(--jaune); margin-top: 10px; }
.red-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 22px; }
.spill { position: static; display: inline-flex; align-items: center; gap: 6px; background: var(--jaune); color: var(--chocolat); border: 2px solid var(--chocolat); border-radius: 999px; padding: 5px 12px; font-weight: 700; font-size: .82rem; box-shadow: var(--pop); }
.spill .si { width: 20px; height: 20px; object-fit: contain; }

/* ===== icônes illustrées (badges — repli emoji) ===== */
.ev-ic { position: absolute; right: 10px; bottom: 10px; z-index: 2; width: 54px; height: 54px; border-radius: 50%; background: var(--creme); border: 2px solid var(--chocolat); display: grid; place-items: center; font-size: 1.8rem; box-shadow: var(--pop); overflow: hidden; }
.ev-ic .ic-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 5px; background: var(--creme); }
.axis .ico { position: relative; display: inline-grid; place-items: center; }
.axis .ico .ic-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }

/* ===== overrides responsive hero collage + pills éparpillées ===== */
@media (min-width: 720px) {
  .hero-collage-bg { grid-template-columns: repeat(6, 1fr); }
}
@media (min-width: 820px) {
  .red-hero { min-height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .red-pills { position: absolute; inset: 0; margin: 0; display: block; pointer-events: none; }
  .spill { position: absolute; }
  .spill.s1 { top: 8%; left: 9%; transform: rotate(-9deg); }
  .spill.s2 { top: 3%; right: 12%; transform: rotate(7deg); }
  .spill.s3 { top: 40%; left: 3%; transform: rotate(5deg); }
  .spill.s4 { top: 34%; right: 4%; transform: rotate(-6deg); }
  .spill.s5 { bottom: 12%; left: 12%; transform: rotate(6deg); }
  .spill.s6 { bottom: 9%; right: 14%; transform: rotate(-8deg); }
  .spill.s7 { top: 15%; left: 31%; transform: rotate(-4deg); }
  .spill.s8 { bottom: 17%; right: 33%; transform: rotate(5deg); }
}

/* =====================================================
   ICÔNES ILLUSTRÉES NOMNIE — intégration éditoriale
   ===================================================== */
/* sticker d'activité : grande illustration détourée qui dépasse du coin de la carte */
.act-sticker { position: absolute; top: -20px; right: -18px; z-index: 5; width: 138px; height: 138px; pointer-events: none; filter: drop-shadow(3px 5px 5px rgba(0,0,0,.3)); transition: transform .3s ease; }
.act-sticker img { width: 100%; height: 100%; object-fit: contain; }
.event-card:nth-child(1) .act-sticker { transform: rotate(-7deg); }
.event-card:nth-child(2) .act-sticker { transform: rotate(6deg); }
.event-card:nth-child(3) .act-sticker { transform: rotate(-4deg); }
.event-card:nth-child(4) .act-sticker { transform: rotate(8deg); }
.event-card:nth-child(5) .act-sticker { transform: rotate(-5deg); }
.event-card:hover .act-sticker { transform: rotate(0deg) scale(1.08); }

/* éléments décoratifs flottants entre / dans les sections */
.deco { position: absolute; pointer-events: none; z-index: 2; }
.deco img { width: 100%; height: auto; display: block; filter: drop-shadow(0 6px 12px rgba(0,0,0,.35)); }
.float-a { animation: floaty 7s ease-in-out infinite; }
.float-b { animation: floaty 9s ease-in-out infinite; }
.float-c { animation: bob 5.5s ease-in-out infinite; }

/* icône en fond, faible opacité (habillage discret) */
.bg-deco { position: absolute; z-index: 0; pointer-events: none; opacity: .09; }
.bg-deco img { width: 100%; height: auto; }

/* séparateur : bandeau papier déchiré */
.sep-banner { position: relative; display: flex; justify-content: center; height: 40px; z-index: 6; pointer-events: none; }
.sep-banner img { height: 96px; width: auto; max-width: none; margin-top: -30px; filter: drop-shadow(0 6px 10px rgba(35,20,13,.3)); }

/* ===== SECTION RÉSERVER — tickets qui flottent & se déchirent ===== */
.tickets { display: grid; gap: 18px; }
.ticket { position: relative; height: 150px; cursor: pointer; background: none; border: none; padding: 0; text-align: left; animation: floaty 6s ease-in-out infinite; }
.ticket:nth-child(2) { animation-duration: 7s; } .ticket:nth-child(3) { animation-duration: 6.6s; } .ticket:nth-child(4) { animation-duration: 7.4s; }
.tk { position: absolute; inset: 0; background: var(--creme-light); border: 2px solid var(--chocolat); border-radius: 14px; box-shadow: var(--pop); overflow: hidden; transition: transform .55s cubic-bezier(.36,0,.2,1), opacity .55s; }
.ticket.feat .tk { background: var(--jaune); }
.tk.top { clip-path: polygon(0 0,100% 0,100% 46%,90% 50%,80% 46%,70% 50%,60% 46%,50% 50%,40% 46%,30% 50%,20% 46%,10% 50%,0 46%); }
.tk.bottom { clip-path: polygon(0 46%,10% 50%,20% 46%,30% 50%,40% 46%,50% 50%,60% 46%,70% 50%,80% 46%,90% 50%,100% 46%,100% 100%,0 100%); }
.ticket:hover .tk { box-shadow: 7px 7px 0 0 var(--chocolat); }
.ticket.torn .tk.top { transform: translateY(-36px) rotate(-7deg); opacity: 0; }
.ticket.torn .tk.bottom { transform: translateY(40px) rotate(6deg); opacity: 0; }
.tk-in { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 16px 62px 16px 20px; }
.tk-name { font-family: var(--fd); font-size: 1.7rem; line-height: .9; }
.tk-places { font-size: .8rem; font-weight: 600; color: rgba(59,36,28,.7); margin-top: 3px; }
.tk-price { font-family: var(--fd); font-size: 1.3rem; color: var(--brique); margin-top: 8px; }
.ticket.feat .tk-price { color: var(--chocolat); }
.tk-cta { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; color: rgba(59,36,28,.7); }
.tk-bar { position: absolute; right: 14px; top: 22px; bottom: 22px; width: 32px; background: repeating-linear-gradient(90deg, var(--chocolat) 0 2px, transparent 2px 5px); opacity: .7; }
.tk-tag { position: absolute; top: -12px; right: 14px; z-index: 5; }

@media (min-width: 600px) { .tickets { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .act-sticker { width: 98px; height: 98px; top: -14px; right: -12px; }
  .bg-deco { opacity: .06; }
  .deco.hide-m { display: none; }
  .sep-banner img { height: 70px; margin-top: -20px; }
}

/* ===== Modale billets (formules par événement) ===== */
.tmodal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(35,20,13,.9); padding: 18px; overflow-y: auto; }
.tmodal.open { display: flex; }
.tmodal-box { position: relative; width: 100%; max-width: 640px; background: var(--creme); border: 2px solid var(--chocolat); border-radius: 22px; padding: 26px 22px; box-shadow: var(--soft); }
.tmodal-close { position: absolute; top: -14px; right: -14px; width: 46px; height: 46px; border-radius: 50%; background: var(--jaune); border: 2px solid var(--chocolat); font-size: 1.1rem; display: grid; place-items: center; box-shadow: var(--pop); }
.tmodal-ev { font-family: var(--fb); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .74rem; color: var(--brique); }
.tmodal h3 { font-size: clamp(1.6rem, 6vw, 2.2rem); margin: 4px 0 4px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (min-width: 720px) {
  .section { padding-block: 64px; }
  .grid { gap: 32px; }
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .precarity-grid { grid-template-columns: .8fr 1.2fr; }
  .comm-grid { grid-template-columns: 1fr 1fr; }
  .deal-hero-inner { grid-template-columns: 1.35fr .65fr; align-items: center; }
}
@media (min-width: 960px) {
  .nav-links, .nav-cta { display: flex; }
  .burger { display: none; }
  .mobile-menu { display: none; }
  .nav { height: 76px; } :root { --nav-h: 76px; }
  .hero-inner { grid-template-columns: 1.1fr .9fr; }
  .hero-collage { height: 460px; }
}
@media (max-width: 520px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .info-band { font-size: .8rem; }
}
/* =====================================================
   HERO v3 — bannière immersive (photo en fond + slogan superposé)
   ===================================================== */
.hero { position: relative; min-height: 64vh; display: flex; align-items: flex-end; overflow: hidden; padding-top: var(--nav-h); background: var(--chocolat-deep); }
.hero::before, .hero::after { content: none; }
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-photo .fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; color: rgba(255,240,214,.5); background: linear-gradient(135deg, var(--chocolat) 0%, #5a3524 48%, var(--brique) 100%); }
.hero-photo .fallback .cam { font-size: 2rem; opacity: .7; }
.hero-photo .fallback .lbl { font-family: var(--fd); letter-spacing: .06em; }
.hero-photo .fallback .desc { font-size: .8rem; max-width: 32ch; }
.hero-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(23,13,8,.9) 0%, rgba(23,13,8,.55) 38%, rgba(23,13,8,.2) 70%, rgba(23,13,8,.4) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1040px; margin: 0 auto; padding: 0 22px 48px; text-align: left; }
.hero-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hero-brand img { width: 60px; height: 60px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.55)); }
.hero-brand .wm { font-family: var(--fd); font-size: 1.7rem; color: var(--creme); line-height: 1; }
.hero-brand .wm span { color: var(--jaune); }
.hero-eyebrow2 { display: block; font-family: var(--fb); font-weight: 700; text-transform: uppercase; letter-spacing: .2em; font-size: .7rem; color: var(--jaune); margin-bottom: 12px; }
.hero .hero-slogan { font-family: var(--fd); font-size: clamp(2.3rem, 6.8vw, 4.6rem); line-height: .92; color: var(--creme); text-transform: uppercase; text-shadow: 0 4px 22px rgba(0,0,0,.55); max-width: 17ch; }
.hero .hero-slogan span { color: var(--jaune); }
.hero-cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-start; }
@media (max-width: 640px) {
  .hero { min-height: 80vh; }
  .hero-content { padding-bottom: 38px; }
  .hero-brand img { width: 50px; height: 50px; }
  .hero-brand .wm { font-size: 1.45rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
}

/* ===== Précarité : objets Nomnie qui flottent autour du 67 % ===== */
.precarity { position: relative; overflow: hidden; }
.precarity .precarity-grid { position: relative; z-index: 2; }
.fall-obj { position: absolute; z-index: 1; pointer-events: none; filter: drop-shadow(2px 4px 5px rgba(99,52,26,.18)); animation: floatFall 6s ease-in-out infinite; }
@keyframes floatFall { 0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); } 50% { transform: translateY(16px) rotate(var(--rot,0deg)); } }
.fall-obj.f1 { --rot:-10deg; top:6%; left:2%; width:100px; animation-duration:6s; }
.fall-obj.f2 { --rot:8deg; top:57%; left:4%; width:108px; animation-duration:7.4s; }
.fall-obj.f3 { --rot:-6deg; top:24%; left:34%; width:82px; animation-duration:6.8s; }
.fall-obj.f4 { --rot:12deg; top:8%; right:4%; width:104px; animation-duration:7s; }
.fall-obj.f5 { --rot:-8deg; bottom:8%; right:2%; width:114px; animation-duration:8s; }
.fall-obj.f6 { --rot:6deg; bottom:13%; right:31%; width:84px; animation-duration:6.4s; }
@media (max-width: 720px) { .fall-obj.f3, .fall-obj.f6 { display: none; } .fall-obj { width: 66px !important; } }

/* ===== Ticket-stub par événement (sur les cartes de l'accueil) ===== */
.ticket-stub { display: flex; align-items: center; width: 100%; margin-top: 6px; border: 2px solid var(--chocolat); border-radius: 12px; overflow: hidden; background: var(--jaune); cursor: pointer; box-shadow: var(--pop); transition: transform .18s ease, box-shadow .18s ease; }
.ticket-stub:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 0 var(--chocolat); }
.ticket-stub .ts-price { font-family: var(--fd); font-size: 1.35rem; color: var(--chocolat); padding: 9px 14px; border-right: 2px dashed rgba(99,52,26,.45); white-space: nowrap; }
.ticket-stub .ts-cta { flex: 1; text-align: center; font-weight: 700; color: var(--chocolat); font-size: .88rem; padding: 9px 10px; }

/* ===== Carte événement = billet réaliste (perforation, code-barres, déchirure) ===== */
.event-card[data-slug] { cursor: pointer; }
.event-card .media, .event-card .card-pad { transition: transform .5s cubic-bezier(.4,0,.2,1), opacity .5s; }
.event-card[data-slug] .card-pad { border-top: 2px dashed rgba(99,52,26,.42); }
.event-card[data-slug] .card-pad::before, .event-card[data-slug] .card-pad::after { content: ""; position: absolute; top: -12px; width: 20px; height: 20px; border-radius: 50%; background: var(--creme); border: 2px solid var(--chocolat); z-index: 4; }
.event-card[data-slug] .card-pad::before { left: -12px; }
.event-card[data-slug] .card-pad::after { right: -12px; }
.event-card[data-slug]:hover { transform: translateY(-5px) rotate(-.4deg); }
.et-foot { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.et-foot .price { font-family: var(--fd); font-size: 1.4rem; color: var(--chocolat); }
.et-barcode { flex: 1; height: 34px; background: repeating-linear-gradient(90deg, var(--chocolat) 0 2px, transparent 2px 5px); opacity: .78; border-radius: 2px; }
.et-go { font-weight: 700; font-size: .82rem; white-space: nowrap; color: var(--brique); }
.event-card.torn .media { transform: translateY(-40px) rotate(-4deg); opacity: 0; }
.event-card.torn .card-pad { transform: translateY(46px) rotate(3deg); opacity: 0; }

/* ===== Bande polaroïd « moments » (avec légendes) ===== */
.pola-strip { display: flex; gap: 20px; overflow-x: auto; padding: 28px 4px 12px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.pola-strip::-webkit-scrollbar { display: none; }
.pola { flex: 0 0 232px; scroll-snap-align: center; background: #fff; padding: 12px 12px 0; border: 2px solid var(--chocolat); border-radius: 6px; box-shadow: var(--soft); transition: transform .25s ease; }
.pola:nth-child(odd) { transform: rotate(-2.5deg); }
.pola:nth-child(even) { transform: rotate(2.5deg); }
.pola:hover { transform: rotate(0) translateY(-6px); z-index: 2; }
.pola-ph { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 3px; background: var(--chocolat); }
.pola-ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pola figcaption { font-family: var(--fs); font-size: 1.55rem; text-align: center; color: var(--chocolat); padding: 8px 0 12px; }

/* ===== Équipe façon "Classico" — portraits classiques + doodles blancs faits main ===== */
.team-classico { background: var(--chocolat-deep); color: var(--creme); overflow: hidden; }
.team-classico .eyebrow { color: var(--jaune); }
.classico-grid { position: relative; margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cl-tile { position: relative; }
.cl-photo { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 10px; background: var(--brique); box-shadow: 0 16px 34px -16px rgba(0,0,0,.7); }
.cl-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cl-photo .photo-slot { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px; color:rgba(255,255,255,.6); background:linear-gradient(160deg,var(--brique),#7a2f1c); text-align:center; padding:10px; }
.cl-tile figcaption { text-align: center; margin-top: 12px; }
.cl-tag { display: block; font-family: var(--fs); font-size: 1.6rem; color: var(--jaune); line-height: 1; transform: rotate(-3deg); }
.cl-name { display: block; font-family: var(--fd); font-size: 1.1rem; margin-top: 4px; text-transform: uppercase; letter-spacing: .01em; }
.cl-role { display: block; font-size: .78rem; color: rgba(255,240,214,.62); margin-top: 2px; }
/* doodles blancs */
.dood { position: absolute; z-index: 3; pointer-events: none; }
.dood svg { display: block; width: 100%; height: auto; overflow: visible; }
.dood.bang { font-family: var(--fs); font-weight: 700; color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,.35); line-height: 1; }
.cl-tile:hover .cl-photo { transform: translateY(-4px); transition: transform .25s ease; }
@media (max-width: 900px) { .classico-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 540px) { .classico-grid { grid-template-columns: 1fr; } }

/* ===== Billets horizontaux réalistes (réf PURCHASE TICKET) ===== */
.ticket-list { display: grid; gap: 20px; margin-top: 28px; }
.ticket { position: relative; display: grid; grid-template-columns: 220px 1fr 190px; align-items: stretch; min-height: 176px;
  background: #fffdf7; border: 2.5px solid var(--chocolat); border-radius: 16px;
  box-shadow: 6px 6px 0 -2px rgba(99,52,26,.14), 0 16px 30px -20px rgba(99,52,26,.5);
  cursor: pointer; overflow: hidden; transition: transform .18s ease, box-shadow .18s ease; }
.ticket:hover { transform: translate(-3px,-3px); box-shadow: 11px 11px 0 -2px rgba(99,52,26,.18), 0 22px 40px -22px rgba(99,52,26,.55); }
.ticket:hover .tk-cta { background: var(--chocolat); color: var(--jaune); }
.tk-photo { position: relative; overflow: hidden; background: var(--chocolat); }
.tk-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tk-sticker { position: absolute; top: 8px; left: 8px; width: 58px; height: 58px; z-index: 2; transform: rotate(-6deg); filter: drop-shadow(1px 2px 3px rgba(0,0,0,.42)); pointer-events: none; }
.tk-sticker img { width: 100%; height: 100%; object-fit: contain; }
.tk-main { padding: 18px 24px; display: flex; flex-direction: column; justify-content: center; gap: 6px; min-width: 0; z-index: 1; }
.tk-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tk-status { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--brique); }
.tk-name { font-family: var(--fd); font-size: clamp(1.6rem, 2.6vw, 2.35rem); line-height: .95; text-transform: uppercase; color: var(--chocolat); }
.tk-tag { color: rgba(59,36,28,.72); font-size: .9rem; line-height: 1.4; max-width: 52ch; }
.tk-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: .78rem; font-weight: 600; color: var(--brique); margin-top: 2px; }
.tk-meta span { display: inline-flex; align-items: center; gap: 5px; }
.tk-perf { position: relative; align-self: stretch; width: 0; border-left: 2.5px dashed rgba(99,52,26,.45); margin: 16px 0; }
.tk-perf::before, .tk-perf::after { content: ""; position: absolute; left: -13px; width: 24px; height: 24px; border-radius: 50%; background: var(--creme); box-shadow: inset 0 2px 3px rgba(99,52,26,.28); }
.tk-perf::before { top: -16px; } .tk-perf::after { bottom: -16px; }
.tk-buy { background: #faf2e2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 16px 14px; text-align: center; }
.tk-from { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--brique); }
.tk-price { font-family: var(--fd); font-size: 2.2rem; color: var(--chocolat); line-height: .9; }
.tk-cta { margin-top: 6px; background: var(--jaune); color: var(--chocolat); font-weight: 800; font-size: .8rem; padding: 9px 15px; border-radius: 10px; border: 2px solid var(--chocolat); box-shadow: 2px 2px 0 var(--chocolat); text-transform: uppercase; letter-spacing: .02em; transition: background .18s, color .18s; }
.ticket.feat .tk-buy { background: var(--jaune); }
.ticket.feat .tk-cta { background: var(--chocolat); color: var(--jaune); box-shadow: 2px 2px 0 rgba(99,52,26,.45); }
.ticket.feat:hover .tk-cta { background: var(--brique); color: var(--creme); }
.tk-flag { position: absolute; top: 0; left: 0; z-index: 3; background: var(--brique); color: var(--creme); font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 4px 12px; border-radius: 0 0 12px 0; }
/* déchirure réaliste : le talon s'arrache le long de la perforation (bord déchiqueté) puis s'envole */
.ticket.torn { pointer-events: none; overflow: visible; animation: tkbodyfade .75s ease .12s forwards; }
.ticket.torn .tk-buy {
  z-index: 5;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 7% 93%, 0% 86%, 7% 79%, 0% 72%, 7% 65%, 0% 58%, 7% 51%, 0% 44%, 7% 37%, 0% 30%, 7% 23%, 0% 16%, 7% 9%, 0% 2%);
  animation: stubrip .8s cubic-bezier(.36,.06,.4,1) forwards;
}
.ticket.torn .tk-main {
  clip-path: polygon(0 0, 96% 3%, 100% 7%, 96% 12%, 100% 17%, 96% 22%, 100% 27%, 96% 32%, 100% 37%, 96% 42%, 100% 47%, 96% 52%, 100% 57%, 96% 62%, 100% 67%, 96% 72%, 100% 77%, 96% 82%, 100% 87%, 96% 92%, 100% 97%, 0 100%);
  animation: tkmainrecoil .8s cubic-bezier(.36,.06,.4,1) forwards;
}
@keyframes stubrip {
  0% { transform: translate(0,0) rotate(0); }
  16% { transform: translate(7px,-3px) rotate(1.5deg); }
  38% { transform: translate(10px,4px) rotate(-1deg); }
  100% { transform: translate(150px,80px) rotate(22deg); opacity: 0; }
}
@keyframes tkmainrecoil {
  0% { transform: translateX(0) rotate(0); }
  38% { transform: translateX(-6px) rotate(-.8deg); }
  100% { transform: translateX(-2px) rotate(-.3deg); }
}
@keyframes tkbodyfade {
  0%, 60% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px) scale(.99); }
}
.ticket.hide { display: none; }
@media (max-width: 760px) {
  .ticket { grid-template-columns: 1fr; min-height: 0; }
  .tk-photo { height: 140px; }
  .tk-sticker { width: 50px; height: 50px; }
  .tk-main { padding: 16px 20px; }
  .tk-perf { display: none; }
  .tk-buy { flex-direction: row; justify-content: space-between; gap: 14px; padding: 14px 20px; border-top: 2.5px dashed rgba(99,52,26,.35); }
  .tk-cta { margin-top: 0; }
}
/* ===== Nos partenaires : logo + ligne d'avantage Nomnie ===== */
.partner-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 9px; }
.partner-item .partner { width: 100%; }
.pt-name { font-weight: 800; color: var(--chocolat); font-size: .92rem; }
.pt-adv { display: inline-block; background: var(--jaune); color: var(--chocolat); font-weight: 800; font-size: .76rem; padding: 4px 12px; border-radius: 999px; border: 1.5px solid var(--chocolat); }

/* ===== Communauté — grand slogan + pastilles + bandes photos (réf) ===== */
.comm-hero { padding: 0; background: var(--chocolat-deep); overflow: hidden; }
.comm-band { display: flex; gap: 8px; padding: 8px; }
.comm-band .cb-item { position: relative; flex: 1 1 0; aspect-ratio: 16/10; overflow: hidden; border-radius: 10px; min-width: 0; background: var(--chocolat); }
.comm-band .cb-item img { width: 100%; height: 100%; object-fit: cover; }
.comm-band .cb-item.vid .play { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(35,20,13,.26); }
.comm-band .cb-item.vid .play::before { content: ""; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,191,0,.95); box-shadow: 0 6px 16px rgba(0,0,0,.4); }
.comm-band .cb-item.vid .play::after { content: ""; position: absolute; border-style: solid; border-width: 8px 0 8px 13px; border-color: transparent transparent transparent var(--chocolat); margin-left: 4px; }
.comm-core { position: relative; overflow: hidden; isolation: isolate; background: var(--brique); color: var(--creme); text-align: center; padding: clamp(46px,7vw,88px) 20px; }
.comm-core::before { content: ""; position: absolute; inset: 0; z-index: 0; background-image: url("../img/stat/rejoins-bg.jpg"); background-image: image-set(url("../img/stat/rejoins-bg.webp") type("image/webp"), url("../img/stat/rejoins-bg.jpg") type("image/jpeg")); background-size: cover; background-position: center; }
.comm-core::after { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse 62% 76% at 50% 50%, rgba(56,28,14,.85), rgba(56,28,14,.46) 58%, rgba(56,28,14,.12) 100%); pointer-events: none; }
.comm-core > * { position: relative; z-index: 2; }
.comm-search { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,240,214,.14); border: 1.5px solid rgba(255,240,214,.36); color: var(--creme); border-radius: 999px; padding: 9px 20px; font-weight: 700; font-size: clamp(.82rem,2.2vw,.98rem); }
.comm-slogan-wrap { position: relative; max-width: 1000px; margin: 34px auto 26px; padding: 34px 0; }
.comm-slogan { font-family: var(--fd); font-size: clamp(2.7rem, 10.5vw, 7.2rem); line-height: .88; text-transform: uppercase; color: var(--creme); text-shadow: 0 6px 26px rgba(0,0,0,.3); }
.comm-slogan span { color: var(--jaune); }
.cpill { position: absolute; display: inline-flex; align-items: center; gap: 7px; background: var(--jaune); color: var(--chocolat); font-weight: 800; font-size: .86rem; padding: 6px 15px 6px 7px; border-radius: 999px; box-shadow: 0 10px 20px -8px rgba(0,0,0,.55); z-index: 3; white-space: nowrap; animation: bob 5s ease-in-out infinite; }
.cpill img { width: 28px; height: 28px; object-fit: contain; }
.cpill.p1 { top: -8px; left: 5%; transform: rotate(-8deg); }
.cpill.p2 { top: 2%; right: 3%; transform: rotate(7deg); animation-duration: 6s; }
.cpill.p3 { bottom: 0; left: 1%; transform: rotate(6deg); animation-duration: 5.5s; }
.cpill.p4 { bottom: -8px; right: 7%; transform: rotate(-6deg); animation-duration: 6.5s; }
.cpill.p5 { top: 42%; right: -3%; transform: rotate(5deg); animation-duration: 7s; }
.cpill.p6 { top: 44%; left: -4%; transform: rotate(-7deg); animation-duration: 6.2s; }
.comm-note { max-width: 48ch; margin: 0 auto; color: rgba(255,240,214,.88); font-weight: 600; font-size: 1.02rem; }
.comm-core .btn { margin-top: 24px; }
.comm-cond { display: block; margin-top: 16px; font-size: .82rem; color: rgba(255,240,214,.78); }
@media (max-width: 760px) {
  .comm-band .cb-item:nth-child(n+4) { display: none; }
  .comm-slogan-wrap { padding: 6px 0; margin: 22px auto; }
  .cpill { position: static; margin: 5px 4px; transform: none !important; animation: none; }
  .comm-pills { display: flex; flex-wrap: wrap; justify-content: center; margin-top: 18px; }
}

/* ===== 67 % — visuel premium (version fixe + hero vidéo) ===== */
.stat-banner { position: relative; max-width: 1000px; margin: 0 auto; border-radius: 26px; overflow: hidden; border: 2.5px solid var(--chocolat); box-shadow: 0 34px 70px -34px rgba(99,52,26,.6); isolation: isolate; }
.stat-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.stat-banner::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse 68% 78% at 50% 52%, rgba(247,238,223,.72), rgba(247,238,223,.15) 72%, transparent 90%); pointer-events: none; }
.stat-content { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: clamp(42px, 6vw, 78px) clamp(22px, 6vw, 68px); }
.stat-content .eyebrow { color: var(--brique); }
.stat-num { font-family: var(--fd); font-size: clamp(4.4rem, 13vw, 8.5rem); line-height: .82; color: var(--jaune); -webkit-text-stroke: 2.5px var(--chocolat); text-shadow: 0 4px 0 rgba(99,52,26,.22); margin: 2px 0; }
.stat-msg { font-family: var(--fd); font-size: clamp(1.35rem, 4vw, 2.3rem); line-height: 1.02; text-transform: uppercase; color: var(--chocolat); max-width: 18ch; }
.stat-tag { color: rgba(59,36,28,.86); font-weight: 600; max-width: 44ch; margin-top: 8px; font-size: 1.02rem; }
.stat-tag strong { color: var(--brique); }
@media (max-width: 560px) {
  .stat-banner { border-radius: 20px; }
  .stat-banner::before { background: radial-gradient(ellipse 98% 74% at 50% 50%, rgba(247,238,223,.86), rgba(247,238,223,.4) 82%, transparent); }
  .stat-content { padding: 40px 20px; gap: 6px; }
  .stat-num { -webkit-text-stroke: 2px var(--chocolat); }
  .stat-tag { font-size: .95rem; }
}

/* ===== Vrais polaroïds (générés) — éparpillés ===== */
.pola-real-strip { display: flex; flex-wrap: nowrap; align-items: flex-start; gap: 6px; margin-top: 30px;
  overflow-x: auto; overflow-y: hidden; scroll-snap-type: x proximity; padding: 26px 6px 30px; scrollbar-width: none; -webkit-overflow-scrolling: touch; cursor: grab; }
.pola-real-strip::-webkit-scrollbar { display: none; }
.pola-real-strip.dragging { cursor: grabbing; scroll-snap-type: none; }
.pola-real { flex: 0 0 auto; scroll-snap-align: center; width: clamp(186px, 23vw, 256px); margin: 0 -8px; filter: drop-shadow(0 18px 28px rgba(99,52,26,.4)); transition: transform .28s ease; will-change: transform; user-select: none; }
.pola-real img { width: 100%; display: block; border-radius: 3px; pointer-events: none; }
.pola-real:nth-child(odd) { transform: rotate(-3.5deg); }
.pola-real:nth-child(even) { transform: rotate(3deg); }
.pola-real:hover { transform: rotate(0) translateY(-8px) scale(1.04); z-index: 6; }
/* bande polaroïds pleine largeur qui défile toute seule (cadre + légende) */
.pola-marquee { width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; padding: 26px 0 34px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.pola-track { display: flex; width: max-content; animation: polaScroll 55s linear infinite; will-change: transform; }
.pola-marquee:hover .pola-track { animation-play-state: paused; }
.pola-track .pola { flex: 0 0 216px; margin-right: 26px; }
.pola-track .pola:nth-child(odd) { transform: rotate(-2.5deg); }
.pola-track .pola:nth-child(even) { transform: rotate(2.5deg); }
.pola-track .pola:hover { transform: rotate(0) translateY(-6px); z-index: 3; }
@keyframes polaScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* polaroïd flottant récurrent */
.pola-float { position: absolute; z-index: 4; width: clamp(120px, 12vw, 172px); filter: drop-shadow(0 16px 26px rgba(99,52,26,.42)); pointer-events: none; }
.pola-float img { width: 100%; display: block; border-radius: 3px; }
@media (max-width: 760px) { .pola-float { display: none; } .pola-real { margin: 8px -6px; } }

/* ===== Page événement — déroulé · prochaines dates · éditions ===== */
.deroule { list-style: none; counter-reset: d; display: grid; gap: 12px; }
.deroule li { position: relative; padding-left: 46px; display: flex; align-items: center; min-height: 34px; color: var(--chocolat); }
.deroule li::before { counter-increment: d; content: counter(d); position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; background: var(--jaune); color: var(--chocolat); font-family: var(--fd); font-size: 1.15rem; display: grid; place-items: center; }
.date-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; justify-content: space-between; background: #fffdf8; border: 2px solid var(--chocolat); border-radius: 16px; padding: 16px 20px; box-shadow: 0 12px 26px -18px rgba(99,52,26,.5); }
.date-row .dr-main { display: flex; flex-direction: column; gap: 3px; min-width: 220px; }
.date-row .dr-date { font-family: var(--fd); font-size: 1.35rem; color: var(--chocolat); text-transform: uppercase; }
.date-row .dr-lieu { font-size: .86rem; color: var(--brique); font-weight: 600; }
.date-row .dr-side { display: flex; align-items: center; gap: 14px; }
.date-row .dr-prix { font-family: var(--fd); font-size: 1.5rem; color: var(--chocolat); }
.edition-card { background: #fffdf8; border: 2px solid var(--chocolat); border-radius: 16px; overflow: hidden; box-shadow: 0 14px 30px -20px rgba(99,52,26,.55); }
.edition-card .ec-ph { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--chocolat); }
.edition-card .ec-ph img { width: 100%; height: 100%; object-fit: cover; }
.edition-card .ec-badge { position: absolute; top: 10px; right: 10px; background: var(--jaune); color: var(--chocolat); font-weight: 800; font-size: .78rem; padding: 4px 10px; border-radius: 999px; }
.edition-card .ec-body { padding: 13px 16px; }
.edition-card .ec-date { font-family: var(--fd); font-size: 1.15rem; text-transform: uppercase; }
.edition-card .ec-lieu { font-size: .84rem; color: var(--brique); font-weight: 600; margin-top: 2px; }

/* ===== Passe mobile — grilles 2 colonnes qui doivent se plier ===== */
@media (max-width: 860px) {
  .benevole-grid { grid-template-columns: 1fr !important; }
  .ev-grid { grid-template-columns: 1fr !important; }
  .ev-grid aside { position: static !important; margin-top: 8px; }
  .date-row { flex-direction: column; align-items: flex-start; }
  .date-row .dr-side { width: 100%; justify-content: space-between; }
}
@media (max-width: 520px) {
  .comm-slogan { font-size: clamp(2.2rem, 13vw, 3.4rem); }
  .precarite-cap { font-size: .94rem; }
  .tk-name { font-size: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Cartes événements premium (grille 3/2/1, ~4:5, rien de coupé) ===== */
.ev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
.ev-card { position: relative; display: flex; flex-direction: column; background: #fffdf7; border: 2px solid var(--chocolat); border-radius: 18px; overflow: hidden; text-decoration: none; color: var(--chocolat); box-shadow: 0 14px 30px -20px rgba(99,52,26,.5); transition: transform .18s ease, box-shadow .18s ease; }
.ev-card:hover { transform: translateY(-5px); box-shadow: 9px 11px 0 -2px rgba(99,52,26,.16), 0 24px 42px -24px rgba(99,52,26,.55); }
.ev-card:focus-visible { outline: 3px solid var(--brique); outline-offset: 3px; }
.ev-card.feat { border-color: var(--brique); }
.ev-card.hide { display: none; }
.evc-media { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--chocolat); }
.evc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ev-card:hover .evc-media img { transform: scale(1.05); }
.evc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(35,20,13,.5), transparent 46%); pointer-events: none; }
.evc-icon { position: absolute; top: 10px; left: 10px; z-index: 2; width: 50px; height: 50px; transform: rotate(-6deg); filter: drop-shadow(1px 2px 3px rgba(0,0,0,.45)); }
.evc-icon img { width: 100%; height: 100%; object-fit: contain; }
.evc-ribbon { position: absolute; top: 0; right: 0; z-index: 3; background: var(--brique); color: var(--creme); font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 4px 12px; border-radius: 0 0 0 12px; }
.evc-cat { position: absolute; left: 10px; bottom: 10px; z-index: 2; }
.evc-status { position: absolute; right: 10px; bottom: 10px; z-index: 2; display: inline-flex; align-items: center; gap: 5px; font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; padding: 4px 10px; border-radius: 999px; background: var(--creme); color: var(--chocolat); border: 1.5px solid var(--chocolat); }
.evc-status.st-presque { background: var(--jaune); }
.evc-status.st-gratuit { background: var(--pale); }
.evc-status.st-complet { background: var(--chocolat); color: var(--creme); }
.evc-body { display: flex; flex-direction: column; gap: 7px; padding: 15px 18px 17px; flex: 1; }
.evc-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: .75rem; font-weight: 700; color: var(--brique); }
.evc-meta span { display: inline-flex; align-items: center; gap: 5px; }
.evc-title { font-family: var(--fd); font-size: 1.5rem; line-height: .98; text-transform: uppercase; color: var(--chocolat); margin-top: 2px; }
.evc-desc { font-size: .87rem; line-height: 1.45; color: rgba(59,36,28,.76); }
.evc-foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1.5px dashed rgba(99,52,26,.25); }
.evc-price { font-family: var(--fd); font-size: 1.45rem; line-height: 1; color: var(--chocolat); }
.evc-go { font-weight: 800; font-size: .82rem; color: var(--brique); display: inline-flex; align-items: center; gap: 5px; }
.ev-card:hover .evc-go { color: var(--chocolat); }
/* Événement passé : légèrement atténué + photo désaturée */
.ev-card.ev-past { opacity: .9; }
.ev-card.ev-past .evc-media img { filter: grayscale(.28); }
.ev-card.ev-past .evc-status { background: rgba(59,36,28,.72); color: var(--creme); }
@media (max-width: 900px) { .ev-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 560px) { .ev-grid { grid-template-columns: 1fr; } .evc-title { font-size: 1.65rem; } }

/* ---------------- Page Contact : cartes de sujet (ouvrent un formulaire Tally) ---------------- */
.contact-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card { width: 100%; text-align: left; background: var(--creme-light); border: 2px solid var(--chocolat); border-radius: var(--r); box-shadow: var(--pop); padding: 28px 26px; display: flex; flex-direction: column; gap: 9px; cursor: pointer; transition: transform .2s, box-shadow .2s; color: var(--chocolat); }
.contact-card:hover, .contact-card:focus-visible { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 0 var(--chocolat); }
.contact-card .cc-ico { font-size: 2.3rem; line-height: 1; }
.contact-card h2 { font-size: 1.55rem; }
.contact-card p { font-size: .92rem; color: rgba(59,36,28,.74); line-height: 1.5; flex: 1; }
.contact-card .cc-go { margin-top: 8px; font-weight: 800; font-size: .84rem; color: var(--brique); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.contact-card:hover .cc-go { gap: 11px; }

/* ============================================================
   MOBILE-FIRST & ACCESSIBILITÉ — skip-link, CLS, cibles tactiles, lisibilité
   ============================================================ */
/* Lien d'évitement clavier (WCAG 2.4.1) */
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus { left: 12px; top: 10px; z-index: 100; background: var(--chocolat); color: var(--creme); padding: 10px 16px; border-radius: 10px; font-weight: 700; }

/* Image éditoriale « Notre histoire » (À propos) — réserve la place, pas de CLS */
.about-media img { aspect-ratio: 4 / 3; width: 100%; height: auto; object-fit: cover; border-radius: 16px; border: 2px solid var(--chocolat); }
.about-media figcaption { font-family: var(--fs); color: var(--brique); font-size: 1.05rem; margin-top: 8px; text-align: center; }

/* Cibles tactiles >= 44px sur petit écran (WCAG 2.5.5) */
@media (max-width: 720px) {
  .btn-sm { padding: 12px 18px; min-height: 44px; }
  .chip { min-height: 44px; padding: 11px 18px; display: inline-flex; align-items: center; justify-content: center; }
  .social { padding: 11px 16px; }
  .footer ul a { display: inline-block; padding: 8px 0; }
}
/* Lisibilité des cartes événement sur mobile */
@media (max-width: 560px) {
  .evc-meta { font-size: .8rem; }
  .evc-status { font-size: .72rem; }
  .evc-ribbon { font-size: .66rem; }
}
