/* =====================================================================
   FURALINES — Maquette UX/UI (direction : concert sombre & énergique)
   Accent = corail de la marque (#ff5147) + teal secondaire (#5fd0b6)
   Motif récurrent : "traînées / lignes" (clin d'œil au logo fusée)
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg:        #0c0d10;
  --bg-2:      #131419;
  --bg-3:      #1a1c23;
  --panel:     #14161c;
  --line:      rgba(255, 255, 255, .10);
  --line-soft: rgba(255, 255, 255, .06);
  --text:      #f5f6f8;
  --muted:     #a4a8b4;
  --muted-2:   #757a87;

  --accent:    #ff5147;   /* corail marque        */
  --accent-d:  #e23b32;   /* corail foncé         */
  --accent-2:  #5fd0b6;   /* teal marque          */
  --glow:      rgba(255, 81, 71, .45);

  --maxw:   1200px;
  --gut:    clamp(20px, 5vw, 56px);
  --radius: 16px;
  --radius-sm: 10px;

  --font-display: "Anton", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-alt:     "Outfit", var(--font-body);

  --shadow: 0 24px 60px -24px rgba(0, 0, 0, .8);
  --ease:   cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 4px; }

/* Lien d'évitement — visible seulement au focus clavier */
.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 300;
  background: var(--accent); color: var(--bg); font-family: var(--font-alt); font-weight: 700;
  padding: 12px 18px; border-radius: 10px; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-alt);
  font-weight: 600; font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-2);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block;
}

/* Anton (police d'affichage) a des majuscules accentuées (É, Ê, À…) qui montent
   au-dessus de la hauteur de capitale : un line-height serré fait chevaucher les
   accents de la ligne du dessous sur la ligne du dessus (surtout en FR). On laisse
   donc un peu d'interligne aux titres multi-lignes. */
h1, h2, h3 { line-height: 1.08; font-weight: 400; }
.h-display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.05;
}
.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.1rem, 6vw, 4rem);
  letter-spacing: .015em;
  margin-top: 14px;
}
.section-intro { color: var(--muted); max-width: 60ch; margin-top: 18px; font-size: 1.05rem; }
.section-head { margin-bottom: clamp(34px, 5vw, 60px); }
.text-accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-alt); font-weight: 600; font-size: .98rem;
  padding: 15px 26px; border-radius: 999px;
  transition: transform .25s var(--ease), background .25s, box-shadow .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 10px 30px -10px var(--glow);
}
.btn--primary:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 16px 38px -12px var(--glow); }
.btn--ghost { border: 1.5px solid var(--line); color: var(--text); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--accent-2); color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, backdrop-filter .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(12, 13, 16, .82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; gap: 30px; padding-block: 12px; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand__logo { height: 70px; width: auto; display: block; }

.nav__links { display: flex; align-items: center; gap: 26px; margin-right: auto; }
.nav__cta-mobile { display: none; }
.nav__links a {
  font-family: var(--font-alt); font-weight: 500; font-size: .95rem; color: var(--muted);
  position: relative; padding: 4px 0; transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--accent); transition: width .25s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 14px; flex: none; }

/* language switch — rounded segments, no clipping */
.lang { display: inline-flex; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.03); }

.nav__toggle { display: none; width: 44px; height: 44px; position: relative; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 11px; width: 22px; height: 2px; background: #fff; transition: transform .3s, opacity .2s;
}
.nav__toggle span { top: 21px; }
.nav__toggle span::before { top: -7px; left: 0; } .nav__toggle span::after { top: 7px; left: 0; }
.nav__toggle.is-open span { background: transparent; }
.nav__toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; display: block; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,11,14,.82) 0%, rgba(10,11,14,.45) 40%, rgba(10,11,14,.05) 72%),
    linear-gradient(180deg, rgba(10,11,14,.55) 0%, rgba(10,11,14,.05) 26%, rgba(10,11,14,.55) 60%, var(--bg) 100%),
    radial-gradient(120% 80% at 82% 8%, rgba(255,81,71,.20), transparent 55%);
}
/* speed-lines motif */
.hero__lines { position: absolute; inset: 0; z-index: -1; overflow: hidden; opacity: .5; pointer-events: none; }
.hero__lines i {
  position: absolute; top: -20%; height: 140%; width: 1px;
  background: linear-gradient(180deg, transparent, var(--accent-2), transparent);
  opacity: .25; animation: drift 9s linear infinite;
}
@keyframes drift { from { transform: translateY(-30px); } to { transform: translateY(30px); } }

.hero__inner { padding-bottom: clamp(54px, 9vw, 110px); padding-top: 120px; }
.hero__h1 { margin: 14px 0 0; display: block; }
.hero__brand {
  display: block;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(3.4rem, 15vw, 11rem); letter-spacing: .01em; line-height: .85;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.hero__kw {
  display: block; font-family: var(--font-alt); font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.4rem); color: #fff; line-height: 1.2;
  margin-top: 18px; white-space: nowrap; text-shadow: 0 2px 18px rgba(0,0,0,.6);
}
.hero__tag {
  font-family: var(--font-alt); font-weight: 600;
  font-size: clamp(1.05rem, 2.4vw, 1.7rem); color: #fff; margin-top: 26px; max-width: 22ch;
}
.hero__tag b { color: var(--accent); font-weight: 600; }
.hero__sub { color: var(--muted); max-width: 52ch; margin-top: 18px; font-size: 1.05rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px;
  font-family: var(--font-alt); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---------- Stats bar ---------- */
.stats { border-block: 1px solid var(--line); background: var(--bg-2); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(26px, 4vw, 44px) 18px; text-align: center; border-left: 1px solid var(--line-soft); }
.stat:first-child { border-left: 0; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); color: #fff; line-height: 1; }
.stat__num b { color: var(--accent); font-weight: 400; }
.stat__label { font-family: var(--font-alt); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; border-radius: var(--radius); filter: grayscale(1) contrast(1.05); }
.about__media::before {
  content: ""; position: absolute; inset: auto -14px -14px auto; width: 60%; height: 60%;
  border: 2px solid var(--accent); border-radius: var(--radius); z-index: -1;
}
.about__body p { color: var(--muted); margin-top: 18px; font-size: 1.06rem; }
.about__body p b { color: var(--text); font-weight: 600; }
.about__badge {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 26px;
  padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px;
  font-family: var(--font-alt); font-size: .85rem; color: var(--muted);
}
.about__badge b { color: var(--accent-2); font-weight: 600; }
.about__badge a {
  color: var(--accent-2); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid transparent; transition: border-color .2s;
}
.about__badge a:hover { border-bottom-color: var(--accent-2); }

/* ---------- Setlist / Repertoire ---------- */
.setlist__filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.chip-tab {
  font-family: var(--font-alt); font-weight: 600; font-size: .9rem;
  padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted);
  transition: all .2s var(--ease);
}
.chip-tab[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.chip-tab:hover:not([aria-pressed="true"]) { border-color: var(--accent-2); color: #fff; }
.songs { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.song {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  transition: transform .2s var(--ease), border-color .2s, background .2s;
}
.song:hover { transform: translateY(-1px); border-color: var(--line); background: var(--bg-3); }
.song__icon { color: var(--accent); flex: none; }
.song__t { font-weight: 600; font-size: .95rem; line-height: 1.2; }
.song__a { color: var(--muted-2); font-size: .82rem; }
.note {
  margin-top: 22px; font-size: .85rem; color: var(--muted-2); font-style: italic;
  display: inline-flex; gap: 8px; align-items: center;
}

/* ---------- Videos ---------- */
.videos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.video {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; border: 1px solid var(--line-soft);
}
.video img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), filter .4s; }
.video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55)); }
.video:hover img { transform: scale(1.06); filter: brightness(.85); }
.video__play {
  position: absolute; inset: 0; margin: auto; width: 66px; height: 66px; z-index: 2;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--accent); color: #fff; box-shadow: 0 8px 30px -6px var(--glow);
  transition: transform .25s var(--ease), background .25s;
}
.video:hover .video__play { transform: scale(1.12); background: var(--accent-d); }
.video__credit {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-family: var(--font-alt); font-size: .8rem; color: rgba(255,255,255,.8);
}
.video__credit::before { content: "\00a9"; margin-right: 5px; font-weight: 600; }
.video__credit a {
  pointer-events: auto; color: inherit; text-decoration: none;
  border-bottom: 1px solid transparent; transition: border-color .2s;
}
.video__credit a:hover, .video__credit a:focus-visible { border-bottom-color: currentColor; }

/* ---------- Gallery ---------- */
.gallery { columns: 3; column-gap: 14px; }
.gallery figure { break-inside: avoid; margin-bottom: 14px; position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; }
.gallery img { width: 100%; height: auto; display: block; transition: transform .5s var(--ease), filter .4s; filter: grayscale(.2); }
.gallery figure:hover img { transform: scale(1.05); filter: grayscale(0); }
.gallery figure::after {
  content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 2px transparent; transition: box-shadow .25s; border-radius: var(--radius-sm);
}
.gallery figure:hover::after { box-shadow: inset 0 0 0 2px var(--accent); }
/* Photo credit — overlaid on the image, quiet and on brand (see .video__credit) */
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 30px 12px 9px; pointer-events: none;
  font-family: var(--font-alt); font-size: .72rem; line-height: 1.3; letter-spacing: .01em;
  color: rgba(255, 255, 255, .72);
  background: linear-gradient(to top, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .28) 45%, transparent 100%);
  opacity: .9; transition: opacity .3s var(--ease), color .3s;
}
.gallery figure:hover figcaption { opacity: 1; color: rgba(255, 255, 255, .9); }
.gallery__credit::before {
  content: "\00a9"; margin-right: 5px; color: inherit; font-weight: 600;
}
.gallery__credit a {
  pointer-events: auto; color: inherit; text-decoration: none;
  border-bottom: 1px solid transparent; transition: color .2s var(--ease), border-color .2s;
}
.gallery__credit a:hover, .gallery__credit a:focus-visible { border-bottom-color: currentColor; }

/* Credit on editorial images (heros + inline) — quiet, always-on ©, bottom-right (cf. .gallery__credit) */
.media-credit {
  position: absolute; right: 12px; bottom: 10px; z-index: 2;
  font-family: var(--font-alt); font-size: .68rem; letter-spacing: .01em;
  color: rgba(255, 255, 255, .45); pointer-events: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .55);
}
.media-credit::before { content: "\00a9"; margin-right: 4px; font-weight: 600; }
.media-credit a {
  pointer-events: auto; color: inherit; text-decoration: none;
  border-bottom: 1px solid transparent; transition: color .2s var(--ease), border-color .2s;
}
.media-credit a:hover, .media-credit a:focus-visible { color: rgba(255, 255, 255, .85); border-bottom-color: currentColor; }
/* Slots art-dirigés (home.hero) : n'afficher que le crédit de l'image réellement visible.
   Le breakpoint DOIT rester synchronisé avec le <source media="(max-width: 760px)"> du
   <picture> (config/media-catalog.php → home.hero.renditions.mobile.media). */
.media-credit--mobile { display: none; }
@media (max-width: 760px) {
  .media-credit--desktop { display: none; }
  .media-credit--mobile { display: block; }
}
/* .book__quote is bottom-anchored and its height varies with translation length/wrapping —
   keep the credit in the top-right corner there so it never crowds the quote. */
.book__media .media-credit { top: 10px; bottom: auto; }

/* ---------- Formats / offers ---------- */
.formats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.format {
  padding: 30px; border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.format--featured { border-color: var(--accent); position: relative; }
.format--featured::before {
  content: attr(data-badge); position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: #fff; font-family: var(--font-alt); font-weight: 600; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}
.format__len { font-family: var(--font-display); font-size: 2.6rem; color: #fff; }
.format__len span { color: var(--accent); }
.format__name { font-family: var(--font-alt); font-weight: 600; margin-top: 4px; }
.format__desc { color: var(--muted); margin-top: 12px; font-size: .96rem; }

/* ---------- Gigs ---------- */
.gigs__list { display: flex; flex-direction: column; gap: 12px; }
.gig {
  display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center;
  padding: 20px 24px; background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  transition: border-color .2s, transform .2s;
}
.gig:hover { border-color: var(--accent); transform: translateX(4px); }
.gig__date { text-align: center; font-family: var(--font-display); line-height: 1; }
.gig__date b { display: block; font-size: 1.9rem; color: var(--accent); }
.gig__date span { font-size: .78rem; letter-spacing: .14em; color: var(--muted); }
.gig__name { font-weight: 600; font-size: 1.05rem; }
.gig__place { color: var(--muted); font-size: .9rem; }
.gig__tag { font-family: var(--font-alt); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; }
.gigs__empty {
  text-align: center; padding: clamp(36px, 6vw, 70px); border: 1px dashed var(--line); border-radius: var(--radius);
  background: var(--bg-2);
}
.gigs__empty h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.8rem; }
.gigs__empty p { color: var(--muted); margin: 12px auto 24px; max-width: 46ch; }

/* Agenda : onglets À venir / Passés */
.gigs__tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }

/* Dates passées : visuellement en retrait (pas de corail, pas de survol actif, pas de tag) */
.gig--past { grid-template-columns: auto 1fr; opacity: .9; }
.gig--past:hover { border-color: var(--line-soft); transform: none; }
.gig--past .gig__date b { color: var(--muted); }

/* Bouton « Voir tout / Voir moins » */
.gigs__more-btn {
  display: block; margin: 16px auto 0;
  font-family: var(--font-alt); font-weight: 600; font-size: .9rem;
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--muted); background: transparent;
  transition: all .2s var(--ease);
}
.gigs__more-btn:hover { border-color: var(--accent-2); color: #fff; }

/* ---------- Testimonials ---------- */
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); }
.quote__stars { color: var(--accent); letter-spacing: 3px; }
.quote p { margin-top: 14px; font-size: 1.02rem; }
.quote__who { margin-top: 18px; font-family: var(--font-alt); font-weight: 600; }
.quote__who span { display: block; color: var(--muted-2); font-weight: 400; font-size: .85rem; }

/* ---------- Booking / contact ---------- */
.book { background: var(--bg-2); border-top: 1px solid var(--line); }
.book__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(34px, 5vw, 70px); align-items: stretch; }
.book__media { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 100%; }
.book__media img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.book__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(12,13,16,.5) 62%, rgba(12,13,16,.95)); }
.book__quote { position: absolute; z-index: 1; bottom: 22px; left: 22px; right: 22px; font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; line-height: 1; color: rgba(245,246,248,.78); text-shadow: 0 1px 10px rgba(0,0,0,.5); }

.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--font-alt); font-size: .82rem; letter-spacing: .04em; color: var(--muted); }
/* :not([type=checkbox]) so a checkbox nested in a .field (e.g. the date "unknown"
   toggle) isn't styled as a full-width text input. */
.field input:not([type=checkbox]), .field select, .field textarea {
  font: inherit; color: var(--text); background-color: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color .2s, background .2s;
  width: 100%; min-width: 0;
}
/* Custom chevron so the arrow respects the same 15px inset as the text
   (the native one jams against the right edge). background-color is kept
   separate above so focus states don't wipe this image. */
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23a2a7b0' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:not([type=checkbox]):focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background-color: var(--bg-3); }
.field textarea { resize: vertical; min-height: 110px; }
.form__note { font-size: .82rem; color: var(--muted-2); }
.form__note a { color: var(--accent-2); }

/* --- M3a : formulaire de contact double intention --- */
/* L'attribut [hidden] doit primer sur les display: des classes (.field, .quote-fields…). */
[hidden] { display: none !important; }
.book__reassure { font-family: var(--font-alt); font-size: .85rem; color: var(--accent-2); margin: -10px 0 22px; }
/* On contact the reassure follows an intro paragraph, so cancel the negative
   top margin (tuned for home, where it sits directly under the title). */
.section-intro + .book__reassure { margin-top: 8px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__banner { border-radius: 12px; padding: 12px 16px; font-size: .9rem; }
.form__banner--ok { background: rgba(95, 208, 182, .12); border: 1px solid var(--accent-2); color: var(--accent-2); }
.form__banner--err { background: rgba(255, 81, 71, .1); border: 1px solid var(--accent); color: var(--accent); }
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 5px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; }
.seg__opt { position: relative; }
.seg__opt input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.seg__opt span { display: block; text-align: center; padding: 10px; border-radius: 10px; font-family: var(--font-alt); font-size: .9rem; color: var(--muted); cursor: pointer; transition: .15s; }
.seg__opt input:checked + span { background: var(--accent); color: #fff; }
.seg__opt input:focus-visible + span { outline: 2px solid var(--accent-2); outline-offset: 2px; }
.form__hint { font-size: .85rem; color: var(--muted); background: var(--bg-2); border-left: 3px solid var(--accent-2); padding: 10px 14px; border-radius: 8px; }
.quote-fields { display: grid; gap: 18px; }
.form__block { border: 1px solid var(--line); border-radius: 14px; padding: 18px; display: grid; gap: 16px; margin: 0; }
.form__block legend { font-family: var(--font-alt); font-size: .9rem; letter-spacing: .04em; color: var(--text); padding: 0 8px; }
.field__hint { font-size: .8rem; color: var(--muted-2); margin: -4px 0 0; }
.field__label { font-family: var(--font-alt); font-size: .82rem; letter-spacing: .04em; color: var(--muted); }
.field label small { color: var(--muted-2); font-size: .9em; text-transform: none; letter-spacing: 0; }
.checks { display: grid; gap: 8px; }
.check { display: flex; align-items: flex-start; gap: 9px; font-size: .9rem; color: var(--text); cursor: pointer; }
.check input { margin-top: 2px; accent-color: var(--accent); }
.check--consent { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.check--consent a { color: var(--accent-2); }
.field--error input, .field--error select, .field--error textarea { border-color: var(--accent); }
.field__err { color: var(--accent); font-size: .78rem; margin: 0; }

/* ---------- Newsletter ---------- */
.news { text-align: center; }
/* Shared title for centred single-column blocks (FAQ, booking, newsletter).
   Deliberately distinct from .section-title so centring reads as intentional,
   not as a mislaid content-section header. */
.block-title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.news p { color: var(--muted); max-width: 46ch; margin: 14px auto 26px; }
.news__form { display: flex; gap: 10px; max-width: 480px; margin-inline: auto; }
.news__form input { flex: 1; }
/* consentement newsletter : phrase centrée (case + texte + lien coulent ensemble) */
.news .check--consent { display: block; text-align: center; max-width: 42ch; margin-inline: auto; }
.news .check--consent input { margin: 0 7px 0 0; vertical-align: middle; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 70px) 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__brand img { width: 120px; margin-bottom: 16px; }
.footer__brand p { color: var(--muted); font-size: .95rem; max-width: 32ch; }
.footer__col h4 { font-family: var(--font-alt); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--muted); padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line); color: var(--muted); transition: all .2s var(--ease);
}
.socials a:hover { border-color: var(--accent); color: #fff; background: var(--accent); transform: translateY(-3px); }
.footer__bottom {
  margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .82rem; color: var(--muted-2);
}
.footer__bottom a { color: var(--muted-2); } .footer__bottom a:hover { color: var(--accent-2); }

/* ---------- Lightbox / modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 200; display: none; place-items: center;
  background: rgba(6, 7, 9, .9); backdrop-filter: blur(8px); padding: 20px;
}
.modal.is-open { display: grid; }
.modal__box { position: relative; width: min(1000px, 100%); }
.modal__box .ratio { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; background: #000; }
.modal__box iframe, .modal__box img { position: absolute; inset: 0; width: 100%; height: 100%; }
.modal__box img { object-fit: contain; }
.modal__close {
  position: absolute; top: -52px; right: 0; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); color: #fff; display: grid; place-items: center; font-size: 1.3rem;
  transition: background .2s, transform .2s;
}
.modal__close:hover { background: var(--accent); transform: rotate(90deg); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero__lines i { animation: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .videos__grid, .formats__grid, .quotes__grid { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 2; }
  .about__grid, .book__grid { grid-template-columns: 1fr; }
  .about__media { order: -1; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav__links, .nav__actions .btn--primary { display: none; }
  /* .nav__links (masqué ici) portait le margin-right:auto qui collait les actions
     à droite ; sans lui, on épingle le cluster langue+burger au bord droit. */
  .nav__actions { margin-left: auto; }
  .nav__toggle { display: block; }
  .brand__logo { height: 48px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(odd) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
  .videos__grid, .formats__grid, .quotes__grid { grid-template-columns: 1fr; }
  /* le descriptif hero repasse sur plusieurs lignes sur petit écran */
  .hero__kw { white-space: normal; max-width: 26ch; font-size: 1.15rem; margin-top: 14px; }
  .hero__tag { margin-top: 20px; }
  .form__row { grid-template-columns: 1fr; }
  .gig { grid-template-columns: auto 1fr; }
  .gig__tag { display: none; }
  .news__form { flex-direction: column; }
  /* cibles tactiles plus généreuses sur mobile */
  /* spécificité renforcée : sinon la règle de base .lang a (plus bas dans le
     fichier, même spécificité) l'emporterait et annulerait ces cibles tactiles. */
  .nav__actions .lang a { padding: 10px 14px; }
  .footer__col a { padding: 9px 0; }

  /* mobile menu panel — pleine hauteur, opaque, défilable */
  .nav__links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: fixed; inset: 64px 0 0 0; background: var(--bg); backdrop-filter: blur(14px);
    padding: 18px var(--gut) 28px; border-top: 1px solid var(--line);
    overflow-y: auto; overscroll-behavior: contain;
    transform: translateY(-120%); transition: transform .35s var(--ease); z-index: 90;
  }
  .nav__links.is-open { transform: none; }
  .nav__links a { font-size: 1.1rem; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav__cta-mobile { display: block; width: 100%; margin-top: 16px; }
  .nav__cta-mobile a { border-bottom: 0; padding: 15px 26px; }
}
@media (max-width: 560px) {
  .gallery { columns: 1; }
  .footer__top { grid-template-columns: 1fr; }
}

/* =====================================================================
   PAGES INTERNES (Corporate / Resources / Privacy)
   ===================================================================== */
.page-hero { position: relative; min-height: 56vh; display: flex; align-items: flex-end; isolation: isolate; padding-top: 120px; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(.35) contrast(1.03); }
.page-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,11,14,.8) 0%, rgba(10,11,14,.35) 55%, rgba(10,11,14,.1) 100%),
    linear-gradient(180deg, rgba(10,11,14,.5) 0%, rgba(10,11,14,.12) 30%, rgba(10,11,14,.6) 72%, var(--bg) 100%);
}
.page-hero__inner { padding-bottom: clamp(34px, 5vw, 66px); }
.page-hero h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.5rem, 7vw, 5.2rem); line-height: 1.05; margin-top: 12px; }
/* Écrans étroits : redescendre le titre pour les mots longs (ex. NL « bedrijfsevenementen »)
   sans casser la taille sur les grands mobiles (reste à 2.5rem ≥ ~500px de large). */
@media (max-width: 560px) { .page-hero h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); } }
.page-hero__sub { color: var(--muted); max-width: 60ch; margin-top: 16px; font-size: 1.1rem; }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* solid header for internal pages (no full hero behind on scroll-top is fine, but keep readable) */
.header--page.is-scrolled { background: rgba(12, 13, 16, .9); }

.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .section-intro { margin-inline: auto; }

/* intro split (text + image) */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius); filter: grayscale(1) contrast(1.05); }
.split__body p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }
.split__body p b { color: var(--text); font-weight: 600; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split__media { order: -1; } }

/* feature cards */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); transition: border-color .25s var(--ease), transform .25s var(--ease); }
.feature:hover { transform: translateY(-1px); border-color: var(--line); background: var(--bg-3); }
.feature__icon { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: rgba(255,81,71,.12); color: var(--accent); margin-bottom: 18px; }
.feature h3 { font-family: var(--font-alt); font-weight: 600; font-size: 1.18rem; }
.feature p { color: var(--muted); margin-top: 10px; }
@media (max-width: 760px) { .features { grid-template-columns: 1fr; } }

/* pricing panel */
.pricing { display: grid; grid-template-columns: 1.25fr 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pricing__main { padding: clamp(28px, 4vw, 50px); }
.pricing__aside { padding: clamp(28px, 4vw, 50px); background: var(--bg-3); border-left: 1px solid var(--line); }
.pricing h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.7rem; }
.pricing p { color: var(--muted); margin-top: 14px; }
.pricing ul { margin-top: 18px; display: grid; gap: 12px; }
.pricing li { display: flex; gap: 11px; color: var(--muted); }
.pricing li svg { color: var(--accent-2); flex: none; margin-top: 3px; }
.pricing__aside h4 { font-family: var(--font-alt); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
@media (max-width: 760px) { .pricing { grid-template-columns: 1fr; } .pricing__aside { border-left: 0; border-top: 1px solid var(--line); } }

/* download card (resources) */
.dl { text-align: center; padding: clamp(34px, 5vw, 64px); border: 1px dashed var(--line); border-radius: var(--radius); background: var(--bg-2); }
.dl svg { color: var(--accent); }
.dl h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.7rem; margin-top: 14px; }
.dl p { color: var(--muted); max-width: 46ch; margin: 12px auto 24px; }

/* prose (privacy) */
.prose { max-width: 780px; }
.prose .updated { font-size: .85rem; color: var(--muted-2); margin-bottom: 8px; }
.prose > p { color: var(--muted); margin-top: 14px; font-size: 1.04rem; }
.prose h2 { font-family: var(--font-alt); font-weight: 700; font-size: 1.2rem; color: #fff; margin: 36px 0 6px; }
.prose ul { margin-top: 10px; display: grid; gap: 8px; }
.prose li { color: var(--muted); padding-left: 18px; position: relative; }
.prose li::before { content: ""; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.prose a { color: var(--accent-2); }

/* ---------- FAQ (GEO/AEO + UX) ---------- */
.faq__list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-2); overflow: hidden; transition: border-color .2s; }
.faq__item[open] { border-color: var(--accent); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 20px 22px;
  font-family: var(--font-alt); font-weight: 600; font-size: 1.05rem; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--accent); font-size: 1.6rem; line-height: 1; flex: none; transition: transform .25s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 22px 20px; margin: 0; color: var(--muted); font-size: 1rem; }
.faq__item a { color: var(--accent-2); }

/* ---------- Language switch as links (PHP version) ---------- */
.lang a {
  font-family: var(--font-alt); font-weight: 600; font-size: .76rem; letter-spacing: .04em;
  padding: 6px 12px; border-radius: 999px; line-height: 1; color: var(--muted-2);
  transition: color .2s, background .2s;
}
.lang a[aria-current="page"] { color: var(--bg); background: var(--accent); font-weight: 700; }
.lang a:hover:not([aria-current="page"]) { color: #fff; }

/* --- M3d : bannière de consentement --- */
.cc { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; max-width: 680px; margin: 0 auto;
      background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px;
      display: flex; flex-wrap: wrap; align-items: center; gap: 14px; box-shadow: 0 10px 40px rgba(0,0,0,.4); }
.cc__text { flex: 1 1 300px; margin: 0; font-size: .85rem; color: var(--muted); line-height: 1.5; }
.cc__text a { color: var(--accent-2); }
.cc__actions { display: flex; gap: 10px; flex-shrink: 0; }
.foot__link { background: none; border: 0; padding: 0; font: inherit; color: var(--muted-2); cursor: pointer; }
.foot__link:hover { color: var(--accent-2); }

/* Bande CTA réservation (home) — remplace le formulaire inline */
.book--cta { text-align: center; padding-block: clamp(64px, 9vw, 130px); }
.book--cta .book__cta { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 14px; }
