/* CasaZik vitrine — direction « Festival », reprise fidèle du template
   Freepik « gradient colorful music festival landing page » :
   dégradés magenta/violet/jaune, formes fluides, titre extrudé, photo
   naturelle. Divergence de palette avec l'app ASSUMÉE (choix produit du
   2026-08-22). Polices : strictement celles du projet. */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Palette STRICTEMENT projet (mobile/src/theme/tokens.ts) — la structure
     vient du template festival, les couleurs viennent de CasaZik. */
  --gold:     #FFD600;   /* casa */
  --gold-2:   #FFB300;   /* casaDark */
  --cream:    #E8C9A6;
  --bg:       #150A05;
  --surface:  #1F120A;
  --surface-2:#2A1810;
  --text:     #FFF8E7;
  --text-dim: #B8A98F;
  --text-faint:#6E5F4B;
  --red:      #FF1744;
  --lime:     #76FF03;
  /* Alias hérités du template, remappés sur la palette projet. */
  --magenta:  #FFB300;
  --pink:     #FFD600;
  --violet:   #2A1810;
  --violet-2: #3A2415;
  --rose:     #FF1744;
  --yellow:   #FFD600;
  --yellow-2: #FFB300;
  --page:     #150A05;
  --ink:      #FFF8E7;
  --ink-dim:  #B8A98F;
  --white:    #FFF8E7;
  --white-70: rgba(255,248,231,0.72);
  --grad-hero: linear-gradient(125deg, #120806 0%, #1F120A 34%, #2E1A0C 62%, #3E2410 84%, #4A2B12 100%);
  --grad-cta:  linear-gradient(90deg, #FFD600, #FFB300);
  --grad-band: linear-gradient(100deg, #1F120A, #3A2415);
  --radius: 18px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--page);
  color: var(--ink);
  font-family: 'Space Mono', monospace;
  font-size: 15px; line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
::selection { background: var(--yellow); color: var(--ink); }
[hidden] { display: none !important; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.center { text-align: center; }
.display { font-family: 'Archivo Black', sans-serif; text-transform: uppercase; }
.num { font-family: 'Unbounded', sans-serif; font-weight: 900; }
.casa { color: var(--yellow); }
.zik { color: var(--white); }
.grad-text { background: var(--grad-cta); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ── Boutons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.06em;
  border: none; border-radius: 999px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  background: none; color: var(--ink);
}
.btn.primary { background: var(--gold); color: #150A05; box-shadow: 0 12px 28px rgba(255,214,0,0.22); }
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255,214,0,0.3); }
.btn.ghost { border: 2px solid rgba(255,248,231,0.55); color: var(--text); }
.btn.ghost:hover { background: rgba(255,214,0,0.12); border-color: var(--gold); color: var(--gold); }
.section .btn.ghost, .footer .btn.ghost { border-color: rgba(255,248,231,0.5); color: var(--text); }
.section .btn.ghost:hover { background: rgba(255,214,0,0.1); }
.btn.sm { padding: 11px 20px; font-size: 10px; }
.btn.lg { padding: 17px 34px; font-size: 12px; }
.btn:not(.sm):not(.lg) { padding: 14px 26px; font-size: 11px; }
.btn.full { flex: 1; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ── Header (sur le dégradé du hero) ─────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: nowrap;
  padding: 20px 34px; transition: all 0.3s;
}
.header.scrolled { background: rgba(21,10,5,0.94); backdrop-filter: blur(10px); padding: 12px 34px; border-bottom: 1px solid rgba(255,214,0,0.16); }
.logo { font-family: 'Archivo Black', sans-serif; font-size: 20px; cursor: pointer; color: var(--white); flex-shrink: 0; white-space: nowrap; }
.logo .casa { color: var(--cream); }
.logo .zik { color: var(--gold); }
.nav { display: flex; gap: 28px; flex-wrap: nowrap; white-space: nowrap; }
.nav a { font-family: 'Unbounded', sans-serif; font-weight: 300; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); }
.nav a:hover, .nav .pro-link { color: var(--yellow); }
.header-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.burger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 22px; height: 2px; background: var(--white); }
.drawer {
  position: fixed; top: 76px; left: 0; right: 0; z-index: 99;
  background: var(--violet); padding: 24px 34px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.drawer a { font-family: 'Unbounded', sans-serif; font-weight: 300; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); }

/* ── Hero dégradé + formes fluides ───────────────────────────────────── */
.hero {
  position: relative; min-height: 74vh; display: flex; align-items: center;
  padding: clamp(126px, 15vh, 168px) 0 90px; background: var(--grad-hero); overflow: hidden;
}
.blobs { position: absolute; inset: 0; pointer-events: none; }
.blobs svg { position: absolute; }
.blob-tl { top: -8%; left: -10%; width: 46%; opacity: 0.85; }
.blob-br { bottom: -14%; left: -6%; width: 60%; opacity: 0.9; }
.blob-r  { top: 12%; right: -8%; width: 44%; opacity: 0.8; }
.tri-col { position: absolute; display: flex; flex-direction: column; gap: 5px; opacity: 0.75; }
.tri-col span { width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 10px solid rgba(255,214,0,0.55); }
.tri-1 { top: 16%; left: 26%; } .tri-2 { top: 30%; right: 30%; } .tri-3 { bottom: 14%; left: 38%; }
.slash { position: absolute; width: 340px; height: 1px; background: rgba(255,214,0,0.35); transform: rotate(-38deg); }
.slash-1 { top: 26%; left: 20%; } .slash-2 { top: 58%; right: 12%; } .slash-3 { bottom: 20%; left: 55%; }

.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 30px; align-items: center; width: 100%; }

/* Titre extrudé façon « MUSIC » de la maquette. */
.fest-title {
  font-family: 'Archivo Black', sans-serif; text-transform: uppercase;
  font-size: clamp(44px, 7vw, 104px); line-height: 0.9; color: var(--yellow);
  text-shadow: 2px 2px 0 #B37C00, 4px 4px 0 #8A5F00, 6px 6px 0 #664500,
               8px 8px 0 #422C00, 12px 14px 30px rgba(0,0,0,0.6);
  letter-spacing: -0.01em;
}
.fest-sub {
  font-family: 'Unbounded', sans-serif; font-weight: 300;
  font-size: clamp(18px, 2.6vw, 34px); color: var(--white); margin-top: 8px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.hero .hook { margin-top: 24px; color: var(--white-70); max-width: 470px; font-size: 14px; }
.hero .hook b { color: var(--white); }

/* Lineup + date, comme le bloc « DJ PRO / 22 MAY ». */
.lineup-row { display: flex; align-items: center; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.date-row { display: flex; gap: 14px; align-items: stretch; }
.lineup {
  font-family: 'Archivo Black', sans-serif; text-transform: uppercase;
  font-size: clamp(14px, 1.5vw, 19px); color: var(--text); line-height: 1.45;
  border-right: 1px solid rgba(255,214,0,0.3); padding-right: 26px;
}
.date-box {
  border: 3px solid var(--yellow); border-radius: 10px; padding: 12px 20px; text-align: center;
  background: rgba(255,214,0,0.07);
}
.date-box .d { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 26px; color: var(--yellow); line-height: 1; }
.date-box .m { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.2em; color: var(--white); margin-top: 4px; }
.hero .cta-row { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-social { display: flex; gap: 16px; margin-top: 34px; }
.hero-social a { font-family: 'Unbounded', sans-serif; font-weight: 300; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); border-bottom: 1px solid rgba(255,214,0,0.35); padding-bottom: 3px; }
.hero-social a:hover { color: var(--gold); border-color: var(--gold); }

/* Photo de l'artiste, posée sur un disque jaune comme dans la maquette. */
.hero-photo { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.photo-disc { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 40% 40%, rgba(255,214,0,0.9), rgba(255,179,0,0.25) 70%, transparent 74%); bottom: 6%; left: 6%; }
.hero-photo img { position: relative; z-index: 2; width: min(33vw, 470px); max-height: 66vh; object-fit: contain; filter: drop-shadow(0 26px 44px rgba(0,0,0,0.6)); }
.hero-photo .note { position: absolute; z-index: 3; color: var(--gold); font-size: 26px; animation: bob 3.4s ease-in-out infinite; text-shadow: 0 2px 10px rgba(42,17,71,0.3); }
.hero-photo .n1 { top: 8%; left: 4%; } .hero-photo .n2 { bottom: 16%; right: 2%; font-size: 34px; animation-delay: 1s; color: var(--yellow); } .hero-photo .n3 { top: 40%; right: 0; font-size: 20px; animation-delay: 1.8s; }
@keyframes bob { 50% { transform: translateY(-14px) rotate(8deg); } }

/* ── Vague de séparation (le hero « coule » dans la page) ────────────── */
.wave-sep { display: block; width: 100%; height: 70px; margin-top: -1px; }
.wave-sep path { fill: var(--bg); }

/* ── Sections claires ────────────────────────────────────────────────── */
.section { padding: 96px 0; position: relative; }
.section.tight { padding: 60px 0; }
.pro-band { background: var(--grad-band); }
.sec-head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.eyebrow { font-family: 'Unbounded', sans-serif; font-weight: 300; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--magenta); }
.sec-head h2 { font-family: 'Archivo Black', sans-serif; font-size: clamp(26px, 3.8vw, 44px); text-transform: uppercase; line-height: 1.05; margin: 14px 0 16px; color: var(--ink); }
.sec-head p { color: var(--ink-dim); font-size: 14px; }

/* Concept : 3 cartes blanches arrondies avec pastille dégradée. */
.concept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.concept-card { background: var(--surface); border: 1px solid rgba(255,214,0,0.14); border-radius: 24px; padding: 36px 30px 32px; position: relative; box-shadow: 0 16px 40px rgba(0,0,0,0.4); transition: transform 0.25s, box-shadow 0.25s; }
.concept-card:hover { transform: translateY(-6px); border-color: rgba(255,214,0,0.34); box-shadow: 0 22px 50px rgba(0,0,0,0.55); }
.concept-card .step-n { position: absolute; top: 22px; right: 26px; font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 34px; color: rgba(255,214,0,0.16); }
.concept-card .ico { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; background: var(--grad-band); color: var(--white) !important; margin-bottom: 20px; }
.concept-card h3 { font-family: 'Archivo Black', sans-serif; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
.concept-card p { color: var(--ink-dim); font-size: 13px; }
.equation { margin-top: 44px; background: var(--grad-band); border-radius: 24px; padding: 40px 24px; display: flex; align-items: center; justify-content: center; gap: clamp(14px, 4vw, 46px); flex-wrap: wrap; text-align: center; color: var(--white); }
.equation .term .big { font-family: 'Archivo Black', sans-serif; font-size: clamp(20px, 3vw, 34px); text-transform: uppercase; }
.equation .term .big.casa { color: var(--yellow); }
.equation .term .big.zik { color: var(--white); }
.equation .term .lbl { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.8; margin-top: 8px; }
.equation .op { font-family: 'Archivo Black', sans-serif; font-size: 26px; color: var(--yellow); }

/* Stats : bande dégradée. */
.stats-band { background: var(--grad-band); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; color: var(--white); }
.stat .n { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: clamp(30px, 4.4vw, 54px); line-height: 1; color: var(--yellow) !important; }
.stat .l { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 10px; opacity: 0.9; }

/* Artistes : cartes blanches, pastille pays dégradée. */
.artists-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.artist-card { background: var(--surface); border: 1px solid rgba(255,214,0,0.14); border-radius: 20px; padding: 26px 12px 22px; text-align: center; box-shadow: 0 12px 30px rgba(0,0,0,0.38); transition: transform 0.22s; position: relative; }
.artist-card:hover { transform: translateY(-5px); }
.artist-card .flag {
  font-family: 'Unbounded', sans-serif !important; font-weight: 900 !important;
  font-size: 17px !important; letter-spacing: 0.04em !important;
  width: 62px; height: 62px; margin: 0 auto; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-band); color: var(--white) !important;
}
.artist-card .cn { font-family: 'Archivo Black', sans-serif; font-size: 12px; text-transform: uppercase; margin-top: 14px; }
.artist-card .status { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--magenta); margin-top: 6px; }
.artist-card .dot { display: none !important; }

/* Section app. */
.app-sec { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.app-visual { position: relative; display: flex; justify-content: center; }
.app-visual::before { content: ''; position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #FFF203, #FF7AD9); opacity: 0.55; }
.app-features { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.app-feature { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid rgba(255,214,0,0.12); border-radius: 18px; padding: 18px 20px; box-shadow: 0 10px 26px rgba(0,0,0,0.35); }
.app-feature .fi { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; background: var(--grad-band); color: var(--white) !important; }
.app-feature h4 { font-family: 'Archivo Black', sans-serif; font-size: 14px; text-transform: uppercase; margin-bottom: 3px; }
.app-feature p { color: var(--ink-dim); font-size: 13px; }
.store-row { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.store-btn { display: flex; align-items: center; gap: 12px; padding: 12px 20px; border-radius: 14px; background: var(--surface); border: 1px solid rgba(255,214,0,0.2); color: var(--text); cursor: pointer; transition: transform 0.2s, border-color 0.2s; }
.store-btn:hover { transform: translateY(-2px); border-color: var(--gold); }
.store-btn .si { color: var(--gold) !important; }
.store-btn .st { display: flex; flex-direction: column; }
.store-btn .st .k { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }
.store-btn .st .v { font-family: 'Archivo Black', sans-serif; font-size: 14px; }

/* Téléphone : cadre sombre sur fond clair, écran de l'app conservé. */
.phone-mock { position: relative; z-index: 2; width: 280px; border-radius: 38px; padding: 12px; background: #1a0d20; box-shadow: 0 26px 50px rgba(42,17,71,0.35); }
.phone-mock .notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 108px; height: 22px; background: #1a0d20; border-radius: 0 0 14px 14px; z-index: 3; }
.phone-mock .screen { border-radius: 28px; background: #150A05; padding: 34px 14px 16px; min-height: 470px; overflow: hidden; color: #FFF8E7; }
.mock-hd { display: flex; align-items: center; justify-content: space-between; }
.m-logo { font-family: 'Archivo Black', sans-serif; font-size: 13px; }
.m-logo .casa { color: #E8C9A6; } .m-logo .zik { color: #FFD600; }
.mock-chip { display: inline-flex; padding: 4px 9px; border: 1px solid rgba(255,214,0,0.45); border-radius: 999px; font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 10px; color: #FFD600; }
.mock-row { display: flex; align-items: center; gap: 9px; padding: 9px 8px; border: 1px solid rgba(255,214,0,0.16); border-radius: 12px; margin-top: 8px; background: #1F120A; }
.mock-row .cov { width: 30px; height: 30px; flex-shrink: 0; }
.mock-row .mi { flex: 1; min-width: 0; }
.mock-row .mi .t { font-family: 'Archivo Black', sans-serif; font-size: 11px; }
.mock-row .mi .a { font-size: 9px; color: #B8A98F; }
.mock-row .pl { margin-left: auto; font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 11px; color: #FFD600; }
.eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 16px; }
.eq i { width: 3px; background: currentColor; border-radius: 2px; transform-origin: bottom; animation: eqb 0.7s ease-in-out alternate infinite; }
@keyframes eqb { from { transform: scaleY(0.2); } to { transform: scaleY(1); } }
.screen .eyebrow { color: #B8A98F; }

/* Espace pro. */
.pro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pro-card { background: var(--surface); border: 1px solid rgba(255,214,0,0.14); border-radius: 22px; padding: 32px 28px; cursor: pointer; box-shadow: 0 14px 34px rgba(0,0,0,0.4); transition: transform 0.25s, box-shadow 0.25s; }
.pro-card:hover { transform: translateY(-6px); border-color: rgba(255,214,0,0.38); box-shadow: 0 20px 44px rgba(0,0,0,0.55); }
.pro-card .ico { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: var(--grad-band); color: var(--white) !important; margin-bottom: 18px; }
.pro-card h3 { font-family: 'Archivo Black', sans-serif; font-size: 16px; text-transform: uppercase; margin-bottom: 10px; }
.pro-card p { color: var(--ink-dim); font-size: 13px; min-height: 56px; }
.pro-card .go { display: inline-block; margin-top: 14px; font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--magenta); }
.spons-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.spons-tier { background: var(--surface); border: 1px solid rgba(255,214,0,0.12); border-radius: 18px; padding: 24px 16px; text-align: center; box-shadow: 0 12px 28px rgba(0,0,0,0.35); }
.spons-tier .medal { font-size: 18px !important; color: var(--text-faint) !important; }
.spons-tier .tn { font-family: 'Archivo Black', sans-serif; font-size: 15px; text-transform: uppercase; margin-top: 8px; }
.spons-tier .tp { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 12px; color: var(--magenta) !important; margin-top: 6px; }
.spons-tier .td { font-size: 11px; color: var(--ink-dim); margin-top: 8px; }

/* Actus. */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { background: var(--surface); border: 1px solid rgba(255,214,0,0.14); border-radius: 22px; overflow: hidden; box-shadow: 0 14px 34px rgba(0,0,0,0.4); transition: transform 0.25s; }
.news-card:hover { transform: translateY(-5px); }
.news-card .cover { height: 140px; display: grid; place-items: center; background: var(--grad-band) !important; color: rgba(255,255,255,0.85) !important; }
.news-card .body { padding: 24px; }
.news-card .date { font-family: 'Unbounded', sans-serif; font-weight: 300; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--magenta) !important; }
.news-card h3 { font-family: 'Archivo Black', sans-serif; font-size: 15px; margin: 10px 0; line-height: 1.25; }
.news-card p { color: var(--ink-dim); font-size: 12px; }

/* Footer dégradé. */
.footer { background: var(--grad-band); color: var(--white); padding: 70px 0 30px; }
.footer .logo { color: var(--white); }
.footer .tag { color: var(--white-70); font-size: 12px; margin: 14px 0 20px; max-width: 300px; }
.footer .social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer .social a { padding: 8px 14px; border: 1px solid rgba(255,255,255,0.4); border-radius: 999px; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }
.footer .social a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .col h5 { font-family: 'Unbounded', sans-serif; font-weight: 300; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
.footer .col a { display: block; font-size: 12px; margin-bottom: 11px; color: var(--white-70); }
.footer .col a:hover { color: var(--yellow); }
.footer-bot { margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.25); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 10px; color: var(--white-70); }
.lang-switch { display: flex; gap: 4px; }
.lang-switch button { background: none; border: 1px solid rgba(255,255,255,0.35); border-radius: 999px; color: var(--white-70); font-family: 'Space Mono', monospace; font-size: 10px; padding: 5px 11px; cursor: pointer; }
.lang-switch button.on { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }

/* ── Formulaires ─────────────────────────────────────────────────────── */
.form-view { min-height: 100vh; background: var(--page); padding: 50px 0 90px; }
.form-shell { max-width: 780px; margin: 0 auto; padding: 0 28px; }
.form-back { background: none; border: none; color: var(--violet); font-family: 'Space Mono', monospace; font-size: 12px; cursor: pointer; padding: 8px 0; }
.form-back:hover { color: var(--magenta); }
.form-header { margin: 26px 0 28px; }
.form-header .ico { width: 66px; height: 66px; border-radius: 20px; display: grid; place-items: center; background: var(--grad-band); color: var(--white) !important; margin-bottom: 18px; }
.form-header h1 { font-family: 'Archivo Black', sans-serif; font-size: clamp(24px, 3.6vw, 38px); text-transform: uppercase; line-height: 1.05; color: var(--ink) !important; }
.form-header p { color: var(--ink-dim); font-size: 13px; margin-top: 12px; max-width: 580px; }
.form-aside { background: var(--surface); border: 1px solid rgba(255,214,0,0.14); border-radius: 18px; padding: 20px 24px; margin-bottom: 24px; box-shadow: 0 12px 30px rgba(0,0,0,0.35); }
.form-aside h4 { font-family: 'Unbounded', sans-serif; font-weight: 300; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--magenta); margin-bottom: 14px; }
.form-aside .tiers { display: flex; flex-direction: column; gap: 8px; }
.form-aside .tier { display: flex; justify-content: space-between; gap: 14px; font-size: 12px; color: var(--ink-dim); }
.form-aside .tier .nm { color: var(--ink); }
.form-progress { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.form-progress .track { flex: 1; height: 8px; background: rgba(120,48,192,0.15); border-radius: 999px; overflow: hidden; }
.form-progress .track i { display: block; height: 100%; background: var(--grad-cta); transition: width 0.4s; }
.form-progress .pct { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 12px; color: var(--magenta); min-width: 44px; text-align: right; }
.form-card { background: var(--surface); border: 1px solid rgba(255,214,0,0.14); border-radius: 22px; padding: 30px; box-shadow: 0 16px 40px rgba(0,0,0,0.42); position: relative; }
.form-step-label { font-family: 'Unbounded', sans-serif; font-weight: 300; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--magenta); margin-bottom: 24px; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.wide, .field-group { grid-column: 1 / -1; }
.field label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-dim); }
.field label .req { color: var(--magenta); }
.field input, .field select, .field textarea {
  background: var(--bg); border: 2px solid rgba(255,248,231,0.16); border-radius: 12px; color: var(--text);
  font-family: 'Space Mono', monospace; font-size: 13px; padding: 12px 14px; outline: none; transition: border-color 0.2s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--magenta); }
.field.err input, .field.err select, .field.err textarea { border-color: var(--rose); }
.field select { appearance: none; }
.err-msg, .field .err-msg { font-size: 11px; color: var(--rose); }
.field-group-label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 10px; }
.check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 8px; }
.check { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 12px; background: var(--page); cursor: pointer; font-size: 12px; color: var(--ink-dim); transition: all 0.18s; user-select: none; }
.check:hover { background: rgba(120,48,192,0.08); }
.check.on { background: rgba(255,214,0,0.14); color: var(--text); }
.check .box { width: 18px; height: 18px; border-radius: 6px; border: 2px solid rgba(120,48,192,0.3); display: grid; place-items: center; font-size: 11px; color: var(--magenta); flex-shrink: 0; }
.check.on .box { border-color: var(--magenta); }
.check.consent { margin-bottom: 8px; align-items: flex-start; line-height: 1.5; }
.check.consent .box { margin-top: 2px; }
.form-nav { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.form-nav .spacer { flex: 1; }
.form-nav .btn.ghost { border-color: var(--violet); color: var(--violet); }
.form-submit-error { margin-top: 14px; padding: 12px 16px; border-radius: 12px; background: rgba(254,63,130,0.12); color: var(--rose); font-size: 13px; }
.confirm { text-align: center; padding: 70px 0 40px; }
.confirm .check-ring { width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 26px; display: grid; place-items: center; background: var(--grad-cta); color: var(--white); font-size: 42px; animation: pop 0.5s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes pop { from { transform: scale(0); } }
.confirm h1 { font-family: 'Archivo Black', sans-serif; font-size: clamp(24px, 3.6vw, 36px); text-transform: uppercase; }
.confirm .ref { display: inline-flex; flex-direction: column; gap: 6px; margin: 24px 0; padding: 18px 40px; border-radius: 18px; background: var(--surface); border: 1px solid rgba(255,214,0,0.3); box-shadow: 0 14px 34px rgba(0,0,0,0.42); }
.confirm .ref .k { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); }
.confirm .ref .v { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 26px; color: var(--magenta); }
.confirm p { color: var(--ink-dim); font-size: 13px; max-width: 470px; margin: 0 auto 22px; }

/* ── Révélations ─────────────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1); }
[data-reveal-stagger].revealed > * { opacity: 1; transform: none; }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: 0.08s; }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: 0.16s; }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: 0.24s; }
[data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: 0.32s; }
[data-reveal-stagger].revealed > *:nth-child(n+6) { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-photo .note, .eq i { animation: none !important; }
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .app-sec { grid-template-columns: 1fr; gap: 46px; }
  .hero-grid { gap: 26px; }
  .hero-photo img { width: min(34vw, 330px); max-height: 60vh; }
  .concept-grid, .news-grid, .pro-grid { grid-template-columns: 1fr 1fr; }
  .artists-grid { grid-template-columns: repeat(3, 1fr); }
  .spons-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 34px 28px; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav, .header-cta .btn { display: none; }
  .burger { display: flex; }
  .concept-grid, .news-grid, .pro-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .artists-grid, .spons-grid { grid-template-columns: 1fr 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(auto-fit, minmax(128px, 1fr)); gap: 30px 22px; }
  .lineup { border-right: none; padding-right: 0; }
}


/* ── Hero : correctifs de conformité ─────────────────────────────────── */
/* Wordmark de l'app : CASA crème, ZIK or (cf. BrandMark, kit.tsx). */
.fest-title .fc { color: var(--cream); }
.fest-title .fz { color: var(--gold); }
/* Le halo derrière l'artiste doit le détacher du fond, pas le noyer. */
.photo-disc {
  background: radial-gradient(circle at 42% 40%,
              rgba(255,214,0,0.55) 0%, rgba(255,179,0,0.22) 45%,
              rgba(255,179,0,0.06) 68%, transparent 72%) !important;
  width: 92% !important; bottom: 2% !important; left: 2% !important;
}
.hero-photo img { filter: drop-shadow(0 26px 44px rgba(0,0,0,0.65)) contrast(1.06) saturate(1.08); }
/* Respiration : le hero ne doit pas rogner les triangles du bas. */
.hero { padding-bottom: 110px; }


/* ── Hero responsive ─────────────────────────────────────────────────── */
/* Écrans intermédiaires : on garde les deux colonnes, on resserre. */
@media (max-width: 1000px) {
  .hero { padding: 100px 0 64px; min-height: 0; }
  .blob-tl, .blob-br, .blob-r { opacity: 0.7; }
  .tri-2, .slash-2, .slash-3 { display: none; }
}

/* Sous 860 px : empilement, photo au-dessus, tout centré. */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .hero-photo { order: -1; }
  .hero-photo img { width: min(44vw, 220px); }
  .hero .hook { margin-left: auto; margin-right: auto; }
  .lineup-row, .hero .cta-row, .hero-social { justify-content: center; }
}

/* Écran peu haut (portable en paysage) : on comprime la hauteur. */
@media (max-height: 680px) and (min-width: 861px) {
  .hero { padding: 126px 0 44px; }
  .fest-title { font-size: clamp(38px, 5vw, 64px); }
  .fest-sub { font-size: clamp(15px, 1.8vw, 22px); }
  .hero .hook { margin-top: 14px; font-size: 13px; }
  .lineup-row { margin-top: 20px; }
  .hero .cta-row { margin-top: 20px; }
  .hero-social { margin-top: 18px; }
  .hero-photo img { width: auto; max-height: 58vh; }
}

/* Mobile : plus de hauteur imposée — le hero fait la taille de son contenu. */
@media (max-width: 760px) {
  .hero { padding: 80px 0 38px; }
  .hero-grid { gap: 14px; }
  .hero-photo { margin-bottom: 0; }
  .hero-photo img { width: min(46vw, 188px); }
  .photo-disc { width: 100% !important; left: 0 !important; }
  .hero-photo .note { font-size: 18px !important; }
  .fest-title { font-size: clamp(38px, 13vw, 62px); text-shadow: 2px 2px 0 #B37C00, 4px 4px 0 #8A5F00, 5px 5px 0 #664500, 8px 10px 22px rgba(0,0,0,0.6); }
  .fest-sub { font-size: 16px; letter-spacing: 0.01em; }
  .hero .hook { font-size: 12.5px; margin-top: 14px; line-height: 1.6; }
  /* Lineup au-dessus, les deux dates côte à côte en dessous : plus de casse. */
  .lineup-row { flex-direction: column; gap: 12px; margin-top: 18px; }
  .lineup { border-right: none; padding-right: 0; font-size: 15px; line-height: 1.35; }
  .date-row { gap: 12px; justify-content: center; }
  .date-box { padding: 8px 16px; border-width: 2px; }
  .date-box .d { font-size: 22px; }
  .hero .cta-row { margin-top: 20px; gap: 10px; width: 100%; }
  .hero .cta-row .btn { flex: 1 1 auto; min-width: 0; padding: 15px 16px; font-size: 11px; }
  .hero-social { margin-top: 18px; gap: 14px; }
  .hero-social a { font-size: 9px; }
  .tri-1, .tri-3, .slash-1 { display: none; }
}

/* Très petits écrans : les deux boutons passent l'un sous l'autre. */
@media (max-width: 340px) {
  .hero .cta-row { flex-direction: column; }
  .hero .cta-row .btn { width: 100%; }
}


/* Petit mobile (SE, écrans courts) : tout le hero tient au-dessus de la ligne. */
@media (max-width: 760px) and (max-height: 730px) {
  .hero { padding: 74px 0 26px; }
  .hero-grid { gap: 10px; }
  .hero-photo img { width: min(38vw, 148px); }
  .fest-title { font-size: clamp(32px, 11vw, 48px); }
  .fest-sub { font-size: 14px; margin-top: 4px; }
  .hero .hook { font-size: 12px; margin-top: 10px; line-height: 1.55; }
  .lineup-row { margin-top: 14px; gap: 10px; }
  .lineup { font-size: 13px; }
  .date-box { padding: 7px 14px; }
  .date-box .d { font-size: 19px; }
  .date-box .m { font-size: 9px; }
  .hero .cta-row { margin-top: 16px; }
  .hero .cta-row .btn { padding: 13px 12px; font-size: 10px; }
  .hero-social { margin-top: 14px; }
}


/* Phrase d'appel juste au-dessus des boutons du hero. */
.cta-line {
  margin-top: 26px; color: var(--text);
  font-family: 'Unbounded', sans-serif; font-weight: 300;
  font-size: clamp(12px, 1.15vw, 15px); letter-spacing: 0.02em; line-height: 1.5;
  max-width: 470px;
}
.hero .cta-line + .cta-row { margin-top: 16px; }
@media (max-width: 860px) { .cta-line { margin-left: auto; margin-right: auto; } }
@media (max-width: 760px) { .cta-line { margin-top: 16px; font-size: 12px; } }
@media (max-width: 760px) and (max-height: 730px) { .cta-line { margin-top: 12px; font-size: 11.5px; } }


/* ── En-tête responsive ──────────────────────────────────────────────── */
/* Sous 1200 px la nav complète ne tient plus à côté des deux boutons :
   on resserre d'abord, puis on bascule sur le menu burger. */
@media (max-width: 1200px) {
  .header { padding: 18px 24px; }
  .nav { gap: 18px; }
  .nav a { font-size: 9.5px; letter-spacing: 0.12em; }
}
@media (max-width: 1080px) {
  .nav { display: none; }
  .header-cta .btn.ghost { display: none; }  /* « Espace pro » vit dans le tiroir */
  .burger { display: flex; }
}
@media (max-width: 560px) {
  .header-cta .btn { display: none; }        /* burger seul */
  .header { padding: 16px 20px; }
}
/* Le tiroir suit la hauteur réelle de l'en-tête (compact au scroll). */
.header.scrolled + .drawer { top: 60px; }

/* ── Réseaux sociaux : icônes de marque ──────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* Footer : pastilles rondes, icône seule. */
.footer .social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; padding: 0; border-radius: 50%;
  color: var(--text); transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.footer .social a:hover { transform: translateY(-2px); }
.footer .social a svg { display: block; }
/* Hero : icône + nom du réseau. */
.hero-social a { display: inline-flex; align-items: center; gap: 7px; }
.hero-social a svg { flex-shrink: 0; }


/* ── Hero allégé (2026-08-22) ────────────────────────────────────────── */
/* Triangles, obliques et rangée sociale retirés du balisage : leurs règles
   ne servent plus. Les boutons reprennent l'air laissé libre. */
.tri-col, .slash, .hero-social { display: none; }
.hero .cta-row { margin-bottom: 0; }

/* ── Bande de faits (sous le hero) ───────────────────────────────────── */
/* Le lineup et les dates quittent le hero : ils forment ici le premier
   palier de lecture, entre l'affiche et le contenu. */
.facts-band {
  position: relative; z-index: 3;
  background: var(--grad-band);
  border-top: 1px solid rgba(255,214,0,0.18);
  border-bottom: 1px solid rgba(255,214,0,0.18);
  padding: 26px 0;
}
.facts-inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(22px, 5vw, 64px); flex-wrap: wrap;
}
.fact { display: flex; align-items: baseline; gap: 9px; }
.fact .fv {
  font-family: 'Unbounded', sans-serif; font-weight: 900;
  font-size: clamp(26px, 3.2vw, 40px); color: var(--gold); line-height: 1;
}
.fact .fl {
  font-family: 'Archivo Black', sans-serif; text-transform: uppercase;
  font-size: clamp(11px, 1.1vw, 14px); color: var(--text); letter-spacing: 0.02em;
}
.fact-dates { display: flex; align-items: center; gap: 12px; }
.fact-dates .arrow { color: var(--text-faint); font-size: 18px; }
.facts-band .date-box { padding: 9px 16px; }
.facts-band .date-box .d { font-size: 22px; }
.facts-band .date-box .m { font-size: 9px; }
/* La vague de séparation part désormais de la bande, pas du hero. */
.facts-band + .wave-sep { margin-top: 0; }
@media (max-width: 760px) {
  .facts-band { padding: 20px 0; }
  .facts-inner { gap: 18px 22px; }
  .fact .fv { font-size: 24px; }
  .fact .fl { font-size: 11px; }
}

/* ── Sous-titre plus discret ─────────────────────────────────────────── */
.fest-sub { font-size: clamp(15px, 1.9vw, 25px); }
@media (max-width: 760px) { .fest-sub { font-size: 14px; } }

/* ── L'artiste se pose sur la bande de faits ─────────────────────────── */
/* Le hero perd son fond de marge, la photo s'aligne sur son bord bas et
   descend de la hauteur du vide transparent du PNG (49/882 ≈ 5,6 %) : la
   silhouette touche alors exactement le haut de la bande. Le hero coupe
   ce qui dépasse (overflow déjà masqué). */
@media (min-width: 861px) {
  /* `align-items: stretch` sur le hero : sans ça la grille reste centrée
     verticalement et la photo s'arrête bien au-dessus de la bande. */
  .hero { padding-bottom: 0; align-items: stretch; }
  .hero-grid { align-items: center; padding-bottom: 0; }
  .hero-grid > [data-reveal]:first-child { align-self: end; padding-bottom: clamp(28px, 5vh, 62px); }
  .hero-photo { align-self: end; }
  .hero-photo img { transform: translateY(5.6%); }
  /* Le halo suit la silhouette au lieu de flotter au-dessus d'elle. */
  .photo-disc { bottom: 4% !important; }
}
