/* =========================================================
   Bistrot des Sports — Chez Kim · Saint-Estève
   DA : anthracite + ambre/ocre sur crème. Pro, simple, convivial.
   Sans framework. Reveals en progressive enhancement (classe .js).
   ========================================================= */

:root {
  --ink:        #16181c;
  --ink-soft:   #23262c;
  --ink-700:    #2c2f35;
  --cream:      #f7f2e9;
  --paper:      #fffdf8;
  --amber:      #c8862a;
  --amber-deep: #a3681a;
  --amber-soft: #efd9b4;
  --text:       #1f2228;
  --muted:      #6c6457;
  --muted-2:    #8a8275;
  --line:       rgba(22,24,28,.12);
  --line-light: rgba(255,255,255,.16);

  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow:    0 18px 40px -22px rgba(22,24,28,.45);
  --shadow-sm: 0 8px 22px -14px rgba(22,24,28,.4);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* --- Lenis (scroll doux) : neutralise le smooth natif quand Lenis tourne,
   sinon les deux lissages se cumulent et le scroll saccade --- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }
.lenis.lenis-smooth iframe { pointer-events: none; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: clip;            /* clip, pas hidden : préserve position:sticky */
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 .4em;
  letter-spacing: -.01em;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section { padding: clamp(64px, 8vw, 116px) 0; }
.section__head { max-width: 660px; margin-bottom: clamp(34px, 5vw, 56px); }
.section__head.is-center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head.is-center .eyebrow { justify-content: center; }
.section h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.section__lead { color: var(--muted); font-size: 1.07rem; margin: 14px 0 0; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--amber); color: #fff; }
.btn--primary:hover { background: var(--amber-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--light { background: transparent; border-color: var(--line-light); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--block { width: 100%; }

/* =========================================================
   Header / nav
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  padding: 16px 0;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav.is-scrolled {
  background: rgba(247,242,233,.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -24px rgba(0,0,0,.5);
  padding: 10px 0;
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.nav.is-scrolled .brand { color: var(--ink); }
.brand__mark {
  width: 42px; height: 42px; flex: none;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--amber);
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  box-shadow: var(--shadow-sm);
}
.brand__txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.16rem; letter-spacing: -.01em; }
.brand__sub { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; opacity: .82; font-weight: 600; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a[data-spy] {
  color: rgba(255,255,255,.9);
  font-weight: 500; font-size: .96rem;
  position: relative; padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav.is-scrolled .nav__links a[data-spy] { color: var(--ink-soft); }
.nav__links a[data-spy]::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--amber); transition: width .3s var(--ease);
}
.nav__links a[data-spy]:hover::after,
.nav__links a[data-spy].is-active::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-size: .95rem; }
.nav.is-scrolled .nav__phone { color: var(--ink); }
.nav__phone svg { width: 17px; height: 17px; color: var(--amber); }

.nav__toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; position: relative; z-index: 70;
}
.nav__toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px auto; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav.is-scrolled .nav__toggle span { background: var(--ink); }
.nav__toggle.is-open span { background: var(--ink); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* drawer mobile */
.drawer {
  position: fixed; inset: 0; z-index: 65;
  background: var(--cream);
  padding: 92px 28px 36px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  visibility: hidden;
  display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer__nav { display: flex; flex-direction: column; gap: 4px; }
.drawer__nav a { font-family: var(--serif); font-size: 1.6rem; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.drawer__foot { margin-top: auto; display: flex; flex-direction: column; gap: 14px; }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(130% 90% at 82% 6%, rgba(200,134,42,.14), transparent 58%),
    linear-gradient(160deg, #20232a 0%, #16181c 72%);
}
.hero__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero__bg img.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero__bg img { transition: none; } }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,20,24,.5) 0%, rgba(18,20,24,.3) 42%, rgba(18,20,24,.82) 100%);
}
.hero__inner { padding-bottom: clamp(48px, 7vw, 88px); width: 100%; }
.hero__rating {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 8px 16px; border-radius: 999px;
  font-size: .9rem; font-weight: 500; margin-bottom: 22px;
}
.hero__rating .stars { color: var(--amber); letter-spacing: 1px; }
.hero__rating b { font-weight: 700; }
.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  font-weight: 600;
  max-width: min(20ch, 100%);
  overflow-wrap: break-word;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero h1 em { font-style: italic; color: var(--amber-soft); }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: min(46ch, 100%); color: rgba(255,255,255,.92); margin: 4px 0 30px; font-weight: 300; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll {
  position: absolute; right: 24px; bottom: 30px; z-index: 2;
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; opacity: .8;
}
.hero__scroll span { width: 1px; height: 40px; background: rgba(255,255,255,.6); animation: scrollPulse 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hero__scroll span { animation: none; } }

/* =========================================================
   Bandeau confiance (services)
   ========================================================= */
.trust { background: var(--ink); color: var(--cream); padding: 30px 0; }
.trust__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.trust__item { display: flex; align-items: center; gap: 12px; justify-content: center; text-align: left; }
.trust__item svg { width: 26px; height: 26px; color: var(--amber); flex: none; }
.trust__item strong { display: block; font-weight: 600; font-size: .98rem; }
.trust__item span { color: rgba(255,255,255,.6); font-size: .8rem; }

/* =========================================================
   À propos
   ========================================================= */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.about__media { position: relative; }
.about__media .about__photo-sub {
  position: absolute; right: -18px; bottom: -26px; width: 46%; z-index: 3;
  border-radius: var(--radius-sm);
  border: 6px solid var(--cream);
}
.about__badge {
  position: absolute; left: -16px; top: 26px; z-index: 4;
  background: var(--paper); border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 14px 18px; text-align: center;
}
.about__badge .num { font-family: var(--serif); font-size: 1.9rem; color: var(--amber-deep); line-height: 1; }
.about__badge .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.about p { color: var(--muted); margin: 0 0 16px; }
.about__sign { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--ink); margin-top: 6px; }
.about__sign span { display: block; font-family: var(--sans); font-style: normal; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; }

/* =========================================================
   Cartes (onglets)
   ========================================================= */
.menus { background: var(--paper); }
.menu-note {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: .82rem; color: var(--muted-2);
  background: var(--amber-soft); color: var(--amber-deep);
  padding: 7px 14px; border-radius: 999px; margin-top: 16px; font-weight: 600;
}
.menu-note svg { width: 15px; height: 15px; }

.tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 38px;
}
.tab {
  border: 0; background: transparent; cursor: pointer;
  padding: 12px 20px; border-radius: 999px 999px 0 0;
  font-weight: 600; font-size: .98rem; color: var(--muted);
  position: relative; transition: color .25s var(--ease);
  white-space: nowrap;
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { color: var(--ink); }
.tab[aria-selected="true"]::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: -1px; height: 3px;
  background: var(--amber); border-radius: 3px 3px 0 0;
}

.panel { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
/* Progressive enhancement : sans JS, toutes les cartes restent visibles (empilées) */
.panel[hidden] { display: grid; margin-top: 40px; }
.js .panel[hidden] { display: none; margin-top: 0; }
.panel__media { position: sticky; top: 100px; }
.panel__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.panel__media figcaption { font-size: .82rem; color: var(--muted-2); margin-top: 10px; font-style: italic; text-align: center; }

.menu-group { margin-bottom: 30px; }
.menu-group:last-child { margin-bottom: 0; }
.menu-group h3 {
  font-size: 1.02rem; font-family: var(--sans); font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--amber-deep);
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.menu-group h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.dish { display: flex; align-items: baseline; gap: 12px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.dish:last-child { border-bottom: 0; }
.dish__main { flex: 1; }
.dish__name { font-weight: 600; font-size: 1.04rem; color: var(--ink); }
.dish__name .tag { font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--amber-deep); border: 1px solid var(--amber); border-radius: 999px; padding: 1px 7px; margin-left: 8px; vertical-align: middle; }
.dish__desc { color: var(--muted); font-size: .92rem; margin-top: 2px; }
.dish__price { font-family: var(--serif); font-weight: 600; font-size: 1.1rem; color: var(--amber-deep); white-space: nowrap; }

.formule {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; margin-bottom: 22px;
}
.formule__top { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.formule__top h3 { margin: 0; font-family: var(--serif); font-size: 1.3rem; color: var(--ink); text-transform: none; letter-spacing: 0; }
.formule__top h3::after { display: none; }
.formule__price { font-family: var(--serif); font-size: 1.6rem; color: var(--amber-deep); font-weight: 600; }
.formule__price small { font-size: .8rem; color: var(--muted); }
.formule p { margin: 0; color: var(--muted); font-size: .95rem; }

/* =========================================================
   Sport
   ========================================================= */
.sport { position: relative; color: #fff; background: var(--ink); overflow: hidden; }
.sport__bg { position: absolute; inset: 0; z-index: 0; }
.sport__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0; visibility: hidden; transition: opacity .6s var(--ease), visibility .6s var(--ease); }
.sport.bg-on .sport__bg img { opacity: .26; visibility: visible; }
.sport__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,20,24,.96) 0%, rgba(18,20,24,.7) 60%, rgba(18,20,24,.55) 100%); }
.sport .container { position: relative; z-index: 1; }
.sport__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.sport h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3rem); }
.sport p { color: rgba(255,255,255,.78); }
.sport__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.sport__list li { display: flex; gap: 13px; align-items: flex-start; }
.sport__list svg { width: 22px; height: 22px; color: var(--amber); flex: none; margin-top: 2px; }
.sport__list b { display: block; }
.sport__list span { color: rgba(255,255,255,.62); font-size: .92rem; }

/* =========================================================
   Réservation
   ========================================================= */
.reserve { background: var(--cream); }
.reserve__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px, 5vw, 64px); align-items: stretch; }
.reserve__aside {
  background: var(--ink); color: var(--cream); border-radius: var(--radius);
  padding: clamp(30px, 4vw, 46px); display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.reserve__aside h2 { color: #fff; }
.reserve__aside p { color: rgba(255,255,255,.74); }
.reserve__info { margin-top: auto; padding-top: 28px; display: grid; gap: 16px; }
.reserve__info .row { display: flex; gap: 13px; align-items: center; }
.reserve__info svg { width: 20px; height: 20px; color: var(--amber); flex: none; }
.reserve__info a, .reserve__info span { color: rgba(255,255,255,.9); font-weight: 500; }
.reserve__phone { font-family: var(--serif); font-size: 1.5rem; color: #fff; }

.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 3.6vw, 40px); box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; letter-spacing: .02em; }
.field label .req { color: var(--amber-deep); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--text);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(200,134,42,.16);
}
.field textarea { resize: vertical; min-height: 92px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-note { margin: 14px 0 0; font-size: .92rem; min-height: 1.2em; }
.form-note.is-ok { color: #2f7d32; font-weight: 600; }
.form-note.is-err { color: #b3261e; font-weight: 600; }
.form__legal { font-size: .76rem; color: var(--muted-2); margin-top: 12px; }

/* =========================================================
   Infos pratiques
   ========================================================= */
.infos { background: var(--paper); }
.infos__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 56px); align-items: stretch; }
.infos__card { display: flex; flex-direction: column; gap: 22px; }
.info-block { display: flex; gap: 15px; }
.info-block svg { width: 22px; height: 22px; color: var(--amber-deep); flex: none; margin-top: 3px; }
.info-block h3 { font-family: var(--sans); font-weight: 700; font-size: 1rem; margin: 0 0 4px; text-transform: uppercase; letter-spacing: .08em; }
.info-block p, .info-block a { color: var(--muted); margin: 0; }
.hours { list-style: none; padding: 0; margin: 6px 0 0; }
.hours li { display: flex; justify-content: space-between; gap: 14px; padding: 6px 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.hours li:last-child { border-bottom: 0; }
.hours .day { color: var(--ink); font-weight: 500; }
.hours .h { color: var(--muted); }
.hours .closed { color: #b3261e; }
.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); min-height: 340px; height: 100%; }
.map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(.15); }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 56px 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--line-light); }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer__about { max-width: 34ch; font-size: .94rem; }
.footer h4 { font-family: var(--sans); font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin: 0 0 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer ul a:hover { color: var(--amber-soft); }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-light); display: grid; place-items: center; transition: background .25s var(--ease), color .25s var(--ease); }
.footer__social a:hover { background: var(--amber); color: #fff; border-color: var(--amber); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; font-size: .82rem; }
.footer__bottom a:hover { color: #fff; }

/* =========================================================
   Reveals (progressive enhancement)
   N'agit QUE si <html class="js"> ; sinon tout reste visible.
   ========================================================= */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Placeholders photo (maquette)
   Emplacement « Votre photo ici » + bouton « Voir un exemple »
   qui révèle l'image d'exemple actuelle. Réutilisable.
   ========================================================= */
.photo {
  position: relative;
  width: 100%;
  aspect-ratio: var(--ph-ar, 3/4);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ece5d7;
}
.photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; border-radius: inherit;
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s var(--ease);
}
.photo.is-example img { opacity: 1; visibility: visible; }

.photo__ph {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; text-align: center; padding: 18px;
  border-radius: inherit;
  border: 1.5px dashed rgba(22,24,28,.22);
  background:
    repeating-linear-gradient(45deg, rgba(22,24,28,.022) 0 11px, transparent 11px 22px),
    var(--cream);
  color: var(--muted);
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.photo.is-example .photo__ph { opacity: 0; visibility: hidden; }
.photo__ph svg { width: 30px; height: 30px; color: var(--amber-deep); }
.photo__ph-title { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); line-height: 1.1; }
.photo__ph-sub { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }

.photo__btn {
  position: absolute; z-index: 2; left: 50%; bottom: 14px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 15px; border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.94);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: var(--ink); font-family: var(--sans); font-weight: 600; font-size: .82rem;
  cursor: pointer; box-shadow: var(--shadow-sm); white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.photo__btn:hover { background: var(--amber); color: #fff; border-color: var(--amber); }
.photo__btn svg { width: 15px; height: 15px; }

/* variante compacte (petite vignette) */
.photo--mini .photo__ph { gap: 5px; padding: 10px; }
.photo--mini .photo__ph svg { width: 20px; height: 20px; }
.photo--mini .photo__ph-title { font-size: .82rem; }
.photo--mini .photo__btn { padding: 7px; bottom: 8px; gap: 0; }
.photo--mini .photo__btn-txt { display: none; }
.photo--mini .photo__btn svg { width: 14px; height: 14px; }

/* Puce « photo de fond » (hero, sport) */
.bg-photo-hint {
  position: absolute; z-index: 6;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px dashed rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff; font-family: var(--sans); font-weight: 600; font-size: .8rem;
  cursor: pointer; line-height: 1;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.bg-photo-hint:hover { background: rgba(255,255,255,.16); border-color: #fff; }
.bg-photo-hint svg { width: 15px; height: 15px; color: var(--amber-soft); flex: none; }
.bg-photo-hint b { color: var(--amber-soft); font-weight: 700; }
.sport .bg-photo-hint { top: 20px; right: 24px; }

/* étiquette « photos d'exemple » sur le diaporama hero */
.hero__demo-tag {
  position: absolute; z-index: 6; top: clamp(78px, 11vh, 116px); right: 24px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.3);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: rgba(255,255,255,.92); font-size: .74rem; font-weight: 600; line-height: 1;
}
.hero__demo-tag svg { width: 14px; height: 14px; color: var(--amber-soft); flex: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 16px 24px; }
  .about__grid, .sport__grid, .reserve__grid, .infos__grid { grid-template-columns: 1fr; }
  .about__media { width: 100%; max-width: 460px; margin: 0 auto 30px; }
  .sport__grid { gap: 30px; }
  .panel { grid-template-columns: 1fr; }
  .panel__media { position: static; order: -1; max-width: 460px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: block; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .footer__top { grid-template-columns: 1fr; gap: 26px; }
  .about__media .about__photo-sub { width: 50%; }
  .hero__scroll { display: none; }
  .bg-photo-hint { font-size: .72rem; padding: 7px 11px; }
  .hero__demo-tag { top: 72px; right: 14px; font-size: .7rem; padding: 5px 11px; }
}

@media (max-width: 480px) {
  .trust__grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}
