/* ═══════════════════════════════════════════════════════════
   LA VILLA DES CHARMES – Design System
   Style: Luxury Dark Romantic · Liquid Glass
   Fonts: Playfair Display + Inter (Google Fonts)
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  /* Dark palette */
  --dark:      #0c0a0e;
  --dark-2:    #14111a;
  --dark-3:    #1c1823;
  --surface:   #241f2c;
  --surface-2: #2d2737;

  /* Accent */
  --gold:       #c9a862;
  --gold-light: #e0c07e;
  --gold-dim:   rgba(201,168,98,.18);
  --gold-line:  rgba(201,168,98,.22);
  --rose:       #c25474;
  --rose-dim:   rgba(194,84,116,.15);

  /* Text */
  --text:        #ede8e2;
  --text-muted:  #9e9898;
  --text-subtle: rgba(237,232,226,.55);

  /* Light (SEO article) */
  --paper: #f7f4f0;
  --ink:   #111111;
  --ink-2: #2a2220;

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max:       1180px;
  --r-sm:      8px;
  --r:         14px;
  --r-lg:      22px;
  --r-xl:      32px;

  /* Motion */
  --ease:       cubic-bezier(.4,0,.2,1);
  --ease-out:   cubic-bezier(.0,0,.2,1);
  --t-fast:     150ms;
  --t:          260ms;
  --t-slow:     420ms;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }
p  { margin: 0 0 1rem; }
h1,h2,h3,h4 { margin: 0 0 1rem; line-height: 1.1; font-family: var(--font-display); }

/* ─── UTILITIES ──────────────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: min(var(--max), 100% - 2rem);
  margin-inline: auto;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .75rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: .5rem;
}

/* ─── SKIP LINK ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .75rem 1.25rem;
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  border-radius: 0 0 var(--r) var(--r);
  transition: top var(--t) var(--ease);
}
.skip-link:focus { top: 0; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--r);
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201,168,98,.28);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(201,168,98,.44);
}

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold-line);
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem max(1rem, calc((100vw - var(--max)) / 2));
  background: rgba(12,10,14,.88);
  border-bottom: 1px solid var(--gold-line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: padding var(--t) var(--ease), background var(--t) var(--ease);
}

.site-header.scrolled {
  padding-top: .65rem;
  padding-bottom: .65rem;
  background: rgba(12,10,14,.96);
}

.brand {
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 480px) {
  .brand-logo { height: 30px; }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: .5rem;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.menu-toggle:not(:has(span)) {
  flex-direction: row;
  align-items: center;
  width: auto;
  min-width: 44px;
  padding-inline: .85rem;
  color: var(--text);
  font: 600 .82rem/1 var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav,
.main-menu { margin-left: auto; }
.main-nav ul,
.main-menu ul {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.main-nav a,
.main-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: .4rem .75rem;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(237,232,226,.78);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.main-nav a:hover, .main-nav a:focus-visible,
.main-menu a:hover, .main-menu a:focus-visible {
  color: var(--text);
  background: rgba(255,255,255,.07);
}
.main-nav a.nav-cta,
.main-menu li:last-child a {
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  padding: .45rem 1.1rem;
}
.main-nav a.nav-cta:hover,
.main-menu li:last-child a:hover {
  background: var(--gold-light);
  color: var(--dark);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 max(1.5rem, calc((100vw - var(--max)) / 2)) clamp(3.5rem, 8vh, 6rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s var(--ease-out);
}
.hero.loaded .hero-bg img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(12,10,14,.93) 0%, rgba(12,10,14,.68) 55%, rgba(12,10,14,.22) 100%),
    linear-gradient(to top, rgba(12,10,14,.85) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge-wrap {
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-badge-wrap img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.5));
}
.hero-badge-wrap a img {
  width: 128px;
  height: auto;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .5rem;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(237,232,226,.72);
  margin: 0 0 .25rem;
  line-height: 1.2;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .06em;
  margin: 0 0 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.0;
  margin: 0 0 2rem;
  letter-spacing: -.01em;
}
.hero-title span {
  display: block;
  color: var(--gold-light);
  font-weight: 500;
  font-size: .72em;
}
.hero-title em {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: .52em;
  color: rgba(237,232,226,.62);
  letter-spacing: .04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 0;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: .6rem;
}

.hero-social-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  letter-spacing: .04em;
  text-decoration: none;
  transition: color var(--t);
}

.hero-social-link:hover { color: var(--gold); }

.hero-social-link svg { flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: max(1.5rem, calc((100vw - var(--max)) / 2));
  z-index: 2;
  color: var(--gold);
  opacity: .7;
  transition: opacity var(--t), transform var(--t);
  animation: bob 2s ease-in-out infinite;
}
.hero-scroll:hover { opacity: 1; transform: translateY(3px); }

@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

/* Hero entrance animation */
.animate-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn .7s var(--ease-out) forwards;
}
.animate-hero:nth-child(1) { animation-delay: .1s; }
.animate-hero:nth-child(2) { animation-delay: .2s; }
.animate-hero:nth-child(3) { animation-delay: .3s; }
.animate-hero:nth-child(4) { animation-delay: .35s; }
.animate-hero:nth-child(5) { animation-delay: .42s; }
.animate-hero:nth-child(6) { animation-delay: .52s; }
.animate-hero:nth-child(7) { animation-delay: .62s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SCROLL ANIMATIONS (JS activates) ──────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── INTRO ──────────────────────────────────────────────── */
.intro {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--dark-2);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.intro-text h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.intro-text p { color: var(--text-muted); }
.intro-text p:last-of-type { margin-bottom: 2rem; }
.intro-text .btn { margin-top: .25rem; }

.intro-media {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.media-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  border: 1px solid var(--gold-line);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.media-frame:hover img { transform: scale(1.03); }

.media-score {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--surface);
  border-radius: var(--r);
  border: 1px solid var(--gold-line);
}
.media-score-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .06em; }
.media-score p { margin: 0; font-size: .88rem; color: var(--text-muted); }
.media-score p strong { color: var(--text); }

/* ─── FEATURES ───────────────────────────────────────────── */
.features {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--dark-3);
}
.features .section-header h2 { color: var(--text); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: background var(--t) var(--ease);
  cursor: default;
}
.feature-card:hover { background: var(--surface-2); }

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: var(--r-sm);
  color: var(--gold);
  flex-shrink: 0;
}
.feature-icon svg { width: 24px; height: 24px; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.feature-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ─── SEO CONTENT ────────────────────────────────────────── */
.seo-content {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--dark-2);
}

.seo-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}
.seo-block:last-child { margin-bottom: 0; }
.seo-block-reverse { direction: rtl; }
.seo-block-reverse > * { direction: ltr; }

.seo-block-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.seo-block-text h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 1rem;
}
.seo-block-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 52ch;
}
.seo-block-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 56px rgba(0,0,0,.45);
  border: 1px solid var(--gold-line);
}
.seo-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.seo-block-image:hover img { transform: scale(1.04); }

/* ─── VALUES ─────────────────────────────────────────────── */
.values {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.values::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(201,168,98,.04) 0%, transparent 65%);
  pointer-events: none;
}

.values .section-header h2 { color: var(--text); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.value-card:hover {
  background: rgba(201,168,98,.06);
  border-color: rgba(201,168,98,.4);
  transform: translateY(-4px);
}

.value-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: 50%;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}
.value-icon svg { width: 28px; height: 28px; }

.value-card h3 {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: .75rem;
}
.value-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  max-width: 30ch;
  margin-inline: auto;
}

/* ─── REVIEWS ────────────────────────────────────────────── */
.reviews {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--dark-3);
}
.reviews .section-header { margin-bottom: 1.5rem; }
.reviews .section-header h2 { color: var(--text); }

.reviews-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1rem;
}
.reviews-excellent {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.reviews-stars {
  display: flex;
  gap: .2rem;
  color: var(--gold);
}
.reviews-stars svg { width: 20px; height: 20px; }
.reviews-count {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
}

@keyframes avis-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.avis-link {
  background: linear-gradient(90deg, var(--gold) 20%, #fff8e1 50%, var(--gold) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201,168,98,.45);
  animation: avis-shimmer 2.4s linear infinite;
  font-weight: 600;
  cursor: pointer;
}
.avis-link:hover {
  text-decoration-color: var(--gold);
}

.reviews-platforms {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: center;
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .5rem;
  flex-wrap: wrap;
}
.platform-badge {
  padding: .3rem .75rem;
  background: var(--surface);
  border: 1px solid var(--gold-line);
  border-radius: 100px;
  font-size: .8rem;
  color: var(--gold);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.review-card {
  padding: 1.75rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.review-card:hover {
  background: rgba(255,255,255,.055);
  border-color: var(--gold-line);
  transform: translateY(-3px);
}
.review-header {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.review-author {
  font-weight: 600;
  font-size: .92rem;
  color: var(--text);
  margin: 0 0 .2rem;
}
.review-stars {
  color: var(--gold);
  font-size: .88rem;
  letter-spacing: .06em;
}
.review-text {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── PRICING ────────────────────────────────────────────── */
.pricing {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--dark);
}
.pricing .section-header h2 { color: var(--text); }
.pricing-note {
  font-size: .85rem;
  color: var(--text-muted);
  margin: -.25rem 0 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.pricing-card {
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--t), background var(--t);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.055);
}

.pricing-featured {
  background: rgba(201,168,98,.07);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 24px 48px rgba(201,168,98,.15);
}

.pricing-badge-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  translate: -50% 0;
  padding: .25rem .9rem;
  background: var(--gold);
  color: var(--dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.pricing-price {
  margin: 0;
  line-height: 1;
}
.price-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}
.price-unit {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-card ul {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}
.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .86rem;
  color: var(--text-muted);
}
.pricing-card li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-size: .75rem;
  margin-top: .18em;
}

.pricing-promo {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(201,168,98,.08);
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  font-size: .9rem;
  color: var(--text-muted);
}
.pricing-promo svg { color: var(--gold); flex-shrink: 0; }
.pricing-promo strong { color: var(--gold); }

.pricing-gift {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--rose-dim);
  border: 1px solid rgba(194,84,116,.2);
  border-radius: var(--r);
  font-size: .9rem;
  color: var(--text-muted);
}
.pricing-gift svg { color: var(--rose); flex-shrink: 0; margin-top: .15rem; }
.pricing-gift a { color: var(--gold); text-decoration: underline; text-underline-offset: .18em; }
.pricing-gift p { margin: 0; }

/* Gift badge inside pricing card */
.pricing-offer-badge {
  display: flex; align-items: center; gap: .5rem;
  background: linear-gradient(90deg, rgba(201,168,98,.18), rgba(201,168,98,.06));
  border: 1px solid var(--gold); border-radius: 8px;
  padding: .55rem .9rem; color: var(--gold); font-size: .85rem; font-weight: 500;
  margin: .25rem 0;
}
.pricing-offer-badge svg { flex-shrink: 0; }
.pricing-offer-badge strong { font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }

/* Dual price row for weekend */
.pricing-dual-price { display: flex; flex-direction: column; gap: .2rem; margin: .1rem 0; }
.pricing-dual-price .dp-row { display: flex; justify-content: space-between; align-items: baseline; }
.pricing-dual-price .dp-row .dp-day { font-size: .8rem; color: var(--text-muted); }
.pricing-dual-price .dp-row .dp-val { font-family: var(--font-display); font-size: 1.7rem; color: var(--text); line-height: 1; }
.pricing-dual-price .dp-row .dp-val sup { font-size: .8rem; font-family: var(--font-body); color: var(--gold); }
.pricing-dual-price .dp-row.dp-highlight .dp-val { font-size: 2rem; color: var(--gold); }

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery {
  background: var(--dark-2);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.gallery-head {
  text-align: center;
  padding: 0 1rem clamp(2rem, 4vw, 3.5rem);
}
.gallery-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text);
  margin-bottom: 1.25rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 2px;
  background: var(--dark);
}

.gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.gallery-item.gallery-span2 {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(12,10,14,.75) 0%, transparent 50%);
  font-family: var(--font-display);
  font-size: .92rem;
  color: rgba(255,255,255,.85);
  opacity: 0;
  transition: opacity var(--t);
}
.gallery-item:hover figcaption { opacity: 1; }

/* ─── LOCAL LINKS ────────────────────────────────────────── */
.local-links {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.local-links-title {
  text-align: center;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.local-links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
}
.local-links-grid a {
  padding: .55rem 1.1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  font-size: .84rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.local-links-grid a:hover, .local-links-grid a:focus-visible {
  color: var(--gold);
  background: var(--gold-dim);
  border-color: var(--gold-line);
}

/* SEO pages inherit the V2 identity without changing indexed copy */
.hero:has(> .hero-copy) {
  min-height: min(760px, 92svh);
  align-items: flex-end;
  padding-top: 9rem;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background: var(--dark);
}
.hero:has(> .hero-copy)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(12,10,14,.96) 0%, rgba(12,10,14,.72) 58%, rgba(12,10,14,.28) 100%),
    linear-gradient(to top, rgba(12,10,14,.9) 0%, rgba(12,10,14,.08) 72%);
  pointer-events: none;
}
.hero > img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .78;
  filter: saturate(.92) contrast(1.05);
  transform: scale(1.03);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}
.hero-copy h1 {
  font-size: clamp(2.35rem, 7vw, 5.2rem);
  color: #fff;
  letter-spacing: 0;
  margin-bottom: 1.15rem;
}
.hero-copy h2 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--gold-light);
  font-weight: 500;
}
.hero-copy h3,
.hero-copy h4 {
  color: var(--gold);
}
.hero-copy p {
  max-width: 680px;
  color: rgba(237,232,226,.76);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}
.hero-copy p:first-of-type {
  color: var(--gold);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.content-copy {
  width: min(920px, 100% - 2rem);
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: rgba(237,232,226,.78);
}
.content-copy h1,
.content-copy h2,
.content-copy h3,
.content-copy h4 {
  color: var(--text);
  letter-spacing: 0;
}
.content-copy h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}
.content-copy h2 {
  margin-top: 2.6rem;
  font-size: clamp(1.65rem, 3.4vw, 2.55rem);
  color: var(--gold-light);
}
.content-copy h3 {
  margin-top: 2rem;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  color: var(--gold);
}
.content-copy p,
.content-copy li {
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.85;
}
.content-copy p {
  margin-bottom: 1.2rem;
}
.content-copy a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: .22em;
}
.content-copy ul,
.content-copy ol {
  list-style: none;
  display: grid;
  gap: .7rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
}
.content-copy li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(237,232,226,.8);
}
.content-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px var(--gold-dim);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  padding: 0;
  background: var(--dark);
}
.image-grid figure {
  margin: 0;
  min-height: clamp(220px, 28vw, 380px);
  overflow: hidden;
  background: var(--dark-3);
}
.image-grid figure:nth-child(1),
.image-grid figure:nth-child(6) {
  grid-column: span 2;
}
.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease), filter .55s var(--ease);
}
.image-grid figure:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.local-links > a {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  margin: .3rem;
  padding: .55rem 1.1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  color: var(--text-muted);
  font-size: .84rem;
  cursor: pointer;
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.local-links > a:hover,
.local-links > a:focus-visible {
  color: var(--gold);
  background: var(--gold-dim);
  border-color: var(--gold-line);
}
.local-links:has(> a)::before {
  content: "Autour de La Villa des Charmes";
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

.site-footer > div:not(.footer-inner):not(.footer-bottom) {
  display: grid;
  gap: .65rem;
  padding: clamp(2.5rem, 5vw, 4rem) max(1.5rem, calc((100vw - var(--max)) / 2)) 1rem;
}
.site-footer > div:not(.footer-inner):not(.footer-bottom) > p {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.site-footer > div:not(.footer-inner):not(.footer-bottom) ul {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1rem;
}
.site-footer > div:not(.footer-inner):not(.footer-bottom) a,
.site-footer > address a {
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.site-footer > div:not(.footer-inner):not(.footer-bottom) a:hover,
.site-footer > div:not(.footer-inner):not(.footer-bottom) a:focus-visible,
.site-footer > address a:hover,
.site-footer > address a:focus-visible {
  color: var(--gold);
}
.site-footer > address {
  display: grid;
  gap: .4rem;
  padding: 0 max(1.5rem, calc((100vw - var(--max)) / 2)) clamp(2.5rem, 5vw, 4rem);
  color: var(--text-muted);
  font-style: normal;
}
.site-footer > address p {
  margin: 0;
  font-size: .88rem;
}
.site-footer > p {
  margin: 0;
  padding: 1.15rem max(1.5rem, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255,255,255,.07);
  color: rgba(237,232,226,.38);
  font-size: .8rem;
  text-align: center;
}
.site-footer > p a {
  color: rgba(237,232,226,.55);
  transition: color var(--t-fast);
}
.site-footer > p a:hover,
.site-footer > p a:focus-visible {
  color: var(--gold);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--gold-line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 5rem) max(1.5rem, calc((100vw - var(--max)) / 2));
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 .4rem;
}
.footer-sub {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.footer-social {
  display: flex;
  gap: .65rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover, .footer-social a:focus-visible {
  color: var(--gold);
  background: var(--gold-dim);
  border-color: var(--gold-line);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.footer-nav a {
  font-size: .88rem;
  color: var(--text-muted);
  padding: .2rem 0;
  cursor: pointer;
  transition: color var(--t-fast);
}
.footer-nav a:hover, .footer-nav a:focus-visible { color: var(--gold); }

.footer-contact {
  font-style: normal;
}
.footer-contact p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: .65rem;
  line-height: 1.55;
}
.footer-contact a {
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--t-fast);
}
.footer-contact a:hover, .footer-contact a:focus-visible { color: var(--gold); }

.footer-bottom {
  padding: 1.25rem max(1.5rem, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(237,232,226,.38);
  margin: 0;
  text-align: center;
}
.footer-bottom a {
  color: rgba(237,232,226,.55);
  cursor: pointer;
  transition: color var(--t-fast);
}
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   STICKY BOOKING WIDGET (desktop – bottom right)
   ═══════════════════════════════════════════════════════════ */
.book-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 40;
  width: 280px;
  padding: 1.4rem 1.5rem 1.25rem;
  background: rgba(20, 17, 26, 0.92);
  border: 1px solid rgba(201,168,98,.45);
  border-radius: var(--r-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(201,168,98,.12),
    0 24px 56px rgba(0,0,0,.55),
    0 0 40px rgba(201,168,98,.08);
  display: flex;
  flex-direction: column;
  gap: .85rem;

  /* Always visible — dismiss only on close click */
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.book-widget.dismissed {
  opacity: 0;
  transform: translateY(12px) scale(.95);
  pointer-events: none;
}

/* Close button */
.book-widget-close {
  position: absolute;
  top: .7rem;
  right: .7rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.07);
  border: none;
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.book-widget-close:hover {
  background: rgba(255,255,255,.15);
  color: var(--text);
}

/* Availability row */
.book-widget-top {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding-right: 2rem;
}
.book-avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74,222,128,.6);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(74,222,128,.0); }
}
.book-avail-text {
  font-size: .76rem;
  font-weight: 500;
  color: #4ade80;
  letter-spacing: .02em;
}

/* Rating */
.book-widget-rating {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.book-stars { color: var(--gold); font-size: .9rem; letter-spacing: .05em; }
.book-rating-text { font-size: .76rem; color: var(--text-muted); }

/* Price */
.book-widget-price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  line-height: 1;
}
.book-price-from {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 400;
}
.book-price-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -.02em;
}
.book-price-unit {
  font-size: .78rem;
  color: var(--text-muted);
}

/* Actions row */
.book-widget-actions {
  display: flex;
  gap: .6rem;
  align-items: stretch;
}

/* Main CTA */
.book-widget-cta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1rem;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: .9rem;
  border-radius: var(--r);
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 4px 20px rgba(201,168,98,.35);
  position: relative;
  overflow: hidden;
}

/* Phone button */
.book-widget-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  flex-shrink: 0;
  border: 1.5px solid var(--gold-line);
  border-radius: var(--r);
  color: var(--gold);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.book-widget-call:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}
.book-widget-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .55s var(--ease);
}
.book-widget-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201,168,98,.5);
}
.book-widget-cta:hover::after {
  transform: translateX(100%);
}

/* Perks list */
.book-widget-perks {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  border-top: 1px solid rgba(201,168,98,.15);
  padding-top: .8rem;
  margin-top: -.1rem;
}
.book-widget-perks li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  color: var(--text-muted);
}
.book-widget-perks li svg { color: var(--gold); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   STICKY MOBILE BAR (bottom, full-width)
   ═══════════════════════════════════════════════════════════ */
.book-bar {
  display: none; /* shown on mobile via media query */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.25rem calc(.9rem + env(safe-area-inset-bottom, 0px));
  background: rgba(20,17,26,.96);
  border-top: 1px solid rgba(201,168,98,.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 -8px 32px rgba(0,0,0,.4);

  /* Always visible on mobile */
  opacity: 1;
  transform: translateY(0);
}

.book-bar-info {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.book-bar-price {
  font-size: .95rem;
  color: var(--text);
}
.book-bar-price strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 700;
}
.book-bar-stars {
  font-size: .82rem;
  color: var(--gold);
  letter-spacing: .06em;
}

.book-bar-cta {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--r);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(201,168,98,.4);
  transition: background var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.book-bar-cta:hover {
  background: var(--gold-light);
  transform: scale(1.02);
}

.book-bar-btns {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.book-bar-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--gold-line);
  border-radius: var(--r);
  color: var(--gold);
  flex-shrink: 0;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.book-bar-call:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

/* ─── FOCUS STATES ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ─── TABLET (≤1024px) ───────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gallery-item.gallery-span2 {
    grid-row: span 2;
    grid-column: span 2;
  }

  .image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ─── LARGE MOBILE (≤900px) ──────────────────────────────── */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .main-nav,
  .main-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem;
    background: rgba(12,10,14,.97);
    border-bottom: 1px solid var(--gold-line);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .main-nav.is-open,
  .main-menu.is-open { display: block; }
  .main-nav ul,
  .main-menu ul {
    flex-direction: column;
    gap: .3rem;
  }
  .main-nav a,
  .main-menu a { width: 100%; padding: .75rem 1rem; }
  .main-nav a.nav-cta,
  .main-menu li:last-child a { margin-top: .5rem; justify-content: center; }

  .intro-grid { grid-template-columns: 1fr; }
  .seo-block { grid-template-columns: 1fr; }
  .seo-block-reverse { direction: ltr; }
  .values-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ─── WIDGET MOBILE SWITCH ───────────────────────────────── */
@media (max-width: 768px) {
  .book-widget { display: none; }
  .book-bar { display: flex; }
  .site-footer { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
}

/* ─── MOBILE (≤640px) ────────────────────────────────────── */
@media (max-width: 640px) {
  .hero { align-items: center; padding-bottom: 4rem; }
  .hero-overlay {
    background:
      linear-gradient(rgba(12,10,14,.88), rgba(12,10,14,.72)),
      linear-gradient(to top, rgba(12,10,14,.95) 0%, transparent 60%);
  }
  .hero-title { font-size: clamp(2rem, 12vw, 3.2rem); }

  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }

  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: transparent;
    padding: 0 1rem;
  }
  .gallery .gallery-item,
  .gallery .gallery-item.gallery-span2 {
    grid-row: unset;
    grid-column: unset;
    height: auto;
    overflow: visible;
  }
  .gallery .gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: initial;
    aspect-ratio: auto;
    transform: none !important;
  }
  .gallery .gallery-item:hover img { transform: none !important; }
  .gallery .gallery-item figcaption { display: none; }

  .hero:has(> .hero-copy) {
    min-height: 78svh;
    align-items: flex-end;
    padding-top: 7rem;
  }
  .hero-copy p:first-of-type {
    letter-spacing: .08em;
  }
  .image-grid {
    grid-template-columns: 1fr;
  }
  .image-grid figure,
  .image-grid figure:nth-child(1),
  .image-grid figure:nth-child(6) {
    grid-column: auto;
    min-height: 240px;
  }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   URGENCY TICKER
   ═══════════════════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  background: rgba(201,168,98,.07);
  border-bottom: 1px solid var(--gold-line);
  padding: .7rem 0;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

/* fade edges */
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 100%);
}
.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--dark) 0%, transparent 100%);
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker 50s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: 0 2.25rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .05em;
  white-space: nowrap;
}

.ticker-sep {
  color: rgba(201,168,98,.28);
  font-size: .6rem;
  flex-shrink: 0;
}

.ticker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,.5);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .ticker-item { padding: 0 1.5rem; font-size: .74rem; }
  .ticker-wrap::before, .ticker-wrap::after { width: 50px; }
}

/* ═══════════════════════════════════════════════════════════
   STATS COUNTER SECTION
   ═══════════════════════════════════════════════════════════ */
.stats-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 100% at 15% 50%, rgba(201,168,98,.06) 0%, transparent 60%),
    radial-gradient(ellipse 55% 100% at 85% 50%, rgba(194,84,116,.04) 0%, transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: var(--dark-2);
  padding: clamp(2rem, 4vw, 3.25rem) 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background var(--t);
}
.stat-card:hover { background: var(--surface); }

.stat-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  translate: -50% 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(201,168,98,.14) 0%, transparent 70%);
  pointer-events: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 0 0 .6rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .25rem;
}

.stat-prefix {
  font-size: .75em;
  color: var(--gold-light);
  font-weight: 700;
  align-self: flex-start;
  padding-top: .08em;
}

.stat-unit {
  font-size: .4em;
  color: var(--gold-light);
  letter-spacing: .05em;
  font-weight: 500;
  align-self: center;
}

.stat-label {
  font-size: .82rem;
  color: var(--text-muted);
  letter-spacing: .03em;
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS CAROUSEL
   ═══════════════════════════════════════════════════════════ */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
}
.reviews-carousel:active { cursor: grabbing; }

.reviews-track {
  display: flex;
  gap: 1.25rem;
  transition: transform .5s var(--ease);
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}
.reviews-track:active { cursor: grabbing; }

.reviews-track .review-card {
  flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
  min-width: 0;
  position: relative;
}

.review-quote {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .2;
  margin: 0 0 -.5rem;
  font-style: normal;
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast), opacity var(--t-fast);
}
.carousel-btn:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: scale(1.1);
}
.carousel-btn:disabled {
  opacity: .3;
  cursor: default;
  transform: none !important;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,98,.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--t), transform var(--t), width var(--t);
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.4);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .reviews-track .review-card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }
}
@media (max-width: 640px) {
  .reviews-track .review-card {
    flex: 0 0 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   GALLERY LIGHTBOX
   ═══════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8,6,12,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.lightbox[hidden] { display: none; }

.lightbox.active {
  opacity: 1;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(960px, 100vw - 10rem);
  width: 100%;
}

.lightbox-content img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
  border: 1px solid var(--gold-line);
  animation: lbIn .25s var(--ease-out);
}

@keyframes lbIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-caption {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: .92rem;
  color: rgba(237,232,226,.55);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  transition: background var(--t-fast), transform var(--t-fast);
}
.lightbox-close:hover {
  background: rgba(255,255,255,.16);
  transform: scale(1.1) rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  transition: background var(--t-fast), transform var(--t-fast), opacity var(--t-fast);
}
.lightbox-nav:hover {
  background: rgba(201,168,98,.15);
  border-color: var(--gold-line);
  color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-nav:disabled {
  opacity: .25;
  cursor: default;
  transform: translateY(-50%) scale(1) !important;
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

@media (max-width: 640px) {
  .lightbox-content { max-width: 100vw - 2rem; }
  .lightbox-nav { display: none; }
  .lightbox-caption { font-size: .82rem; }
}

/* ═══ NOTIF NON FUMEUR ═══════════════════════════════════ */
.notif-nofumeur {
  position: fixed;
  top: 4.5rem;
  right: 1.25rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem .75rem .85rem;
  background: rgba(20,17,26,.92);
  border: 1px solid rgba(201,168,98,.3);
  border-radius: 12px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  max-width: 240px;
  pointer-events: auto;

  opacity: 0;
  transform: translateX(110%);
  transition: opacity .45s ease, transform .45s cubic-bezier(.22,1,.36,1);
}
.notif-nofumeur.show {
  opacity: 1;
  transform: translateX(0);
}
.notif-nofumeur.hide {
  opacity: 0;
  transform: translateX(110%);
}
.notif-nofumeur-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.notif-nofumeur-text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.notif-nofumeur-title {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.notif-nofumeur-sub {
  font-size: .72rem;
  color: var(--text-muted);
}
.notif-nofumeur-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: .2rem;
  margin-left: .2rem;
  line-height: 1;
  flex-shrink: 0;
  transition: color .15s;
}
.notif-nofumeur-close:hover { color: var(--text); }
