/* ─── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:         #e0b2b2;
  --rose-light:   #f0d0d0;
  --rose-pale:    #ffefef;
  --rose-deep:    #b07878;
  --rose-dark:    #7a4a4f;
  --cream:        #f1e3de;
  --beige:        #ffefef;
  --beige-mid:    #e8d5d0;
  --dark:         #7a4a4f;
  --dark-warm:    #5e3840;
  --text:         #3a2428;
  --text-mid:     #5a3c40;
  --text-light:   #9a7878;
  --white:        #ffffff;
  --gold:         #c4a05a;
  --radius:       10px;
  --T:            0.38s cubic-bezier(.4,0,.2,1);
}

/* Scroll fluide uniquement si l'utilisateur ne demande pas de réduire les mouvements */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}


/* Titles = Playfair Display */
h1, h2, h3, h4, .display {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.12;
}

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

/* ─── <picture> transparent pour le layout ───────────
   L'<img> enfant se comporte comme s'il était l'élément direct.
   Garantit que les règles CSS (width, animation, flex…) s'appliquent
   correctement sans interférence du wrapper <picture>.
   ──────────────────────────────────────────────────── */
picture { display: contents; }

/* ─── Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; }
}

/* ─── Label / Divider ────────────────────────────────── */
.label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 16px;
}
.divider { width: 48px; height: 1.5px; background: var(--rose); margin: 22px 0; }
.divider.center { margin: 22px auto; }
.divider.light { background: rgba(255,255,255,.35); }

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  padding: 15px 38px;
  transition: all var(--T);
}
.btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

.btn-rose {
  background: var(--rose-deep);
  color: var(--white);
  box-shadow: 0 4px 22px rgba(168,95,88,.35);
}
.btn-rose:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(122,58,53,.38); }
.hero-left .btn-rose { background: var(--rose); color: var(--dark); box-shadow: 0 4px 22px rgba(224,178,178,.25); }
.hero-left .btn-rose:hover { background: var(--white); color: var(--dark); box-shadow: 0 8px 32px rgba(255,255,255,.22); transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--beige-mid);
}
.btn-outline-dark:hover { border-color: var(--rose); color: var(--rose-deep); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--rose-deep);
}
.btn-white:hover { background: var(--rose-pale); transform: translateY(-2px); }

/* ─── NAV ────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--T), padding var(--T), box-shadow var(--T);
}
.nav-logo img {
  display: block;
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
  transition: opacity var(--T);
}
.nav-logo:hover img { opacity: 1; }
nav.scrolled {
  background: rgba(90, 50, 58, .97);
  backdrop-filter: blur(16px);
  padding: 12px 60px;
  box-shadow: 0 2px 30px rgba(0,0,0,.22);
}

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: .73rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--T);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--rose-light);
  transition: width var(--T);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--rose-deep) !important;
  color: var(--white) !important;
  padding: 9px 24px;
  border-radius: 50px;
  font-size: .7rem !important;
  font-weight: 500 !important;
  transition: background var(--T) !important;
}
.nav-cta:hover { background: var(--rose-dark) !important; }
.nav-cta::after { display: none !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 301;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: var(--T);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO — split layout ────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-left {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 70px 80px;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,144,138,.12);
  bottom: -200px; left: -180px;
  pointer-events: none;
}
.hero-left::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,144,138,.08);
  top: 80px; right: -120px;
  pointer-events: none;
}
.hero-logo2 {
  width: 280px;
  height: auto;          /* ratio respecté quel que soit width="…" HTML */
  margin-bottom: 32px;
  animation: fadeUp .9s ease both;
  filter: brightness(0) invert(1);
  opacity: .82;
}

.hero-tagline {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.92);
  letter-spacing: .01em;
  line-height: 1.55;
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 3px solid var(--rose-light);
  animation: fadeUp .9s .1s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  animation: fadeUp .9s .25s ease both;
}
.hero-title em { font-style: italic; color: var(--rose-light); }
.hero-sub {
  margin-top: 24px;
  font-size: .88rem;
  line-height: 1.9;
  color: rgba(255,255,255,.55);
  animation: fadeUp .9s .4s ease both;
}
.hero-actions {
  margin-top: 42px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .9s .55s ease both;
}
.hero-reviews {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp .9s .68s ease both;
}
.stars-gold { color: var(--gold); letter-spacing: 2px; font-size: .88rem; }
.review-text { font-size: .73rem; color: rgba(255,255,255,.45); letter-spacing: .05em; }
.review-text strong { color: rgba(255,255,255,.7); font-weight: 400; }

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: scaleIn 1.4s ease both;
}
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(28,18,16,.35) 0%, transparent 50%);
}

@keyframes fadeUp  { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
@keyframes scaleIn { from { transform:scale(1.06); } to { transform:scale(1); } }
@keyframes spin    { to { transform:rotate(360deg); } }

/* ─── SECTION VIDÉO ──────────────────────────────────── */
#video-showcase {
  background: var(--dark-warm);
  padding: 110px 60px;
  position: relative;
  overflow: hidden;
}
#video-showcase::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(201,144,138,.06);
  top: -300px; right: -200px;
  pointer-events: none;
}
.video-showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}
.video-showcase-text { position: relative; z-index: 1; }
.video-showcase-text h2 {
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
}
.video-showcase-text h2 em { font-style: italic; color: var(--rose-light); }
.video-showcase-text p {
  margin-top: 22px;
  font-size: .88rem;
  line-height: 1.9;
  color: rgba(255,255,255,.5);
}
.video-showcase-text .divider { background: rgba(255,255,255,.2); margin: 26px 0; }
.video-showcase-text .label { color: var(--rose-light); }
.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(201,144,138,.12);
  border: 1px solid rgba(201,144,138,.25);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-top: 30px;
}
.video-badge svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }
.video-player-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9/16;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  z-index: 1;
}
.video-player-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.video-player-rim {
  position: absolute; inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(201,144,138,.18);
  pointer-events: none;
}

/* ─── ABOUT ──────────────────────────────────────────── */
#about {
  background: var(--cream);
  padding: 110px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1280px;
  margin: 0 auto;
}
.about-visuals { overflow: hidden; }
.about-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-content {
  padding: 40px 70px 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content h2 { font-size: clamp(2.4rem, 3.2vw, 3.4rem); color: var(--text); }
.about-content h2 em { font-style: italic; color: var(--rose-deep); }
.about-body {
  margin-top: 22px;
  font-size: .9rem;
  line-height: 1.95;
  color: var(--text-mid);
}
.about-philosophy {
  margin-top: 28px;
  padding: 22px 28px;
  border-left: 3px solid var(--rose);
  background: var(--rose-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about-philosophy p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.value-item { display: flex; gap: 13px; align-items: flex-start; }
.value-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--rose-pale);
  border: 1px solid var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 15px; height: 15px; stroke: var(--rose-deep); fill: none; stroke-width: 1.8; }
.value-item h4 { font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 500; color: var(--text); margin-bottom: 2px; }
.value-item p { font-size: .78rem; line-height: 1.65; color: var(--text-light); }

/* ─── SERVICES ───────────────────────────────────────── */
#services { background: var(--dark); padding: 110px 60px; }
.services-header {
  max-width: 620px;
  margin: 0 auto 72px;
  text-align: center;
}
.services-header h2 { color: var(--white); font-size: clamp(2.4rem, 3.5vw, 3.6rem); }
.services-header h2 em { font-style: italic; color: var(--rose-light); }
.services-header p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.9; margin-top: 18px; }

.services-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto 20px;
}
.service-featured-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: default;
  contain: layout style;
}
.service-featured-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
  will-change: transform;
}
.service-featured-card:hover img { transform: scale(1.05); }
.service-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,10,8,.85) 0%, rgba(20,10,8,.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 32px;
  transition: background var(--T);
}
.service-featured-card:hover .service-featured-overlay {
  background: linear-gradient(to top, rgba(20,10,8,.9) 0%, rgba(20,10,8,.3) 70%, transparent 100%);
}
.service-featured-brand {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose-light);
  border: 1px solid rgba(201,144,138,.4);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.service-featured-overlay h3 { font-size: 1.6rem; color: var(--white); margin-bottom: 8px; }
.service-featured-overlay p { font-size: .8rem; color: rgba(255,255,255,.68); line-height: 1.7; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
}
.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: all var(--T);
  contain: layout style;
}
.service-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,144,138,.3);
  transform: translateY(-3px);
}
.service-card-img {
  width: 100%; height: 155px;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
  will-change: transform;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-body { padding: 24px; }
.service-card-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201,144,138,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card-icon svg { width: 18px; height: 18px; stroke: var(--rose-light); fill: none; stroke-width: 1.6; }
.service-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.service-card p { font-size: .78rem; line-height: 1.8; color: rgba(255,255,255,.48); }

.services-cta { text-align: center; margin-top: 54px; }

/* ─── Address tooltip ────────────────────────────────── */
.address-tip-wrap { position: relative; }
.location-tooltip {
  position: absolute;
  left: 0; top: calc(100% + 10px);
  z-index: 50;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  padding: 6px;
  width: 520px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .28s ease, transform .28s ease;
}
.location-tooltip img { width: 100%; height: auto; border-radius: 6px; display: block; }
.address-tip-wrap:hover .location-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.show-map-btn {
  display: none;
  margin-top: 10px;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid rgba(201,144,138,.45);
  color: var(--rose-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .72rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .1em;
  cursor: pointer;
  transition: background var(--T), border-color var(--T);
}
.show-map-btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.show-map-btn:hover { background: rgba(201,144,138,.1); border-color: var(--rose); }
.location-map-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, margin-top .45s ease;
  margin-top: 0;
}
.location-map-expand.open { max-height: 280px; margin-top: 12px; }
.location-map-expand img { width: 100%; height: auto; border-radius: 8px; display: block; }
@media (max-width: 768px) {
  .location-tooltip { display: none !important; }
  .show-map-btn { display: inline-flex; }
}

/* ─── CITATION BANDEAU ────────────────────────────────── */
#quote {
  background: var(--rose-deep);
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#quote::before {
  content: '\275D';
  font-family: Georgia, serif;
  font-size: 20rem;
  color: rgba(255,255,255,.06);
  position: absolute;
  top: -50px; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
  position: relative; z-index: 1;
}
.quote-author {
  margin-top: 26px;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
  position: relative; z-index: 1;
}
.quote-author::before { content: '— '; }

/* ─── RESERVATION ────────────────────────────────────── */
#reservation { background: var(--cream); padding: 110px 60px; }
.reservation-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reservation-text h2 { font-size: clamp(2.2rem, 3vw, 3.2rem); color: var(--text); }
.reservation-text h2 em { font-style: italic; color: var(--rose-deep); }
.reservation-text p { font-size: .88rem; line-height: 1.95; color: var(--text-mid); margin-top: 18px; }

.salonkee-card {
  background: var(--white);
  border-radius: 18px;
  padding: 42px 40px;
  box-shadow: 0 8px 50px rgba(0,0,0,.08);
  border: 1px solid var(--beige);
}
.salonkee-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.salonkee-dot {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--rose-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.salonkee-dot svg { width: 22px; height: 22px; stroke: var(--rose-deep); fill: none; stroke-width: 1.8; }
.salonkee-header h3 { font-size: 1.25rem; color: var(--text); }
.salonkee-header span { font-size: .75rem; color: var(--text-light); }
.salonkee-card p { font-size: .85rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }

.res-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.res-feat { display: flex; align-items: center; gap: 10px; font-size: .78rem; color: var(--text-mid); }
.res-feat-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.res-feat-dot svg { width: 13px; height: 13px; stroke: var(--rose-deep); fill: none; stroke-width: 2; }

.btn-salonkee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--dark);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: all var(--T);
}
.btn-salonkee:hover { background: var(--rose-deep); transform: translateY(-2px); }
.btn-salonkee svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.btn-tarifs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 12px;
  transition: color var(--T);
}
.btn-tarifs:hover { color: var(--rose-deep); }
.btn-tarifs svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ─── ÉQUIPE ─────────────────────────────────────────── */
#team { background: var(--dark-warm); padding: 110px 60px; }
.team-header { max-width: 520px; margin: 0 auto 70px; text-align: center; }
.team-header h2 { color: var(--white); font-size: clamp(2.4rem, 3.5vw, 3.4rem); }
.team-header h2 em { font-style: italic; color: var(--rose-light); }
.team-header p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.85; margin-top: 18px; }
.team-header .label { color: var(--rose-light); }
.team-header .divider { background: rgba(255,255,255,.2); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.team-card { text-align: center; }
.team-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  margin-bottom: 20px;
  background: var(--dark);
}
.team-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .8s ease;
  will-change: transform;
}
.team-card:hover .team-photo-wrap img { transform: scale(1.05); }
.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(122,58,53,.8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--T);
  display: flex; align-items: flex-end;
  padding: 22px;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-overlay p { color: var(--white); font-size: .76rem; line-height: 1.65; text-align: left; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); }
.team-role {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-top: 5px;
  line-height: 1.6;
}

/* ─── AVIS ───────────────────────────────────────────── */
#avis { background: var(--cream); padding: 110px 60px; text-align: center; }
.avis-header { max-width: 480px; margin: 0 auto 54px; }
.avis-header h2 { font-size: clamp(2.2rem, 3vw, 3rem); color: var(--text); }
.avis-header h2 em { font-style: italic; color: var(--rose-deep); }

.avis-score {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 60px;
  padding: 16px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  margin-bottom: 50px;
}
.avis-num { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--text); line-height: 1; }
.avis-stars-big { color: var(--gold); font-size: 1.05rem; letter-spacing: 3px; }
.avis-count { font-size: .72rem; color: var(--text-light); margin-top: 2px; }

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1020px;
  margin: 0 auto 46px;
}
.avis-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  transition: all var(--T);
}
.avis-card:hover {
  border-color: var(--rose-light);
  box-shadow: 0 8px 36px rgba(0,0,0,.07);
  transform: translateY(-3px);
}
.avis-card-stars { color: var(--gold); font-size: .78rem; letter-spacing: 2px; margin-bottom: 14px; }
.avis-card p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .92rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.avis-card-author { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); }
.avis-card-source { font-size: .62rem; color: var(--rose); margin-top: 3px; }

/* ─── BON CADEAU ─────────────────────────────────────── */
#cadeau {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 560px;
  display: flex;
  align-items: center;
}
#cadeau .cadeau-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
#cadeau .cadeau-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(20,10,8,.88) 0%, rgba(20,10,8,.6) 55%, rgba(20,10,8,.3) 100%);
}
.cadeau-content {
  position: relative;
  z-index: 2;
  padding: 90px 70px;
  max-width: 680px;
}
.cadeau-content .label { color: var(--rose-light); }
.cadeau-content h2 { font-size: clamp(2.4rem, 3.5vw, 3.6rem); color: var(--white); }
.cadeau-content h2 em { font-style: italic; color: var(--rose-light); }
.cadeau-content p {
  margin-top: 18px;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.9;
  max-width: 480px;
}
.cadeau-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── CONTACT ────────────────────────────────────────── */
#contact { background: var(--white); padding: 110px 60px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info h2 { font-size: clamp(2.2rem, 3vw, 3rem); color: var(--text); }
.contact-info h2 em { font-style: italic; color: var(--rose-deep); }

.info-block { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rose-pale);
  border: 1px solid var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; stroke: var(--rose-deep); fill: none; stroke-width: 1.6; }
.info-block h4 { font-family: 'DM Sans', sans-serif; font-size: .66rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 6px; }
.info-block p { font-size: .87rem; line-height: 1.85; color: var(--text-mid); }
.info-block a { color: var(--text-mid); transition: color var(--T); }
.info-block a:hover { color: var(--rose-deep); }

.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 3px 18px; font-size: .85rem; color: var(--text-mid); }
.hours-closed { color: var(--text-light); font-style: italic; }

.location-tip {
  margin-top: 10px;
  padding: 11px 15px;
  background: var(--rose-pale);
  border: 1px solid var(--rose-light);
  border-radius: 8px;
  font-size: .78rem;
  color: var(--text-mid);
  display: flex; gap: 8px; align-items: flex-start; line-height: 1.6;
}
.location-tip svg { width: 14px; height: 14px; stroke: var(--rose); fill: none; flex-shrink: 0; margin-top: 2px; }

.contact-form-wrap h2 { font-size: clamp(2.2rem, 3vw, 3rem); color: var(--text); }
.contact-form-wrap h2 em { font-style: italic; color: var(--rose-deep); }
.contact-note { font-size: .82rem; color: var(--text-light); line-height: 1.8; margin-bottom: 28px; margin-top: 6px; }
.contact-note a { color: var(--rose-deep); border-bottom: 1px solid var(--rose-light); transition: border-color var(--T); }
.contact-note a:hover { border-color: var(--rose-deep); }
.form-submit { display: flex; justify-content: flex-end; margin-top: 8px; }

/* ─── Formulaire (contact) ───────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }

label {
  display: block;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 7px;
}
input, textarea, select {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--beige);
  border-radius: 8px;
  padding: 12px 15px;
  font-family: 'DM Sans', sans-serif;
  font-size: .87rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color var(--T), box-shadow var(--T);
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,144,138,.14);
}
textarea { resize: vertical; min-height: 110px; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer { background: var(--dark); padding: 70px 60px 40px; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo img {
  display: block;
  height: 62px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .55;
  margin-bottom: 18px;
}
.footer-logo p { font-size: .8rem; color: rgba(255,255,255,.38); line-height: 1.85; }
.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--T);
}
.social-links a:hover { border-color: var(--rose-light); background: rgba(201,144,138,.1); }
.social-links svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.6); fill: none; stroke-width: 1.5; }
.social-links a:hover svg { stroke: var(--rose-light); }

.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: .62rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .82rem; color: rgba(255,255,255,.48); transition: color var(--T); }
.footer-col a:hover { color: var(--rose-light); }

.footer-bottom {
  max-width: 1100px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
  color: rgba(255,255,255,.25);
}

/* ─── BANNIÈRE LPD ──────────────────────────────────── */
#privacyBanner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(20,10,12,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,144,138,.2);
  padding: 18px 40px;
  animation: bannerIn .45s ease;
}
@keyframes bannerIn { from { transform: translateY(100%); } to { transform: translateY(0); } }
.privacy-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.privacy-banner-inner p { font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.7; flex: 1; min-width: 260px; }
.privacy-banner-inner strong { color: rgba(255,255,255,.85); }
.privacy-banner-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.privacy-link { font-size: .72rem; color: var(--rose-light); text-decoration: underline; text-underline-offset: 3px; letter-spacing: .06em; }
.privacy-accept {
  background: var(--rose-deep);
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
}
.privacy-accept:hover { background: var(--rose-dark); }
@media (max-width: 600px) {
  #privacyBanner { padding: 16px 20px; }
  .privacy-banner-inner { gap: 14px; }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 50vh; }
  .hero-left { padding: 120px 50px 60px; }
  .video-showcase-inner { grid-template-columns: 1fr; gap: 50px; }
  .video-player-wrap { aspect-ratio: 16/9; max-width: 600px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visuals { height: 420px; }
  .about-content { padding: 40px; }
  .services-featured { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reservation-inner { grid-template-columns: 1fr; gap: 50px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; justify-content: space-between; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(90,50,58,.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 300;
    overflow-y: auto;   /* scroll interne si trop de liens */
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { display: flex; }
  .nav-links.open a { font-size: 1.05rem; color: rgba(255,255,255,.85); }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  section { padding: 80px 24px; }
  #services { padding: 80px 24px; }
  #team { padding: 80px 24px; }
  #avis { padding: 80px 24px; }
  #contact { padding: 80px 24px; }
  footer { padding: 60px 24px 30px; }
  .hero-left { padding: 110px 30px 60px; }
  #video-showcase { padding: 80px 24px; }
  .services-featured { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .avis-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cadeau-content { padding: 60px 30px; }
  .about-values { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
}
