/* =========================================================
   PET.ASS SHOW — Design system
   Palette extraite du logo : magenta / jaune / turquoise / encre
   Type : Unbounded (display) + Hanken Grotesk (texte)
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --ink:        #0c0a0e;   /* fond principal quasi-noir */
  --ink-2:      #16121b;   /* surface carte */
  --ink-3:      #211a29;   /* surface élevée / bordure douce */
  --pink:       #ff2e9c;   /* PET. */
  --pink-deep:  #d4197a;
  --yellow:     #ffe11a;   /* ASS */
  --cyan:       #45dfe8;   /* SHOW */
  --paper:      #fff1e2;   /* crème pêche (sections claires) */
  --paper-2:    #ffe4cb;
  --white:      #ffffff;
  --muted:      #b9adc4;   /* texte secondaire sur fond sombre */
  --muted-ink:  #6c5a78;   /* texte secondaire sur fond clair */

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 28px;
  --nav-h: 68px;

  --shadow: 0 18px 50px -18px rgba(0,0,0,.7);
  --ring-pink: 0 0 0 3px rgba(255,46,156,.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

/* ---------- Helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 11vw, 132px); position: relative; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .76rem;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--pink); border-radius: 2px; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.02; letter-spacing: -.02em; font-weight: 800; }
.h2 { font-size: clamp(2.1rem, 6vw, 4rem); }
.h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 700; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 60ch; }
.section-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: clamp(36px, 6vw, 64px); }
.section-head .lead { margin-top: 4px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-display); font-weight: 700;
  font-size: .92rem; letter-spacing: -.01em;
  padding: 14px 24px; border-radius: 999px;
  background: var(--pink); color: #fff;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 10px 26px -10px rgba(255,46,156,.8);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(255,46,156,.9); }
.btn--ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.28); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--cyan); color: var(--cyan); }
.btn--cyan { background: var(--cyan); color: var(--ink); box-shadow: 0 10px 26px -10px rgba(69,223,232,.8); }
.btn--cyan:hover { box-shadow: 0 16px 32px -10px rgba(69,223,232,.95); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(12,10,14,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; }
.nav__brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: -.01em; }
.nav__brand img { width: 38px; height: 38px; border-radius: 9px; }
.nav__brand b { color: var(--pink); }
.nav__links { display: none; align-items: center; gap: 4px; }
.nav__links a {
  font-weight: 600; font-size: .92rem; padding: 9px 13px; border-radius: 999px;
  color: var(--muted); transition: color .15s ease, background .15s ease;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav__links a.is-cta { color: var(--ink); background: var(--yellow); font-weight: 700; }
.nav__links a.is-cta:hover { background: #fff; }
.nav__socials { display: none; align-items: center; gap: 6px; margin-left: 4px; }
.nav__socials a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--muted); transition: .15s; }
.nav__socials a:hover { color: var(--ink); background: var(--cyan); }
.nav__socials svg { width: 19px; height: 19px; }

.nav__toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; }
.nav__toggle span { width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: .25s; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: var(--ink-2);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 16px var(--gutter) 28px;
  display: grid; gap: 4px;
  transform: translateY(-130%);
  transition: transform .32s cubic-bezier(.7,0,.2,1);
  box-shadow: var(--shadow);
}
.nav.is-open .nav__drawer { transform: translateY(0); }
.nav__drawer a { padding: 13px 6px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.nav__drawer a:last-of-type { border-bottom: 0; }
.nav__drawer .drawer-socials { display: flex; gap: 10px; margin-top: 14px; }
.nav__drawer .drawer-socials a { border: 0; padding: 0; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.08); }
.nav__drawer .drawer-socials svg { width: 20px; height: 20px; }

@media (min-width: 1000px) {
  .nav__links, .nav__socials { display: flex; }
  .nav__toggle, .nav__drawer { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: calc(100svh - var(--nav-h));
  display: grid; align-items: center;
  padding-block: clamp(40px, 9vw, 90px);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::before, .hero__bg::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55;
}
.hero__bg::before { width: 60vw; height: 60vw; left: -18vw; top: -12vw; background: radial-gradient(circle, var(--pink), transparent 65%); }
.hero__bg::after  { width: 55vw; height: 55vw; right: -16vw; bottom: -18vw; background: radial-gradient(circle, var(--cyan), transparent 64%); }
.hero__glow-y { position: absolute; width: 40vw; height: 40vw; right: 10vw; top: 8vw; background: radial-gradient(circle, var(--yellow), transparent 62%); filter: blur(80px); opacity: .28; z-index: 0; }
.hero__inner { position: relative; z-index: 2; display: grid; gap: clamp(26px, 4vw, 40px); }

.hero__mark { width: clamp(108px, 22vw, 168px); border-radius: 22px; box-shadow: var(--shadow); justify-self: start; }
.hero h1 {
  font-size: clamp(3.2rem, 15vw, 9.5rem);
  line-height: .9; letter-spacing: -.03em; font-weight: 800;
  text-transform: uppercase;
}
.hero h1 .a { color: var(--pink); }
.hero h1 .b { color: var(--yellow); }
.hero h1 .c { color: var(--cyan); }
.hero__baseline { font-size: clamp(1.15rem, 2.4vw, 1.7rem); font-weight: 500; max-width: 38ch; color: #fff; }
.hero__baseline b { font-family: var(--font-display); font-weight: 700; color: var(--yellow); }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }
.hero__socials { display: flex; gap: 10px; }
.hero__socials a { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.08); transition: .18s; }
.hero__socials a:hover { background: var(--pink); transform: translateY(-2px); }
.hero__socials svg { width: 21px; height: 21px; }
.hero__loc { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--muted); font-size: .95rem; }
.hero__loc svg { width: 17px; height: 17px; color: var(--cyan); }

.hero__scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 2; color: var(--muted); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; font-weight: 700; display: grid; justify-items: center; gap: 8px; }
.hero__scroll span { width: 1px; height: 34px; background: linear-gradient(var(--cyan), transparent); animation: scrolldown 1.8s ease-in-out infinite; }
@keyframes scrolldown { 0%,100%{ transform: scaleY(.4); opacity:.4 } 50%{ transform: scaleY(1); opacity:1 } }

@media (min-width: 860px) {
  .hero__inner { max-width: 920px; }
  .hero h1 { max-width: 14ch; }
}

/* =========================================================
   PROCHAIN SHOW
   ========================================================= */
.nextshow { background: var(--ink); position: relative; overflow: hidden; }
.nextshow::before { content: ""; position: absolute; width: 48vw; height: 48vw; right: -16vw; top: -14vw; background: radial-gradient(circle, var(--pink), transparent 64%); filter: blur(80px); opacity: .26; z-index: 0; pointer-events: none; }
.nextshow .wrap { position: relative; z-index: 1; }
.nextshow__grid { display: grid; gap: clamp(26px, 5vw, 52px); align-items: center; }
.nextshow__poster { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.1); }
.nextshow__poster img { width: 100%; transition: transform .5s ease; }
.nextshow__poster:hover img { transform: scale(1.03); }
.nextshow__body { display: grid; gap: 20px; }
.nextshow__title { font-size: clamp(2.2rem, 7vw, 4rem); text-transform: uppercase; line-height: .94; }
.nextshow__title .accent { color: var(--yellow); }
.nextshow__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .88rem; padding: 9px 15px; border-radius: 999px; background: var(--ink-2); border: 1px solid rgba(255,255,255,.1); color: #e8e0ee; }
.chip svg { width: 16px; height: 16px; color: var(--cyan); flex: none; }
.chip--show { background: var(--pink); color: #fff; border-color: transparent; font-family: var(--font-display); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; box-shadow: 0 10px 26px -12px rgba(255,46,156,.9); }
.nextshow__desc { color: var(--muted); max-width: 56ch; }
.nextshow__cast { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.nextshow__cast figure { margin: 0; border-radius: 12px; overflow: hidden; background: #2a2233; }
.nextshow__cast img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; transition: transform .4s ease; }
.nextshow__cast figure:hover img { transform: scale(1.06); }
.nextshow__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.nextshow__castblock { margin-top: clamp(38px, 6vw, 66px); }
.nextshow__castheading { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 3vw, 1.9rem); margin-bottom: clamp(18px, 3vw, 28px); }
.nextshow__castblock .artist__photo img { object-position: center 20%; }
@media (min-width: 920px) { .nextshow__grid { grid-template-columns: .82fr 1fr; } }

/* =========================================================
   FORMATS
   ========================================================= */
.formats { background: var(--ink); }
.formats__grid { display: grid; gap: 22px; }
.format {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.08);
  display: grid;
}
.format__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.format__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.format__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--ink-2) 4%, transparent 60%); }
.format__tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  padding: 7px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em;
}
.format__body { padding: clamp(24px, 4vw, 38px); display: grid; gap: 14px; }
.format__body h3 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
.format__body p { color: var(--muted); }
.format__list { display: grid; gap: 9px; margin-top: 4px; }
.format__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: #e8e0ee; }
.format__list li::before { content: ""; flex: none; width: 9px; height: 9px; border-radius: 50%; margin-top: 8px; }

/* Shows = magenta */
.format--show .format__tag { background: var(--pink); color: #fff; }
.format--show .format__list li::before { background: var(--pink); }
.format--show { box-shadow: 0 0 0 1px rgba(255,46,156,.18), 0 30px 60px -40px rgba(255,46,156,.6); }
/* Bingos = turquoise / jaune */
.format--bingo .format__tag { background: var(--cyan); color: var(--ink); }
.format--bingo .format__list li::before { background: var(--cyan); }
.format--bingo { box-shadow: 0 0 0 1px rgba(69,223,232,.18), 0 30px 60px -40px rgba(69,223,232,.55); }

@media (min-width: 880px) {
  .formats__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* =========================================================
   ARTISTES
   ========================================================= */
.artists { background: var(--ink); }
.artists__grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.artist {
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.artist:hover { transform: translateY(-5px); border-color: var(--pink); }
.artist__photo { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #2a2233; }
.artist__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s ease; }
.artist:hover .artist__photo img { transform: scale(1.05); }
.artist__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--ink-2), transparent 45%); }
.artist__body { padding: 18px 20px 22px; display: grid; gap: 8px; margin-top: -34px; position: relative; z-index: 2; }
.artist__name { font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; }
.artist__role { display: flex; flex-direction: column; gap: 2px; }
.artist__role .role-main { font-weight: 800; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); line-height: 1.2; }
.artist__role .role-sub { font-weight: 700; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); line-height: 1.25; }
.artist__bio { color: var(--muted); font-size: .93rem; }
.artist__social { display: inline-flex; align-items: center; gap: 7px; margin-top: 4px; font-weight: 700; font-size: .88rem; color: var(--pink); }
.artist__social svg { width: 16px; height: 16px; }

@media (min-width: 620px) { .artists__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .artists__grid { grid-template-columns: repeat(4, 1fr); } }

/* =========================================================
   GALERIE
   ========================================================= */
.gallery { background: var(--paper); color: var(--ink); }
.gallery .eyebrow { color: var(--pink-deep); }
.gallery .eyebrow::before { background: var(--cyan); }
.gallery .lead { color: var(--muted-ink); }
/* Masonry positionné en JS (assets/js/gallery-masonry.js) : chaque image
   est placée en position absolue dans la colonne la plus courte, de gauche
   à droite → imbrication sans trous, ordre de lecture conservé, et aucune
   limite de lignes de grille. Les images « en avant » (.is-large) occupent
   2 colonnes → ~2× plus grosses.
   Repli sans JS : grille simple (voir plus bas). */
.gallery__mosaic { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; align-items: start; }
@media (min-width: 480px) and (max-width: 759px) { .gallery__mosaic { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 760px) { .gallery__mosaic { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
/* Une fois le JS actif : conteneur en position, items absolus (left/top/width
   posés par le JS). */
.gallery__mosaic.is-masonry { display: block; position: relative; }
.gallery__mosaic.is-masonry .gallery__item { position: absolute; top: 0; left: 0; }
.gallery__item { overflow: hidden; border-radius: 14px; background: #2a2233; cursor: zoom-in; }
.gallery__item img { width: 100%; height: auto; display: block; transition: transform .45s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__more { display: flex; justify-content: center; margin-top: 28px; }
/* Rose par défaut (.btn), bleu au survol. */
.gallery__more-btn:hover { background: var(--cyan); color: var(--ink); box-shadow: 0 16px 32px -10px rgba(69,223,232,.95); }
.gallery__more-btn[disabled] { opacity: .6; cursor: default; }

/* =========================================================
   AGENDA
   ========================================================= */
.agenda { background: var(--ink); }
.events { display: grid; gap: 14px; }
.event {
  display: grid; gap: 16px; align-items: center;
  grid-template-columns: 1fr;
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 22px;
  transition: border-color .2s ease, transform .2s ease;
}
.event:hover { transform: translateX(4px); }
.event__date { display: flex; align-items: baseline; gap: 10px; font-family: var(--font-display); }
.event__day { font-size: 2.6rem; font-weight: 800; line-height: 1; }
.event__mo { font-size: .95rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.event__yr { font-size: .85rem; font-weight: 600; color: var(--muted); }
.event__date--tba { align-items: center; }
.event__tba { font-size: 1rem; font-weight: 700; line-height: 1.2; text-transform: uppercase; letter-spacing: .04em; color: var(--v3-muted); }
.event__main { display: grid; gap: 6px; }
.event__main .badge { margin-bottom: 9px; }
.event__title { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.event__meta { display: flex; flex-wrap: wrap; gap: 6px 16px; color: var(--muted); font-size: .92rem; }
.event__meta span { display: inline-flex; align-items: center; gap: 6px; }
.event__meta svg { width: 15px; height: 15px; color: var(--cyan); }
.event__side { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.badge {
  font-family: var(--font-display); font-weight: 700; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 7px 15px; border-radius: 999px; white-space: nowrap;
}
.badge--show { background: var(--pink); color: #fff; }
.badge--bingo { background: var(--cyan); color: var(--ink); }
.event--show { box-shadow: inset 4px 0 0 var(--pink); }
.event--bingo { box-shadow: inset 4px 0 0 var(--cyan); }
.event__cal { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .85rem; color: #fff; padding: 9px 15px; border-radius: 999px; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.25); transition: .18s; }
.event__cal:hover { box-shadow: inset 0 0 0 1.5px var(--cyan); color: var(--cyan); }
.event__cal svg { width: 15px; height: 15px; }

@media (min-width: 800px) {
  .event { grid-template-columns: 120px 1fr auto; gap: 26px; padding: 24px 28px; }
  .event__side { flex-direction: row; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--ink); }
.faq__list { display: grid; gap: 12px; max-width: 860px; }
.faq__item { background: var(--ink-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); overflow: hidden; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; text-align: left; padding: 22px 24px; font-family: var(--font-display); font-weight: 700; font-size: clamp(1rem, 2vw, 1.18rem); }
.faq__q .ic { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); position: relative; transition: background .2s; }
.faq__q .ic::before, .faq__q .ic::after { content: ""; position: absolute; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .2s; }
.faq__q .ic::before { width: 13px; height: 2.5px; }
.faq__q .ic::after { width: 2.5px; height: 13px; }
.faq__item.is-open .faq__q .ic { background: var(--pink); }
.faq__item.is-open .faq__q .ic::after { transform: scaleY(0); opacity: 0; }
.faq__cat { display: inline-block; font-family: var(--font-body); font-weight: 800; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; margin-right: 10px; vertical-align: middle; }
.faq__cat--show { background: rgba(255,46,156,.18); color: var(--pink); }
.faq__cat--bingo { background: rgba(69,223,232,.16); color: var(--cyan); }
.faq__cat--gen { background: rgba(255,225,26,.16); color: var(--yellow); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 24px 22px; color: var(--muted); max-width: 72ch; }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.news { background: var(--ink); }
.news__card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); padding: clamp(34px, 6vw, 64px);
  background: linear-gradient(135deg, var(--pink), #ff6ec2 55%, var(--cyan));
  color: #fff; display: grid; gap: 22px;
}
.news__card::after { content: ""; position: absolute; right: -40px; bottom: -60px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(255,225,26,.85), transparent 65%); filter: blur(20px); }
.news__card h2 { font-size: clamp(1.8rem, 5vw, 3rem); color: #fff; position: relative; z-index: 1; max-width: 16ch; }
.news__card p { position: relative; z-index: 1; max-width: 48ch; font-weight: 500; }
.news__form { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; max-width: 540px; }
.news__form input { flex: 1 1 240px; padding: 16px 20px; border-radius: 999px; border: 0; font-size: 1rem; font-family: var(--font-body); background: rgba(255,255,255,.95); color: var(--ink); }
.news__form input::placeholder { color: #8a7d80; }
.news__form button { background: var(--ink); color: #fff; padding: 16px 28px; border-radius: 999px; font-family: var(--font-display); font-weight: 700; transition: transform .15s; }
.news__form button:hover { transform: translateY(-2px); }
.news__note { position: relative; z-index: 1; font-size: .8rem; opacity: .85; }

/* =========================================================
   CONTACT / FOOTER
   ========================================================= */
.contact { background: var(--ink); border-top: 1px solid rgba(255,255,255,.08); }
.contact__grid { display: grid; gap: 40px; }
.contact__intro h2 { font-size: clamp(1.8rem, 5vw, 3rem); }
.contact__intro p { color: var(--muted); margin-top: 14px; max-width: 40ch; }
.contact__cols { display: grid; gap: 30px; }
.contact__col h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 12px; }
.contact__col a { display: block; color: var(--muted); padding: 5px 0; transition: color .15s; }
.contact__col a:hover { color: var(--cyan); }
.contact__big-ig { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.3rem, 3.5vw, 2rem); color: #fff; }
.contact__big-ig svg { width: 30px; height: 30px; color: var(--pink); }
.contact__big-ig:hover { color: var(--pink); }
@media (min-width: 760px) { .contact__cols { grid-template-columns: repeat(3, 1fr); } .contact__grid { grid-template-columns: 1.1fr 1fr; } }

.footer { background: var(--ink); padding: 30px 0 44px; border-top: 1px solid rgba(255,255,255,.08); }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; color: var(--muted); font-size: .85rem; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; color: #fff; }
.footer__brand img { width: 30px; height: 30px; border-radius: 7px; }

/* =========================================================
   BLOG (page séparée)
   ========================================================= */
.blog-hero { padding-block: clamp(56px, 10vw, 110px) clamp(30px, 5vw, 50px); position: relative; overflow: hidden; }
.blog-hero::before { content: ""; position: absolute; width: 50vw; height: 50vw; left: -15vw; top: -20vw; background: radial-gradient(circle, var(--pink), transparent 64%); filter: blur(80px); opacity: .4; }
.blog-hero__inner { position: relative; z-index: 1; display: grid; gap: 18px; }
.blog-hero h1 { font-size: clamp(2.6rem, 9vw, 5.5rem); text-transform: uppercase; }
.blog-hero h1 em { color: var(--yellow); font-style: normal; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--cyan); }
.back-link svg { width: 16px; height: 16px; }

.posts { background: var(--ink); padding-bottom: clamp(64px, 11vw, 120px); }
.posts__grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
.post {
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); overflow: hidden;
  display: grid; transition: transform .2s, border-color .2s;
}
.post:hover { transform: translateY(-5px); border-color: var(--cyan); }
.post__media { aspect-ratio: 16/10; overflow: hidden; }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post:hover .post__media img { transform: scale(1.05); }
.post__body { padding: 22px 24px 26px; display: grid; gap: 10px; }
.post__date { font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); }
.post__title { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; line-height: 1.15; }
.post__excerpt { color: var(--muted); font-size: .95rem; }
.post__more { font-weight: 700; color: var(--cyan); display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }
.post.featured { grid-column: 1 / -1; }
@media (min-width: 720px) { .posts__grid { grid-template-columns: 1fr 1fr; } .post.featured { grid-template-columns: 1.2fr 1fr; align-items: stretch; } .post.featured .post__media { aspect-ratio: auto; height: 100%; } }
@media (min-width: 1040px) { .posts__grid { grid-template-columns: repeat(3, 1fr); } .post.featured { grid-column: span 3; grid-template-columns: 1.3fr 1fr; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span { animation: none; }
  html { scroll-behavior: auto; }
}
