/* ================================================================
   LE LOOK · Design éditorial dark, fuchsia signature, rainbow accent
   ================================================================ */
@font-face { font-family:'Fraunces'; font-style:normal; font-weight:300 500; font-display:swap; src:url('fonts/fraunces-normal.woff2') format('woff2'); }
@font-face { font-family:'Fraunces'; font-style:italic; font-weight:300 500; font-display:swap; src:url('fonts/fraunces-italic.woff2') format('woff2'); }
@font-face { font-family:'Inter';    font-style:normal; font-weight:300 600; font-display:swap; src:url('fonts/inter-variable.woff2') format('woff2-variations'); }

:root {
  --ink: #08040a;
  --ink-2: #100812;
  --ink-3: #180d18;
  --ink-line: rgba(255,255,255,.09);

  --fuchsia: #e6266e;
  --fuchsia-glow: #ff4a94;
  --fuchsia-deep: #a01758;
  --violet: #9d4edd;

  --cream: #f7ede1;
  --gray: #8a7d75;
  --gray-2: #b8a99e;

  --rainbow: linear-gradient(90deg, #f43f5e 0%, #fb923c 20%, #facc15 40%, #22c55e 60%, #38bdf8 80%, #a855f7 100%);

  --f-h: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --f-b: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --dur: .5s;
  --dur-fast: .25s;
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.2,.7,.3,1);
  --ease-elastic: cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--f-b); background: var(--ink); color: var(--cream);
  line-height: 1.6; font-weight: 300;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}
/* Blinde le scroll-x : aucun descendant ne peut créer un overflow */
main, section, footer, header { max-width: 100vw; overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
:focus-visible { outline: 2px solid var(--fuchsia); outline-offset: 4px; border-radius: 2px; }
::selection { background: var(--fuchsia); color: var(--ink); }

h1, h2, h3, h4 { font-family: var(--f-h); font-weight: 400; line-height: .95; letter-spacing: -.025em; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== HEADER ===== */
.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding var(--dur) var(--ease), background var(--dur) var(--ease);
}
.top.scrolled {
  padding: 12px 40px; background: rgba(8,4,10,.78);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid var(--ink-line);
}
.top-brand { display: inline-flex; align-items: center; }
.top-brand img { height: 48px; width: auto; transition: transform .6s var(--ease-elastic); }
.top-brand:hover img { transform: rotate(-6deg) scale(1.05); }
.top-nav { display: flex; align-items: center; gap: 32px; }
.top-nav a {
  font-family: var(--f-b); font-size: 12px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; color: var(--cream);
  opacity: .7; transition: opacity var(--dur-fast), color var(--dur-fast);
  position: relative;
}
.top-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--fuchsia-glow); transform: scaleX(0); transform-origin: center;
  transition: transform var(--dur) var(--ease-out);
}
.top-nav a:hover { opacity: 1; color: var(--fuchsia-glow); }
.top-nav a:hover::after { transform: scaleX(1); }
.top-nav .call {
  padding: 10px 20px; border: 1px solid rgba(247,237,225,.25); border-radius: 999px;
  opacity: 1; transition: all var(--dur-fast);
}
.top-nav .call::after { display: none; }
.top-nav .call:hover { background: var(--fuchsia); border-color: var(--fuchsia); color: var(--ink); }
.top-socials { display: inline-flex; gap: 8px; padding-left: 12px; border-left: 1px solid rgba(247,237,225,.15); }
.top-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(247,237,225,.15); color: var(--cream);
  opacity: .75; transition: all var(--dur-fast) var(--ease);
}
.top-socials a::after { display: none; }
.top-socials a:hover { border-color: var(--fuchsia); background: var(--fuchsia); color: var(--ink); opacity: 1; transform: translateY(-2px); }

.hamb { display: none; padding: 8px; }
@media (max-width: 900px) {
  .top { padding: 16px 22px; }
  .top.scrolled { padding: 10px 22px; }
  .top-brand img { height: 40px; }
  .top-nav {
    position: fixed; inset: 0; background: var(--ink);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 26px; transform: translateY(-100%); transition: transform .5s var(--ease-out);
    padding: 60px 20px;
  }
  .top-nav.open { transform: translateY(0); }
  .top-nav a { font-size: 15px; opacity: 1; }
  .top-socials { padding-left: 0; border-left: 0; border-top: 1px solid rgba(247,237,225,.15); padding-top: 26px; gap: 14px; }
  .hamb { display: inline-flex; z-index: 101; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 40px 120px;
}
.hero-bg {
  position: absolute; inset: -8%;
  background-image: image-set(url('photos/gmaps-cover.webp') type('image/webp'), url('photos/gmaps-cover.jpg') type('image/jpeg'));
  background-image: -webkit-image-set(url('photos/gmaps-cover.webp') type('image/webp'), url('photos/gmaps-cover.jpg') type('image/jpeg'));
  background: url('photos/gmaps-cover.webp') center 40% / cover no-repeat; /* fallback simple + moderne */
  transform: scale(1.08);
  will-change: transform;
  transition: transform 8s var(--ease-out);
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,4,10,.68) 0%, rgba(8,4,10,.45) 40%, rgba(8,4,10,.92) 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(230,38,110,.40) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
  opacity: .12; mix-blend-mode: overlay; pointer-events: none;
}
.hero-inner { position: relative; z-index: 3; text-align: center; max-width: 1080px; width: 100%; }
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase;
  color: var(--fuchsia-glow); margin-bottom: 40px;
  display: inline-flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 32px; height: 1px; background: currentColor; opacity: .5;
}
.hero h1 {
  font-size: clamp(72px, 15vw, 220px); line-height: .82; letter-spacing: -.05em;
  color: var(--cream); margin-bottom: 44px; font-weight: 300;
}
.hero h1 .le {
  display: block; font-size: .28em; letter-spacing: .3em;
  text-transform: uppercase; font-weight: 400; opacity: .65;
  margin-bottom: 8px; font-family: var(--f-b);
}
.hero h1 .look { position: relative; display: inline-block; font-style: italic; font-weight: 300; }
.hero h1 .look::after {
  content: ''; position: absolute; left: 6%; right: 6%; bottom: 12%;
  height: clamp(6px, 1.2vw, 14px); border-radius: 999px;
  background: var(--rainbow); opacity: .95;
  filter: saturate(1.2) drop-shadow(0 6px 24px rgba(230,38,110,.55));
  animation: rainbowShift 4s ease-in-out infinite;
}
@keyframes rainbowShift {
  0%, 100% { transform: translateX(0) scaleX(1); }
  50% { transform: translateX(6px) scaleX(1.02); }
}
.hero-tag {
  font-family: var(--f-h); font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300; font-style: italic; color: var(--cream);
  opacity: .85; margin: 0 auto 60px; max-width: 680px; line-height: 1.4;
}
.hero-tag em { color: var(--fuchsia-glow); font-style: normal; }
.hero-actions { display: inline-flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 34px; border-radius: 999px;
  font-family: var(--f-b); font-size: 13px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  transition: all var(--dur) var(--ease); border: 1px solid transparent;
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--fuchsia); color: var(--cream); }
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: translateX(-100%); transition: transform .8s var(--ease);
}
.btn-primary:hover { background: var(--fuchsia-glow); transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(230,38,110,.55); }
.btn-primary:hover::before { transform: translateX(100%); }
.btn-ghost { border-color: rgba(247,237,225,.3); color: var(--cream); backdrop-filter: blur(8px); background: rgba(255,255,255,.05); }
.btn-ghost:hover { border-color: var(--fuchsia); color: var(--fuchsia-glow); background: rgba(230,38,110,.1); }
.btn svg { width: 14px; height: 14px; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--cream); opacity: .6;
  animation: bob 2.4s ease-in-out infinite;
}
.hero-scroll span { display: block; }
.hero-scroll::after {
  content: ''; width: 1px; height: 40px; background: var(--fuchsia-glow);
}
.hero-scroll:hover { opacity: 1; color: var(--fuchsia-glow); }
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
@media (max-width: 700px) {
  .hero { padding: 100px 24px 100px; }
  .hero-scroll { display: none; }
}

/* ===== GALLERY 5 PHOTOS ===== */
.gallery {
  padding: 140px 0 0; background: var(--ink-2); border-top: 1px solid var(--ink-line);
}
.gallery-head { padding: 0 40px; max-width: 1280px; margin: 0 auto 80px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 12px; padding: 0 40px 140px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 6px;
  background: var(--ink-3);
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,4,10,.5) 100%);
  opacity: 0; transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .caption {
  position: absolute; bottom: 20px; left: 24px; right: 24px; z-index: 2;
  font-family: var(--f-h); font-size: 15px; font-style: italic; color: var(--cream);
  opacity: 0; transform: translateY(8px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  pointer-events: none;
}
.gallery-item:hover .caption { opacity: .95; transform: none; }
.g-main { grid-column: 1 / span 6; grid-row: 1 / span 3; }
.g-a    { grid-column: 7 / span 6; grid-row: 1 / span 1; }
.g-b    { grid-column: 7 / span 3; grid-row: 2 / span 2; }
.g-c    { grid-column: 10 / span 3; grid-row: 2 / span 1; }
.g-d    { grid-column: 10 / span 3; grid-row: 3 / span 1; }
.g-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-b); font-size: 10.5px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gray); text-align: center; padding: 20px;
  background: linear-gradient(135deg, var(--ink-3) 0%, rgba(230,38,110,.15) 100%);
  border: 1px dashed rgba(230,38,110,.35);
}
@media (max-width: 900px) {
  /* Layout mobile : g-main (100%) · g-a (2/3) + g-b (1/3) · g-c (50%) + g-d (50%) */
  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 180px;
    padding: 0 20px 90px; gap: 8px;
  }
  .g-main { grid-column: 1 / span 12; grid-row: 1 / span 2; }
  .g-a    { grid-column: 1 / span 8;  grid-row: 3; }
  .g-b    { grid-column: 9 / span 4;  grid-row: 3; }
  .g-c    { grid-column: 1 / span 6;  grid-row: 4; }
  .g-d    { grid-column: 7 / span 6;  grid-row: 4; }
  .gallery-head { padding: 0 24px; margin-bottom: 50px; }
  .gallery { padding-top: 90px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-auto-rows: 150px; }
}

/* ===== SECTION HEAD ===== */
.section-num {
  font-family: var(--f-h); font-size: 14px; font-style: italic;
  color: var(--fuchsia-glow); letter-spacing: .1em; margin-bottom: 12px; font-weight: 400;
}
.section-title {
  font-size: clamp(38px, 5.5vw, 78px);
  color: var(--cream); font-weight: 300; letter-spacing: -.03em; max-width: 780px;
}
.section-title em { font-style: italic; color: var(--fuchsia-glow); }
.section-lede {
  font-family: var(--f-b); font-size: 15px; color: var(--gray-2);
  max-width: 400px; line-height: 1.7; font-weight: 300;
}
.section-head-split {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 40px; margin-bottom: 60px; flex-wrap: wrap;
}

/* ===== ATMOSPHERE ===== */
.atmosphere {
  padding: 140px 40px; background: var(--ink-2); border-top: 1px solid var(--ink-line);
}
.atmosphere .section-head-split { max-width: 1280px; margin: 0 auto 80px; }
.atm-list { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; }
.atm-row {
  display: grid; grid-template-columns: 80px 1fr 2fr; gap: 40px;
  padding: 48px 0; border-top: 1px solid var(--ink-line);
  align-items: baseline;
  transition: background var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.atm-row:hover {
  background: linear-gradient(90deg, rgba(230,38,110,.08) 0%, transparent 100%);
  padding-left: 20px;
}
.atm-row:hover .atm-row-num { color: var(--fuchsia); transform: scale(1.1); }
.atm-row:last-child { border-bottom: 1px solid var(--ink-line); }
.atm-row-num {
  font-family: var(--f-h); font-size: 42px; font-weight: 300;
  font-style: italic; color: var(--fuchsia-glow);
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease-elastic);
  transform-origin: left center;
}
.atm-row h3 { font-size: clamp(26px, 3vw, 40px); color: var(--cream); font-weight: 300; letter-spacing: -.02em; }
.atm-row p { font-size: 16px; color: var(--gray-2); line-height: 1.65; font-weight: 300; }
@media (max-width: 800px) {
  .atmosphere { padding: 90px 24px; }
  .atm-row { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .atm-row:hover { padding-left: 0; }
  .atm-row-num { font-size: 32px; }
}

/* ===== CARTE HOME ===== */
.carte {
  padding: 140px 40px; background: var(--ink-3); border-top: 1px solid var(--ink-line);
  position: relative; overflow: hidden;
}
.carte::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 100% 0%, rgba(230,38,110,.18) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 0% 100%, rgba(157,78,221,.12) 0%, transparent 60%);
  pointer-events: none;
}
.carte-inner { position: relative; max-width: 1280px; margin: 0 auto; }
.cocktails {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--ink-line); border: 1px solid var(--ink-line);
}
.cocktail {
  background: var(--ink-3); padding: 40px 32px;
  transition: background var(--dur) var(--ease);
  min-height: 240px; display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.cocktail::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--fuchsia); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.cocktail:hover { background: var(--ink-2); }
.cocktail:hover::before { transform: scaleX(1); }
.cocktail:hover .cocktail-name { color: var(--fuchsia-glow); }
.cocktail-num {
  font-family: var(--f-h); font-size: 13px; font-style: italic;
  color: var(--fuchsia); letter-spacing: .1em; margin-bottom: 20px; font-weight: 400;
}
.cocktail-name {
  font-family: var(--f-h); font-size: 28px; color: var(--cream);
  font-weight: 300; letter-spacing: -.01em; line-height: 1.1; margin-bottom: 12px;
  transition: color var(--dur) var(--ease);
}
.cocktail p { font-size: 14px; color: var(--gray-2); line-height: 1.55; font-weight: 300; }
.cocktail-price {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--ink-line);
  font-family: var(--f-h); font-size: 20px; color: var(--fuchsia-glow); font-weight: 400; font-style: italic;
}
@media (max-width: 900px) { .cocktails { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .cocktails { grid-template-columns: repeat(2, 1fr); }
  .cocktail { padding: 24px 18px; min-height: 200px; }
  .cocktail-name { font-size: 20px; }
  .cocktail p { font-size: 13px; }
  .cocktail-price { font-size: 17px; }
  .cocktail-num { font-size: 12px; margin-bottom: 14px; }
  .carte { padding: 90px 24px; }
}
@media (max-width: 380px) {
  .cocktail { padding: 20px 14px; min-height: 180px; }
  .cocktail-name { font-size: 17px; }
}
.carte-cta { margin-top: 60px; text-align: center; }
.carte-cta .btn { border: 1px solid var(--fuchsia); background: transparent; color: var(--fuchsia-glow); }
.carte-cta .btn:hover { background: var(--fuchsia); color: var(--cream); transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(230,38,110,.5); }

/* ===== NOUS TROUVER ===== */
.trouver { border-top: 1px solid var(--ink-line); background: var(--ink); }
.trouver-grid { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .trouver-grid { grid-template-columns: 1fr; } }
.trouver-side { padding: 100px 60px; display: flex; flex-direction: column; justify-content: center; }
.trouver-map { position: relative; min-height: 70vh; max-height: 100vh; background: var(--ink-2); }
.trouver-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: invert(.92) hue-rotate(180deg) saturate(.6) brightness(1.1); }
.trouver h2 { font-size: clamp(38px, 5vw, 68px); color: var(--cream); font-weight: 300; margin-bottom: 40px; letter-spacing: -.03em; }
.trouver h2 em { font-style: italic; color: var(--fuchsia-glow); }
.trouver dl { display: flex; flex-direction: column; gap: 28px; }
.trouver dt {
  font-family: var(--f-b); font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--fuchsia); margin-bottom: 8px; font-weight: 500;
}
.trouver dd { font-family: var(--f-h); font-size: 22px; color: var(--cream); font-weight: 300; line-height: 1.35; }
.trouver dd a {
  color: var(--cream); border-bottom: 1px solid var(--fuchsia); padding-bottom: 2px;
  transition: color var(--dur-fast); display: inline-block;
}
.trouver dd a:hover { color: var(--fuchsia-glow); }
.trouver dd a .dd-hint {
  display: block; font-family: var(--f-b); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--fuchsia-glow); margin-top: 8px; font-weight: 500;
}
.reveal-btn {
  font-family: var(--f-b); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--fuchsia-glow); border-bottom: 1px solid var(--fuchsia); padding: 4px 0; transition: color var(--dur-fast);
}
.reveal-btn:hover { color: var(--cream); }
.trouver-note {
  margin-top: 40px; padding: 20px 22px; border: 1px solid var(--ink-line); border-radius: 4px;
  font-size: 13px; color: var(--gray-2); line-height: 1.65; font-weight: 300;
}
.trouver-note strong { color: var(--fuchsia-glow); font-weight: 500; }
.trouver-note a { color: var(--fuchsia-glow); border-bottom: 1px dotted var(--fuchsia); }
@media (max-width: 900px) { .trouver-side { padding: 70px 24px; } .trouver-map { min-height: 60vh; } }

/* ===== AVIS CAROUSEL ===== */
.avis {
  padding: 140px 0; background: var(--ink-2); border-top: 1px solid var(--ink-line);
  overflow: hidden;
}
.avis .section-head-split { max-width: 1280px; margin: 0 auto 60px; padding: 0 40px; }
.avis-carousel-wrap { position: relative; }
.avis-carousel {
  display: flex; gap: 24px; padding: 20px 40px 40px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-padding-inline: 40px;
}
.avis-carousel::-webkit-scrollbar { display: none; }
.avis-card {
  flex: 0 0 380px;
  scroll-snap-align: center;
  padding: 36px 32px; background: var(--ink-3);
  border: 1px solid var(--ink-line); border-radius: 8px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.avis-card:hover {
  transform: translateY(-4px);
  border-color: var(--fuchsia);
  box-shadow: 0 30px 60px -20px rgba(230,38,110,.35);
}
.avis-card-stars { color: var(--fuchsia-glow); font-size: 16px; letter-spacing: 2px; }
.avis-card-text {
  font-family: var(--f-h); font-size: 18px; font-weight: 300; font-style: italic;
  line-height: 1.5; color: var(--cream); flex: 1;
}
.avis-card-meta { padding-top: 20px; border-top: 1px solid var(--ink-line); }
.avis-card-author {
  font-family: var(--f-b); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gray-2); font-weight: 400;
}
/* Controls réorganisés : flèches d'abord (centrées), puis boutons en grille 2 cols centrée */
.avis-carousel-controls {
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  max-width: 1280px; margin: 12px auto 0; padding: 0 40px;
}
.avis-nav { display: inline-flex; gap: 14px; justify-content: center; }
.avis-nav button {
  width: 48px; height: 48px; border: 1px solid var(--ink-line); border-radius: 50%;
  color: var(--cream); transition: all var(--dur-fast) var(--ease);
  display: inline-flex; align-items: center; justify-content: center;
}
.avis-nav button:hover { border-color: var(--fuchsia); color: var(--fuchsia-glow); background: rgba(230,38,110,.1); }
.avis-nav button svg { width: 18px; height: 18px; }
.avis-cta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  width: 100%; max-width: 620px; justify-items: center;
}
.avis-cta > a { width: 100%; justify-content: center; }
@media (max-width: 520px) {
  .avis-cta { grid-template-columns: 1fr; max-width: 320px; }
}
.review-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-family: var(--f-b); font-size: 12px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  transition: all var(--dur) var(--ease); border: 1px solid transparent;
}
.review-cta-primary { background: var(--fuchsia); color: var(--cream); }
.review-cta-primary:hover { background: var(--fuchsia-glow); transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(230,38,110,.55); }
.review-cta-ghost { border-color: rgba(247,237,225,.3); color: var(--cream); background: rgba(255,255,255,.04); }
.review-cta-ghost:hover { border-color: var(--fuchsia); color: var(--fuchsia-glow); background: rgba(230,38,110,.1); }
@media (max-width: 700px) {
  .avis { padding: 90px 0; }
  .avis .section-head-split, .avis-carousel-controls { padding: 0 24px; }
  /* Mobile : card à 86vw, padding égal de chaque côté pour laisser une preview
     de la card voisine et scroll-snap: center pour re-centrer parfaitement */
  .avis-carousel { padding: 20px 7vw 40px; scroll-padding-inline: 7vw; }
  .avis-card { flex-basis: 86vw; padding: 28px 24px; }
}

/* ===== HISTOIRE ===== */
.histoire { border-top: 1px solid var(--ink-line); background: var(--ink); }
.histoire-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
@media (max-width: 900px) { .histoire-grid { grid-template-columns: 1fr; } }
.histoire-image { position: relative; min-height: 520px; overflow: hidden; }
.histoire-image::before {
  /* voile violine + grain — masque moderne premium */
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(230,38,110,.28) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 80%, rgba(157,78,221,.28) 0%, transparent 60%),
    linear-gradient(135deg, rgba(8,4,10,.35) 0%, transparent 40%, rgba(8,4,10,.55) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.histoire-image::after {
  /* grain + halo lumineux fuchsia en signature */
  content: ''; position: absolute; inset: 0; z-index: 3;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E"),
    linear-gradient(90deg, transparent 0%, transparent 90%, var(--ink) 100%);
  opacity: 1;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.histoire-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s var(--ease-out);
  filter: contrast(1.05) saturate(1.15);
}
.histoire-image:hover img { transform: scale(1.04); }
.histoire-image .badge {
  position: absolute; top: 24px; left: 24px; z-index: 4;
  padding: 8px 16px; background: rgba(8,4,10,.65); border: 1px solid var(--fuchsia);
  border-radius: 999px; font-family: var(--f-b); font-size: 10.5px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--fuchsia-glow); backdrop-filter: blur(12px);
}
.histoire-text { padding: 100px 60px; display: flex; flex-direction: column; justify-content: center; }
.histoire-text h2 { font-size: clamp(38px, 5vw, 64px); color: var(--cream); font-weight: 300; margin-bottom: 40px; letter-spacing: -.025em; }
.histoire-text h2 em { font-style: italic; color: var(--fuchsia-glow); }
.histoire-text p { font-size: 16px; color: var(--cream); line-height: 1.75; margin-bottom: 20px; font-weight: 300; opacity: .82; }
.histoire-text p.lead {
  font-family: var(--f-h); font-size: 22px; font-style: italic; color: var(--cream); opacity: 1;
  font-weight: 300; line-height: 1.4; margin-bottom: 28px;
}
.histoire-sign {
  margin-top: 30px; font-family: var(--f-h); font-style: italic;
  color: var(--fuchsia-glow); font-size: 15px;
}
@media (max-width: 900px) { .histoire-text { padding: 70px 24px; } .histoire-image { min-height: 420px; } }

/* ===== CONTACT bandeau ===== */
.contact { border-top: 1px solid var(--ink-line); background: var(--ink-2); }
.contact-bar {
  max-width: 1280px; margin: 0 auto; padding: 120px 40px;
  text-align: center;
}
.contact-bar .section-num { margin-bottom: 16px; }
.contact-bar h2 {
  font-size: clamp(38px, 5vw, 68px); color: var(--cream); font-weight: 300;
  margin-bottom: 60px; letter-spacing: -.025em;
}
.contact-bar h2 em { font-style: italic; color: var(--fuchsia-glow); }
.contact-band {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--ink-line); border: 1px solid var(--ink-line);
}
.contact-cell {
  padding: 40px 32px; background: var(--ink-3);
  display: flex; flex-direction: column; gap: 16px; align-items: center;
  transition: background var(--dur) var(--ease);
}
.contact-cell:hover { background: var(--ink-2); }
.contact-cell-label {
  font-family: var(--f-b); font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--fuchsia); font-weight: 500;
}
.contact-cell-value {
  font-family: var(--f-h); font-size: 22px; color: var(--cream); font-weight: 300; line-height: 1.3;
}
.contact-cell-value a {
  color: var(--cream); border-bottom: 1px solid var(--fuchsia); padding-bottom: 2px;
  transition: color var(--dur-fast);
}
.contact-cell-value a:hover { color: var(--fuchsia-glow); }
.contact-socials-inline { display: inline-flex; gap: 12px; align-items: center; }
.contact-socials-inline a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(247,237,225,.25);
  color: var(--cream); transition: all var(--dur-fast) var(--ease);
}
.contact-socials-inline a:hover {
  background: var(--fuchsia); border-color: var(--fuchsia); color: var(--ink);
  transform: rotate(-6deg) scale(1.05);
}
@media (max-width: 800px) {
  .contact-bar { padding: 80px 24px; }
  .contact-band { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px; background: var(--ink); border-top: 1px solid var(--ink-line);
  color: var(--gray); font-size: 11.5px; letter-spacing: .05em;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.footer a { color: var(--gray-2); transition: color var(--dur-fast); }
.footer a:hover { color: var(--fuchsia-glow); }
.footer-links { display: inline-flex; gap: 24px; flex-wrap: wrap; }
.footer-credit { opacity: .6; font-size: 10.5px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
