/* ===== Doumams Barber 95 · Streetwear / Barber pole (rouge · bleu · blanc) ===== */
:root {
  --red: #d81f2a;
  --red-dark: #b0111c;
  --blue: #10327d;
  --blue-dark: #0a2258;
  --ink: #0f1420;
  --ink-2: #1c2230;
  --paper: #ffffff;
  --paper-2: #f2f3f6;
  --paper-3: #e7e9ef;
  --line: #d7dae2;
  --line-dark: #2a3040;
  --muted: #5b6273;
  --muted-light: #b9beca;
  --maxw: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --pole: repeating-linear-gradient(-45deg, var(--red) 0 14px, #fff 14px 28px, var(--blue) 28px 42px, #fff 42px 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.05; letter-spacing: 0; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Barber pole stripe (défilement animé) */
.pole-stripe {
  height: 10px; width: 100%;
  background-image: var(--pole);
  background-size: 79.2px 79.2px;
  animation: pole-slide 2.2s linear infinite;
}
@keyframes pole-slide { to { background-position: 79.2px 0; } }
@media (prefers-reduced-motion: reduce) { .pole-stripe { animation: none; } }

/* ===== Buttons (angles nets) ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Archivo", sans-serif; font-weight: 800; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.06em; cursor: pointer;
  padding: 14px 26px; border: 2px solid transparent; border-radius: 0;
  transition: transform 0.12s var(--ease), background 0.18s, color 0.18s, border-color 0.18s;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 17px 34px; font-size: 15px; }
.btn-sm { padding: 10px 18px; font-size: 12.5px; }
/* bouton principal (rouge) · on garde le nom .btn-gold utilisé par le JS */
.btn-gold { background: var(--red); color: #fff; border-color: var(--red); }
.btn-gold:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

/* Boutons sur fond sombre */
.section-dark .btn-ghost, .hero .btn-ghost { color: #fff; border-color: #fff; }
.section-dark .btn-ghost:hover, .hero .btn-ghost:hover { background: #fff; color: var(--ink); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 46px; height: 46px; object-fit: cover; border: 2px solid var(--ink); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: "Archivo", sans-serif; font-weight: 900; font-size: 17px; text-transform: uppercase; letter-spacing: 0.02em; }
.brand-text small { color: var(--muted); font-size: 12px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 10px 14px; font-family: "Archivo", sans-serif; font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); transition: color 0.18s; }
.nav a:not(.nav-cta):hover { color: var(--red); }
.nav .nav-cta { color: #fff; margin-left: 6px; }
.nav-toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); transition: 0.3s; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 90vh; display: flex; align-items: flex-end; overflow: hidden; border-bottom: 8px solid var(--ink); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,20,32,0.35) 0%, rgba(15,20,32,0.55) 40%, rgba(15,20,32,0.92) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 90px 24px 72px; max-width: 900px; color: #fff; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.14em; font-family: "Archivo", sans-serif;
  font-size: 12.5px; font-weight: 800; color: #fff; background: var(--red); padding: 7px 14px; margin-bottom: 20px;
}
.hero h1 { font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(3rem, 9vw, 6.5rem); line-height: 0.9; letter-spacing: 0.01em; }
.hero h1 .accent { color: var(--red); -webkit-text-stroke: 1px transparent; }
.hero-sub { margin-top: 22px; font-size: clamp(1rem, 2.2vw, 1.25rem); color: #e4e6ec; max-width: 560px; }
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 0; margin-top: 44px; border: 2px solid rgba(255,255,255,0.25); width: fit-content; }
.hero-badges li { font-size: 13px; color: #c7cad4; text-transform: uppercase; letter-spacing: 0.05em; padding: 14px 22px; }
.hero-badges li + li { border-left: 2px solid rgba(255,255,255,0.25); }
.hero-badges span { display: block; font-family: "Anton", sans-serif; font-size: 24px; color: #fff; letter-spacing: 0.02em; }

/* ===== Sections ===== */
.section { padding: 96px 0; position: relative; }
.section-dark { background: var(--ink); color: #fff; }
.section-dark .section-lead { color: var(--muted-light); }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head .eyebrow { color: #fff; }
.section-dark .section-head .eyebrow { background: var(--blue); }
.section-head h2 { font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(2.4rem, 5.5vw, 4rem); margin-top: 6px; line-height: 0.95; }
.section-lead { color: var(--muted); margin-top: 16px; font-size: 1.08rem; }

/* Séparateur barber pole entre sections claires/sombres (animé) */
.section-dark::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 10px;
  background-image: var(--pole); background-size: 79.2px 79.2px;
  animation: pole-slide 2.2s linear infinite;
}

/* ===== Services ===== */
.services-grid { display: flex; flex-direction: column; gap: 22px; }

/* Catégorie repliable */
.svc-cat { border: 2px solid var(--ink); background: var(--paper); }
.svc-cat + .svc-cat { }
.svc-cat-head {
  list-style: none; cursor: pointer; user-select: none;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; background: var(--ink); color: #fff;
}
.svc-cat-head::-webkit-details-marker { display: none; }
.svc-cat-title { font-family: "Anton", sans-serif; font-size: 1.5rem; letter-spacing: 0.02em; text-transform: uppercase; }
.svc-cat-count { font-family: "Archivo", sans-serif; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-light); }
.svc-cat-chevron { margin-left: auto; width: 12px; height: 12px; border-right: 3px solid #fff; border-bottom: 3px solid #fff; transform: rotate(45deg); transition: transform 0.25s var(--ease); }
.svc-cat[open] .svc-cat-chevron { transform: rotate(-135deg); }
.svc-cat-head:hover .svc-cat-title { color: var(--red); }

.svc-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 2px solid var(--ink); }
.service-card {
  background: var(--paper); padding: 26px 24px; display: flex; flex-direction: column;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transition: background 0.2s var(--ease);
  position: relative;
}
/* enlève les bordures extérieures superflues (grille 3 colonnes) */
.svc-cat-grid .service-card:nth-child(3n) { border-right: 0; }
.svc-cat-grid .service-card:last-child { border-right: 0; }
.svc-cat-grid .service-card:nth-last-child(-n+3) { border-bottom: 0; }
.service-card:hover { background: var(--paper-2); }
.service-card:hover::after { transform: scaleX(1); }
.service-card::after { content: ""; position: absolute; left: 0; bottom: 0; height: 4px; width: 100%; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
.service-card .sc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.service-card h4 { font-family: "Archivo", sans-serif; font-weight: 800; text-transform: uppercase; font-size: 1.08rem; letter-spacing: 0.01em; }
.service-card .sc-dur { font-family: "Archivo", sans-serif; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); border: 2px solid var(--line); padding: 4px 9px; white-space: nowrap; }
.service-card .sc-tag { display: inline-block; font-family: "Archivo", sans-serif; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; background: var(--blue); padding: 4px 9px; margin-top: 12px; width: fit-content; }
/* Prix amélioré : gros, net, avec "€" en exposant */
.service-card .sc-price { font-family: "Anton", sans-serif; font-size: 3rem; line-height: 1; color: var(--ink); margin: 18px 0 20px; letter-spacing: 0.01em; }
.service-card .btn { margin-top: auto; }

.info-area { color: var(--muted-light); font-size: 0.9rem; margin-top: 10px; max-width: 34ch; }

/* ===== FAQ (accordéon compact : chaque question est un bouton) ===== */
.section-faq { padding: 56px 0; }
.faq-head { margin-bottom: 22px; }
.faq-head h2 { font-family: "Anton", sans-serif; font-size: clamp(1.7rem, 3.4vw, 2.4rem); text-transform: uppercase; letter-spacing: 0.01em; }

.faq-list { max-width: 760px; border: 2px solid var(--ink); }
.faq-item + .faq-item { border-top: 2px solid var(--ink); }

.faq-q {
  display: flex; align-items: center; gap: 14px; cursor: pointer;
  padding: 15px 18px; list-style: none; user-select: none;
  transition: background 0.18s var(--ease);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { background: var(--paper-2); }
.faq-q h3 {
  font-family: "Archivo", sans-serif; font-weight: 700; text-transform: none;
  font-size: 0.98rem; line-height: 1.3; letter-spacing: 0; margin: 0;
}

/* Le « + » qui bascule en « – » à l'ouverture */
.faq-sign { margin-left: auto; flex: 0 0 auto; position: relative; width: 14px; height: 14px; }
.faq-sign::before,
.faq-sign::after { content: ""; position: absolute; background: var(--red); transition: transform 0.22s var(--ease); }
.faq-sign::before { left: 0; top: 6px; width: 14px; height: 2px; }
.faq-sign::after { left: 6px; top: 0; width: 2px; height: 14px; }
.faq-item[open] .faq-sign::after { transform: scaleY(0); }
.faq-item[open] .faq-q { background: var(--paper-2); }

.faq-a { padding: 0 18px 17px; }
.faq-a p { color: var(--muted); font-size: 0.94rem; max-width: 62ch; }
.faq-a a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 720px) {
  .section-faq { padding: 44px 0; }
  .faq-q { padding: 13px 14px; gap: 10px; }
  .faq-q h3 { font-size: 0.93rem; }
  .faq-a { padding: 0 14px 15px; }
}

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.gallery-grid button { border: 0; padding: 0; cursor: pointer; overflow: hidden; background: var(--ink-2); aspect-ratio: 1; position: relative; }
.gallery-grid button::after { content: ""; position: absolute; inset: 0; border: 3px solid transparent; transition: border-color 0.2s; }
.gallery-grid button:hover::after { border-color: var(--red); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); filter: grayscale(0.15); }
.gallery-grid button:hover img { transform: scale(1.06); filter: none; }

/* ===== Feed vidéo (style TikTok) ===== */
.vfeed {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  width: 100%; max-width: 400px; margin: 0 auto;
  aspect-ratio: 9 / 16; max-height: 78vh;
  overflow-y: auto; scroll-snap-type: y mandatory;
  border: 3px solid #fff; background: #000;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.vfeed::-webkit-scrollbar { display: none; }
.vfeed-item {
  position: relative; flex: 0 0 100%; width: 100%; height: 100%;
  scroll-snap-align: start; scroll-snap-stop: always;
  overflow: hidden; background: #000;
}
.vfeed-item video {
  width: 100%; height: 100%; object-fit: cover;
  display: block; cursor: pointer;
}
/* dégradé bas pour lisibilité des textes/boutons */
.vfeed-item::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 22%, transparent 62%, rgba(0,0,0,0.85) 100%);
}
/* Bloc infos + CTA en bas à gauche */
.vfeed-info { position: absolute; left: 16px; right: 74px; bottom: 20px; z-index: 3; color: #fff; }
/* ---- Bloc TikTok (chargement au clic) ---- */
.tt-block { margin-top: 34px; }
.tt-holder { display: flex; justify-content: center; min-height: 120px; }
.tt-holder blockquote { margin: 0 auto; }
/* Plusieurs posts : rangée qui défile, comme le carrousel photos. */
.tt-holder.tt-posts {
  justify-content: flex-start; gap: 12px; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none;
}
.tt-holder.tt-posts::-webkit-scrollbar { display: none; }
.tt-holder.tt-posts blockquote { flex: 0 0 auto; margin: 0; scroll-snap-align: start; }
.tt-fallback { color: rgba(255, 255, 255, 0.75); text-align: center; }
.tt-fallback a { color: #fff; text-decoration: underline; }
.tt-fallback a:hover { color: var(--red); }

/* ---- Carrousel photos (une seule rangée qui défile) ---- */
.rail-wrap { position: relative; }
.photo-rail {
  display: flex; gap: 8px; overflow-x: auto; scroll-behavior: smooth;
  scroll-snap-type: x mandatory; padding-bottom: 4px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.photo-rail::-webkit-scrollbar { display: none; }
.photo-rail button {
  flex: 0 0 auto; width: 210px; aspect-ratio: 3 / 4;
  border: 0; padding: 0; cursor: pointer; overflow: hidden;
  background: var(--ink-2); position: relative; scroll-snap-align: start;
}
.photo-rail button::after { content: ""; position: absolute; inset: 0; border: 3px solid transparent; transition: border-color 0.2s; }
.photo-rail button:hover::after { border-color: var(--red); }
.photo-rail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); filter: grayscale(0.15); }
.photo-rail button:hover img { transform: scale(1.06); filter: none; }
.rail-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border: 0; cursor: pointer;
  background: var(--ink); color: #fff; font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, opacity 0.2s;
}
.rail-nav:hover { background: var(--red); }
.rail-nav[disabled] { opacity: 0.25; cursor: default; }
.rail-nav[disabled]:hover { background: var(--ink); }
.rail-prev { left: -10px; }
.rail-next { right: -10px; }
@media (max-width: 720px) {
  .photo-rail button { width: 150px; }
  .rail-prev { left: 0; }
  .rail-next { right: 0; }
}

.vfeed-handle { display: inline-block; font-family: "Archivo", sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; font-size: 14px; color: #fff; text-decoration: none; }
.vfeed-handle:hover { text-decoration: underline; }
.vfeed-caption { margin-top: 6px; font-size: 13.5px; color: #eceef4; line-height: 1.4; }
.vfeed-info .btn { margin-top: 14px; }
/* Colonne d'actions à droite (mute / son) */
.vfeed-actions { position: absolute; right: 14px; bottom: 22px; z-index: 3; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.vfeed-btn {
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(0,0,0,0.5); color: #fff; font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px);
  transition: background 0.18s, transform 0.12s var(--ease);
}
.vfeed-btn:hover { background: var(--red); }
.vfeed-btn:active { transform: scale(0.92); }
/* Icône lecture quand en pause */
.vfeed-play {
  position: absolute; inset: 0; z-index: 2; display: none;
  align-items: center; justify-content: center; pointer-events: none;
}
.vfeed-item.is-paused .vfeed-play { display: flex; }
.vfeed-play span {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: #fff; padding-left: 4px;
}
/* Barre de progression fine en haut de chaque vidéo */
.vfeed-progress { position: absolute; top: 0; left: 0; height: 3px; width: 0; background: var(--red); z-index: 3; transition: width 0.1s linear; }
.vfeed-hint { text-align: center; color: var(--muted-light); font-size: 12.5px; margin-top: 14px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== Reservation ===== */
.reserve-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 0; border: 2px solid var(--ink); }
.reserve-card { background: var(--paper); padding: 30px; border-right: 2px solid var(--ink); }
.stepper { list-style: none; display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.stepper li { display: flex; align-items: center; gap: 8px; font-family: "Archivo", sans-serif; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--muted); }
.stepper li span { width: 30px; height: 30px; display: grid; place-items: center; border: 2px solid var(--line); font-family: "Anton", sans-serif; font-size: 14px; transition: 0.2s; }
.stepper li.active { color: var(--ink); }
.stepper li.active span { background: var(--red); color: #fff; border-color: var(--red); }
.stepper li.done span { background: var(--blue); color: #fff; border-color: var(--blue); }
.stepper li:not(:last-child)::after { content: ""; width: 22px; height: 2px; background: var(--line); }

.field { margin-bottom: 20px; }
.field label { display: block; font-family: "Archivo", sans-serif; font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; color: var(--ink); }
.field select, .field input {
  width: 100%; padding: 14px 14px; border: 2px solid var(--line); border-radius: 0;
  background: var(--paper); color: var(--ink); font-size: 15px; font-family: inherit; transition: border-color 0.18s;
}
.field select:focus, .field input:focus { outline: none; border-color: var(--blue); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== Menu déroulant custom (aux couleurs du site) ===== */
.dd { position: relative; }
.dd select.dd-native { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.dd-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 14px; border: 2px solid var(--line); border-radius: 0; background: var(--paper);
  color: var(--ink); font-family: inherit; font-size: 15px; font-weight: 600; text-align: left; cursor: pointer;
  transition: border-color 0.18s;
}
.dd-trigger:hover { border-color: var(--blue); }
.dd.open .dd-trigger { border-color: var(--blue); }
.dd-trigger .dd-arrow {
  flex: none; width: 22px; height: 22px; display: grid; place-items: center; background: var(--blue); color: #fff;
  font-size: 11px; transition: transform 0.2s var(--ease);
}
.dd.open .dd-trigger .dd-arrow { transform: rotate(180deg); }
.dd-trigger.is-placeholder { color: var(--muted); font-weight: 500; }
.dd-list {
  list-style: none; position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 4px);
  background: var(--paper); border: 2px solid var(--ink); max-height: 260px; overflow-y: auto;
  box-shadow: 6px 6px 0 rgba(15,20,32,0.12);
}
.dd-list[hidden] { display: none; }
.dd-option {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; font-size: 14.5px; font-weight: 600; cursor: pointer;
  border-bottom: 1px solid var(--line);
}
.dd-option:last-child { border-bottom: 0; }
.dd-option .dd-opt-price { font-family: "Anton", sans-serif; font-size: 1.15rem; color: var(--red); letter-spacing: 0.01em; }
.dd-option:hover, .dd-option.active { background: var(--paper-2); }
.dd-option[aria-selected="true"] { border-left: 4px solid var(--red); padding-left: 10px; }
.dd-option[aria-selected="true"] .dd-opt-price { color: var(--red); }
.dd-option.dd-disabled { color: var(--muted); cursor: not-allowed; background: var(--paper-2); opacity: 0.7; }
.dd-option.dd-disabled:hover { background: var(--paper-2); }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(98px, 1fr)); gap: 6px; max-height: 230px; overflow-y: auto; padding: 2px; }
.slot {
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
  padding: 11px 12px; border: 2px solid var(--line); border-radius: 0;
  background: var(--paper); color: var(--ink); font-weight: 600; font-size: 14px; cursor: pointer; transition: 0.14s;
}
.slot:hover:not(:disabled) { border-color: var(--blue); }
.slot small { font-family: "Archivo", sans-serif; font-size: 10.5px; font-weight: 700; color: var(--muted); border: 2px solid var(--line); padding: 1px 6px; }
.slot.selected { background: var(--blue); color: #fff; border-color: var(--blue); }
.slot.selected small { color: #fff; border-color: rgba(255,255,255,0.4); }
.slot:disabled { opacity: 0.35; cursor: not-allowed; }

.step-actions { display: flex; margin-top: 24px; }
.step-actions.end { justify-content: flex-end; }
.step-actions.between { justify-content: space-between; gap: 12px; }

.step-success { text-align: center; padding: 26px 0; }
.success-check { width: 72px; height: 72px; margin: 0 auto 20px; display: grid; place-items: center; font-size: 34px; background: var(--red); color: #fff; }
.step-success h3 { font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase; font-size: 2rem; }
.step-success p { color: var(--muted); margin-top: 12px; }
.step-success .btn { margin-top: 26px; }

.summary { background: var(--ink); color: #fff; padding: 30px; }
.summary h3 { font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase; font-size: 1.4rem; margin-bottom: 20px; letter-spacing: 0.02em; }
.summary-list { display: flex; flex-direction: column; gap: 0; }
.summary-list > div { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 12px 0; border-bottom: 1px solid var(--line-dark); }
.summary-list dt { color: var(--muted-light); text-transform: uppercase; font-size: 11.5px; letter-spacing: 0.05em; font-weight: 700; font-family: "Archivo", sans-serif; }
.summary-list dd { text-align: right; font-weight: 600; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 20px; padding-top: 4px; }
.summary-total span:first-child { color: var(--muted-light); font-family: "Archivo", sans-serif; text-transform: uppercase; font-size: 13px; font-weight: 800; letter-spacing: 0.05em; }
.summary-total span:last-child { font-family: "Anton", sans-serif; font-size: 2.6rem; color: #fff; }
.summary-note { margin-top: 18px; font-size: 12px; color: var(--muted-light); }

/* ===== Infos ===== */
.infos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 2px solid #fff; }
.section-dark .info-block { background: transparent; padding: 30px; border-right: 2px solid #fff; }
.section-dark .infos-grid .info-block:last-child { border-right: 0; }
.info-block h3 { font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase; font-size: 1.5rem; margin-bottom: 14px; color: var(--red); letter-spacing: 0.02em; }
.section-dark .info-block h3 { color: #fff; border-bottom: 4px solid var(--red); padding-bottom: 8px; display: inline-block; }
.info-block p { color: var(--muted-light); }
.section-dark .info-block a:hover { color: #fff; text-decoration: underline; }
.info-block .btn { margin-top: 18px; }
.hours { list-style: none; display: flex; flex-direction: column; gap: 0; }
.hours li { display: flex; justify-content: space-between; font-size: 14.5px; color: #fff; padding: 8px 0; border-bottom: 1px solid var(--line-dark); }
.hours li span:first-child { text-transform: uppercase; font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; font-family: "Archivo", sans-serif; color: var(--muted-light); }
.hours li:last-child { border-bottom: 0; }
.hours li.closed span:last-child { color: var(--red); font-weight: 700; }

/* ===== Footer ===== */
.site-footer { position: relative; background: var(--ink); padding: 44px 0; color: #fff; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 10px; background-image: var(--pole); background-size: 79.2px 79.2px; animation: pole-slide 2.2s linear infinite; }
@media (prefers-reduced-motion: reduce) { .site-footer::before { animation: none; } }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 50px; height: 50px; object-fit: cover; border: 2px solid #fff; }
.footer-brand strong { font-family: "Archivo", sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; }
.footer-brand p { color: var(--muted-light); font-size: 14px; }
.footer-copy { color: var(--muted-light); font-size: 13px; }

/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(15,20,32,0.94); display: flex; align-items: center; justify-content: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 88vh; max-width: 90vw; object-fit: contain; border: 4px solid #fff; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: var(--red); border: 2px solid #fff; color: #fff; cursor: pointer; font-size: 20px; width: 48px; height: 48px; display: grid; place-items: center; transition: background 0.18s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--blue); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.muted { color: var(--muted); }
.small { font-size: 12.5px; }
.section-dark .muted, .summary .muted { color: var(--muted-light); }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  /* 6 entrées de menu : on bascule sur le menu burger avant que ça touche le logo. */
  .nav { position: fixed; inset: 84px 0 auto 0; flex-direction: column; background: var(--ink); padding: 16px 24px 22px; gap: 2px; transform: translateY(-130%); transition: transform 0.3s var(--ease); border-bottom: 8px solid; border-image: var(--pole) 8; }
  .nav.open { transform: none; }
  .nav a { width: 100%; padding: 14px; color: #fff; }
  .nav a:not(.nav-cta):hover { color: var(--red); }
  .nav .nav-cta { text-align: center; margin: 8px 0 0; }
  .nav-toggle { display: flex; }
  .brand-text strong { white-space: nowrap; }
  .brand-text small { white-space: nowrap; }
}
@media (max-width: 900px) {
  .svc-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-cat-grid .service-card:nth-child(3n) { border-right: 2px solid var(--ink); }
  .svc-cat-grid .service-card:nth-child(2n) { border-right: 0; }
  .svc-cat-grid .service-card:last-child { border-right: 0; }
  .reserve-layout { grid-template-columns: 1fr; }
  .reserve-card { border-right: 0; border-bottom: 2px solid var(--ink); }
  .infos-grid { grid-template-columns: 1fr; }
  .section-dark .info-block { border-right: 0; border-bottom: 2px solid #fff; }
  .section-dark .infos-grid .info-block:last-child { border-bottom: 0; }
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .svc-cat-head { padding: 15px 18px; gap: 10px; }
  .svc-cat-title { font-size: 1.25rem; }
  .svc-cat-count { white-space: nowrap; }
}
@media (max-width: 460px) {
  .svc-cat-grid { grid-template-columns: 1fr; }
  .svc-cat-grid .service-card { border-right: 0 !important; }
  .hero-badges { width: 100%; flex-direction: column; }
  .hero-badges li + li { border-left: 0; border-top: 2px solid rgba(255,255,255,0.25); }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Liens légaux du footer ===== */
.footer-legal { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 10px; }
.footer-legal a { font-family: "Archivo", sans-serif; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted-light); transition: color 0.18s; }
.footer-legal a:hover { color: #fff; }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
@media (max-width: 720px) { .footer-meta { align-items: flex-start; } }

/* ===== Pages légales ===== */
.legal { padding: 72px 0 84px; }
.legal .container { max-width: 840px; }
.legal h1 { font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(2.3rem, 6vw, 3.6rem); margin: 6px 0 8px; }
.legal .updated { color: var(--muted); font-size: 13px; font-family: "Archivo", sans-serif; text-transform: uppercase; letter-spacing: 0.04em; }
.legal h2 { font-family: "Archivo", sans-serif; font-weight: 800; text-transform: uppercase; font-size: 1.15rem; letter-spacing: 0.01em; margin: 38px 0 12px; padding-left: 14px; border-left: 4px solid var(--red); }
.legal p, .legal li { color: #2b3242; font-size: 15px; line-height: 1.65; }
.legal p { margin-bottom: 12px; }
.legal ul { padding-left: 20px; margin: 0 0 14px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--blue); text-decoration: underline; }
.legal a:hover { color: var(--red); }
.legal .legal-table { width: 100%; border-collapse: collapse; border: 2px solid var(--ink); margin: 4px 0 16px; }
.legal .legal-table th, .legal .legal-table td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); font-size: 14.5px; vertical-align: top; }
.legal .legal-table th { width: 210px; font-family: "Archivo", sans-serif; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--blue); background: var(--paper-2); }
.legal .legal-table tr:last-child th, .legal .legal-table tr:last-child td { border-bottom: 0; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; }
@media (max-width: 560px) {
  .legal .legal-table, .legal .legal-table tbody, .legal .legal-table tr, .legal .legal-table th, .legal .legal-table td { display: block; width: 100%; }
  .legal .legal-table th { border-bottom: 0; padding-bottom: 2px; }
  .legal .legal-table td { padding-top: 2px; }
  .legal .legal-table tr { border-bottom: 1px solid var(--line); }
  .legal .legal-table tr:last-child { border-bottom: 0; }
}
