/* =================== RESET & TOKENS =================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg-2: #101012;
  --bg-3: #16161a;
  --surface: #1a1a1f;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.16);
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --muted-2: #71717a;
  --gold: #f4c534;
  --gold-2: #ffd75e;
  --gold-deep: #d9a715;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 24px 60px rgba(0,0,0,.55);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: .3px;
  text-transform: uppercase;
}

a { color: inherit; text-decoration: none; }

.accent { color: var(--gold); }

/* SVG icons (inherit color via currentColor) */
.ico { width: 1.2em; height: 1.2em; display: inline-block; vertical-align: middle; flex: none; }

/* Visible keyboard focus (accessibility) */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
:focus:not(:focus-visible) { outline: none; }

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 1px;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, box-shadow .25s, color .25s;
  white-space: nowrap;
}
.btn-lg { padding: 1.05rem 2rem; font-size: 1.15rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: #1a1400;
  box-shadow: 0 10px 30px rgba(244,197,52,.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(244,197,52,.42); }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-sm { padding: .6rem 1.2rem; font-size: .92rem; }
.btn .ico { width: 1.15em; height: 1.15em; }
.btn-wa {
  background: #25D366; color: #05320f; border-color: #25D366;
  box-shadow: 0 10px 26px rgba(37,211,102,.28);
}
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,211,102,.4); }
.hero-quick { display: flex; gap: .8rem; flex-wrap: wrap; margin: -1.6rem 0 3rem; }

/* =================== HEADER =================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand-logo { height: 46px; width: auto; border-radius: 8px; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav > a:not(.btn) {
  font-size: .82rem; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase; color: var(--muted);
  transition: color .2s; position: relative;
}
.nav > a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); transition: width .25s var(--ease);
}
.nav > a:not(.btn):hover { color: var(--text); }
.nav > a:not(.btn):hover::after { width: 100%; }
.nav-cta { font-size: .9rem; padding: .6rem 1.3rem; }
/* Bouton Appeler dans le header */
.brand { margin-right: auto; }
.header-call { flex: none; margin-left: .6rem; }
@media (max-width: 480px) {
  .header-call .header-call-label { display: none; }
  .header-call { padding: .55rem .7rem; }
}

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2.5px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =================== HERO =================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(80% 70% at 78% 12%, rgba(244,197,52,.14), transparent 60%),
    radial-gradient(90% 90% at 15% 90%, rgba(244,197,52,.05), transparent 55%),
    linear-gradient(180deg, #0c0c0e 0%, #0a0a0a 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .6;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding: 118px 0 90px;
}
.hero-content { max-width: 620px; }

/* ---- Polaroid collage ---- */
.hero-collage { columns: 2; column-gap: 20px; }
.polaroid {
  break-inside: avoid; -webkit-column-break-inside: avoid; display: block;
  width: 100%; margin: 0 0 22px;
  background: #fbfbf6; padding: 9px 9px 42px;
  border-radius: 4px; position: relative;
  box-shadow: 0 18px 38px rgba(0,0,0,.5);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.polaroid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; border-radius: 2px; }
.pcap {
  position: absolute; left: 8px; right: 8px; bottom: 9px; text-align: center;
  font-family: 'Caveat', cursive; font-weight: 700; font-size: 1.5rem; color: #2a2a2a; line-height: 1;
}
/* Scotch adhésif */
.polaroid::before {
  content: ''; position: absolute; top: -11px; left: 50%; transform: translateX(-50%) rotate(-4deg);
  width: 66px; height: 24px; background: rgba(244,197,52,.55);
  border: 1px solid rgba(255,255,255,.25); box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
/* Rotations façon collage */
.polaroid:nth-child(1) { transform: rotate(-5deg); }
.polaroid:nth-child(2) { transform: rotate(3.5deg); margin-top: 26px; }
.polaroid:nth-child(3) { transform: rotate(2.5deg); }
.polaroid:nth-child(4) { transform: rotate(-3.5deg); }
.polaroid:nth-child(5) { transform: rotate(4.5deg); }
.polaroid:nth-child(6) { transform: rotate(-2.5deg); }
.polaroid:hover { transform: rotate(0deg) translateY(-6px) scale(1.04); box-shadow: 0 28px 55px rgba(0,0,0,.62); z-index: 5; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.6rem; padding: 104px 0 70px; }
  .hero-content { max-width: 640px; }
  .hero-collage { columns: 2; max-width: 440px; margin: 0 auto; }
}
@media (max-width: 420px) {
  .hero-collage { max-width: 320px; }
  .pcap { font-size: 1.25rem; }
}
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); font-weight: 600; font-size: .95rem; margin-bottom: 1rem;
}
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); font-weight: 800; margin-bottom: 1.4rem; }
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 560px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-badges { display: flex; gap: 2.4rem; flex-wrap: wrap; }
.badge { display: flex; flex-direction: column; }
.badge strong { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; color: var(--gold); line-height: 1; }
.badge span { font-size: .82rem; color: var(--muted); }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; font-size: 1.5rem; color: var(--muted);
  animation: bob 1.8s infinite; z-index: 3;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* =================== STRIP =================== */
.strip { background: var(--gold); color: #1a1400; }
.strip-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; padding: 16px 0; }
.strip-item { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 1rem; display: flex; align-items: center; gap: .5rem; }
.strip-ico { width: 18px; height: 18px; opacity: .8; }

/* =================== SECTIONS =================== */
.section { padding: clamp(70px, 9vw, 120px) 0; }
.section-dark { background: var(--bg-2); }
.section-head { max-width: 640px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin: .3rem 0 1rem; }
.section-lead { color: var(--muted); font-size: 1.05rem; }

/* =================== PRESTATIONS CARDS =================== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.card {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.6rem; transition: transform .3s var(--ease), border-color .3s, background .3s;
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); background: var(--bg-3); }
.card:hover::before { opacity: 1; }
.card.featured { border-color: rgba(244,197,52,.4); background: linear-gradient(180deg, rgba(244,197,52,.06), var(--surface)); }
.card-ico {
  width: 58px; height: 58px; margin-bottom: 1.2rem;
  display: grid; place-items: center;
  border-radius: 15px;
  background: rgba(244,197,52,.10);
  border: 1px solid rgba(244,197,52,.28);
  color: var(--gold);
  transition: transform .3s var(--ease), background .3s;
}
.card:hover .card-ico { transform: translateY(-2px) scale(1.04); background: rgba(244,197,52,.16); }
.card-ico .ico { width: 30px; height: 30px; }
.card h3 { font-size: 1.7rem; margin-bottom: .7rem; }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 1.4rem; }
.card-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--gold); }
.ribbon {
  position: absolute; top: 14px; right: -34px; transform: rotate(45deg);
  background: var(--gold); color: #1a1400; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .7rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 40px;
}

/* =================== PRICING =================== */
.veh-legend {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.2rem;
  margin-bottom: 2.6rem; text-align: center;
}
.veh-legend span { font-size: .82rem; color: var(--muted-2); }
.veh-legend b { color: var(--text); font-weight: 600; }

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.price-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.8rem; display: flex; flex-direction: column;
}
.price-card.highlight {
  border-color: var(--gold); background: linear-gradient(180deg, rgba(244,197,52,.08), var(--surface));
  box-shadow: 0 20px 50px rgba(244,197,52,.10);
}
.tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #1a1400; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: .78rem;
  padding: 4px 18px; border-radius: 999px;
}
.price-head h3 { font-size: 2rem; }
.price-head p { color: var(--muted); font-size: .9rem; margin-bottom: 1.4rem; }
.price-feats { list-style: none; margin-bottom: 1.6rem; display: grid; gap: .55rem; }
.price-feats li { position: relative; padding-left: 1.6rem; font-size: .92rem; color: var(--muted); }
.price-feats li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.price-feats small { color: var(--muted-2); }
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 1.6rem; }
.price-table td { padding: .6rem 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.price-table td:first-child { color: var(--muted); }
.price-table td:last-child { text-align: right; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--gold); }
.price-table tr:last-child td { border-bottom: 0; }
.price-card .btn { margin-top: auto; }

/* POLISH */
.polish-block {
  margin-top: 2.4rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.6rem);
}
.polish-head { text-align: center; max-width: 640px; margin: 0 auto 2rem; }
.polish-head h3 { font-size: 1.8rem; margin-bottom: .6rem; }
.polish-head p { color: var(--muted); font-size: .9rem; }
.polish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.polish-tier { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.4rem; }
.polish-tier h4 { font-size: 1.4rem; color: var(--gold); margin-bottom: .5rem; }
.polish-desc { color: var(--muted); font-size: .88rem; margin-bottom: 1rem; }
.polish-prices { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.polish-prices span { font-size: .82rem; color: var(--muted); }
.polish-prices b { color: var(--text); font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; }
.polish-quote { grid-template-columns: 1fr; }
.polish-quote span { color: var(--gold); font-weight: 500; }

.tarif-note { text-align: center; color: var(--muted-2); font-size: .82rem; margin-top: 1.8rem; }

/* =================== GALLERY =================== */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem;
  grid-auto-flow: dense;
}
.g-item {
  border: 0; padding: 0; cursor: pointer; overflow: hidden;
  border-radius: var(--radius-sm); background: var(--surface); position: relative;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease), filter .35s; }
.g-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,10,10,.42)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E")
    center / 32px no-repeat;
  opacity: 0; transition: opacity .3s;
}
.g-item:hover img { transform: scale(1.08); }
.g-item:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* =================== AVANT / APRÈS (slider) =================== */
.ba-pair { max-width: 900px; margin: 0 auto; }
/* Avant / Après côte à côte : deux photos indépendantes, jamais désalignées. */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(8px, 1.5vw, 16px); }
.ba-item {
  position: relative; aspect-ratio: 1 / 1;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--surface);
}
.ba-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Chaque photo est recadrée sur la voiture (l'APRÈS est plus bas dans l'image) */
.ba-before img { object-position: center 42%; }
.ba-after img  { object-position: center 90%; }
.cmp-label {
  position: absolute; top: 12px; z-index: 4;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; font-size: .8rem;
  padding: .32rem .85rem; border-radius: 999px; pointer-events: none;
}
.cmp-before { left: 12px; background: rgba(0,0,0,.66); color: #fff; }
.cmp-after { left: 12px; background: var(--gold); color: #1a1400; }
.ba-pair figcaption { text-align: center; color: var(--muted); margin-top: 1rem; font-size: .92rem; }

/* =================== FAN CAROUSEL =================== */
.fan-wrap { width: 100%; }
.fan {
  position: relative; height: clamp(360px, 60vw, 480px);
  display: flex; justify-content: center; align-items: center;
  margin-bottom: 1.4rem;
  overflow: hidden;                 /* évite tout débordement horizontal de la page */
  padding: 24px 0 34px;             /* marge pour le survol (soulèvement) et l'arc bas */
}
.fan-card {
  position: absolute; top: 50%; left: 50%;
  width: clamp(150px, 40vw, 232px); aspect-ratio: 3 / 4;
  transition: transform .6s var(--ease), opacity .5s var(--ease);
  cursor: pointer; z-index: 1;
  transform: translate(-50%, -50%);
}
.fan-inner {
  width: 100%; height: 100%; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 24px 55px rgba(0,0,0,.55);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  background: var(--surface);
}
.fan-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fan-card:hover .fan-inner { transform: translateY(-14px); box-shadow: 0 32px 70px rgba(0,0,0,.6); }
.fan-card:hover .fan-inner { border-color: var(--gold); }

.fan-nav { display: flex; align-items: center; justify-content: center; gap: 1.4rem; }
.fan-arrow {
  width: 48px; height: 48px; border-radius: 999px; cursor: pointer;
  display: grid; place-items: center;
  background: var(--surface); border: 1.5px solid var(--line-strong); color: var(--text);
  transition: border-color .25s, color .25s, transform .25s var(--ease);
}
.fan-arrow svg { width: 20px; height: 20px; }
.fan-arrow:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.fan-arrow:active { transform: translateY(0); }
.fan-dots { display: flex; gap: 8px; align-items: center; }
.fan-dot {
  width: 8px; height: 8px; border-radius: 999px; border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.18); transition: background .3s, transform .3s var(--ease);
}
.fan-dot.active { background: var(--gold); transform: scale(1.35); }

/* =================== REVIEWS =================== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.8rem;
}
.stars { color: var(--gold); margin-bottom: 1rem; display: flex; gap: 3px; }
.stars .ico { width: 19px; height: 19px; }
.review blockquote { font-size: 1rem; color: var(--text); margin-bottom: 1.2rem; }
.review figcaption { color: var(--muted); font-weight: 600; font-size: .9rem; }

/* =================== RESERVATION =================== */
.reserve-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.reserve-info h2 { font-size: clamp(2rem, 4vw, 3rem); margin: .3rem 0 1rem; }
.reserve-info > p { color: var(--muted); margin-bottom: 1.6rem; }
.reserve-list { list-style: none; display: grid; gap: .9rem; margin-bottom: 1.8rem; }
.reserve-list li { display: flex; align-items: center; gap: .8rem; color: var(--text); }
.reserve-list .ico { width: 22px; height: 22px; color: var(--gold); }
.reserve-contact { display: grid; gap: .7rem; }
.rc-item { color: var(--muted); transition: color .2s; font-weight: 500; display: flex; align-items: center; gap: .6rem; }
.rc-item .ico { width: 18px; height: 18px; }
.rc-item:hover { color: var(--gold); }
.rc-whatsapp .ico { color: #25D366; }
.rc-whatsapp:hover { color: #25D366; }

.reserve-form {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
  /* Conteneur : calendrier, créneaux et détail formule s'adaptent à la
     largeur du FORMULAIRE (étroit sur desktop, plein écran sur mobile). */
  container: bookingform / inline-size;
}
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: .82rem; font-weight: 600; margin-bottom: .4rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.field label small { text-transform: none; color: var(--muted-2); font-weight: 400; letter-spacing: 0; }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: .8rem .9rem; color: var(--text); font-family: inherit; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(244,197,52,.14);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a1a1aa' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.field textarea { resize: vertical; }
.reserve-form .btn { margin-top: .6rem; }
.time-hint { display: block; margin-top: .35rem; font-size: .8rem; color: var(--muted); }
.time-hint:empty { display: none; }

/* ---- Créneaux horaires (boutons) ---- */
/* 2 colonnes par défaut (formulaire étroit), puis plus selon sa largeur. */
.slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
}
@container bookingform (min-width: 340px) { .slots { grid-template-columns: repeat(3, 1fr); } }
@container bookingform (min-width: 480px) { .slots { grid-template-columns: repeat(4, 1fr); } }
@container bookingform (min-width: 600px) { .slots { grid-template-columns: repeat(5, 1fr); } }
.slots.invalid { outline: 1px solid #f87171; outline-offset: 4px; border-radius: var(--radius-sm); }
.slots-empty { grid-column: 1 / -1; color: var(--muted); font-size: .9rem; padding: .3rem 0; }
.slot {
  min-height: 44px;              /* cible tactile confortable */
  display: flex; align-items: center; justify-content: center;
  padding: .55rem .3rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  font-size: clamp(.82rem, 2.4cqw, .92rem);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  cursor: pointer;
  transition: background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease), transform .1s var(--ease);
}
.slot:hover { border-color: var(--gold); background: var(--bg-2); }
.slot:active { transform: scale(.97); }
.slot.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1400;
  font-weight: 700;
}

/* ---- Ligne label + bouton Infos ---- */
.label-row { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-bottom: .4rem; }
.label-row label { margin-bottom: 0; }
.info-btn {
  flex: none;
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .3rem .7rem; min-height: 32px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  background: transparent; color: var(--gold);
  font-family: inherit; font-size: .78rem; font-weight: 600;
  cursor: pointer;
  transition: background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
}
.info-btn:hover { border-color: var(--gold); background: rgba(244,197,52,.1); }
.info-btn.open { background: var(--gold); border-color: var(--gold); color: #1a1400; }

/* ---- Choix multiple des formules (cases à cocher) ---- */
.presta-chips { display: grid; grid-template-columns: 1fr; gap: .5rem; }
@container bookingform (min-width: 380px) { .presta-chips { grid-template-columns: 1fr 1fr; } }
.presta-chips.invalid { outline: 1px solid #f87171; outline-offset: 4px; border-radius: var(--radius-sm); }
.chip {
  display: flex; align-items: center; gap: .6rem;
  min-height: 44px; padding: .55rem .7rem;
  border: 1px solid var(--line-strong); border-radius: 10px;
  background: var(--bg); cursor: pointer;
  transition: border-color .15s var(--ease), background .15s var(--ease);
}
.chip:hover { border-color: var(--gold); }
.chip input { width: 18px; height: 18px; flex: none; accent-color: var(--gold); cursor: pointer; }
.chip span { font-size: .9rem; color: var(--text); line-height: 1.25; }
.chip span b { color: var(--gold-2); font-weight: 700; }
.chip:has(input:checked) { border-color: var(--gold); background: rgba(244,197,52,.08); }

/* Séparation entre plusieurs détails de formules empilés */
.pd-block + .pd-block { margin-top: .9rem; padding-top: .9rem; border-top: 1px solid var(--line); }

/* ---- Détail de la formule ---- */
.presta-detail {
  margin: -.4rem 0 .2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  background: var(--bg-3);
  animation: pd-in .25s var(--ease);
}
@keyframes pd-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.pd-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem; margin-bottom: .5rem; }
.pd-head strong { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .4px; font-size: 1.15rem; color: var(--gold); }
.pd-head span { color: var(--muted); font-size: .85rem; }
.pd-head .pd-duration {
  margin-left: auto; color: var(--gold-2); font-weight: 600; white-space: nowrap;
  border: 1px solid var(--line-strong); border-radius: 999px; padding: .1rem .55rem; font-size: .8rem;
}
.pd-label { font-size: .78rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .35rem; }
.pd-feats { list-style: none; display: grid; grid-template-columns: 1fr; gap: .25rem .9rem; margin: 0 0 .7rem; }
.pd-feats li { position: relative; padding-left: 1.1rem; font-size: .88rem; color: var(--text); }
.pd-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.pd-prices { width: 100%; border-collapse: collapse; font-size: .88rem; }
.pd-prices td { padding: .3rem .2rem; border-top: 1px solid var(--line); }
.pd-prices td:last-child { text-align: right; font-weight: 700; color: var(--gold-2); white-space: nowrap; }
.pd-prices tr:first-child td { border-top: none; }
.pd-note { font-weight: 700; color: var(--gold-2); }

/* ---- Récapitulatif prix ---- */
.price-recap {
  margin-top: .8rem; padding: 1rem 1.1rem;
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm); background: var(--bg-3);
}
.pr-head { font-size: .82rem; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-bottom: .6rem; }
.pr-head strong { color: var(--text); }
.pr-list { list-style: none; display: grid; gap: .3rem; margin: 0 0 .6rem; }
.pr-list li { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; }
.pr-list li span:last-child { font-weight: 600; color: var(--text); white-space: nowrap; }
.pr-list li.pr-na span:last-child { color: var(--muted-2); font-weight: 400; font-style: italic; }
.pr-total { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-top: .6rem; border-top: 1px solid var(--line-strong); }
.pr-total span:first-child { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .5px; font-size: 1rem; }
.pr-total span:last-child { font-size: 1.4rem; font-weight: 700; color: var(--gold-2); white-space: nowrap; }
.pr-note { margin-top: .5rem; font-size: .72rem; color: var(--muted-2); line-height: 1.4; }
/* 2 colonnes seulement quand le formulaire est assez large */
@container bookingform (min-width: 400px) { .pd-feats { grid-template-columns: 1fr 1fr; } }

/* ---- Calendrier ---- */
.calendar {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-3);
  padding: .8rem;
  user-select: none;
}
.calendar.invalid { border-color: #f87171; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.cal-title { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .6px; font-size: 1.1rem; color: var(--text); }
.cal-nav {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); border-radius: 8px;
  background: var(--surface); color: var(--text);
  font-size: 1.2rem; line-height: 1; cursor: pointer;
  transition: background .15s var(--ease), border-color .15s var(--ease);
}
.cal-nav:hover:not(:disabled) { background: var(--bg-2); border-color: var(--gold); }
.cal-nav:disabled { opacity: .3; cursor: not-allowed; }
.cal-weekdays, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-weekdays { margin-bottom: 4px; }
.cal-weekdays span { text-align: center; font-size: clamp(.6rem, 1.8cqw, .72rem); text-transform: uppercase; letter-spacing: .3px; color: var(--muted-2); }
.cal-cell {
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  border: 1px solid transparent; border-radius: 8px;
  background: var(--surface); color: var(--text);
  font-size: clamp(.78rem, 2.4cqw, .95rem); font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
}
/* Sur formulaire étroit (mobile), on compacte pour agrandir les cases */
@container bookingform (max-width: 360px) {
  .calendar { padding: .55rem; }
  .cal-weekdays, .cal-grid { gap: 3px; }
}
.cal-cell.cal-empty { background: transparent; border: none; cursor: default; }
.cal-cell:hover:not(:disabled):not(.cal-empty) { border-color: var(--gold); }
.cal-cell.cal-today { border-color: var(--line-strong); }
.cal-cell.cal-selected { background: var(--gold); color: #1a1400; font-weight: 700; border-color: var(--gold); }
.cal-cell.cal-past { opacity: .28; cursor: not-allowed; }
.cal-cell:disabled { cursor: not-allowed; }
.form-status { text-align: center; font-size: .9rem; margin-top: .9rem; line-height: 1.5; }
.form-status:empty { display: none; }
.form-status.ok { color: #4ade80; }
.form-status.err { color: #f87171; }
.form-alt { text-align: center; color: var(--muted); font-size: .85rem; margin-top: .9rem; }
.form-alt a { color: var(--gold); text-decoration: underline; }
.field.invalid input, .field.invalid select { border-color: #ef4444; }

/* =================== FOOTER =================== */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: clamp(50px, 6vw, 80px); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.footer-logo { height: 44px; width: auto; border-radius: 8px; margin-bottom: 1rem; }
.footer-tag { color: var(--muted); font-size: .9rem; max-width: 300px; margin-bottom: 1.2rem; }
.socials { display: flex; gap: 1rem; }
.socials a { font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); border: 1px solid var(--line-strong); padding: .4rem .9rem; border-radius: 999px; transition: .2s; }
.socials a:hover { color: var(--gold); border-color: var(--gold); }
.footer-col h4 { font-size: 1.05rem; margin-bottom: 1.1rem; color: var(--text); letter-spacing: 1px; }
.footer-col ul { list-style: none; display: grid; gap: .6rem; }
.footer-col a, .footer-col li span { color: var(--muted); font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.hours li { display: flex; justify-content: space-between; gap: 1rem; }
.footer-bottom { border-top: 1px solid var(--line); padding: 1.4rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; }
.footer-bottom span { color: var(--muted-2); font-size: .8rem; }

/* =================== LIGHTBOX =================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(5,5,5,.94); place-items: center; padding: 4vw;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow); }
.lb-close { position: absolute; top: 20px; right: 26px; background: none; border: 0; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }

/* =================== MOBILE CTA =================== */
.mobile-cta {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 90; display: none; background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: #1a1400; font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; padding: .9rem 2.4rem; border-radius: 999px;
  box-shadow: 0 12px 34px rgba(244,197,52,.4);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
/* Masqué (avec fondu) quand le client est sur la section réservation */
.mobile-cta.is-hidden {
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(24px);
}

/* =================== REVEAL ANIM =================== */
/* Subtle scroll reveal: reads as a fade, not a slide (y offset 16px, power1-style easing).
   --d = per-item stagger delay set inline by JS for grouped elements. */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .55s cubic-bezier(.25,.46,.45,.94), transform .55s cubic-bezier(.25,.46,.45,.94);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .reviews { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .polish-grid { grid-template-columns: 1fr; }
  .reserve-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .g-tall { grid-row: span 1; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(12,12,14,.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 1rem 20px 1.6rem;
    transform: translateY(-140%); transition: transform .35s var(--ease);
  }
  .nav.open { transform: translateY(0); }
  .nav > a:not(.btn) { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav > a:not(.btn)::after { display: none; }
  .nav-cta { margin-top: 1rem; }
  .burger { display: flex; }
  .hero-badges { gap: 1.6rem; }
  .strip-inner { gap: .6rem 1.4rem; }
  .strip-item { font-size: .85rem; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .mobile-cta { display: block; }
  .footer-bottom .container { flex-direction: column; }
  /* 16px = pas de zoom auto iOS au focus des champs */
  .field input, .field select, .field textarea { font-size: 16px; }
}

@media (max-width: 420px) {
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===================== PAGES VILLES (SEO local) ===================== */
.city-header { position: sticky; top: 0; z-index: 100; background: rgba(10,10,10,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.city-header-inner { display: flex; align-items: center; gap: .5rem; padding: .7rem 0; }
.city-hero {
  padding: clamp(2.2rem, 6vw, 4rem) 0 clamp(2.6rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(120% 100% at 50% 0, rgba(244,197,52,.08), transparent 60%), var(--bg-2);
}
.city-hero h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); margin: .4rem 0 1.1rem; }
.city-hero .lead { color: var(--muted); max-width: 680px; font-size: clamp(1rem, 1.6vw, 1.15rem); margin-bottom: 2rem; }
.city-actions { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }
.city-h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 0 0 1rem; }
.section .city-h2:not(:first-child) { margin-top: 2.8rem; }
.city-body { color: var(--muted); max-width: 800px; margin-bottom: 2rem; line-height: 1.85; }
.city-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; margin-bottom: 1rem; }
.cs { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); padding: 1.2rem; }
.cs h3 { font-size: 1.3rem; }
.cs p { color: var(--muted); font-size: .9rem; margin: .3rem 0 .7rem; }
.cs span { color: var(--gold-2); font-weight: 700; font-family: 'Barlow Condensed', sans-serif; letter-spacing: .5px; font-size: 1.05rem; }
.city-why { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .6rem; }
.city-why li { position: relative; padding-left: 1.6rem; color: var(--text); }
.city-why li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.city-cta { text-align: center; }
.city-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .6rem; }
.city-cta p { color: var(--muted); margin-bottom: 1.6rem; }
.city-cta .city-actions { justify-content: center; }
.city-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.city-links a { border: 1px solid var(--line-strong); border-radius: 999px; padding: .5rem 1rem; font-size: .88rem; color: var(--text); transition: border-color .15s var(--ease), color .15s var(--ease); }
.city-links a:hover { border-color: var(--gold); color: var(--gold); }
/* Bandeau zones desservies (accueil) */
.zones { border-top: 1px solid var(--line); background: var(--bg-2); padding: clamp(2rem,4vw,3rem) 0; text-align: center; }
.zones p { color: var(--muted-2); text-transform: uppercase; letter-spacing: .5px; font-size: .8rem; margin-bottom: 1rem; }
.zones-list { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.zones-list a { border: 1px solid var(--line-strong); border-radius: 999px; padding: .45rem 1rem; font-size: .88rem; color: var(--text); transition: border-color .15s var(--ease), color .15s var(--ease); }
.zones-list a:hover { border-color: var(--gold); color: var(--gold); }
