/* ── Design tokens ───────────────────────────── */
:root {
  --noir:          #0b0907;
  --noir-2:        #100d0a;
  --brun:          #1c1410;
  --brun-2:        #241a14;
  --sauge:         #1a211b;
  --ivoire:        #ece3d2;
  --ivoire-dim:    #a89e8c;
  --ivoire-faint:  rgba(236, 227, 210, 0.14);
  --ivoire-line:   rgba(236, 227, 210, 0.18);
  --dore:          #c8a868;
  --dore-soft:     rgba(200, 168, 104, 0.55);
  --dore-faint:    rgba(200, 168, 104, 0.22);
  --serif:         'Cormorant Garamond', Georgia, serif;
  --display:       'Cormorant Garamond', Georgia, serif;
  --title:         'Tangerine', 'Cormorant Garamond', cursive;
  --ui:            'Jost', -apple-system, sans-serif;
  color-scheme: dark;
}

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

/* Solid fallback when WebGL is unavailable */
html { background: #0b0907; }

body {
  color:                   var(--ivoire);
  font-family:             var(--ui);
  font-weight:             300;
  font-size:               1.05rem;
  -webkit-font-smoothing:  antialiased;
  overflow:                hidden;
  position:                relative;
}

/* Fallback solid background — only when WebGL hasn't activated */
html:not(.webgl-on) body { background: var(--noir); }

/* ── Vanta background container ──────────────── */
#vanta-bg {
  position:       fixed;
  inset:          0;
  width:          100%;
  height:         100%;
  z-index:        0;
  pointer-events: none;
  background:     #0b0907;
}

/* Activated once Vanta initializes */
html.webgl-on body { background: transparent; }

/* ── Cursor glow ─────────────────────────────── */
#cursor-glow {
  position:       fixed;
  width:          420px; height: 420px;
  border-radius:  50%;
  pointer-events: none;
  z-index:        1;
  background:     radial-gradient(circle, rgba(200, 168, 104, 0.07) 0%, rgba(200, 168, 104, 0.02) 35%, transparent 70%);
  transform:      translate(-50%, -50%);
  opacity:        0;
  transition:     opacity 0.8s ease;
  will-change:    left, top;
}
html.webgl-on #cursor-glow { opacity: 1; }

/* ── Grain overlay ───────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ════════════════════════════════════════════════
   CINEMATIC INTRO VEIL
   ════════════════════════════════════════════════ */
#veil {
  position: fixed; inset: 0; z-index: 100000;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(28, 20, 16, 0.9) 0%, var(--noir) 70%),
    var(--noir);
  opacity: 1; visibility: visible;
  transition: opacity 1.5s cubic-bezier(.4, 0, .2, 1), visibility 1.5s;
}
#veil.gone { opacity: 0; visibility: hidden; }

.veil-inner {
  text-align: center;
  animation: veilFloat 5s ease-in-out infinite;
}

.veil-logo {
  display: block; margin: 0 auto;
  width: clamp(220px, 46vw, 380px); height: auto;
  filter: drop-shadow(0 0 48px rgba(200, 168, 104, 0.22));
  opacity: 0; animation: veilIn 2s ease .2s forwards;
}

.veil-line {
  width: 1px; height: 0; margin: 1.8rem auto 1.4rem;
  background: linear-gradient(var(--dore-soft), transparent);
  animation: veilLine 1.6s ease 1s forwards;
}

.veil-text {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  letter-spacing: .06em; color: var(--ivoire-dim);
  opacity: 0; animation: veilIn 1.8s ease 1.3s forwards;
}

@keyframes veilIn   { from { opacity: 0; transform: translateY(10px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes veilLine { from { height: 0; opacity: 0; } to { height: 44px; opacity: 1; } }
@keyframes veilFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

@media (prefers-reduced-motion: reduce) {
  .veil-logo, .veil-text { animation: none; opacity: 1; }
  .veil-line { animation: none; height: 44px; opacity: 1; }
  .veil-inner { animation: none; }
}

/* ── Effect selector dropdown ────────────────── */
.effect-selector {
  position:       fixed;
  top:            1.4rem;
  right:          1.4rem;
  z-index:        10000;
  display:        flex;
  align-items:    center;
  gap:            .6rem;
  pointer-events: auto;
}

.effect-selector label {
  font-family:    var(--ui);
  font-size:      .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color:          var(--ivoire-dim);
  opacity:        .7;
  transition:     opacity .4s ease;
}

.effect-selector:hover label { opacity: 1; }

.effect-selector select {
  -webkit-appearance: none;
  appearance:     none;
  background:     rgba(11, 9, 7, 0.75);
  border:         1px solid var(--ivoire-faint);
  border-radius:  3px;
  color:          var(--ivoire);
  font-family:    var(--ui);
  font-size:      .72rem;
  font-weight:    300;
  letter-spacing: .06em;
  padding:        .55rem 2rem .55rem .8rem;
  cursor:         pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:     border-color .4s ease, box-shadow .4s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23a89e8c' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .7rem center;
}

.effect-selector select:hover,
.effect-selector select:focus {
  outline:      none;
  border-color: var(--dore-soft);
  box-shadow:   0 0 20px rgba(200, 168, 104, 0.08);
}

.effect-selector select option {
  background: #1c1410;
  color:      var(--ivoire);
}


/* ════════════════════════════════════════════════
   SCREENS
   ════════════════════════════════════════════════ */
.screen {
  position:   fixed; inset: 0; z-index: 2;
  display:    flex; align-items: center; justify-content: center;
  padding:    5.5rem 1.5rem 5rem;
  overflow-y: auto;
  scrollbar-gutter: stable both-edges;
  opacity:    0; visibility: hidden;
  transform:  translateY(22px) scale(0.995);
  filter:     blur(7px);
  transition:
    opacity   1.15s cubic-bezier(.2, .7, .2, 1),
    transform 1.15s cubic-bezier(.2, .7, .2, 1),
    filter    1.15s cubic-bezier(.2, .7, .2, 1);
}

.screen.active {
  opacity:    1; visibility: visible;
  transform:  none; filter: none;
  z-index:    4;
}

.screen.leaving { z-index: 3; }

/* ── Wrappers ─────────────────────────────────── */
.wrap {
  width: 100%; max-width: 620px; margin: auto; text-align: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 55%, rgba(0, 0, 0, 0.12) 100%);
  padding: 3rem 2.5rem;
  border-radius: 4px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.wrap.wide { max-width: 840px; }

/* ════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════ */
.halo {
  position:   absolute; left: 50%; top: 38%;
  width:      min(640px, 90vw); height: min(640px, 90vw);
  transform:  translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 168, 104, 0.16) 0%, rgba(168, 120, 60, 0.06) 35%, transparent 68%);
  filter:     blur(28px);
  pointer-events: none; z-index: -1;
  animation:  breathe 9s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: .7; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;  transform: translate(-50%, -50%) scale(1.06); }
}

.reveal { opacity: 0; }

.screen.active .reveal {
  animation: rise 1.1s cubic-bezier(.2, .7, .2, 1) forwards;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); filter: blur(4px); }
  to   { opacity: 1; transform: none; filter: none; }
}

/* Staggered reveal delays */
.screen.active .reveal:nth-child(1)  { animation-delay: .05s; }
.screen.active .reveal:nth-child(2)  { animation-delay: .35s; }
.screen.active .reveal:nth-child(3)  { animation-delay: .6s; }
.screen.active .reveal:nth-child(4)  { animation-delay: .85s; }
.screen.active .reveal:nth-child(5)  { animation-delay: 1.1s; }
.screen.active .reveal:nth-child(6)  { animation-delay: 1.35s; }
.screen.active .reveal:nth-child(7)  { animation-delay: 1.6s; }
.screen.active .reveal:nth-child(8)  { animation-delay: 1.85s; }
.screen.active .reveal:nth-child(9)  { animation-delay: 2.1s; }
.screen.active .reveal:nth-child(10) { animation-delay: 2.35s; }

/* ════════════════════════════════════════════════
   TYPOGRAPHY
   ════════════════════════════════════════════════ */
.kicker {
  font-family:    var(--ui); font-weight: 400;
  font-size:      .72rem; letter-spacing: .5em; text-transform: uppercase;
  color:          var(--dore); margin-bottom: 1.6rem; padding-left: .5em;
  text-shadow:    0 0 12px rgba(3, 3, 3, 0.9);
}

.logo {
  font-family:    var(--serif); font-weight: 300;
  font-size:      clamp(3.2rem, 12vw, 6rem);
  letter-spacing: .22em; line-height: 1;
  color:          var(--ivoire); padding-left: .22em;
  text-shadow:    0 2px 20px rgba(3, 3, 3, 0.8), 0 0 40px rgba(3, 3, 3, 0.5);
}

.logo .last-s { color: var(--dore); }

.logo-img {
  display: block;
  width: clamp(200px, 42vw, 380px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 2px 20px rgba(3, 3, 3, 0.6));
}

.subtitle {
  font-family:    var(--serif); font-style: italic; font-weight: 300;
  font-size:      clamp(1.1rem, 3.8vw, 1.5rem);
  color:          var(--ivoire-dim); letter-spacing: .04em;
  margin-top:     1.2rem;
  text-shadow:    0 1px 8px rgba(3, 3, 3, 0.8);
}

h2 {
  font-family:    var(--title); font-weight: 700;
  font-size:      clamp(3.4rem, 9vw, 5.6rem);
  line-height:    1.05; letter-spacing: 0;
  color:          var(--ivoire); margin-bottom: 1.6rem;
  text-shadow:    0 2px 16px rgba(3, 3, 3, 0.8), 0 0 30px rgba(3, 3, 3, 0.4);
}

h2 em { font-family: var(--title); font-weight: 700; font-style: normal; letter-spacing: 0; color: var(--dore); }

/* Signature dorée « SSS » — réservée aux moments signature, teinte douce/mate */
.sss { color: #b59a63; font-style: inherit; }

/* Wordmark BLISSS lisible quand il apparaît dans un titre en script (Tangerine) */
.brand { font-family: var(--serif); font-weight: 600; font-style: italic; letter-spacing: .01em; }

/* Sélection d'une formule par convive (étape ExpérienSSS) */
.formule-select { margin-top: 2rem; text-align: left; }
.formule-select-title {
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--dore); margin-bottom: 1rem;
}
.formule-row { display: flex; align-items: center; gap: 1rem; margin-bottom: .9rem; }
.formule-row > .fr-label {
  flex: none; min-width: 6.5rem;
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ivoire-dim);
}
.formule-row select {
  flex: 1; -webkit-appearance: none; appearance: none;
  background: rgba(20, 18, 15, 0.45);
  border: 1px solid var(--ivoire-line); border-radius: 6px;
  color: var(--ivoire); font-family: var(--ui); font-size: .95rem;
  padding: .8rem 2.2rem .8rem 1rem; cursor: pointer; letter-spacing: .01em;
  background-image: linear-gradient(45deg, transparent 50%, var(--dore) 50%), linear-gradient(135deg, var(--dore) 50%, transparent 50%);
  background-position: right 1rem center, right .75rem center;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
  transition: border-color .4s ease;
}
.formule-row select:focus { outline: none; border-color: var(--dore); }
.formule-row select option { background: #15120f; color: var(--ivoire); }
@media (max-width: 520px) {
  .formule-row { flex-direction: column; align-items: stretch; gap: .4rem; }
  .formule-row > .fr-label { min-width: 0; }
}

.lede {
  font-size:      clamp(1rem, 2.6vw, 1.15rem);
  line-height:    1.9; font-weight: 300; font-style: italic;
  color:          var(--ivoire-dim); letter-spacing: .01em;
  max-width:      48ch; margin: 0 auto;
  text-shadow:    0 1px 6px rgba(3, 3, 3, 0.7);
}

.lede strong { color: var(--ivoire); font-weight: 400; }
.lede + .lede { margin-top: 1.5rem; }

.ask {
  font-family:    var(--serif); font-style: italic;
  font-size:      clamp(1.4rem, 4.5vw, 2rem);
  color:          var(--ivoire); margin-top: 2rem; letter-spacing: .02em;
  white-space:    nowrap;
  text-wrap:      balance;
  text-shadow:    0 1px 10px rgba(3, 3, 3, 0.8);
}

.divider {
  width: 1px; height: 46px; margin: 2.2rem auto;
  background: linear-gradient(var(--dore-soft), transparent);
}

.name { color: var(--dore); font-style: italic; }

/* ════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════ */
.btn {
  -webkit-appearance: none; appearance: none;
  display:        inline-flex; align-items: center; justify-content: center; gap: 0;
  background:     transparent;
  border:         1px solid var(--dore-faint);
  color:          var(--ivoire);
  font-family:    var(--ui); font-weight: 400;
  font-size:      .76rem; letter-spacing: .32em; text-transform: uppercase;
  padding:        1.15rem 2.6rem;
  cursor:         pointer; position: relative; overflow: hidden;
  transition:
    color .6s ease, border-color .6s ease, box-shadow .6s ease,
    background .6s ease, transform .6s ease;
  margin-top: 2.6rem;
}

.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 50% 120%, rgba(200, 168, 104, 0.18), transparent 70%);
  opacity: 0; transition: opacity .6s ease;
}

.btn:hover,
.btn:focus-visible {
  border-color: var(--dore-soft); color: var(--dore);
  box-shadow:   0 0 50px rgba(200, 168, 104, 0.12), inset 0 0 24px rgba(200, 168, 104, 0.04);
  outline:      none;
}

.btn:hover::before,
.btn:focus-visible::before { opacity: 1; }

.btn:active   { transform: translateY(1px); }
.btn:disabled { opacity: .32; cursor: not-allowed; pointer-events: none; }
.btn.ghost    { border-color: var(--ivoire-faint); font-size: .62rem; padding: .9rem 2rem; margin-top: 1.4rem; }

/* Gold light sweep across the button */
.btn::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(200, 168, 104, 0.28), transparent);
  transform: skewX(-18deg); opacity: 0; pointer-events: none;
}
.btn:hover::after,
.btn:focus-visible::after {
  opacity: 1; animation: btnSweep 1.1s ease forwards;
}
@keyframes btnSweep { from { left: -120%; } to { left: 160%; } }

@media (prefers-reduced-motion: reduce) {
  .btn:hover::after, .btn:focus-visible::after { animation: none; opacity: 0; }
}

.micro {
  position:       absolute;
  top:            2rem;
  left:           2rem;
  z-index:        20;
  display:        inline-flex;
  align-items:    center;
  gap:            .65rem;
  font-family:    var(--ui);
  font-size:      .6rem; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  color:          var(--ivoire-dim);
  background:     rgba(20, 18, 15, 0.34);
  border:         1px solid var(--ivoire-faint);
  border-radius:  999px;
  padding:        .62rem 1.15rem .62rem .95rem;
  cursor:         pointer;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  transition:     color .45s ease, border-color .45s ease, background .45s ease,
                  box-shadow .45s ease, transform .45s cubic-bezier(.2, .7, .2, 1);
}

/* Chevron « ‹ » dessiné en CSS — hérite de la couleur du texte */
.micro::before {
  content:        '';
  width:          7px; height: 7px;
  border-left:    1.5px solid currentColor;
  border-bottom:  1.5px solid currentColor;
  transform:      rotate(45deg);
  transition:     border-color .45s ease;
}

.micro:hover,
.micro:focus-visible {
  color:          var(--dore);
  border-color:   var(--dore-faint);
  background:     rgba(200, 168, 104, 0.06);
  box-shadow:     0 0 28px rgba(200, 168, 104, 0.10),
                  inset 0 0 18px rgba(200, 168, 104, 0.04);
  transform:      translateX(-3px);
  outline:        none;
}

.micro:active { transform: translateX(-1px); }

/* Bouton WhatsApp — sous « Revenir » (PC uniquement, écrans avec retour) */
#wa-fab {
  position: fixed; top: 5.4rem; left: 2rem; z-index: 21;
  display: none; align-items: center; gap: .5rem;
  font-family: var(--ui); font-size: .6rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ivoire-dim); text-decoration: none;
  background: rgba(20, 18, 15, 0.34); border: 1px solid var(--ivoire-faint);
  border-radius: 999px; padding: .55rem 1rem .55rem .9rem;
  -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  transition: color .4s ease, border-color .4s ease, background .4s ease, box-shadow .4s ease;
}
#wa-fab.show { display: inline-flex; }
#wa-fab:hover, #wa-fab:focus-visible {
  color: var(--dore); border-color: var(--dore-faint);
  background: rgba(200, 168, 104, 0.06);
  box-shadow: 0 0 22px rgba(200, 168, 104, 0.10); outline: none;
}
@media (max-width: 768px) {
  #wa-fab {
    top: calc(env(safe-area-inset-top, 16px) + 4rem); left: .7rem;
    font-size: .55rem; letter-spacing: .18em;
    padding: .5rem .95rem .5rem .8rem;
  }
}

/* Signature ADML Studio (nom seul) — discrète, en bas du contenu de chaque page */
.adml-page {
  display: block; width: fit-content; margin: 2.8rem auto 0;
  font-family: var(--ui); font-weight: 400; font-size: .5rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--ivoire-dim); opacity: .5; text-decoration: none;
  transition: color .4s ease, opacity .4s ease, text-shadow .4s ease;
}
.adml-page:hover, .adml-page:focus-visible {
  color: var(--dore); opacity: .95; text-shadow: 0 0 12px var(--dore-soft); outline: none;
}

/* ════════════════════════════════════════════════
   FORM FIELDS
   ════════════════════════════════════════════════ */
.field { text-align: left; margin: 1.8rem 0; position: relative; }

.field label {
  display:        block; font-size: .62rem; letter-spacing: .34em;
  text-transform: uppercase; color: var(--dore-soft); margin-bottom: .7rem;
  font-weight:    400;
  transition:     color .4s ease;
}

.field:focus-within label { color: var(--dore); }

.field input,
.field textarea {
  width:          100%;
  background:     rgba(16, 13, 10, 0.6);
  border:         1px solid var(--ivoire-faint);
  border-radius:  3px;
  color:          var(--ivoire);
  font-family:    var(--ui); font-weight: 300;
  font-size:      1.1rem;
  padding:        1rem 1.2rem;
  letter-spacing: .03em;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition:     border-color .5s ease, box-shadow .5s ease, background .5s ease;
}

.field textarea              { resize: none; min-height: 4rem; line-height: 1.7; }

.field input::placeholder,
.field textarea::placeholder { color: rgba(168, 158, 140, 0.35); font-style: italic; }

.field input:focus,
.field textarea:focus {
  outline:      none;
  border-color: var(--dore-soft);
  background:   rgba(20, 16, 12, 0.75);
  box-shadow:   0 0 0 1px var(--dore-faint), 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(200, 168, 104, 0.04);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }

@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ════════════════════════════════════════════════
   CARDS — formules / choix
   ════════════════════════════════════════════════ */
.cards { display: grid; gap: 1.2rem; margin-top: 2.4rem; text-align: left; }

@media (min-width: 680px) {
  .cards.two { grid-template-columns: 1fr 1fr; }
}

.card {
  background:        linear-gradient(180deg, rgba(236, 227, 210, 0.04), rgba(12, 10, 8, 0.34));
  border:            1px solid rgba(200, 168, 104, 0.22);
  border-radius:     12px;
  padding:           2.1rem 1.9rem;
  backdrop-filter:   blur(12px); -webkit-backdrop-filter: blur(12px);
  cursor:            pointer; position: relative;
  transition:
    border-color .5s ease, box-shadow .5s ease, transform .5s ease, background .5s ease;
}

.card:hover { border-color: var(--dore-faint); transform: translateY(-2px); }

.card.selected {
  border-color: var(--dore-soft);
  background:   linear-gradient(160deg, rgba(52, 38, 24, 0.6), rgba(20, 15, 10, 0.4));
  box-shadow:   0 0 0 1px var(--dore-faint), 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 60px rgba(200, 168, 104, 0.1);
  animation:    cardGlow 2.6s cubic-bezier(.2,.7,.2,1) infinite;
}

/* Gold accent line drawn across the top edge on selection */
.card::after {
  content: ''; position: absolute; top: 0; left: 50%; width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--dore), transparent);
  transform: translateX(-50%); transition: width .6s cubic-bezier(.2,.7,.2,1);
}
.card.selected::after { width: 90%; }

@keyframes cardGlow {
  0%, 100% { box-shadow: 0 0 0 1px var(--dore-faint), 0 24px 60px rgba(0,0,0,.45), 0 0 50px rgba(200,168,104,.08); }
  50%      { box-shadow: 0 0 0 1px var(--dore-soft), 0 24px 60px rgba(0,0,0,.45), 0 0 80px rgba(200,168,104,.18); }
}

@media (prefers-reduced-motion: reduce) {
  .card.selected { animation: none; }
  .card::after { transition: none; }
}

.card .tag   { font-size: .58rem; letter-spacing: .32em; text-transform: uppercase; color: var(--dore); }
.card h3     { font-family: var(--display); font-weight: 600; font-size: 1.5rem; margin: .6rem 0 .45rem; letter-spacing: .01em; line-height: 1.22; }
.card .price { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--ivoire); }

.card .price small {
  display:     block; font-family: var(--ui); font-size: .74rem;
  font-style:  italic; color: var(--ivoire-dim);
  margin-top:  .5rem; line-height: 1.7; letter-spacing: .02em;
}

.card .pick {
  margin-top:  1.5rem; padding-top: 1.1rem;
  border-top:  1px solid rgba(200, 168, 104, 0.16);
  font-size: .62rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--ivoire-dim);
  display:     flex; align-items: center; gap: .6rem; transition: color .5s ease;
}

.card.selected .pick { color: var(--dore); }

.card .pick .dot {
  width: 8px; height: 8px; border: 1px solid currentColor;
  border-radius: 50%; transition: background .4s;
}

.card.selected .pick .dot { background: var(--dore); box-shadow: 0 0 10px var(--dore-soft); }

/* ── Resonance sub-options ────────────────────── */
.reso-options {
  display:        none; margin-top: 1.4rem; padding-top: 1.4rem;
  border-top:     1px solid var(--ivoire-faint);
  gap:            .5rem; flex-direction: column;
}

.card.selected .reso-options.show { display: flex; }

.reso {
  display:        flex; flex-direction: column; gap: .15rem;
  padding:        .75rem .9rem; border: 1px solid transparent; border-radius: 2px;
  cursor:         pointer; transition: border-color .4s, background .4s;
}

.reso:hover          { background: rgba(200, 168, 104, 0.05); }
.reso.selected       { border-color: var(--dore-faint); background: rgba(200, 168, 104, 0.07); }
.reso b              { font-weight: 500; font-size: .86rem; letter-spacing: .04em; color: var(--ivoire); }
.reso span           { font-size: .74rem; color: var(--ivoire-dim); letter-spacing: .02em; line-height: 1.6; }

/* Les quatre façons de vivre l'expérience (descriptif, non cliquable) */
.reso-list { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.4rem; text-align: left; }
.reso-list .reso {
  cursor: default; border-color: var(--ivoire-faint);
  background: rgba(26, 33, 27, 0.35); padding: .95rem 1.05rem;
}
.reso-list .reso b    { color: var(--dore); }
.reso-list .reso:hover { background: rgba(26, 33, 27, 0.45); }
.reso-foot {
  margin-top: 1.3rem; text-align: center;
  font-family: var(--serif); font-style: italic;
  font-size: .95rem; color: var(--ivoire-dim); letter-spacing: .015em;
}
.recap-onsite { color: var(--dore-soft); font-size: .92em; }

/* ════════════════════════════════════════════════
   STEP 4 — menu (bandeau) + 4 façons + accordéon
   ════════════════════════════════════════════════ */
.lede-fine { font-size: .92rem; color: var(--ivoire-dim); line-height: 1.75; margin-top: 1rem; }

/* Bandeau menu */
.menu-hero {
  display: flex; align-items: center; justify-content: space-between; gap: 1.4rem;
  text-align: left; margin-top: 2.2rem; padding: 1.35rem 1.6rem;
  border: 1px solid var(--ivoire-faint); border-radius: 3px;
  background: rgba(26, 33, 27, 0.45);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.menu-hero .tag { font-size: .58rem; letter-spacing: .32em; text-transform: uppercase; color: var(--dore); }
.menu-hero h3  { font-family: var(--display); font-weight: 600; font-size: 1.5rem; margin: .35rem 0 .4rem; letter-spacing: .01em; line-height: 1.15; }
.mh-note       { font-size: .8rem; line-height: 1.55; color: var(--ivoire-dim); max-width: 40ch; }
.mh-price      { flex: none; text-align: right; }
.mh-amount     { display: block; font-family: var(--serif); font-style: italic; font-size: 2.2rem; color: var(--ivoire); line-height: 1; }
.mh-price small{ display: block; margin-top: .35rem; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ivoire-dim); line-height: 1.5; }

/* En-tête des façons */
.ways-head   { text-align: left; margin-top: 2.4rem; }
.ways-head h4{ font-family: var(--display); font-weight: 500; font-size: 1.22rem; color: var(--ivoire); letter-spacing: .03em; }
.ways-sub    { font-size: .85rem; color: var(--ivoire-dim); margin-top: .35rem; line-height: 1.5; }
.ways-sub span { color: var(--dore-soft); }

/* Onglets convives */
.convive-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.1rem; }
.convive-tab {
  font-family: var(--ui); font-weight: 400; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ivoire-dim); background: transparent; cursor: pointer;
  border: 1px solid var(--ivoire-faint); border-radius: 999px; padding: .5rem .95rem;
  transition: color .35s, border-color .35s, background .35s;
}
.convive-tab:hover { color: var(--ivoire); border-color: var(--dore-faint); }
.convive-tab.done:not(.active) { color: var(--dore); border-color: var(--dore-faint); }
.convive-tab.active { color: var(--noir); background: var(--dore); border-color: var(--dore); }
.ct-check { font-size: .8em; }

/* Grille 2×2 des cartes */
.ways-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-top: 1.1rem; }
.way-card {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: .12rem;
  text-align: left; padding: 1.1rem 1.15rem; cursor: pointer; width: 100%;
  border: 1px solid var(--ivoire-faint); border-radius: 3px; background: rgba(26, 33, 27, 0.35);
  transition: border-color .4s, background .4s, transform .4s, box-shadow .4s;
}
.way-card:hover    { border-color: var(--dore-faint); background: rgba(26, 33, 27, 0.55); transform: translateY(-2px); }
.way-card.selected { border-color: var(--dore); background: rgba(200, 168, 104, 0.08); box-shadow: 0 0 0 1px var(--dore-faint), 0 10px 32px rgba(0, 0, 0, 0.35); }
.way-ico  { color: var(--dore); opacity: .85; margin-bottom: .45rem; }
.way-ico svg { width: 26px; height: 26px; display: block; }
.way-name { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--ivoire); letter-spacing: .01em; }
.way-sub  { font-size: .76rem; color: var(--ivoire-dim); line-height: 1.4; }
.way-tag  { margin-top: .55rem; font-family: var(--ui); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--dore-soft); }
.way-card.selected .way-tag { color: var(--dore); }
.way-card.selected::after {
  content: '✓'; position: absolute; top: .7rem; right: .9rem;
  color: var(--dore); font-size: .85rem; line-height: 1;
}

/* Accordéon conditions */
.cond-acc {
  text-align: left; margin-top: 2.4rem;
  border: 1px solid var(--ivoire-faint); border-radius: 3px;
  background: rgba(26, 33, 27, 0.35); overflow: hidden;
}
.cond-acc summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.4rem;
  font-family: var(--display); font-weight: 500; font-size: 1.02rem; color: var(--ivoire); letter-spacing: .03em;
  transition: color .35s;
}
.cond-acc summary::-webkit-details-marker { display: none; }
.cond-acc summary:hover { color: var(--dore); }
.ca-chev { color: var(--dore-soft); display: flex; transition: transform .35s ease; }
.cond-acc[open] .ca-chev { transform: rotate(180deg); }
.cond-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem;
  padding: 1.3rem 1.4rem 1.5rem; border-top: 1px solid var(--ivoire-faint);
}
.cond-body h5 { font-family: var(--display); font-weight: 500; font-size: .95rem; color: var(--ivoire); letter-spacing: .03em; margin-bottom: .5rem; }
.cond-body p  { font-size: .82rem; line-height: 1.7; color: var(--ivoire-dim); }
.cond-body p + p  { margin-top: .7rem; }
.cond-body p + h5 { margin-top: 1.1rem; }
.cond-body .c-gold      { color: var(--dore); }
.cond-body .c-gold-soft { color: var(--dore-soft); }
.cond-acc + .check { margin-top: 1.5rem; }

@media (max-width: 768px) {
  .menu-hero { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .mh-price  { text-align: left; }
  .cond-body { grid-template-columns: 1fr; gap: 1.1rem; }
}
@media (max-width: 520px) {
  .ways-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .way-card, .convive-tab, .ca-chev { transition: none; }
  .way-card:hover { transform: none; }
}

/* ════════════════════════════════════════════════
   CONDITIONS BLOCK
   ════════════════════════════════════════════════ */
.note {
  text-align:  left; margin-top: 2.4rem;
  border:      1px solid var(--ivoire-faint); border-radius: 2px;
  padding:     1.6rem 1.6rem 1.4rem;
  background:  rgba(26, 33, 27, 0.45);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}

.note h4    { font-family: var(--display); font-weight: 500; font-size: 1.18rem; color: var(--ivoire); margin-bottom: 1rem; letter-spacing: .04em; line-height: 1.3; }
.note p     { font-size: .92rem; line-height: 1.85; color: var(--ivoire-dim); letter-spacing: .015em; }
.note p + p { margin-top: .8rem; }

.check {
  display:     flex; align-items: flex-start; gap: .85rem;
  margin-top:  1.5rem; cursor: pointer; text-align: left;
}

.check input { position: absolute; opacity: 0; width: 0; height: 0; }

.check .box {
  flex:        none; width: 20px; height: 20px; margin-top: 1px;
  border:      1px solid var(--ivoire-line); border-radius: 2px;
  display:     flex; align-items: center; justify-content: center;
  transition:  border-color .4s, background .4s;
}

.check .box svg { opacity: 0; transform: scale(.5); transition: .35s ease; }

.check input:checked + .box         { border-color: var(--dore); background: rgba(200, 168, 104, 0.12); }
.check input:checked + .box svg     { opacity: 1; transform: scale(1); }
.check input:focus-visible + .box   { box-shadow: 0 0 0 2px var(--dore-faint); }

.check span { font-size: .82rem; line-height: 1.6; color: var(--ivoire); letter-spacing: .02em; }

/* ════════════════════════════════════════════════
   CALENDAR / SLOTS
   ════════════════════════════════════════════════ */
.paths { display: grid; gap: 1.2rem; margin-top: 2.4rem; text-align: left; }

@media (min-width: 680px) {
  .paths { grid-template-columns: 1fr 1fr; }
}

.slots { display: none; margin-top: 2.2rem; }
.slots.show { display: block; animation: rise .8s ease forwards; }

.slot {
  display:       flex; align-items: center; justify-content: space-between;
  padding:       1.15rem 1.4rem; margin-bottom: .8rem;
  border:        1px solid var(--ivoire-faint); border-radius: 2px;
  background:    rgba(20, 15, 10, 0.6); cursor: pointer;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition:    border-color .4s, background .4s, transform .4s;
}

.slot:hover          { border-color: var(--dore-faint); transform: translateX(3px); }
.slot.selected       { border-color: var(--dore-soft); background: rgba(200, 168, 104, 0.07); }
.slot .day           { font-family: var(--serif); font-size: 1.4rem; color: var(--ivoire); }
.slot .time          { font-size: .74rem; letter-spacing: .16em; color: var(--ivoire-dim); margin-top: .25rem; }
.slot .places        { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--dore); text-align: right; }

/* ── Convives pill selector ───────────────────── */
.convives { display: none; margin-top: 2rem; }
.convives.show { display: block; animation: rise .8s ease forwards; }

.convives .label { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ivoire-dim); margin-bottom: 1rem; }

.pills { display: flex; gap: .7rem; justify-content: center; }

.pill {
  width:         54px; height: 54px; border: 1px solid var(--ivoire-line);
  border-radius: 50%; background: transparent; color: var(--ivoire);
  font-family:   var(--serif); font-size: 1.4rem; cursor: pointer;
  transition:    all .4s ease;
}

.pill:hover   { border-color: var(--dore-faint); }

.pill.selected {
  border-color: var(--dore); background: rgba(200, 168, 104, 0.1);
  color:        var(--dore); box-shadow: 0 0 24px rgba(200, 168, 104, 0.15);
}

/* ── Confirm message ──────────────────────────── */
.confirm-msg { display: none; margin-top: 2rem; animation: rise .9s ease forwards; }
.confirm-msg.show { display: block; }

.confirm-msg p { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--dore); line-height: 1.6; }
.confirm-msg p span { display: block; font-family: var(--ui); font-style: normal; font-size: .86rem; color: var(--ivoire-dim); margin-top: .6rem; letter-spacing: .02em; }

/* ── Date unavailable ─────────────────────────── */
.unavail { display: none; margin-top: 1.8rem; text-align: left; animation: rise .8s ease forwards; }
.unavail.show { display: block; }
.unavail p    { font-size: .9rem; line-height: 1.8; color: var(--ivoire-dim); }
.unavail .em  { color: var(--ivoire); font-family: var(--serif); font-style: italic; font-size: 1.1rem; }

/* ════════════════════════════════════════════════
   RECAP — step 8
   ════════════════════════════════════════════════ */
.recap {
  text-align:  left; margin-top: 2.2rem;
  border:      1px solid var(--ivoire-faint); border-radius: 2px;
  background:  linear-gradient(160deg, rgba(36, 26, 20, 0.6), rgba(11, 9, 7, 0.5));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}

.recap .row {
  display:       flex; justify-content: space-between; gap: 1rem;
  padding:       1.05rem 1.6rem; border-bottom: 1px solid var(--ivoire-faint);
}

.recap .row:last-child { border-bottom: none; }
.recap .k { font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ivoire-dim); flex: none; padding-top: .2rem; }
.recap .v { font-family: var(--serif); font-size: 1.05rem; color: var(--ivoire); text-align: right; line-height: 1.4; }

/* ── Stripe-like payment module ───────────────── */
.imprint { text-align: left; margin-top: 2.2rem; }
.imprint > p { font-size: .86rem; line-height: 1.85; color: var(--ivoire-dim); margin-bottom: .8rem; }

.stripe {
  margin-top:  1.6rem; border: 1px solid var(--ivoire-faint); border-radius: 6px;
  padding:     1.4rem 1.4rem 1.2rem; background: rgba(16, 13, 10, 0.75);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}

.stripe-head { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.2rem; }
.stripe-head .lock { color: var(--dore); }
.stripe-head span  { font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ivoire-dim); }
.stripe-head .badge { margin-left: auto; font-size: .58rem; letter-spacing: .18em; color: var(--ivoire-dim); opacity: .7; }

.stripe .s-field {
  border:      1px solid var(--ivoire-line); border-radius: 5px;
  padding:     .85rem 1rem; margin-bottom: .7rem;
  display:     flex; align-items: center; gap: .7rem;
}

.stripe .s-field input {
  background:  none; border: none; color: var(--ivoire);
  font-family: var(--ui); font-size: .95rem; width: 100%; letter-spacing: .04em;
}

.stripe .s-field input:focus { outline: none; }
.stripe .s-row              { display: flex; gap: .7rem; }
.stripe .s-row .s-field     { flex: 1; margin-bottom: 0; }

.stripe .card-ico {
  width: 26px; height: 18px; border-radius: 3px;
  background: linear-gradient(135deg, #3a2f22, #1a140e);
  border: 1px solid var(--ivoire-faint); flex: none;
}

/* ════════════════════════════════════════════════
   PROGRESS INDICATOR
   ════════════════════════════════════════════════ */
.progress {
  position:  fixed; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  z-index:   50; display: flex; flex-direction: column; align-items: center; gap: .75rem;
  opacity:   0; transition: opacity .8s ease; pointer-events: none;
}

.progress.show { opacity: 1; }

.progress-dots { display: flex; align-items: center; gap: .6rem; }

.progress .step { width: 6px; height: 6px; border-radius: 50%; background: var(--ivoire-faint); transition: all .6s ease; }
.progress .step.done { background: var(--dore-soft); }
.progress .step.now  { width: 26px; border-radius: 3px; background: var(--dore); box-shadow: 0 0 14px var(--dore-soft); }

.progress-label {
  font-family: var(--ui); font-size: .54rem; font-weight: 400;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--ivoire-dim); opacity: .8;
  text-shadow: 0 1px 8px rgba(3, 3, 3, .9);
  transition: opacity .5s ease;
  min-height: .7rem; text-indent: .42em;
}

/* ════════════════════════════════════════════════
   FINAL SEAL — the "wow" close
   ════════════════════════════════════════════════ */
.seal { width: clamp(88px, 19vw, 124px); margin: 0 auto 1.8rem; }
.seal svg { width: 100%; height: auto; display: block; overflow: visible; }

.seal .seal-ring,
.seal .seal-ring-inner,
.seal .seal-check {
  fill: none; stroke: var(--dore);
  stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 5px var(--dore-soft));
}
.seal .seal-ring       { stroke-width: 1.4; stroke-dasharray: 283; stroke-dashoffset: 283; }
.seal .seal-ring-inner { stroke-width: .7; opacity: .5; stroke-dasharray: 233; stroke-dashoffset: 233; }
.seal .seal-check      { stroke-width: 2.4; stroke-dasharray: 60;  stroke-dashoffset: 60; }

.screen.active .seal .seal-ring       { animation: sealDraw 1.3s cubic-bezier(.2,.7,.2,1) .3s forwards; }
.screen.active .seal .seal-ring-inner { animation: sealDraw 1.3s cubic-bezier(.2,.7,.2,1) .55s forwards; }
.screen.active .seal .seal-check      { animation: sealDraw .7s cubic-bezier(.2,.7,.2,1) 1.45s forwards; }
.screen.active .seal svg              { animation: sealPulse 3.4s ease 2.2s infinite; }

@keyframes sealDraw  { to { stroke-dashoffset: 0; } }
@keyframes sealPulse { 0%, 100% { filter: none; } 50% { filter: drop-shadow(0 0 16px rgba(200, 168, 104, .35)); } }

@media (prefers-reduced-motion: reduce) {
  .seal .seal-ring, .seal .seal-ring-inner, .seal .seal-check { stroke-dashoffset: 0; animation: none; }
  .screen.active .seal svg { animation: none; }
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
footer {
  margin-top:  4rem; padding-top: 2.4rem;
  border-top:  1px solid var(--ivoire-faint);
  font-size:   .66rem; letter-spacing: .16em; color: var(--ivoire-dim);
  line-height: 2.4;
}

footer .f-logo { font-family: var(--display); font-weight: 600; font-size: 1.3rem; letter-spacing: .26em; color: var(--ivoire); margin-bottom: 1rem; }
footer .f-logo-img { display: block; width: clamp(120px, 30vw, 170px); height: auto; margin: 0 auto 1.2rem; opacity: .92; filter: drop-shadow(0 0 18px rgba(200, 168, 104, 0.12)); }
footer a       { color: var(--ivoire-dim); text-decoration: none; transition: color .4s; }
footer a:hover { color: var(--dore); }
footer .legal  { margin-top: 1.2rem; opacity: .6; font-size: .58rem; letter-spacing: .12em; }

/* ════════════════════════════════════════════════
   ACCESSIBILITY — reduced motion
   ════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .screen     { transition: opacity .25s ease; filter: none; transform: none; }
  .screen.active .reveal { animation: none; opacity: 1; }
  .reveal     { opacity: 1; }
  .halo       { animation: none; }
  .slots.show,
  .convives.show,
  .confirm-msg.show,
  .unavail.show { animation: none; }
}

/* ════════════════════════════════════════════════
   MOBILE — touch-first experience
   ════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Safe area + scroll ─────────────────────── */
  body {
    overflow: hidden;
    -webkit-text-size-adjust: 100%;
  }

  .screen {
    padding: calc(env(safe-area-inset-top, 20px) + 3rem) 1.2rem calc(env(safe-area-inset-bottom, 20px) + 4.5rem);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    scroll-behavior: smooth;
  }

  /* ── Wraps ──────────────────────────────────── */
  .wrap {
    padding: 2rem 1.4rem;
    max-width: 100%;
    /* Dark enough behind the text for legibility; plasma stays visible in the
       margins above/below the panel and feathered at the very edges. */
    background: radial-gradient(ellipse at 50% 45%, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.78) 60%, rgba(0, 0, 0, 0.12) 100%);
  }
  .wrap.wide { max-width: 100%; }

  /* ── Typography mobile ──────────────────────── */
  .kicker {
    font-size: .64rem;
    letter-spacing: .4em;
    margin-bottom: 1.2rem;
  }

  .logo {
    font-size: clamp(2.6rem, 14vw, 3.8rem);
    letter-spacing: .18em;
    padding-left: .18em;
  }

  .logo-img {
    width: clamp(160px, 55vw, 280px);
  }

  .subtitle {
    font-size: clamp(1rem, 4.2vw, 1.2rem);
    margin-top: .8rem;
  }

  h2 {
    font-size: clamp(3.2rem, 11vw, 4.6rem);
    margin-bottom: 1.3rem;
    line-height: 1.12;
  }

  .lede {
    font-size: .95rem;
    line-height: 1.8;
    max-width: 100%;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .92), 0 0 24px rgba(0, 0, 0, .7);
  }

  .lede + .lede { margin-top: 1.2rem; }

  .ask {
    font-size: clamp(1.15rem, 5vw, 1.5rem);
    margin-top: 1.6rem;
    white-space: normal;
  }

  .divider { height: 32px; margin: 1.6rem auto; }

  /* ── Buttons — bigger tap targets ───────────── */
  .btn {
    font-size: .7rem;
    padding: 1.2rem 2rem;
    margin-top: 2rem;
    min-height: 52px;
    width: 100%;
    letter-spacing: .28em;
  }

  .btn.ghost {
    padding: 1rem 1.6rem;
    width: auto;
  }

  /* Keep the back button out of the flex row so .wrap stays centred. */
  .micro {
    font-size:      .58rem;
    letter-spacing: .22em;
    padding:        .6rem 1rem .6rem .85rem;
    min-height:     44px;
    top:            calc(env(safe-area-inset-top, 16px) + .7rem);
    left:           .7rem;
  }

  .micro::before {
    width: 6px; height: 6px;
  }

  /* ── Cards — horizontal swipeable slider ────── */
  .cards.two {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: .8rem;
    margin-left: -1.4rem;
    margin-right: -1.4rem;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .cards.two > .card {
    flex: 0 0 85%;
    min-width: 280px;
    scroll-snap-align: center;
  }

  /* Single-column cards (no swipe needed) */
  .cards:not(.two) {
    gap: 1rem;
  }

  .card {
    padding: 1.5rem 1.3rem;
    -webkit-tap-highlight-color: transparent;
  }

  .card h3 {
    font-size: 1.12rem;
  }

  .card .price small {
    font-size: .72rem;
    line-height: 1.6;
  }

  .card .pick {
    margin-top: 1.2rem;
    font-size: .58rem;
  }

  /* ── Resonance options — stacked ────────────── */
  .reso {
    padding: .9rem 1rem;
    min-height: 52px;
  }

  .reso b { font-size: .82rem; }
  .reso span { font-size: .7rem; }

  /* ── Paths — horizontal swipe ───────────────── */
  .paths {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: .6rem;
    margin-left: -1.4rem;
    margin-right: -1.4rem;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .paths > .card {
    flex: 0 0 82%;
    min-width: 260px;
    scroll-snap-align: center;
  }

  /* ── Slots — swipeable horizontal ───────────── */
  .slots.show {
    display: block;
  }

  .slots .slot {
    padding: 1.1rem 1.2rem;
    min-height: 64px;
    margin-bottom: .6rem;
    -webkit-tap-highlight-color: transparent;
  }

  .slots .slot .day {
    font-size: 1.1rem;
  }

  .slots .slot .time {
    font-size: .68rem;
  }

  /* ── Pills — bigger for thumbs ──────────────── */
  .pills {
    gap: .6rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pill {
    width: 52px; height: 52px;
    font-size: 1.2rem;
    -webkit-tap-highlight-color: transparent;
  }

  /* ── Form fields ────────────────────────────── */
  .field { margin: 1.5rem 0; }

  .field label {
    font-size: .56rem;
    margin-bottom: .5rem;
  }

  .field input,
  .field textarea {
    font-size: 1rem;
    padding: .9rem 1rem;
    min-height: 48px;
  }

  /* ── Note / conditions ──────────────────────── */
  .note {
    padding: 1.3rem 1.2rem 1.2rem;
    margin-top: 2rem;
  }

  .note h4 { font-size: 1.15rem; }
  .note p { font-size: .82rem; line-height: 1.75; }

  .check {
    gap: .7rem;
    min-height: 44px;
    align-items: center;
  }

  .check span { font-size: .78rem; }

  /* ── Recap ──────────────────────────────────── */
  .recap .row {
    flex-direction: column;
    gap: .3rem;
    padding: .9rem 1.2rem;
  }

  .recap .k { font-size: .56rem; }
  .recap .v { font-size: .95rem; text-align: left; }

  /* ── Stripe ─────────────────────────────────── */
  .stripe { padding: 1.2rem 1rem 1rem; }

  .stripe .s-field {
    padding: .9rem .9rem;
    min-height: 48px;
  }

  .stripe .s-field input { font-size: .9rem; }

  .stripe .s-row { flex-direction: row; gap: .5rem; }

  /* ── Imprint ────────────────────────────────── */
  .imprint > p { font-size: .82rem; }

  /* ── Progress indicator ─────────────────────── */
  .progress {
    bottom: calc(env(safe-area-inset-bottom, 8px) + .8rem);
    gap: .5rem;
  }

  .progress .step { width: 5px; height: 5px; }
  .progress .step.now { width: 22px; }

  /* ── Footer ─────────────────────────────────── */
  footer {
    margin-top: 3rem;
    padding-top: 2rem;
    font-size: .6rem;
  }

  footer .f-logo { font-size: 1.2rem; }

  /* ── Convives block ─────────────────────────── */
  .convives .label { font-size: .56rem; margin-bottom: .8rem; }

  /* ── Hide cursor glow on mobile ─────────────── */
  #cursor-glow { display: none !important; }

  /* ── Effect selector mobile ─────────────────── */
  .effect-selector {
    top: auto;
    bottom: calc(env(safe-area-inset-bottom, 8px) + 3rem);
    right: 1rem;
  }

  .effect-selector label { display: none; }

  .effect-selector select {
    font-size: .66rem;
    padding: .5rem 1.8rem .5rem .7rem;
  }

  /* ── Halo ────────────────────────────────────── */
  .halo {
    width: min(360px, 85vw);
    height: min(360px, 85vw);
    top: 30%;
    filter: blur(20px);
  }

  /* ── Scrollbar hide on mobile ───────────────── */
  .cards.two::-webkit-scrollbar,
  .paths::-webkit-scrollbar { display: none; }
  .cards.two, .paths { scrollbar-width: none; }

  /* ── Unavail ────────────────────────────────── */
  .unavail p { font-size: .84rem; }
  .unavail .em { font-size: 1rem; }

  /* ── Confirm msg ────────────────────────────── */
  .confirm-msg p { font-size: 1.1rem; }
  .confirm-msg p span { font-size: .8rem; }
}

/* ── Extra small phones (< 380px) ──────────── */
@media (max-width: 380px) {
  .wrap { padding: 1.6rem 1rem; }

  .logo {
    font-size: clamp(2.2rem, 13vw, 2.8rem);
    letter-spacing: .14em;
    padding-left: .14em;
  }

  h2 { font-size: clamp(2.9rem, 12.5vw, 3.5rem); }

  .lede { font-size: .88rem; }

  .btn {
    font-size: .58rem;
    padding: 1.1rem 1.4rem;
    letter-spacing: .22em;
  }

  .cards.two > .card {
    flex: 0 0 90%;
    min-width: 240px;
  }

  .paths > .card {
    flex: 0 0 88%;
    min-width: 230px;
  }

  .pill { width: 46px; height: 46px; font-size: 1.05rem; }
}

/* ── Landscape mobile ─────────────────────────── */
@media (max-width: 768px) and (orientation: landscape) {
  .screen {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .wrap { padding: 1.4rem 1.6rem; }

  .halo {
    width: min(260px, 50vw);
    height: min(260px, 50vw);
    top: 40%;
  }
}
