/* =========================================================
   Évasion à Bali — direction « éditorial / voyage de luxe »
   Palette riche (teal profond + sable + or unique), photo
   plein cadre, typographie affirmée. Pas de pastel délavé,
   pas de dégradés corail, pas d'emojis.
   ========================================================= */
:root {
  --ink: #14201c;          /* texte principal (vert quasi-noir) */
  --ink-soft: #3c4a44;
  --paper: #f6efe2;        /* fond crème chaud */
  --paper-2: #efe5d3;      /* crème plus profond */
  --teal: #0b3a38;         /* sections sombres */
  --teal-deep: #072826;
  --gold: #bb8132;         /* accent unique */
  --gold-2: #d6a253;
  --muted: #6a766e;
  --line: rgba(20, 32, 28, .14);
  --line-light: rgba(255, 255, 255, .18);
  --radius: 5px;
  --maxw: 1240px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
}
[hidden] { display: none !important; }   /* corrige l'écrasement de l'attribut par .btn */
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.012em;
  margin: 0;
}
em { font-style: italic; }
a { color: inherit; }

/* ---- utilitaires éditoriaux ---- */
.eyebrow {
  font-family: 'Fragment Mono', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .7rem;
  color: var(--gold);
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 3.5rem); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.muted { color: var(--muted); }

/* ---- boutons : solides, sobres, label espacé (aucun glow) ---- */
.btn {
  --bg: var(--ink); --fg: var(--paper);
  display: inline-flex; align-items: center; gap: .6em;
  background: var(--bg); color: var(--fg);
  font: 600 .78rem 'Hanken Grotesk', sans-serif;
  text-transform: uppercase; letter-spacing: .16em;
  text-decoration: none; cursor: pointer; border: 1px solid var(--bg);
  padding: 1.05em 1.9em; border-radius: 2px;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { --bg: var(--gold); --fg: #fff; border-color: var(--gold); }
.btn-primary:hover { --bg: #a66f27; border-color: #a66f27; }
.btn-ink { --bg: var(--ink); --fg: var(--paper); }
.btn-line { background: transparent; color: currentColor; border: 1px solid currentColor; }
.btn-line:hover { background: currentColor; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--paper-2); border-color: var(--line); }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* =====================================================  HEADER */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem clamp(1.2rem, 4vw, 3.5rem);
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(246, 239, 226, .9); backdrop-filter: blur(12px);
  padding-top: .9rem; padding-bottom: .9rem;
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: #fff; }
.site-header.scrolled .brand { color: var(--ink); }
.brand .mark { width: 30px; height: 30px; flex: none; }
.brand .name { font-family: 'Fraunces', serif; font-size: 1.18rem; font-weight: 500; letter-spacing: -.01em; }
.brand .name em { color: var(--gold-2); }
.site-header.scrolled .brand .name em { color: var(--gold); }
.nav-cta { color: #fff; }
.site-header.scrolled .nav-cta { color: var(--ink); }
.header-quit { color: #fff; text-decoration: none; font-family: 'Fragment Mono', monospace; font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; opacity: .85; }
.site-header.scrolled .header-quit { color: var(--ink); }

/* =====================================================  HERO */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: #0b3a38 center/cover no-repeat; transform: scale(1.04); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,30,28,.55) 0%, rgba(7,30,28,0) 32%),
    linear-gradient(0deg, rgba(6,24,22,.88) 4%, rgba(6,24,22,.1) 52%, rgba(6,24,22,.22) 100%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(2.5rem, 7vw, 5.5rem); padding-top: 7rem; }
.hero .eyebrow { color: var(--gold-2); }
.hero h1 { font-size: clamp(3rem, 8.5vw, 7rem); font-weight: 400; line-height: .94; margin: 1.1rem 0 0; max-width: 16ch; text-shadow: 0 8px 50px rgba(0,0,0,.35); }
.hero h1 em { color: var(--gold-2); }
.hero-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-top: clamp(1.6rem, 4vw, 2.6rem); flex-wrap: wrap; }
.hero-lead { max-width: 38ch; font-size: 1.06rem; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.hero-credit {
  position: absolute; right: clamp(1.2rem,4vw,3.5rem); top: 50%; z-index: 2;
  transform: rotate(90deg); transform-origin: right center;
  font-family: 'Fragment Mono', monospace; font-size: .64rem; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}

/* =====================================================  SECTIONS génériques */
.section { padding: clamp(4rem, 10vw, 8rem) 0; }
.sec-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 2.6rem; }
.sec-head .num { font-family: 'Fragment Mono', monospace; color: var(--gold); font-size: .8rem; letter-spacing: .1em; }

/* =====================================================  PRIZE (split éditorial) */
.prize-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.prize-copy h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); max-width: 13ch; }
.prize-copy h2 em { color: var(--gold); }
.prize-copy p { color: var(--ink-soft); max-width: 42ch; margin: 1.4rem 0 2.2rem; }
.prize-list { list-style: none; margin: 0; padding: 0; }
.prize-list li { display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 1.2rem; padding: 1.5rem 0; border-top: 1px solid var(--line); }
.prize-list li:last-child { border-bottom: 1px solid var(--line); }
.prize-list .ic { width: 28px; height: 28px; color: var(--gold); margin-top: .15rem; }
.prize-list .ic svg { width: 100%; height: 100%; }
.prize-list h3 { font-family: 'Hanken Grotesk', sans-serif; font-weight: 600; font-size: 1.02rem; }
.prize-list p { margin: .25rem 0 0; color: var(--muted); font-size: .95rem; }
.prize-list .idx { font-family: 'Fragment Mono', monospace; font-size: .72rem; color: var(--muted); padding-top: .2rem; }
.prize-photo { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; box-shadow: 0 40px 80px -40px rgba(7,30,28,.5); }
.prize-photo > div { position: absolute; inset: 0; background: center/cover no-repeat; transition: transform 1.2s var(--ease); }
.prize-photo:hover > div { transform: scale(1.05); }
.prize-photo figcaption { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; color: #fff; font-family: 'Fragment Mono', monospace; font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; background: rgba(7,30,28,.4); backdrop-filter: blur(6px); padding: .45rem .8rem; border-radius: 2px; }

/* =====================================================  STEPS (section sombre) */
.steps { background: var(--teal); color: var(--paper); position: relative; overflow: hidden; }
.steps::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 85% -10%, rgba(214,162,83,.16), transparent 60%); }
.steps .wrap { position: relative; }
.steps .sec-head .num { color: var(--gold-2); }
.steps h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); color: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 3rem; }
.step-item { padding: 2.2rem clamp(1rem, 2.5vw, 2.2rem) 1rem; border-left: 1px solid var(--line-light); }
.step-item:first-child { border-left: 0; padding-left: 0; }
.step-item .n { font-family: 'Fragment Mono', monospace; font-size: 2.4rem; color: var(--gold-2); line-height: 1; }
.step-item h3 { font-size: 1.5rem; color: #fff; margin: 1.1rem 0 .6rem; font-weight: 500; }
.step-item p { color: rgba(247,241,230,.72); font-size: .98rem; max-width: 30ch; }
.trust { display: inline-flex; align-items: center; gap: .7rem; margin-top: 3rem; font-family: 'Fragment Mono', monospace; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,241,230,.82); border: 1px solid var(--line-light); padding: .7rem 1.1rem; border-radius: 2px; }
.trust svg { width: 16px; height: 16px; color: var(--gold-2); }

/* =====================================================  GALLERY (strip décalée + légendes) */
.gallery-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.gallery-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.gallery-head .eyebrow { white-space: nowrap; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.8rem, 1.6vw, 1.3rem); }
.shot { position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; }
.shot:nth-child(even) { transform: translateY(2.2rem); }
.shot > div { position: absolute; inset: 0; background: center/cover no-repeat; transition: transform 1.1s var(--ease); }
.shot:hover > div { transform: scale(1.06); }
.shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,30,28,.55), transparent 45%); }
.shot figcaption { position: absolute; left: .9rem; bottom: .85rem; z-index: 2; color: #fff; font-family: 'Fragment Mono', monospace; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; }

/* =====================================================  CTA finale (bandeau photo) */
.cta { position: relative; color: #fff; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: var(--teal) center/cover no-repeat; }
.cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,30,28,.78), rgba(7,30,28,.9)); }
.cta .wrap { position: relative; z-index: 2; padding: clamp(4.5rem, 12vw, 9rem) 0; }
.cta h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 400; max-width: 18ch; margin: .8rem auto 1.6rem; }
.cta h2 em { color: var(--gold-2); }
.cta p { color: rgba(255,255,255,.8); max-width: 44ch; margin: 0 auto 2.4rem; }

/* =====================================================  FOOTER */
.site-footer { background: var(--teal-deep); color: rgba(247,241,230,.7); }
.site-footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-top: 2.4rem; padding-bottom: 2.4rem; }
.site-footer a { color: rgba(247,241,230,.7); text-decoration: none; }
.site-footer a:hover { color: var(--gold-2); }
.site-footer nav { display: flex; gap: 1.6rem; font-family: 'Fragment Mono', monospace; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }

/* =====================================================  FORMULAIRE / WIZARD */
body.app { background: var(--paper); }
.app-main { max-width: 760px; margin: 0 auto; padding: 8.5rem clamp(1.2rem, 4vw, 2rem) 5rem; }

.stepper { display: flex; gap: clamp(.6rem, 2vw, 1.6rem); justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; }
.stepper-item { display: inline-flex; align-items: center; gap: .55rem; color: var(--muted); font-family: 'Fragment Mono', monospace; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; padding-bottom: .5rem; border-bottom: 2px solid transparent; }
.stepper-item span { display: inline-grid; place-items: center; width: 1.5rem; height: 1.5rem; border: 1px solid var(--line); border-radius: 50%; font-size: .72rem; }
.stepper-item.active { color: var(--ink); border-bottom-color: var(--gold); }
.stepper-item.active span { background: var(--gold); color: #fff; border-color: var(--gold); }
.stepper-item.done span { background: var(--teal); color: var(--paper); border-color: var(--teal); }

.step { display: none; }
.step.active { display: block; animation: rise .5s var(--ease); }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.step-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 500; }
.step-sub { color: var(--muted); margin: .5rem 0 0; }

.fields { display: grid; gap: 1.4rem 1.6rem; grid-template-columns: 1fr 1fr; margin-top: 2rem; }
.fields label { display: flex; flex-direction: column; gap: .5rem; font-family: 'Fragment Mono', monospace; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.fields label.full { grid-column: 1 / -1; }
.fields .opt { color: var(--muted); letter-spacing: .08em; }
input, select, textarea { font: 400 1rem 'Hanken Grotesk', sans-serif; color: var(--ink); padding: .85rem .9rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fffdf8; transition: border-color .2s, box-shadow .2s; text-transform: none; letter-spacing: normal; }
input::placeholder, textarea::placeholder { color: #aab2ac; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(187,129,50,.14); }
.tel-row { display: flex; gap: .5rem; }
.tel-code { flex: 0 0 8rem; }
.consent { display: flex; gap: .7rem; align-items: flex-start; margin-top: 2rem; font-family: 'Hanken Grotesk', sans-serif; font-size: .95rem; text-transform: none; letter-spacing: normal; color: var(--ink-soft); }
.consent input { margin-top: .15rem; accent-color: var(--gold); }

.recap { display: grid; grid-template-columns: max-content 1fr; gap: .7rem 1.4rem; margin-top: 1.6rem; }
.recap dt { font-family: 'Fragment Mono', monospace; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding-top: .15rem; }
.recap dd { margin: 0; }
.recap .video-ok { color: var(--gold); font-weight: 600; }

/* ---- progression d'envoi (l'upload vidéo peut durer 20-40 s sur mobile) ---- */
.upload-zone { margin-top: 2rem; }
.upload-track { height: 8px; border-radius: 999px; background: rgba(7, 40, 38, .12); overflow: hidden; }
.upload-fill { height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--gold-2)); transition: width .3s ease; }
.upload-note { margin: .7rem 0 0; text-align: center; font-family: 'Fragment Mono', monospace; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.wizard-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.6rem; }
.wizard-nav .btn-primary, .wizard-nav #submitBtn { margin-left: auto; }

.capture-legend { display: flex; gap: 1.4rem; justify-content: center; list-style: none; padding: 0; margin: 1.6rem 0; font-family: 'Fragment Mono', monospace; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.capture-legend .cl-ico { color: var(--gold); margin-right: .4rem; }

/* ---- cadre caméra ---- */
.video-frame { position: relative; width: 100%; max-width: 340px; aspect-ratio: 9/16; margin: 1.4rem auto 0; border-radius: var(--radius); overflow: hidden; background: var(--teal-deep); box-shadow: 0 40px 80px -40px rgba(7,30,28,.6); }
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-frame.live-ok { box-shadow: 0 0 0 3px var(--gold-2), 0 40px 80px -40px rgba(7,30,28,.6); }
.video-frame.live-bad { box-shadow: 0 0 0 3px #c8552f, 0 40px 80px -40px rgba(7,30,28,.6); }
.seq-progress { position: absolute; left: 0; top: 0; right: 0; height: 4px; background: rgba(255,255,255,.2); z-index: 5; }
.seq-progress-bar { height: 100%; width: 0; background: var(--gold-2); }
.overlay { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; text-align: center; }
.overlay .oval { position: absolute; width: 62%; height: 74%; border: 2px dashed rgba(255,255,255,.65); border-radius: 50%; }
.rec-badge { position: absolute; top: .8rem; left: .8rem; display: flex; align-items: center; gap: .4rem; background: rgba(200,85,47,.92); color: #fff; font-family: 'Fragment Mono', monospace; font-weight: 400; font-size: .65rem; letter-spacing: .12em; padding: .3rem .6rem; border-radius: 2px; }
.rec-badge i { width: .5rem; height: .5rem; border-radius: 50%; background: #fff; animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: .2; } }
.arrow { position: absolute; font-size: 2.4rem; opacity: 0; transition: opacity .2s, transform .3s var(--ease); }
.arrow.show-left { opacity: 1; transform: translateX(-92px); }
.arrow.show-left::before { content: "←"; }
.arrow.show-right { opacity: 1; transform: translateX(92px); }
.arrow.show-right::before { content: "→"; }
.guide { position: absolute; bottom: 1.3rem; left: 0; right: 0; padding: 0 1rem; text-shadow: 0 2px 12px rgba(0,0,0,.7); }
.guide-text { font-size: 1.05rem; font-weight: 600; }
.guide-sub { font-size: .82rem; opacity: .9; }
.countdown { font-family: 'Fraunces', serif; font-size: 3.4rem; text-shadow: 0 2px 18px rgba(0,0,0,.5); }
.cam-message { position: absolute; inset: 0; display: grid; place-items: center; padding: 1.5rem; background: rgba(7,30,28,.92); color: #fff; }
.capture-controls { display: flex; gap: .8rem; justify-content: center; margin: 1.6rem 0 .6rem; flex-wrap: wrap; }
.capture-status { text-align: center; color: var(--muted); min-height: 1.4em; font-size: .95rem; }
.capture-status.ok { color: var(--gold); font-weight: 600; }
.capture-status.err { color: #b23b2a; font-weight: 600; }
.capture-hints { list-style: none; display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; color: var(--muted); font-size: .82rem; padding: 0; margin: 1.4rem 0 0; }

/* ---- confirmation ---- */
.confirmation { text-align: center; padding: clamp(3rem, 8vw, 6rem) 1.5rem; }
.confirm-check { width: 4.4rem; height: 4.4rem; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1.4rem; background: var(--gold); color: #fff; font-size: 2rem; }
.confirmation h2 { font-size: clamp(2rem, 5vw, 3rem); }
.confirmation p { color: var(--ink-soft); }
.confirm-ref { font-family: 'Fragment Mono', monospace; font-size: .85rem; }
.confirm-ref code { background: var(--paper-2); padding: .25rem .55rem; border-radius: 3px; }

/* =====================================================  ADMIN */
.admin-main { max-width: var(--maxw); margin: 0 auto; padding: 8.5rem clamp(1.2rem, 4vw, 3.5rem) 5rem; }
.login-card { max-width: 440px; margin: 3rem auto; background: #fffdf8; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.4rem; box-shadow: 0 40px 90px -50px rgba(7,30,28,.4); }
.login-card .fields { grid-template-columns: 1fr; }
.admin-toolbar { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; margin-bottom: 2.2rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.admin-toolbar #countLabel { font-family: 'Fragment Mono', monospace; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.filters { display: flex; gap: .35rem; flex-wrap: wrap; }
.filter-btn { font-family: 'Fragment Mono', monospace; padding: .5rem .9rem; border-radius: 2px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); transition: .2s; }
.filter-btn:hover { color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
#csvLink { font-size: .68rem; padding: .7rem 1.2rem; }
.admin-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }
.card { background: #fffdf8; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.card:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -34px rgba(7,30,28,.5); }
.card h3 { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 500; }
.card .meta { color: var(--muted); font-size: .85rem; margin-top: .35rem; line-height: 1.5; }
.badge { display: inline-block; margin-top: .9rem; padding: .3rem .7rem; border-radius: 2px; font-family: 'Fragment Mono', monospace; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.badge.ok { background: rgba(187,129,50,.14); color: #92611f; }
.badge.warn { background: rgba(106,118,110,.16); color: var(--ink-soft); }
.badge.accepted { background: var(--teal); color: var(--paper); }
.badge.rejected { background: #b23b2a; color: #fff; }
.dash-empty { text-align: center; color: var(--muted); padding: 4rem 1rem; font-family: 'Fragment Mono', monospace; font-size: .8rem; letter-spacing: .08em; }

.modal { position: fixed; inset: 0; display: grid; place-items: center; background: rgba(7,30,28,.6); backdrop-filter: blur(4px); z-index: 60; padding: 1rem; }
.modal-box { background: var(--paper); border-radius: var(--radius); max-width: 700px; width: 100%; max-height: 92vh; overflow: auto; padding: 2rem; }
.modal-box .step-title { font-size: 1.7rem; }
.modal-box video { width: 100%; max-width: 260px; border-radius: var(--radius); display: block; margin: 1.2rem auto; background: #000; }
.modal-shot { box-shadow: 0 18px 40px -24px rgba(7,30,28,.5); }
.rev-auto { background: #fffdf8; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; margin: 1.2rem 0; }
.rev-auto h3 { font-family: 'Hanken Grotesk', sans-serif; font-size: 1rem; font-weight: 600; }
.rev-steps { list-style: none; padding: 0; margin: .7rem 0 0; display: grid; gap: .3rem; font-family: 'Fragment Mono', monospace; font-size: .74rem; color: var(--ink-soft); }
.rev-steps li.ok::before { content: "✓ "; color: var(--gold); }
.rev-steps li.ko::before { content: "✗ "; color: #b23b2a; }
.rev-actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.4rem; }
.rev-msg { margin-top: .9rem; font-family: 'Fragment Mono', monospace; font-size: .76rem; color: var(--gold); }
.modal-box textarea { width: 100%; margin-top: 1.2rem; }

/* =====================================================  RESPONSIVE */
@media (max-width: 880px) {
  .prize-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .prize-photo { aspect-ratio: 16/11; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-item { border-left: 0; border-top: 1px solid var(--line-light); padding-left: 0; padding-top: 1.8rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .shot:nth-child(even) { transform: none; }
  .hero-credit { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .fields { grid-template-columns: 1fr; }
  .tel-code { flex-basis: 6.5rem; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .hero-actions { width: 100%; }
  .gallery { grid-template-columns: 1fr 1fr; gap: .7rem; }
}

/* =====================================================  RAFFINEMENTS v2
   texture, chorégraphie, désir & conversion
   ===================================================== */

/* grain de film (toute la page) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 3; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* hairline qui prolonge les en-têtes de section */
.sec-head { align-items: center; }
.sec-head::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.steps .sec-head::after { background: var(--line-light); }

/* hero : chorégraphie d'entrée + détails */
@keyframes heroUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.hero .eyebrow { animation: heroUp .9s var(--ease) .15s both; }
.hero h1 { animation: heroUp 1s var(--ease) .3s both; }
.hero .hero-foot { animation: heroUp 1s var(--ease) .52s both; }
.hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.chips { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.3rem; }
.chip { display: inline-flex; align-items: center; gap: .45rem; font-family: 'Fragment Mono', monospace; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,.28); padding: .45rem .85rem; border-radius: 100px; background: rgba(255,255,255,.07); backdrop-filter: blur(6px); }
.chip b { color: var(--gold-2); }
.chip svg { width: 13px; height: 13px; color: var(--gold-2); }

.countdown-chip { display: inline-flex; align-items: baseline; gap: .5rem; font-family: 'Fragment Mono', monospace; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.82); }
.countdown-chip b { font-family: 'Fraunces', serif; font-size: 1.15rem; color: var(--gold-2); letter-spacing: 0; }

.scroll-cue { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .6rem; font-family: 'Fragment Mono', monospace; font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.scroll-cue i { width: 1px; height: 46px; background: rgba(255,255,255,.3); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; left: 0; top: -60%; width: 1px; height: 60%; background: var(--gold-2); animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0% { top: -60%; } 100% { top: 100%; } }

/* bandeau chiffres clés */
.facts { background: var(--paper); border-bottom: 1px solid var(--line); }
.facts ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.facts li { display: flex; align-items: baseline; gap: .55rem; justify-content: center; padding: 1.7rem 1rem; border-left: 1px solid var(--line); font-family: 'Fragment Mono', monospace; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.facts li:first-child { border-left: 0; }
.facts b { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.5rem; color: var(--ink); letter-spacing: 0; }
@media (max-width: 680px) { .facts ul { grid-template-columns: 1fr 1fr; } .facts li:nth-child(3) { border-left: 0; } }

/* photo du lot : passe-partout */
.prize-photo::after { content: ""; position: absolute; inset: 13px; border: 1px solid rgba(255,255,255,.45); z-index: 2; pointer-events: none; }

/* section immersive « Imaginez » */
.dream { position: relative; color: #fff; overflow: hidden; }
.dream-bg { position: absolute; inset: 0; background: var(--teal) center/cover no-repeat; }
.dream::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,24,22,.85), rgba(6,24,22,.35) 75%, rgba(6,24,22,.5)); }
.dream .wrap { position: relative; z-index: 2; padding: clamp(5rem, 13vw, 9.5rem) 0; }
.dream .eyebrow { color: var(--gold-2); }
.dream blockquote { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(1.7rem, 4vw, 3rem); line-height: 1.18; max-width: 22ch; margin: 1.2rem 0 0; text-shadow: 0 4px 30px rgba(0,0,0,.3); }
.dream blockquote em { color: var(--gold-2); }

/* légendes galerie : tiret animé */
.shot figcaption::before { content: ""; display: inline-block; width: 14px; height: 1px; background: var(--gold-2); vertical-align: middle; margin-right: .5rem; transition: width .3s var(--ease); }
.shot:hover figcaption::before { width: 28px; }

/* footer de clôture */
.site-footer .footer-top { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding: clamp(3.5rem, 8vw, 5.5rem) 0 2.6rem; border-bottom: 1px solid var(--line-light); }
.footer-lead { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(2rem, 5.4vw, 3.6rem); line-height: 1.05; color: #fff; max-width: 15ch; margin: 0; }
.footer-lead em { color: var(--gold-2); }
.site-footer .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; padding: 1.8rem 0 2.2rem; }
.brand-foot { font-family: 'Fraunces', serif; font-size: 1.1rem; color: #fff; }
.brand-foot em { color: var(--gold-2); }
.muted-foot { font-family: 'Fragment Mono', monospace; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(247,241,230,.5); }

/* barre de participation collante (mobile) */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: none; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 1.1rem; background: rgba(8,40,38,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line-light); transform: translateY(110%); transition: transform .4s var(--ease); }
.sticky-cta.show { transform: none; }
.sticky-cta .sc-txt { color: rgba(255,255,255,.75); font-family: 'Fragment Mono', monospace; font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; line-height: 1.5; }
.sticky-cta .sc-txt b { display: block; font-family: 'Fraunces', serif; font-size: 1rem; color: #fff; letter-spacing: 0; text-transform: none; }
.sticky-cta .btn { padding: .85rem 1.3rem; font-size: .7rem; flex: none; }
@media (max-width: 760px) { .sticky-cta { display: flex; } body { scroll-padding-bottom: 5rem; } }

/* =========================================================
   SITE AGENCE — nav multi-pages, i18n, cartes, formulaires
   (extension du design « éditorial / voyage de luxe »)
   ========================================================= */

/* ---- header : barre pleine largeur + rangée centrée ---- */
.site-header { display: block; padding: 0; }
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.4rem;
  padding: 1.2rem clamp(1.2rem, 4vw, 3.5rem);
  transition: padding .3s var(--ease);
}
.site-header.scrolled .header-inner { padding-top: .8rem; padding-bottom: .8rem; }
.brand .mark { color: var(--gold-2); }
.site-header.scrolled .brand .mark { color: var(--gold); }

/* ---- navigation ---- */
.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.nav a { color: #fff; text-decoration: none; font-family: 'Hanken Grotesk', sans-serif; font-size: .94rem; font-weight: 500; position: relative; padding: .2rem 0; transition: color .2s var(--ease); }
.nav a:hover { color: var(--gold-2); }
.site-header.scrolled .nav a { color: var(--ink); }
.site-header.scrolled .nav a:hover, .site-header.scrolled .nav a.active { color: var(--gold); }
.nav a.active { color: var(--gold-2); }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 1px; background: currentColor; transition: right .28s var(--ease); }
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav .nav-contest { font-family: 'Fragment Mono', monospace; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; border: 1px solid currentColor; padding: .5rem .85rem; border-radius: 100px; }
.nav .nav-contest::after { display: none; }
.nav .nav-contest:hover { background: var(--gold-2); color: var(--teal-deep); border-color: var(--gold-2); }
.nav-drawer-cta { display: none; }

.header-tools { display: flex; align-items: center; gap: 1.1rem; }
.lang-switch { display: flex; align-items: center; gap: .35rem; font-family: 'Fragment Mono', monospace; font-size: .72rem; letter-spacing: .08em; color: #fff; }
.site-header.scrolled .lang-switch { color: var(--ink); }
.lang-switch button { background: none; border: 0; color: inherit; cursor: pointer; font: inherit; opacity: .55; padding: .15rem; transition: opacity .2s, color .2s; }
.lang-switch button:hover { opacity: .9; }
.lang-switch button.active { opacity: 1; color: var(--gold-2); }
.site-header.scrolled .lang-switch button.active { color: var(--gold); }
.lang-sep { opacity: .35; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; background: none; border: 0; cursor: pointer; padding: 0; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

body.no-scroll { overflow: hidden; }

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .header-tools .nav-cta { display: none; }
  .nav {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 1.5rem; padding: 6rem clamp(1.6rem, 8vw, 4rem);
    background: var(--teal-deep);
    transform: translateX(100%); transition: transform .42s var(--ease);
    overflow-y: auto;
  }
  .site-header.nav-open .nav { transform: none; z-index: 30; }
  .nav a { color: #fff !important; font-family: 'Fraunces', serif; font-size: 1.9rem; font-weight: 400; }
  .nav a::after { display: none; }
  .nav .nav-contest { font-family: 'Fragment Mono', monospace; font-size: .82rem; align-self: flex-start; }
  .nav-drawer-cta { display: inline-flex !important; margin-top: 1.2rem; color: #fff; }
  .site-header.nav-open .nav-toggle span { background: #fff; }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---- hero d'accueil : double CTA ---- */
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: clamp(1.6rem, 4vw, 2.4rem); }

/* ---- hero secondaire (pages internes) ---- */
.page-hero { position: relative; color: #fff; overflow: hidden; background: var(--teal-deep); padding: clamp(8.5rem, 16vw, 12rem) 0 clamp(3.5rem, 7vw, 5.5rem); }
.page-hero-bg { position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; transform: scale(1.04); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,30,28,.62), rgba(7,30,28,.84)); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold-2); animation: heroUp .8s var(--ease) .1s both; }
.page-hero h1 { font-size: clamp(2.5rem, 6.5vw, 5rem); font-weight: 400; line-height: .98; margin: 1rem 0 0; max-width: 17ch; animation: heroUp .9s var(--ease) .24s both; }
.page-hero h1 em { color: var(--gold-2); }
.page-hero .lead { max-width: 56ch; margin: 1.5rem 0 0; color: rgba(255,255,255,.86); font-size: 1.08rem; animation: heroUp .9s var(--ease) .4s both; }

/* ---- en-tête de section avec lien ---- */
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 4vw, 3rem); }
.head-row .eyebrow { display: block; margin-bottom: .9rem; }
.head-row h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 20ch; }
.head-row h2 em { color: var(--gold); }
.head-row .more { font-family: 'Fragment Mono', monospace; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); text-decoration: none; white-space: nowrap; }
.head-row .more:hover { color: var(--ink); }
.head-row .more .arr { transition: transform .25s var(--ease); display: inline-block; }
.head-row .more:hover .arr { transform: translateX(4px); }
.lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 60ch; }
.section--paper2 { background: var(--paper-2); }
.intro-lead { font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-family: 'Fraunces', serif; font-weight: 300; line-height: 1.4; max-width: 32ch; color: var(--ink); }

/* ---- grille d'offres (destinations / villas / expériences) ---- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.offer { background: #fffdf8; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .32s var(--ease), box-shadow .32s var(--ease); }
.offer:hover { transform: translateY(-5px); box-shadow: 0 34px 64px -42px rgba(7,30,28,.55); }
.offer-media { position: relative; aspect-ratio: 4 / 3; background-position: center; background-size: cover; background-repeat: no-repeat; overflow: hidden; }
.offer-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,30,28,.5), transparent 55%); }
.offer-tag { position: absolute; left: .9rem; top: .9rem; z-index: 2; font-family: 'Fragment Mono', monospace; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: rgba(7,30,28,.45); backdrop-filter: blur(6px); padding: .42rem .72rem; border-radius: 2px; }
.offer-body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.offer-body h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.4rem; }
.offer-body p { color: var(--ink-soft); font-size: .95rem; margin: 0; flex: 1; }
.offer-foot { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-top: .7rem; padding-top: .9rem; border-top: 1px solid var(--line); }
.offer-meta { font-family: 'Fragment Mono', monospace; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.offer-price { font-family: 'Fraunces', serif; font-size: 1.08rem; color: var(--gold); white-space: nowrap; }

/* ---- « pourquoi nous » / valeurs ---- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.6vw, 2.2rem); }
.feature { padding-top: 1.5rem; border-top: 2px solid var(--gold); }
.feature-n { font-family: 'Fragment Mono', monospace; font-size: .7rem; letter-spacing: .1em; color: var(--gold); }
.feature h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.32rem; margin: .7rem 0 .5rem; }
.feature p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ---- témoignages ---- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.quote-card { background: #fffdf8; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem; display: flex; flex-direction: column; gap: 1.3rem; position: relative; }
.quote-card::before { content: "“"; position: absolute; top: .4rem; right: 1.1rem; font-family: 'Fraunces', serif; font-size: 4rem; color: var(--gold); opacity: .22; line-height: 1; }
.quote-card blockquote { font-family: 'Fraunces', serif; font-weight: 300; font-size: 1.22rem; line-height: 1.42; margin: 0; color: var(--ink); }
.quote-card figcaption { display: flex; flex-direction: column; gap: .15rem; margin-top: auto; }
.quote-card figcaption b { font-family: 'Hanken Grotesk', sans-serif; font-weight: 600; }
.quote-card figcaption span { font-family: 'Fragment Mono', monospace; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ---- équipe ---- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.6vw, 2rem); }
.team-photo { aspect-ratio: 3 / 4; border-radius: var(--radius); background-position: center; background-size: cover; background-repeat: no-repeat; }
.team-card figcaption { margin-top: 1rem; }
.team-card b { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 500; display: block; }
.team-card span { font-family: 'Fragment Mono', monospace; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ---- bandeau concours (accueil) ---- */
.contest-band { position: relative; color: #fff; overflow: hidden; }
.contest-band-bg { position: absolute; inset: 0; background: var(--teal) center/cover no-repeat; }
.contest-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,24,22,.92), rgba(6,24,22,.5)); }
.contest-band .wrap { position: relative; z-index: 2; padding: clamp(4rem, 9vw, 7rem) 0; display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: center; }
.contest-band .eyebrow { color: var(--gold-2); }
.contest-band h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 400; max-width: 15ch; margin: .8rem 0 0; }
.contest-band h2 em { color: var(--gold-2); }
.contest-band p { color: rgba(255,255,255,.84); max-width: 46ch; margin: 1.2rem 0 0; }
.contest-band .band-cta { display: flex; justify-content: flex-end; }

/* ---- contact / devis ---- */
.contact-grid { display: grid; grid-template-columns: 1.25fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.devis-form .fields { margin-top: 0; }
.form-actions { margin-top: 1.8rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.form-status { font-family: 'Fragment Mono', monospace; font-size: .78rem; letter-spacing: .03em; min-height: 1.2em; }
.form-status.ok { color: var(--gold); }
.form-status.err { color: #b23b2a; }
.contact-info { background: var(--teal); color: var(--paper); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); }
.contact-info h2 { color: #fff; font-size: 1.6rem; }
.info-item { padding: 1.1rem 0; border-top: 1px solid var(--line-light); }
.info-item:first-of-type { border-top: 0; padding-top: 1.4rem; }
.info-item dt { font-family: 'Fragment Mono', monospace; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); }
.info-item dd { margin: .35rem 0 0; font-size: 1.05rem; color: var(--paper); }
.info-item a { color: var(--paper); text-decoration: none; }
.info-item a:hover { color: var(--gold-2); }

/* ---- libellés i18n du stepper (balise <i> pour échapper au style
   du numéro .stepper-item span ; pas d'italique) ---- */
.stepper-item .st-label { font-style: normal; }

/* ---- reveal au scroll (générique) ---- */
.reveal { opacity: 0; transform: translateY(22px); 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; } }

/* ---- responsive site agence ---- */
@media (max-width: 960px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contest-band .wrap { grid-template-columns: 1fr; }
  .contest-band .band-cta { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .offer-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FINITIONS v3 — footer en colonnes, pages légales,
   menu mobile, lisibilité mobile, accessibilité
   ========================================================= */

/* ---- footer : vraies colonnes (brand + 3 listes) ---- */
.site-footer .footer-cols {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3rem); align-items: start;
  padding: 2.6rem 0 2.8rem; border-bottom: 1px solid var(--line-light);
}
.footer-brand p { margin: .9rem 0 0; font-size: .92rem; line-height: 1.7; color: rgba(247, 241, 230, .55); max-width: 34ch; }
.site-footer .footer-col {
  display: flex; flex-direction: column; align-items: flex-start; gap: .85rem;
  font-family: 'Hanken Grotesk', sans-serif; font-size: .95rem;
  letter-spacing: 0; text-transform: none;
}
.footer-col h4 { font-family: 'Fragment Mono', monospace; font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-2); margin: 0 0 .35rem; font-weight: 400; }
.footer-col a, .footer-col span { line-height: 1.5; overflow-wrap: anywhere; }
.footer-col .muted { font-family: 'Fragment Mono', monospace; font-size: .68rem; letter-spacing: .08em; color: rgba(247, 241, 230, .45); margin-top: .25rem; }
@media (max-width: 760px) {
  .site-footer .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---- pages légales (règlement, mentions) ---- */
.page-hero--short { padding: clamp(7.5rem, 14vw, 10rem) 0 clamp(2.8rem, 5vw, 4rem); }
.legal-wrap { max-width: 860px; }
.legal-updated { font-family: 'Fragment Mono', monospace; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 0 0 1.4rem; }
.legal-art { padding: 1.7rem 0; border-top: 1px solid var(--line); }
.legal-art:last-of-type { border-bottom: 1px solid var(--line); }
.legal-art h2 { font-size: 1.35rem; display: flex; align-items: baseline; gap: .9rem; flex-wrap: wrap; }
.legal-n { font-family: 'Fragment Mono', monospace; font-size: .66rem; letter-spacing: .14em; color: var(--gold); white-space: nowrap; }
.legal-art p { margin: .8rem 0 0; color: var(--ink-soft); line-height: 1.75; font-size: .98rem; }

/* ---- menu mobile : barre lisible au-dessus du volet ---- */
@media (max-width: 920px) {
  .nav { visibility: hidden; transition: transform .42s var(--ease), visibility 0s .42s; }
  .site-header.nav-open .nav { visibility: visible; transition: transform .42s var(--ease); }
  .site-header.nav-open { background: transparent; box-shadow: none; backdrop-filter: none; }
  .site-header.nav-open .brand, .site-header.nav-open .header-tools { position: relative; z-index: 31; }
  .site-header.nav-open .brand { color: #fff; }
  .site-header.nav-open .brand .mark { color: var(--gold-2); }
  .site-header.nav-open .lang-switch { color: #fff; }
  .site-header.nav-open .lang-switch button.active { color: var(--gold-2); }
  .lang-switch button { padding: .4rem .3rem; }  /* cible tactile confortable */
}

/* ---- hero mobile : contraste + CTA pleine largeur ---- */
@media (max-width: 560px) {
  .hero::after {
    background:
      linear-gradient(180deg, rgba(7, 30, 28, .62) 0%, rgba(6, 24, 22, .38) 45%, rgba(6, 24, 22, .94) 100%);
  }
  .hero-cta-row, .hero-btns { width: 100%; }
  .hero-cta-row .btn, .hero-btns .btn { flex: 1 1 auto; justify-content: center; }
  .scroll-cue { display: none; }  /* chevauche les CTA sur petit écran */
}

/* ---- coordonnées contact collantes sur desktop ---- */
@media (min-width: 961px) {
  .contact-info { position: sticky; top: 96px; }
}

/* ---- accessibilité & typographie ---- */
h1, h2, h3 { text-wrap: balance; }
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 2px; }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: none; }
.info-item dd { overflow-wrap: anywhere; }

