/* ============================================================
   L'art de l'ongle - feuille de style
   Direction : bar à ongles, bois sombre & noir chaud, accent caramel
   ============================================================ */

:root {
  --ink:        #161009;  /* fond, noir chaud */
  --ink-2:      #1e1610;  /* surfaces surélevées / sections alternées */
  --wood:       #382619;  /* panneau brun bois */
  --wood-hi:    #573c27;  /* bois clair : bordures, puces */
  --cream:      #f1e7d8;  /* texte principal */
  --cream-dim:  #bda98f;  /* texte atténué */
  --caramel:    #cca063;  /* accent doré */
  --caramel-d:  #b8813c;  /* accent profond (survol) */
  --line:       rgba(241, 231, 216, 0.14);
  --line-soft:  rgba(241, 231, 216, 0.09);

  --shadow-contact: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-soft:    0 30px 60px -28px rgba(0, 0, 0, 0.75);
  --shadow-lift:    0 46px 90px -30px rgba(0, 0, 0, 0.85);

  --radius: 22px;
  --radius-lg: 34px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", -apple-system, system-ui, sans-serif;

  --wrap: 1200px;
  --pad: clamp(20px, 5vw, 72px);

  /* motif de lattes de bois, très discret */
  --slats: repeating-linear-gradient(
    90deg,
    rgba(255, 236, 210, 0.028) 0px,
    rgba(255, 236, 210, 0.028) 1px,
    transparent 1px,
    transparent 46px
  );
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain léger sur fond sombre */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

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

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

::selection { background: var(--caramel); color: var(--ink); }

/* ---------- typographie ---------- */
.italic { font-style: italic; }
.muted { color: var(--cream-dim); }

.eyebrow, .section-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--caramel);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.section-sub {
  max-width: 52ch;
  margin-top: 1rem;
  color: var(--cream-dim);
  font-size: 1.02rem;
}

.stars { color: var(--caramel); letter-spacing: 0.08em; }

/* ---------- boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  padding: 0.95em 1.7em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s, background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn-primary {
  background: var(--caramel);
  color: #241809;
  box-shadow: var(--shadow-contact), 0 18px 34px -16px rgba(0, 0, 0, 0.8);
}
.btn-primary:hover { background: var(--caramel-d); transform: translateY(-3px); box-shadow: var(--shadow-contact), 0 26px 44px -16px rgba(0,0,0,0.9); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--caramel); color: var(--caramel); transform: translateY(-3px); }
.btn-wide { width: 100%; margin-top: 0.4rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem var(--pad);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.site-header.scrolled {
  background: rgba(22, 16, 9, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line-soft), 0 12px 30px -24px rgba(0,0,0,0.9);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; margin-right: auto; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--wood-hi), var(--wood));
  color: var(--caramel);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  border: 1px solid var(--line);
  box-shadow: inset 0 -3px 8px rgba(0,0,0,0.4);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.nav { display: flex; gap: 1.8rem; }
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream-dim);
  position: relative;
  padding: 0.2rem 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--caramel);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.nav a:hover { color: var(--cream); }
.nav a:hover::after { transform: scaleX(1); }
.btn-nav { padding: 0.62em 1.25em; background: var(--caramel); color: #241809; font-size: 0.9rem; }
.btn-nav:hover { background: var(--caramel-d); transform: translateY(-2px); }

@media (max-width: 860px) {
  .nav { display: none; }
  .site-header { gap: 1rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem var(--pad) 4rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    var(--slats),
    radial-gradient(120% 90% at 82% 4%, rgba(204, 160, 99, 0.16) 0%, transparent 52%),
    radial-gradient(100% 80% at 0% 100%, rgba(87, 60, 39, 0.5) 0%, transparent 55%),
    linear-gradient(160deg, #1c140d 0%, #100b07 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  width: 48vw; height: 48vw;
  right: -8vw; top: -10vw;
  background: radial-gradient(circle, rgba(204, 160, 99, 0.14), transparent 62%);
  filter: blur(12px);
}
.hero-inner {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.eyebrow { display: inline-block; margin-bottom: 1.4rem; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.4rem, 11vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.hero-title .italic { color: var(--caramel); font-weight: 400; }
.hero-lede {
  margin-top: 1.6rem;
  max-width: 40ch;
  font-size: 1.12rem;
  color: var(--cream-dim);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }
.hero-rating {
  display: flex; align-items: baseline; gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.98rem;
  color: var(--cream);
}
.hero-rating .stars { font-size: 1.05rem; }
.hero-rating strong { font-size: 1.15rem; }

/* image du hero */
.hero-figure { position: relative; justify-self: center; }
.figure-frame {
  position: relative;
  width: clamp(260px, 34vw, 420px);
  aspect-ratio: 4 / 5.2;
  border-radius: 260px 260px 26px 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--wood-hi);
  outline: 6px solid var(--ink-2);
  outline-offset: -1px;
}
.figure-frame img { width: 100%; height: 100%; object-fit: cover; }
.figure-badge {
  position: absolute;
  bottom: -22px; left: -30px;
  background: linear-gradient(160deg, var(--wood), var(--ink-2));
  border: 1px solid var(--wood-hi);
  border-radius: 18px;
  padding: 0.9rem 1.2rem;
  display: grid;
  gap: 0.05rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.badge-since { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--caramel); font-weight: 700; }
.badge-days { font-family: var(--font-display); font-size: 1.35rem; font-style: italic; color: var(--cream); }
.badge-hours { font-size: 0.82rem; color: var(--cream-dim); }

.scroll-hint {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid var(--caramel);
  border-radius: 20px;
  opacity: 0.7;
}
.scroll-hint span {
  position: absolute;
  left: 50%; top: 8px;
  width: 3px; height: 8px;
  border-radius: 3px;
  background: var(--caramel);
  transform: translateX(-50%);
  animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot { 0%,100%{ opacity:0; transform: translate(-50%, 0); } 50%{ opacity:1; transform: translate(-50%, 12px); } }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-figure { order: -1; margin-bottom: 1rem; }
  .figure-badge { left: auto; right: -12px; }
  .scroll-hint { display: none; }
}

/* ============================================================
   SIGNATURE
   ============================================================ */
.signature {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) var(--pad) 2rem;
}
.sig-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}
.section-kicker { grid-column: 1 / -1; margin-bottom: 0.4rem; }
.sig-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.sig-text p { color: var(--cream-dim); font-size: 1.06rem; }
.sig-text p + p { margin-top: 1rem; }

.sig-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2.6rem;
}
.sig-tags li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  padding: 0.5em 1.1em;
  border: 1px solid var(--wood-hi);
  border-radius: 999px;
  background: var(--wood);
}
@media (max-width: 760px) {
  .sig-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BANDE ENSEIGNE
   ============================================================ */
.brand-band {
  position: relative;
  height: clamp(320px, 52vh, 560px);
  margin-top: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  isolation: isolate;
}
.band-media { position: absolute; inset: -14% 0; z-index: -1; }
.band-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.brand-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,11,7,0.32) 0%, rgba(16,11,7,0.12) 38%, rgba(16,11,7,0.82) 100%);
}
.band-caption {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  padding: var(--pad);
  display: grid; gap: 0.35rem;
}
.band-kicker { font-size: 0.74rem; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700; color: var(--caramel); }
.band-place { font-family: var(--font-display); font-size: clamp(1.15rem, 2.6vw, 1.7rem); color: var(--cream); }

/* ============================================================
   PRESTATIONS
   ============================================================ */
.prestations {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) var(--pad);
}
.section-head { margin-bottom: 2.6rem; }

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}
.tab {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--cream-dim);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.6em 1.3em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.tab:hover { color: var(--cream); }
.tab.is-active {
  background: var(--caramel);
  color: #241809;
}

.panel { display: none; }
.panel.is-active { display: block; animation: fadeUp 0.5s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.price-list {
  list-style: none;
  columns: 2;
  column-gap: clamp(2rem, 5vw, 4.5rem);
}
.price-list-forfaits { columns: 1; max-width: 720px; }
.price-list li {
  break-inside: avoid;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 0.6rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--line);
}
.p-name { font-weight: 500; color: var(--cream); }
.p-dur { font-size: 0.82rem; color: var(--cream-dim); font-variant-numeric: tabular-nums; }
.p-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--caramel);
  font-variant-numeric: tabular-nums;
  min-width: 3.2ch;
  text-align: right;
}
.forfait-note {
  margin-top: 1.3rem;
  color: var(--cream-dim);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.prestations-cta { margin-top: 2.8rem; }

@media (max-width: 680px) {
  .price-list, .price-list-forfaits { columns: 1; }
}

/* ============================================================
   GALERIE
   ============================================================ */
.galerie {
  background:
    var(--slats),
    radial-gradient(90% 60% at 50% 0%, rgba(87, 60, 39, 0.35) 0%, transparent 60%),
    var(--ink-2);
  padding: clamp(4rem, 8vw, 6.5rem) var(--pad);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.galerie .section-head { max-width: var(--wrap); margin-left: auto; margin-right: auto; }

.masonry {
  max-width: var(--wrap);
  margin: 0 auto;
  columns: 4;
  column-gap: 14px;
}
.tile {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  box-shadow: var(--shadow-contact);
  background: var(--wood);
  border: 1px solid var(--line-soft);
}
.tile img {
  width: 100%;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1), filter 0.5s;
}
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s;
}
.tile:hover img { transform: scale(1.06); }
.tile:hover::after { opacity: 1; }

.galerie-cta { text-align: center; margin-top: 2.6rem; }

@media (max-width: 1000px) { .masonry { columns: 3; } }
@media (max-width: 680px)  { .masonry { columns: 2; column-gap: 10px; } .tile { margin-bottom: 10px; } }

/* ============================================================
   AVIS
   ============================================================ */
.avis {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) var(--pad);
}
.avis-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  background: linear-gradient(155deg, var(--wood) 0%, var(--ink-2) 100%);
  border: 1px solid var(--wood-hi);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.4rem);
  box-shadow: var(--shadow-soft);
}
.avis-score { text-align: center; display: grid; gap: 0.3rem; justify-items: center; }
.big-score {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--caramel);
}
.avis-score .stars { font-size: 1.4rem; }

.avis-bars { display: grid; gap: 0.95rem; }
.bar-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--cream);
}
.bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  width: var(--v);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wood-hi), var(--caramel));
  transform-origin: left;
}
.bar-row b { font-variant-numeric: tabular-nums; color: var(--cream); }
.avis-link {
  grid-column: 1 / -1;
  margin-top: 0.6rem;
  font-weight: 600;
  color: var(--caramel);
}
.avis-link:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .avis-inner { grid-template-columns: 1fr; }
  .bar-row { grid-template-columns: 1.1fr 1.6fr auto; }
}

/* ============================================================
   INFOS
   ============================================================ */
.infos {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) var(--pad) clamp(5rem, 10vw, 7rem);
}
.infos-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.storefront {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
  border: 1px solid var(--wood-hi);
  outline: 6px solid var(--ink-2);
  outline-offset: -1px;
  box-shadow: var(--shadow-soft);
}
.storefront img { width: 100%; height: clamp(220px, 32vw, 400px); object-fit: cover; object-position: center 42%; }
.info-block { padding: 1.2rem 0; border-top: 1px solid var(--line); }
.info-block h3 {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.info-block p { font-size: 1.05rem; color: var(--cream); }
.info-link { display: inline-block; margin-top: 0.5rem; font-weight: 600; color: var(--caramel); }
.info-link:hover { text-decoration: underline; }

.hours { width: 100%; border-collapse: collapse; max-width: 320px; }
.hours td { padding: 0.32rem 0; font-size: 1rem; color: var(--cream); }
.hours td:last-child { text-align: right; color: var(--cream-dim); font-variant-numeric: tabular-nums; }
.hours td.closed { color: var(--caramel); font-style: italic; }

.info-contact .phone {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--cream);
  display: block;
}
.info-contact .phone:hover { color: var(--caramel); }

.infos-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--wood-hi);
  outline: 6px solid var(--ink-2);
  outline-offset: -1px;
}
.infos-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(0.3) sepia(0.35) brightness(0.9) contrast(1.02); }

@media (max-width: 820px) {
  .infos-grid { grid-template-columns: 1fr; }
  .infos-map { min-height: 320px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background:
    var(--slats),
    linear-gradient(180deg, var(--ink-2) 0%, #0f0a06 100%);
  color: var(--cream);
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad) 2rem;
  border-top: 1px solid var(--line-soft);
}
.footer-top {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.footer-brand .brand-name { color: var(--cream); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.footer-nav a { color: var(--cream-dim); font-size: 0.95rem; font-weight: 500; }
.footer-nav a:hover { color: var(--caramel); }
.footer-bottom {
  max-width: var(--wrap);
  margin: 1.4rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--cream-dim);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 7, 4, 0.92);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 4rem);
}
.lightbox.open { display: flex; animation: lbfade 0.3s ease; }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: min(92vw, 620px);
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,0.85);
  border: 1px solid var(--wood-hi);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(241,231,216,0.12);
  color: var(--cream);
  border: 1px solid rgba(241,231,216,0.22);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.25s, transform 0.25s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(204,160,99,0.35); transform: scale(1.06); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: clamp(10px, 3vw, 40px); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(10px, 3vw, 40px); top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 620px) { .lb-prev, .lb-next { top: auto; bottom: 24px; transform: none; } .lb-prev { left: 30%; } .lb-next { right: 30%; } .lb-prev:hover,.lb-next:hover{ transform: scale(1.06);} }

/* ============================================================
   POPUP OFFRE
   ============================================================ */
.promo {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  border: 0;
  padding: clamp(1rem, 5vw, 3rem);
  background: rgba(10, 7, 4, 0.8);
  backdrop-filter: blur(6px);
  place-items: center;
  z-index: 120;
  overflow: auto;
}
.promo[open] { display: grid; animation: lbfade 0.3s ease; }
.promo::backdrop { background: transparent; }

.promo-card {
  position: relative;
  width: min(92vw, 420px);
  background: linear-gradient(160deg, var(--wood) 0%, var(--ink-2) 100%);
  border: 1px solid var(--wood-hi);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 6vw, 3.2rem) clamp(1.6rem, 5vw, 2.6rem);
  text-align: center;
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  isolation: isolate;
  transform: translateY(14px) scale(0.97);
  opacity: 0;
  animation: promoIn 0.55s 0.05s cubic-bezier(.2,.8,.2,1) forwards;
}
.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    var(--slats),
    radial-gradient(120% 70% at 50% 0%, rgba(204, 160, 99, 0.22), transparent 60%);
}
@keyframes promoIn { to { transform: none; opacity: 1; } }

.promo-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(241, 231, 216, 0.08);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  font-size: 1.5rem; line-height: 1;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.promo-close:hover { background: rgba(204, 160, 99, 0.28); transform: scale(1.06); }

.promo-kicker {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--caramel);
  margin-bottom: 0.4rem;
}
.promo-figure {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4.6rem, 17vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--caramel);
}
.promo-pct { font-size: 0.5em; vertical-align: super; margin-left: 0.05em; }
.promo-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--cream);
  margin-top: 0.4rem;
}
.promo-cond {
  font-size: 0.85rem;
  color: var(--cream-dim);
  margin: 0.9rem 0 1.6rem;
}
.promo-card .btn-primary { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .promo-card { animation: none; transform: none; opacity: 1; }
}

/* ============================================================
   REVEAL (JS)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(24px); }
.reveal-ready [data-reveal] { transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1); }
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .scroll-hint span { animation: none; }
}
