.lang-switcher {
  position: relative;
  z-index: 200;
}

.lang-current {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(200,169,107,0.25);
  border-radius: 100px;
  color: rgba(245,241,232,0.75);
  font-size: 0.68rem;
  font-family: var(--ff-sans, 'Inter', sans-serif);
  letter-spacing: 0.12em;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  white-space: nowrap;
}
.lang-current:hover {
  border-color: var(--gold, #C8A96B);
  color: var(--gold, #C8A96B);
}

.lang-globe { display: flex; align-items: center; opacity: 0.6; }

.lang-chevron {
  transition: transform 0.3s ease;
  opacity: 0.6;
}
.lang-current[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.lang-current[aria-expanded="true"] {
  border-color: var(--gold, #C8A96B);
  color: var(--gold, #C8A96B);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  background: rgba(20,20,20,0.97);
  border: 1px solid rgba(200,169,107,0.2);
  border-radius: 8px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.25s ease, visibility 0.25s, transform 0.25s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lang-dropdown.open {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-opt {
  display: flex; align-items: center; gap: 0.8rem;
  width: 100%;
  padding: 0.7rem 1.1rem;
  font-size: 0.78rem;
  font-family: var(--ff-sans, 'Inter', sans-serif);
  color: rgba(245,241,232,0.65);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid rgba(200,169,107,0.07);
  text-align: left;
}
.lang-opt:last-child { border-bottom: none; }
.lang-opt:hover { background: rgba(200,169,107,0.08); color: var(--cream, #F5F1E8); }
.lang-opt.active { color: var(--gold, #C8A96B); }
.lang-opt.active .lo-code { color: var(--gold, #C8A96B); }

.lo-code {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(245,241,232,0.35);
  min-width: 22px;
  transition: color 0.2s;
}
.lo-name { font-size: 0.8rem; }

/* RTL dropdown alignment fix */
[dir="rtl"] .lang-dropdown { right: auto; left: 0; transform-origin: top left; }

/* Mobile lang row */
.mobile-lang-row {
  display: flex; gap: 1rem; margin-top: 1.5rem;
}
.mlang-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(245,241,232,0.4);
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(200,169,107,0.15);
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  font-family: var(--ff-sans, 'Inter', sans-serif);
}
.mlang-btn:hover { color: var(--gold, #C8A96B); border-color: var(--gold, #C8A96B); }

/* Stat row flex */
.stat-row { display: flex; align-items: baseline; gap: 0; }

/* ── RTL (Arabic) overrides ──────────────────────────────────── */
[dir="rtl"] body { font-family: 'Noto Sans Arabic', 'Inter', sans-serif; }

[dir="rtl"] #nav {
  flex-direction: row-reverse;
}
[dir="rtl"] .nav-links { flex-direction: row-reverse; }

[dir="rtl"] .section-label {
  flex-direction: row-reverse;
}
[dir="rtl"] .section-label::before {
  order: 2;
}

[dir="rtl"] .hero-content { padding: 0 6vw 0 3rem; }
[dir="rtl"] .ht-italic { padding-left: 0; padding-right: 3rem; }

[dir="rtl"] .hero-scroll-cue { left: auto; right: 3rem; }

[dir="rtl"] .story-layout { direction: rtl; }
[dir="rtl"] .story-float-badge { left: auto; right: -3rem; }

[dir="rtl"] .footer-inner { direction: rtl; }
[dir="rtl"] .footer-bottom-inner { direction: rtl; }
[dir="rtl"] .footer-socials { flex-direction: row-reverse; }
[dir="rtl"] .footer-legal { flex-direction: row-reverse; }

[dir="rtl"] .hero-ctas { flex-direction: row-reverse; }

[dir="rtl"] .story-stats { flex-direction: row-reverse; }

/* Arabic large text: use slightly smaller size for better fit */
[dir="rtl"] .hero-title { font-size: clamp(2.8rem, 6vw, 7rem); line-height: 1.2; }
[dir="rtl"] .section-title { font-size: clamp(2.4rem, 5vw, 5rem); }

/* Arabic: use Noto Sans for body text elements */
[dir="rtl"] .story-lead,
[dir="rtl"] .story-body,
[dir="rtl"] .footer-col a,
[dir="rtl"] .hero-sub,
[dir="rtl"] .footer-tagline {
  font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
  line-height: 1.9;
}

/* Arabic: serif headings fall back gracefully */
[dir="rtl"] .hero-title,
[dir="rtl"] .section-title,
[dir="rtl"] .story-lead,
[dir="rtl"] .story-quote blockquote {
  font-family: 'Noto Sans Arabic', Georgia, serif;
  font-style: normal;
}

/* Arabic: italics become normal weight (Arabic has no italic) */
[dir="rtl"] em,
[dir="rtl"] .ht-italic {
  font-style: normal;
  font-weight: 400;
  color: var(--gold, #C8A96B);
}

/* Responsive: hide text lang switcher on mobile, show burger only */
@media (max-width: 900px) {
  .lang-switcher { display: none; }
}
@media (max-width: 640px) {
  [dir="rtl"] .hero-content { padding: 0 1.8rem; }
  [dir="rtl"] .ht-italic { padding-right: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOM CURSOR — Halo lumineux doré (desktop only)
   La souris devient une lampe qui éclaire la page
   ═══════════════════════════════════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {

  /* Hide native cursor across the site */
  html, body { cursor: none; }
  a, button, label, select,
  [role="button"], [data-cursor] { cursor: none; }

  /* Keep text cursor on text inputs (UX clarity for typing) */
  input[type="text"], input[type="email"], input[type="password"],
  input[type="search"], input[type="number"], input[type="tel"],
  textarea { cursor: text; }

  /* Dot is unused in this style — hide it entirely */
  .cursor-dot { display: none; }

  /* The halo — large diffused radial glow */
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 10000;
    width: 380px; height: 380px;
    margin-left: -190px;
    margin-top: -190px;
    border-radius: 50%;
    background: radial-gradient(circle,
      rgba(200, 169, 107, 0.42) 0%,
      rgba(200, 169, 107, 0.22) 18%,
      rgba(200, 169, 107, 0.10) 38%,
      rgba(200, 169, 107, 0.04) 58%,
      transparent 78%);
    filter: blur(14px);
    mix-blend-mode: screen;
    opacity: 0;
    transform: translate3d(-300px, -300px, 0);
    will-change: transform, opacity;
    transition: opacity 0.5s ease,
                width 0.6s var(--ease-out, cubic-bezier(0.16,1,0.3,1)),
                height 0.6s var(--ease-out, cubic-bezier(0.16,1,0.3,1)),
                margin 0.6s var(--ease-out, cubic-bezier(0.16,1,0.3,1)),
                background 0.5s ease,
                filter 0.5s ease;
  }

  body.cursor-ready .cursor-ring { opacity: 1; }

  /* HOVER — halo intensifies & expands */
  body.cursor-hover .cursor-ring {
    width: 520px; height: 520px;
    margin-left: -260px;
    margin-top: -260px;
    background: radial-gradient(circle,
      rgba(200, 169, 107, 0.65) 0%,
      rgba(224, 201, 138, 0.38) 18%,
      rgba(200, 169, 107, 0.16) 40%,
      rgba(200, 169, 107, 0.05) 62%,
      transparent 80%);
    filter: blur(18px);
  }

  /* CLICK — luminous pulse */
  body.cursor-down .cursor-ring {
    animation: cursorPulse 0.55s var(--ease-out, cubic-bezier(0.16,1,0.3,1));
  }
  @keyframes cursorPulse {
    0% {
      filter: blur(14px) brightness(1);
    }
    40% {
      filter: blur(8px) brightness(1.9) saturate(1.4);
    }
    100% {
      filter: blur(14px) brightness(1);
    }
  }

  /* Hide on text inputs & when mouse leaves window */
  body.cursor-text .cursor-ring,
  body.cursor-hidden .cursor-ring {
    opacity: 0;
  }
}

/* Disable on touch / mobile */
@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ── Skip link (accessibility) ────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 99999;
  background: var(--gold, #C8A96B);
  color: #0F0F0F;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Scroll progress bar ───────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold, #C8A96B), #e0c98a);
  z-index: 9998;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── Focus-visible (keyboard nav) ──────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold, #C8A96B);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* ── Prefers reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Variables ────────────────────────────────────────────────── */
:root {
  --olive:   #2D3B2F;
  --sage:    #7A8B74;
  --gold:    #C8A96B;
  --gold-lt: #e0c98a;
  --cream:   #F5F1E8;
  --cream-dk:#e8e2d3;
  --black:   #0F0F0F;
  --dark:    #111111;
  --dark2:   #171717;

  --ff-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --dur: 0.9s;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: auto;
  overflow-x: hidden; /* prevent horizontal scroll at root level */
}
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
  min-width: 0; /* prevent implicit min-width: auto on flex children */
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

/* ── Loader ─────────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content { text-align: center; }

.loader-logo {
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--cream);
  display: flex; gap: 0.05em;
  overflow: hidden;
}
.loader-logo span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}

.loader-line-wrap {
  height: 1px;
  background: rgba(200,169,107,0.15);
  margin: 2rem auto;
  width: 200px;
  overflow: hidden;
}
.loader-line {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 1.2s var(--ease-out);
}

.loader-sub {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  opacity: 0;
}

/* ── Navigation — Floating Pill ─────────────────────────────────── */
#nav {
  position: fixed;
  top: 1.4rem;
  left: 0; right: 0;
  z-index: 1000;
  padding: 0 1.5rem;
  display: flex; justify-content: center;
  pointer-events: none;
  transition: top 0.4s var(--ease-out);
}
#nav > * { pointer-events: auto; }

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 1280px;
  padding: 0.55rem 0.55rem 0.55rem 1.6rem;
  background: rgba(17,17,17,0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(245,241,232,0.08);
  border-radius: 100px;
  box-shadow:
    0 10px 40px rgba(0,0,0,0.35),
    0 0 0 1px rgba(200,169,107,0.04) inset,
    0 1px 0 rgba(245,241,232,0.05) inset;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s var(--ease-out);
}
#nav.scrolled .nav-pill {
  background: rgba(12,12,12,0.78);
  border-color: rgba(200,169,107,0.18);
  transform: scale(0.98);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--cream);
  transition: color 0.3s;
}
.logo-mark {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(200,169,107,0.08);
  color: var(--gold);
  transition: transform 0.5s var(--ease-out), background 0.3s;
}
.nav-logo:hover .logo-mark {
  transform: rotate(-12deg) scale(1.08);
  background: rgba(200,169,107,0.18);
}
.logo-text { line-height: 1; }

.nav-links {
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-links a {
  position: relative;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(245,241,232,0.7);
  border-radius: 100px;
  transition: color 0.3s, background 0.3s;
}
.nav-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(245,241,232,0.05);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::before { opacity: 1; }

.nav-actions {
  display: flex; align-items: center; gap: 0.7rem;
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--black);
  padding: 0.7rem 1.2rem 0.7rem 1.4rem;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow:
    0 4px 14px rgba(200,169,107,0.25),
    0 0 0 1px rgba(255,255,255,0.15) inset;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
/* Commander + WhatsApp icon variant */
.nav-cta-wa {
  background: linear-gradient(135deg, var(--olive, #2D3B2F) 0%, #3d5240 100%) !important;
  color: var(--cream, #F5F1E8) !important;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(45,59,47,0.35) !important;
}
.nav-cta-wa:hover {
  background: linear-gradient(135deg, #3d5240 0%, var(--sage, #7A8B74) 100%) !important;
  box-shadow: 0 8px 24px rgba(45,59,47,0.5) !important;
}
.nav-cta-wa:hover::before { transform: translateX(100%); }
.wa-icon-nav { opacity: 0.9; flex-shrink: 0; }

/* Mobile Commander WhatsApp */
.mob-cta-wa {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--olive, #2D3B2F), #3d5240) !important;
  color: var(--cream, #F5F1E8) !important;
  border-radius: 100px !important;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,107,0.4); }
.nav-cta:hover::before { transform: translateX(100%); }

/* WhatsApp nav icon */
.nav-wa {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  color: #25D366;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}
.nav-wa:hover {
  background: rgba(37,211,102,0.22);
  box-shadow: 0 0 16px rgba(37,211,102,0.3);
  transform: scale(1.08);
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999;
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50% 0 0 50%;
  box-shadow: -4px 0 24px rgba(37,211,102,0.45);
  text-decoration: none;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  animation: none;
  background: #1ebe5d;
  box-shadow: -6px 0 32px rgba(37,211,102,0.6);
  width: 58px;
  transition: width 0.25s, background 0.25s, box-shadow 0.25s;
}
.wa-float svg { flex-shrink: 0; }
.wa-label { display: none; }

@keyframes waPulse {
  0%, 100% {
    box-shadow: -4px 0 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4);
  }
  50% {
    box-shadow: -4px 0 32px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0);
  }
}

.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(245,241,232,0.05);
  transition: background 0.3s;
}
.nav-burger:hover { background: rgba(245,241,232,0.1); }
.nav-burger span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-burger.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-burger.open span:last-child  { transform: translateY(-3px) rotate(-45deg); }

/* Mobile Menu */
#mobileMenu {
  position: fixed; inset: 0;
  background: rgba(11,11,11,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
#mobileMenu.open { opacity: 1; visibility: visible; }

.mobile-menu-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
  width: 100%;
  padding: 2rem 2rem 1.5rem;
}
.mob-link {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(245,241,232,0.75);
  opacity: 0;
  transform: translateY(14px);
  transition: color 0.3s, opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  width: 100%;
  text-align: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(200,169,107,0.08);
}
.mob-link:first-child { border-top: 1px solid rgba(200,169,107,0.08); }
#mobileMenu.open .mob-link { opacity: 1; transform: none; }
#mobileMenu.open .mob-link:nth-child(1) { transition-delay: 0.06s; }
#mobileMenu.open .mob-link:nth-child(2) { transition-delay: 0.1s; }
#mobileMenu.open .mob-link:nth-child(3) { transition-delay: 0.14s; }
#mobileMenu.open .mob-link:nth-child(4) { transition-delay: 0.18s; }
#mobileMenu.open .mob-link:nth-child(5) { transition-delay: 0.22s; }
#mobileMenu.open .mob-link:nth-child(6) { transition-delay: 0.26s; }
#mobileMenu.open .mob-link:nth-child(7) { transition-delay: 0.3s; }
.mob-link:hover { color: var(--gold); }
.mob-cta {
  color: var(--cream) !important;
  border-bottom: none !important;
  border-top: none !important;
  margin-top: 1.2rem;
  padding: 0.75rem 2rem !important;
  background: linear-gradient(135deg, var(--olive, #2D3B2F), #3d5240);
  border-radius: 100px;
  width: auto !important;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Container ──────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ── Shared text styles ─────────────────────────────────────────── */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8em;
}
.section-label.light { color: var(--gold-lt); }
.section-label::before {
  content: '';
  display: inline-block;
  width: 2rem; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 2rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.section-title.light { color: #fff; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border-radius: 100px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,107,0.35);
}
.btn-primary.btn-large { padding: 1.2rem 3rem; font-size: 0.8rem; }

.btn-ghost {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(245,241,232,0.3);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border-radius: 100px;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost-light {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(245,241,232,0.4);
  color: rgba(245,241,232,0.8);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  border-radius: 100px;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-ghost-light:hover {
  border-color: var(--cream);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ── Scroll Reveal Animations ───────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ═══════════════════════════════════════════════════════════════
   HERO — Premium Startup Landing
   ═══════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
  background: radial-gradient(ellipse at top, #1a1f1a 0%, var(--black) 60%);
}

/* ── Background decoration ──────────────────────────────────── */
.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,169,107,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,107,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: 0.5;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(122,139,116,0.35) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: orbDrift 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,169,107,0.22) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: orbDrift 14s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(45,59,47,0.5) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: orbDrift 18s ease-in-out infinite;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.08); }
  66%      { transform: translate(-30px, 30px) scale(0.95); }
}

.hero-noise {
  position: absolute; inset: 0;
  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.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ── Container ──────────────────────────────────────────────── */
.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ── Content (Left) ─────────────────────────────────────────── */
.hero-content { position: relative; }

.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: rgba(200,169,107,0.08);
  border: 1px solid rgba(200,169,107,0.2);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(15px);
}
.bp-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(200,169,107,0.4);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(200,169,107,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(200,169,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,169,107,0); }
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 5.2vw, 5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.ht-line {
  display: block;
  overflow: hidden;
}
.ht-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.ht-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-lt);
  margin-left: 2.5rem;
  font-size: 0.85em;
}
.ht-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 50%, var(--cream-dk) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(245,241,232,0.65);
  margin-bottom: 2.8rem;
  opacity: 0;
  transform: translateY(15px);
}

/* CTAs */
.hero-ctas {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 3.5rem;
  opacity: 0;
  transform: translateY(15px);
}

.hero-ctas .btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 1.1rem 1.6rem 1.1rem 1.8rem;
  border-radius: 100px;
  box-shadow:
    0 8px 24px rgba(200,169,107,0.25),
    0 0 0 1px rgba(255,255,255,0.2) inset;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.4s;
}
.hero-ctas .btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out);
}
.hero-ctas .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(200,169,107,0.4);
}
.hero-ctas .btn-primary:hover::before { transform: translateX(100%); }
.hero-ctas .btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-arrow { transition: transform 0.3s var(--ease-out); }

.hero-ctas .btn-ghost {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: rgba(245,241,232,0.04);
  border: 1px solid rgba(245,241,232,0.12);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  padding: 1.05rem 1.6rem 1.05rem 0.75rem;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}
.hero-ctas .btn-ghost:hover {
  background: rgba(245,241,232,0.08);
  border-color: rgba(200,169,107,0.4);
  transform: translateY(-3px);
}
.play-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(200,169,107,0.15);
  color: var(--gold);
  transition: background 0.3s, transform 0.3s;
}
.hero-ctas .btn-ghost:hover .play-circle {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.08);
}

/* Meta stats */
.hero-meta {
  display: flex; align-items: center; gap: 1.5rem;
  opacity: 0;
}
.meta-item {
  display: flex; flex-direction: column; gap: 0.2rem;
}
.meta-num {
  font-family: var(--ff-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.45);
}
.meta-sep {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(200,169,107,0.25), transparent);
}

/* ── Visual (Right) ─────────────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  opacity: 0;
}

.bottle-stage {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(ellipse at center,
    rgba(200,169,107,0.35) 0%,
    rgba(122,139,116,0.15) 35%,
    transparent 65%);
  filter: blur(40px);
  animation: glowPulse 5s ease-in-out infinite;
  z-index: 1;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}

.bottle-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 90%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(200,169,107,0.12);
  border-radius: 50%;
  animation: ringRotate 30s linear infinite;
  z-index: 1;
}
.bottle-ring::before {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
@keyframes ringRotate { to { transform: translate(-50%, -50%) rotate(360deg); } }

.bottle-shadow {
  position: absolute;
  bottom: 4%; left: 50%;
  width: 60%; height: 30px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,0,0,0.6) 0%, transparent 70%);
  filter: blur(15px);
  z-index: 1;
}

.hero-bottle {
  position: relative;
  z-index: 2;
  width: 100%; height: 100%;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55))
          drop-shadow(0 0 40px rgba(200,169,107,0.15));
  animation: bottleFloat 6s ease-in-out infinite;
  will-change: transform;
  opacity: 0;
  transform: translateY(60px) scale(0.92);
}
@keyframes bottleFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-18px) rotate(1deg); }
}
.hero-bottle.loaded {
  animation: bottleEnter 1.4s var(--ease-out) forwards, bottleFloat 6s ease-in-out 1.4s infinite;
}
@keyframes bottleEnter {
  0%   { opacity: 0; transform: translateY(60px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Floating cards */
.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  background: rgba(20,20,20,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(200,169,107,0.18);
  border-radius: 14px;
  box-shadow:
    0 14px 40px rgba(0,0,0,0.45),
    0 0 0 1px rgba(245,241,232,0.04) inset;
  z-index: 3;
  opacity: 0;
}
.float-card-top {
  top: 10%;
  right: -10%;
  animation: cardFloat 5s ease-in-out infinite;
}
.float-card-bottom {
  bottom: 14%;
  left: -22%;
  animation: cardFloat 5s ease-in-out infinite 1.5s;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.fc-icon-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--black);
  flex-shrink: 0;
}
.fc-content { display: flex; flex-direction: column; }
.fc-label {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.1;
}
.fc-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.5);
  margin-top: 2px;
}
.fc-mark { color: var(--gold); font-size: 1rem; }
.fc-num {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  font-weight: 500;
}

/* ── Marquee bar ─────────────────────────────────────────────── */
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1rem 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  border-top: 1px solid rgba(245,241,232,0.05);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.marquee-content {
  display: flex; align-items: center; gap: 2.5rem;
  padding-right: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.55);
  white-space: nowrap;
}
.m-dot { color: var(--gold); font-size: 0.6rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Scroll cue ──────────────────────────────────────────────── */
.hero-scroll-cue {
  position: absolute;
  bottom: 4.5rem; right: 3rem;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  opacity: 0;
}
.hero-scroll-cue span {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.45);
  writing-mode: vertical-rl;
}
.scroll-bar {
  position: relative;
  width: 1px; height: 60px;
  background: rgba(200,169,107,0.2);
  overflow: hidden;
}
.scroll-bar::after {
  content: '';
  position: absolute;
  top: -30%; left: 0;
  width: 100%; height: 50%;
  background: var(--gold);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -50%; }
  100% { top: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   STORY
   ═══════════════════════════════════════════════════════════════ */
#story {
  padding: 12rem 0 8rem;
  background: var(--dark);
  position: relative;
  overflow: hidden; /* clip float-badge & quote-mark negative offsets */
}
#story::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  margin-top: 4rem;
}

.story-lead {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.story-body {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(245,241,232,0.65);
  margin-bottom: 3.5rem;
}

.story-stats {
  display: flex; gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(200,169,107,0.2);
}
.stat { display: flex; flex-direction: column; }
.stat-n {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-prefix {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-right: 0.05em;
}
.stat-suffix {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--gold);
  display: inline;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-top: 0.4rem;
  text-transform: uppercase;
}

.story-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.story-img-frame img {
  transition: transform 6s ease;
}
.story-img-frame:hover img { transform: scale(1.04); }
.img-caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.6);
  background: rgba(15,15,15,0.5);
  backdrop-filter: blur(10px);
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
}

.story-float-badge {
  position: absolute;
  bottom: -2rem; left: -3rem;
  background: var(--olive);
  border: 1px solid rgba(200,169,107,0.3);
  padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
  border-radius: 4px;
  min-width: 220px;
}
.fb-icon { color: var(--gold); font-size: 1rem; }
.fb-text {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
}

.story-quote {
  margin-top: 8rem;
  padding-top: 5rem;
  border-top: 1px solid rgba(200,169,107,0.15);
  text-align: center;
}
.story-quote blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--cream);
  position: relative;
}
.quote-mark {
  position: absolute;
  top: -2rem; left: -3rem;
  font-size: 8rem;
  font-family: var(--ff-serif);
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}
.story-quote em { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   HERITAGE — Notre Héritage
   ═══════════════════════════════════════════════════════════════ */
#heritage {
  position: relative;
  padding: 7rem 0 4rem;
  background:
    linear-gradient(180deg, var(--black) 0%, #0a0a0a 50%, var(--black) 100%);
  overflow: hidden;
}

.heritage-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.heritage-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,169,107,0.08) 0%, rgba(200,169,107,0.03) 35%, transparent 65%);
  filter: blur(40px);
  animation: heritageOrbPulse 10s ease-in-out infinite;
}
@keyframes heritageOrbPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

.heritage-container {
  position: relative;
  z-index: 1;
}
.heritage-frame {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}

/* Ornaments — top & bottom (lines + olive branch) */
.heritage-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 0 auto;
  color: var(--gold, #C8A96B);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s var(--ease-out, cubic-bezier(0.16,1,0.3,1)),
              transform 1s var(--ease-out, cubic-bezier(0.16,1,0.3,1));
}
#heritage.is-visible .heritage-ornament { opacity: 1; transform: translateY(0); }
.heritage-ornament-top    { margin-bottom: 2.5rem; }
.heritage-ornament-bottom { margin-top: 3rem; transition-delay: 1.1s; }

.ho-line {
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(to var(--dir, right), transparent, rgba(200,169,107,0.45));
}
.heritage-ornament .ho-line:last-child {
  background: linear-gradient(to right, rgba(200,169,107,0.45), transparent);
}
.heritage-ornament .ho-line:first-child {
  background: linear-gradient(to right, transparent, rgba(200,169,107,0.45));
}
.ho-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt, #e0c98a);
  flex-shrink: 0;
}

/* Eyebrow label */
.heritage-eyebrow {
  font-family: var(--ff-sans, 'Inter', sans-serif);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-lt, #e0c98a);
  margin-bottom: 1.4rem;
  opacity: 0.85;
}

/* Title — script-style serif italic */
.heritage-title {
  font-family: var(--ff-serif, 'Cormorant Garamond', serif);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream, #F5F1E8);
  margin-bottom: 2.2rem;
}
.heritage-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold, #C8A96B) 0%, var(--gold-lt, #e0c98a) 50%, var(--gold, #C8A96B) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: heritageShimmer 6s ease-in-out infinite;
}
@keyframes heritageShimmer {
  0%, 100% { background-position: 0% center; }
  50%      { background-position: 100% center; }
}

/* Body paragraph */
.heritage-body {
  font-family: var(--ff-serif, 'Cormorant Garamond', serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.005em;
  color: rgba(245, 241, 232, 0.78);
  max-width: 720px;
  margin: 0 auto 3rem;
}

/* Pillars */
.heritage-pillars {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 1.8rem;
  border: 1px solid rgba(200, 169, 107, 0.18);
  border-radius: 100px;
  background: rgba(200, 169, 107, 0.04);
  backdrop-filter: blur(8px);
}
.hp-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.hp-mark {
  color: var(--gold, #C8A96B);
  font-size: 0.7rem;
}
.hp-label {
  font-family: var(--ff-sans, 'Inter', sans-serif);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(245, 241, 232, 0.82);
}
.hp-sep {
  width: 1px;
  height: 16px;
  background: rgba(200, 169, 107, 0.25);
}

/* RTL adjustments */
[dir="rtl"] .heritage-body { font-family: 'Noto Sans Arabic', serif; line-height: 1.95; }
[dir="rtl"] .heritage-title { font-family: 'Noto Sans Arabic', serif; }
[dir="rtl"] .heritage-title em { font-style: normal; font-weight: 600; }
[dir="rtl"] .heritage-eyebrow { letter-spacing: 0.15em; }
[dir="rtl"] .hp-label { font-family: 'Noto Sans Arabic', sans-serif; }

/* Responsive */
@media (max-width: 768px) {
  #heritage { padding: 6rem 0 5rem; }
  .heritage-ornament-top    { margin-bottom: 1.8rem; }
  .heritage-ornament-bottom { margin-top: 2.4rem; }
  .ho-line { max-width: 80px; }
  .heritage-eyebrow { font-size: 0.62rem; letter-spacing: 0.22em; margin-bottom: 1rem; }
  .heritage-title { font-size: clamp(2rem, 9vw, 2.8rem); margin-bottom: 1.6rem; }
  .heritage-body { font-size: 1rem; line-height: 1.75; margin-bottom: 2.2rem; }
  .heritage-pillars { gap: 0.8rem; padding: 0.8rem 1.2rem; flex-direction: column; border-radius: 18px; }
  .hp-sep { width: 30px; height: 1px; }
  .heritage-orb { width: 400px; height: 400px; }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCTS — 3 formats: 250 / 500 (popular) / 750
   ═══════════════════════════════════════════════════════════════ */
#products {
  position: relative;
  padding: 3.5rem 0 5rem;
  background: var(--black);
  overflow: hidden;
}

.products-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.products-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.products-orb-1 {
  top: 10%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,169,107,0.08), transparent 65%);
}
.products-orb-2 {
  bottom: 0; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(122,139,116,0.06), transparent 70%);
}

#products .container { position: relative; z-index: 1; }

/* Header */
.products-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.8rem;
}
.products-header .section-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.2rem;
}
.products-header .section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.products-header .section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.products-sub {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245,241,232,0.55);
}

/* Shelf — 3-column grid with bottles aligned at the bottom */
.products-shelf {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: end;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* The "shelf line" — subtle horizontal divider where bottles sit */
.products-shelf-line {
  position: absolute;
  left: 5%; right: 5%;
  top: 340px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(200,169,107,0.25) 20%,
    rgba(200,169,107,0.4) 50%,
    rgba(200,169,107,0.25) 80%,
    transparent);
  pointer-events: none;
}

/* ── Product card ── */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0 1.4rem;
  border-radius: 20px;
  transition: transform 0.5s var(--ease-out);
}

/* Bottle stage — fixed height, bottles sit on the bottom (shelf) */
.product-stage {
  position: relative;
  width: 100%;
  height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.product-img {
  position: relative;
  z-index: 2;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.55));
  transition: transform 0.6s var(--ease-out), filter 0.5s ease;
}

/* SIZE DIFFERENTIATION — heights proportional to volumes */
.product-img-250 { height: 180px; }
.product-img-500 { height: 260px; }
.product-img-750 { height: 335px; }

/* Shadow ellipse under each bottle (grounding) */
.product-shadow {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 22px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 35%, transparent 70%);
  filter: blur(8px);
  z-index: 1;
}

/* Info block */
.product-info {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Size pill — 250 ML / 500 ML / 750 ML */
.product-size-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(200,169,107,0.3);
  border-radius: 100px;
  background: rgba(200,169,107,0.06);
  margin-bottom: 1.1rem;
  font-family: var(--ff-sans);
}
.product-size-pill strong {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.product-size-pill span {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(200,169,107,0.7);
}

.product-name {
  font-family: var(--ff-serif);
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-bottom: 0.7rem;
}
.product-desc {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(245,241,232,0.55);
  margin-bottom: 1.6rem;
  font-weight: 300;
}

/* CTA button */
.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  border-radius: 100px;
  border: 1px solid rgba(200,169,107,0.35);
  background: transparent;
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.25s;
}
.product-btn:hover {
  border-color: var(--gold);
  background: rgba(200,169,107,0.12);
  color: var(--gold-lt);
  transform: translateY(-2px);
}
.product-btn svg { flex-shrink: 0; }

.product-btn-primary {
  background: linear-gradient(135deg, var(--olive, #2D3B2F), #3d5240);
  border-color: transparent;
  color: var(--cream);
  box-shadow: 0 6px 20px rgba(45,59,47,0.4);
}
.product-btn-primary:hover {
  background: linear-gradient(135deg, #3d5240, var(--sage, #7A8B74));
  border-color: transparent;
  color: var(--cream);
  box-shadow: 0 10px 28px rgba(45,59,47,0.55);
}

/* ── FEATURED — 500ml "Popular" ── */
.product-card-featured {
  position: relative;
  padding: 2.4rem 1.2rem 1.6rem;
  background: radial-gradient(ellipse at top, rgba(200,169,107,0.10) 0%, rgba(200,169,107,0.03) 60%, transparent 100%);
  border: 1px solid rgba(200,169,107,0.22);
  border-radius: 20px;
  transform: translateY(-10px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.4),
              inset 0 1px 0 rgba(255,255,255,0.04);
}
.product-card-featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(200,169,107,0.5) 0%, transparent 30%, transparent 70%, rgba(200,169,107,0.3) 100%);
  z-index: -1;
  opacity: 0.7;
}

/* "Le plus populaire" badge floating above */
.product-popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--black);
  border-radius: 100px;
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(200,169,107,0.45);
}
.ppb-star {
  color: var(--black);
  font-size: 0.75rem;
  animation: ppbSpin 6s linear infinite;
  display: inline-block;
}
@keyframes ppbSpin {
  to { transform: rotate(360deg); }
}

.product-card-featured .product-stage { height: 370px; }
.product-card-featured .product-shadow {
  width: 70%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 35%, transparent 70%);
}
.product-card-featured .product-name {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-lt) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Hover lift */
.product-card:hover { transform: translateY(-6px); }
.product-card-featured:hover { transform: translateY(-18px); }
.product-card:hover .product-img { filter: drop-shadow(0 28px 40px rgba(200,169,107,0.3)); }

/* Entrance animation — bottles drop into shelf */
.products-shelf .product-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.products-shelf .product-card-featured { transform: translateY(40px); }
.products-shelf.visible .product-card { opacity: 1; transform: translateY(0); }
.products-shelf.visible .product-card-featured { transform: translateY(-10px); }
.products-shelf.visible .product-card:nth-child(2) { transition-delay: 0.1s; }
.products-shelf.visible .product-card:nth-child(3) { transition-delay: 0.25s; }
.products-shelf.visible .product-card:nth-child(4) { transition-delay: 0.4s; }

/* RTL adjustments */
[dir="rtl"] .product-size-pill span { letter-spacing: 0.06em; }
[dir="rtl"] .product-popular-badge { letter-spacing: 0.08em; }
[dir="rtl"] .product-desc { font-family: 'Noto Sans Arabic', sans-serif; }

/* Responsive — stack on tablet/mobile */
@media (max-width: 900px) {
  #products { padding: 6rem 0 5rem; }
  .products-header { margin-bottom: 3.5rem; }
  .products-shelf {
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
  }
  .products-shelf-line { display: none; }
  .product-card { padding-bottom: 1.5rem; }
  .product-card-featured { padding: 3rem 1.5rem 2rem; }
  .product-card-featured,
  .products-shelf.visible .product-card-featured { transform: translateY(0); }
  .product-card-featured:hover,
  .product-card:hover { transform: translateY(-4px); }
  .product-stage { height: auto; min-height: 280px; }
  .product-card-featured .product-stage { height: auto; min-height: 320px; }
}

@media (max-width: 480px) {
  .product-img-250 { height: 180px; }
  .product-img-500 { height: 240px; }
  .product-img-750 { height: 300px; }
  .product-card-featured .product-stage { min-height: 260px; }
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS — Olive oil extraction (8 steps)
   ═══════════════════════════════════════════════════════════════ */
#process {
  position: relative;
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, var(--black) 0%, #131613 100%);
  overflow: hidden;
}

.process-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(122,139,116,0.06), transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(200,169,107,0.05), transparent 50%);
  z-index: 0;
}

#process .container { position: relative; z-index: 1; }

/* Header */
.process-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 4rem;
}
.process-header .section-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.2rem;
}
.process-header .section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 1.8rem;
}
.process-header .section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.process-intro {
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(245,241,232,0.62);
  font-weight: 300;
  text-align: justify;
  max-width: 860px;
  margin: 0 auto;
  padding: 1.6rem 2rem;
  border-top: 1px solid rgba(200,169,107,0.15);
  border-bottom: 1px solid rgba(200,169,107,0.15);
  position: relative;
}
.process-intro::before,
.process-intro::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 60px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.process-intro::before { top: -1px; }
.process-intro::after  { bottom: -1px; }

/* Grid 4x2 desktop */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.process-grid.visible .process-step { opacity: 1; transform: translateY(0); }
.process-grid.visible .process-step:nth-child(1) { transition-delay: 0.05s; }
.process-grid.visible .process-step:nth-child(2) { transition-delay: 0.15s; }
.process-grid.visible .process-step:nth-child(3) { transition-delay: 0.25s; }
.process-grid.visible .process-step:nth-child(4) { transition-delay: 0.35s; }
.process-grid.visible .process-step:nth-child(5) { transition-delay: 0.45s; }
.process-grid.visible .process-step:nth-child(6) { transition-delay: 0.55s; }
.process-grid.visible .process-step:nth-child(7) { transition-delay: 0.65s; }
.process-grid.visible .process-step:nth-child(8) { transition-delay: 0.75s; }

/* Icon wrap — circular gold-bordered container */
.step-icon-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(200,169,107,0.10), transparent 60%),
    rgba(245,241,232,0.025);
  border: 1px solid rgba(200,169,107,0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35),
              inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.5s var(--ease-out),
              border-color 0.4s,
              box-shadow 0.5s,
              background 0.5s;
}
.step-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(200,169,107,0.18);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s, transform 0.6s var(--ease-out);
  pointer-events: none;
}

.step-icon {
  color: var(--gold-lt);
  transition: color 0.4s, transform 0.5s var(--ease-out);
  position: relative;
  z-index: 2;
}

.process-step:hover .step-icon-wrap {
  transform: translateY(-5px);
  border-color: var(--gold);
  background:
    radial-gradient(circle at 30% 25%, rgba(200,169,107,0.20), transparent 65%),
    rgba(200,169,107,0.06);
  box-shadow: 0 14px 36px rgba(200,169,107,0.28),
              inset 0 1px 0 rgba(255,255,255,0.06);
}
.process-step:hover .step-icon-wrap::before {
  opacity: 1;
  transform: scale(1.04) rotate(8deg);
}
.process-step:hover .step-icon {
  color: var(--gold);
  transform: scale(1.08);
}

/* Numbered badge — sits on top-right outside the circle */
.step-num {
  position: absolute;
  top: 0; right: -2px;
  z-index: 3;
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--black);
  font-family: var(--ff-serif);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(200,169,107,0.5);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.process-step:hover .step-num {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 6px 18px rgba(200,169,107,0.75);
}

/* Step title */
.step-title {
  margin-top: 1.4rem;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.35;
  max-width: 160px;
  transition: color 0.3s;
}
.process-step:hover .step-title { color: var(--gold-lt); }

/* RTL adjustments */
[dir="rtl"] .step-num { right: auto; left: -2px; }
[dir="rtl"] .step-title { font-family: 'Noto Sans Arabic', sans-serif; letter-spacing: 0.04em; }
[dir="rtl"] .process-intro { font-family: 'Noto Sans Arabic', sans-serif; text-align: right; line-height: 2; }

/* Responsive */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
@media (max-width: 768px) {
  #process { padding: 4rem 0 4.5rem; }
  .process-header { margin-bottom: 2.5rem; }
  .process-intro { padding: 1.2rem 1rem; font-size: 0.85rem; line-height: 1.7; text-align: left; }
  [dir="rtl"] .process-intro { text-align: right; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; }
  .step-icon-wrap { width: 110px; height: 110px; }
  .step-icon { width: 38px; height: 38px; }
  .step-num { width: 26px; height: 26px; font-size: 0.78rem; }
  .step-title { font-size: 0.7rem; margin-top: 1rem; letter-spacing: 0.06em; max-width: 140px; }
}
@media (max-width: 420px) {
  .step-icon-wrap { width: 96px; height: 96px; }
}

/* ═══════════════════════════════════════════════════════════════
   QUALITY — Premium seal + 3 pillars
   ═══════════════════════════════════════════════════════════════ */
#sensory {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, #131613 0%, var(--black) 100%);
  overflow: hidden;
}

.quality-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 25% 50%, rgba(200,169,107,0.08), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(122,139,116,0.06), transparent 55%);
  z-index: 0;
}

#sensory .container { position: relative; z-index: 1; }

.quality-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── LEFT — Visual / Seal ── */
.quality-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-seal {
  position: relative;
  width: 320px; height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal-ring {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: sealRotate 30s linear infinite;
}
@keyframes sealRotate {
  to { transform: rotate(360deg); }
}
.seal-text {
  font-family: var(--ff-sans);
  font-weight: 600;
  text-transform: uppercase;
}

.seal-core {
  position: relative;
  width: 150px; height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(200,169,107,0.18), transparent 65%),
    rgba(15,15,15,0.8);
  border: 1px solid rgba(200,169,107,0.35);
  color: var(--gold);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05),
              0 12px 32px rgba(0,0,0,0.5);
}
.seal-core svg { color: var(--gold); margin-bottom: 0.3rem; }
.seal-label {
  font-family: var(--ff-serif);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lt);
  text-align: center;
  line-height: 1.15;
}
.seal-label span {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.1em;
}

/* Decorative olive branch — behind the seal */
.quality-leaf {
  position: absolute;
  width: 100%; height: 100%;
  top: -8%; left: -8%;
  z-index: -1;
  opacity: 0.4;
  transform: scale(1.4) rotate(-15deg);
  pointer-events: none;
}

/* ── RIGHT — Title + 3 pillars ── */
.quality-content { position: relative; }

.quality-content .section-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.2rem;
}

.quality-content .section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.quality-content .section-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.quality-lead {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(245,241,232,0.55);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Quality list */
.quality-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.quality-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: rgba(245,241,232,0.025);
  border: 1px solid rgba(200,169,107,0.12);
  border-radius: 14px;
  transition: border-color 0.4s, background 0.4s, transform 0.4s var(--ease-out);
}
.quality-item:hover {
  border-color: rgba(200,169,107,0.35);
  background: rgba(200,169,107,0.05);
  transform: translateX(6px);
}

/* Gold square marker */
.qi-marker {
  flex-shrink: 0;
  width: 10px; height: 10px;
  margin-top: 0.55rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  box-shadow: 0 0 12px rgba(200,169,107,0.4);
  position: relative;
}
.qi-marker::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% + 6px);
  width: 0;
  height: 1px;
  background: rgba(200,169,107,0.5);
  transform: translateY(-50%);
  transition: width 0.4s var(--ease-out);
}
.quality-item:hover .qi-marker::after { width: 14px; }

.qi-text { flex: 1; }
.qi-title {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
  transition: color 0.3s;
}
.quality-item:hover .qi-title { color: var(--gold-lt); }

.qi-desc {
  font-family: var(--ff-sans);
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(245,241,232,0.5);
  font-weight: 300;
}

/* RTL */
[dir="rtl"] .quality-item:hover { transform: translateX(-6px); }
[dir="rtl"] .qi-marker::after { left: auto; right: calc(100% + 6px); }
[dir="rtl"] .qi-title { font-family: 'Noto Sans Arabic', serif; }
[dir="rtl"] .qi-desc { font-family: 'Noto Sans Arabic', sans-serif; line-height: 1.85; }
[dir="rtl"] .quality-lead { font-family: 'Noto Sans Arabic', sans-serif; }

/* Responsive */
@media (max-width: 1024px) {
  .quality-layout { grid-template-columns: 1fr; gap: 3rem; }
  .quality-visual { order: -1; max-width: 320px; }
  .quality-seal { width: 280px; height: 280px; }
  .seal-core { width: 130px; height: 130px; }
  .quality-content { text-align: center; }
  .quality-content .section-label,
  .quality-content .section-title,
  .quality-lead { text-align: center; }
  .quality-list { align-items: stretch; }
  .quality-item:hover { transform: translateY(-3px); }
  [dir="rtl"] .quality-item:hover { transform: translateY(-3px); }
}

@media (max-width: 640px) {
  #sensory { padding: 4.5rem 0; }
  .quality-seal { width: 240px; height: 240px; }
  .seal-core { width: 110px; height: 110px; }
  .seal-label { font-size: 0.75rem; }
  .seal-label span { font-size: 0.88rem; }
  .quality-item { padding: 1rem 1.1rem; gap: 1rem; }
  .qi-title { font-size: 1.1rem; }
  .qi-desc { font-size: 0.78rem; }
}


/* ── Hero sub + ctas (re-introduced, conversion-focused) ─────── */
.hero-sub {
  max-width: 480px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245,241,232,0.6);
  margin-bottom: 2rem;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
.hero-sub.visible, .hero-ctas.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════
   Gallery — Carrousel contenu (centré, animé)
   ═══════════════════════════════════════════════════════════════ */
#gallery {
  padding: 5rem 0 6rem;
  background: var(--black);
  color: var(--cream);
  overflow: hidden;
}

/* Header */
.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}
#gallery .section-label  { color: var(--gold); }
#gallery .section-title  { color: var(--cream); }
#gallery .section-title em { color: var(--gold); font-style: italic; }
.gallery-sub {
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.3);
}

/* ── Carousel shell ──────────────────────────────────────────── */
.carousel {
  position: relative;
  max-width: 900px;   /* dimensions standard, PAS plein écran */
  margin: 0 auto;
  outline: none;
}
/* Anneau doré discret au focus clavier (accessibilité) */
.carousel:focus-visible {
  outline: 2px solid rgba(200, 169, 107, 0.6);
  outline-offset: 6px;
  border-radius: 10px;
}

/* Fenêtre visible : masque le rail qui dépasse */
.carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(200, 169, 107, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  background: #111;
  touch-action: pan-y; /* autorise le scroll vertical, capte le swipe horizontal */
}

/* Rail horizontal : translateX animé pour passer d'une slide à l'autre */
.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
/* Pendant le drag : on coupe l'animation pour suivre le doigt en direct */
.carousel-track.no-anim { transition: none; }

/* Slide : occupe toute la largeur de la fenêtre, hauteur via aspect-ratio */
.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  aspect-ratio: 16 / 10;       /* hauteur fixe & responsive */
  overflow: hidden;
  background: #111;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* belles proportions, jamais déformé */
  display: block;
  transform: scale(1.06);
  transition: transform 6s ease-out;
}
/* Léger effet Ken-Burns sur la slide active */
.carousel-slide.is-active img { transform: scale(1); }

/* Vignette douce en bas pour l'élégance */
.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.28), transparent 38%);
  pointer-events: none;
}

/* ── Barre de progression autoplay ───────────────────────────── */
.carousel-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 4;
}
.carousel-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt, #e0c48a));
}

/* ── Flèches ─────────────────────────────────────────────────── */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 107, 0.35);
  background: rgba(20, 20, 20, 0.55);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.carousel-arrow:hover {
  background: rgba(200, 169, 107, 0.25);
  border-color: var(--gold);
  box-shadow: 0 0 22px rgba(200, 169, 107, 0.22);
}
.carousel-arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
/* Flèches à cheval sur le bord du cadre (desktop) */
.carousel-prev { left: -26px; }
.carousel-next { right: -26px; }
.carousel-prev:hover { transform: translateY(-50%) translateX(-3px); }
.carousel-next:hover { transform: translateY(-50%) translateX(3px); }

/* ── Dots ────────────────────────────────────────────────────── */
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.8rem;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(200, 169, 107, 0.25);
  cursor: pointer;
  transition: background 0.35s, width 0.35s, border-radius 0.35s;
}
.carousel-dot:hover:not(.active) { background: rgba(200, 169, 107, 0.55); }
.carousel-dot.active {
  width: 28px;
  border-radius: 5px;
  background: var(--gold);
}

/* ── RTL : on inverse simplement la position des flèches ──────── */
[dir="rtl"] .carousel-prev { left: auto; right: -26px; }
[dir="rtl"] .carousel-next { right: auto; left: -26px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 980px) {
  /* Plus de place pour les flèches : on les rentre dans le cadre */
  .carousel-prev { left: 0.9rem; }
  .carousel-next { right: 0.9rem; }
  [dir="rtl"] .carousel-prev { left: auto; right: 0.9rem; }
  [dir="rtl"] .carousel-next { right: auto; left: 0.9rem; }
}
@media (max-width: 768px) {
  #gallery { padding: 4rem 0 5rem; }
  .carousel-slide { aspect-ratio: 4 / 3; }
  .carousel-arrow { width: 44px; height: 44px; }
}
@media (max-width: 480px) {
  .carousel-slide { aspect-ratio: 1 / 1; }
  .carousel-arrow { width: 40px; height: 40px; }
  .carousel-prev { left: 0.5rem; }
  .carousel-next { right: 0.5rem; }
  [dir="rtl"] .carousel-prev { left: auto; right: 0.5rem; }
  [dir="rtl"] .carousel-next { right: auto; left: 0.5rem; }
  .carousel-dots { margin-top: 1.3rem; }
}

/* Respect des préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  .carousel-track { transition: none; }
  .carousel-slide img { transition: none; transform: none; }
  .carousel-progress { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT — Formulaire → WhatsApp
   ═══════════════════════════════════════════════════════════════ */
#contact {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--black) 0%, #131613 100%);
  overflow: hidden;
}
.contact-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.contact-orb-1 {
  top: -10%; left: -8%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(200,169,107,0.08), transparent 65%);
}
.contact-orb-2 {
  bottom: -15%; right: -10%;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(122,139,116,0.07), transparent 70%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

/* ── Colonne gauche ── */
#contact .section-label { color: var(--gold); }
#contact .section-title { color: var(--cream); margin-top: 0.6rem; }
#contact .section-title em { color: var(--gold); font-style: italic; }
.contact-lead {
  margin-top: 1.4rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(245,241,232,0.6);
  max-width: 460px;
}

.contact-info {
  list-style: none;
  margin-top: 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ci-ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,169,107,0.1);
  border: 1px solid rgba(200,169,107,0.25);
  color: var(--gold);
}
.ci-txt { display: flex; flex-direction: column; gap: 0.15rem; }
.ci-label {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}
.ci-txt a, .ci-txt span:not(.ci-label) {
  font-size: 0.95rem;
  color: var(--cream);
  transition: color 0.25s;
}
.ci-txt a:hover { color: var(--gold); }

/* ── Colonne droite : formulaire ── */
.contact-form {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(200,169,107,0.15);
  border-radius: 16px;
  padding: 2.4rem 2.2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cf-field { margin-bottom: 1.25rem; }
.cf-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.55);
  margin-bottom: 0.5rem;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(15,15,15,0.5);
  border: 1px solid rgba(200,169,107,0.2);
  border-radius: 9px;
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.cf-field textarea { resize: vertical; min-height: 110px; }
.cf-field select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8A96B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.cf-field select option { background: #1a1a1a; color: var(--cream); }
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(245,241,232,0.3); }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,107,0.12);
  background: rgba(15,15,15,0.7);
}
.cf-field .cf-error {
  border-color: #c0563f;
  box-shadow: 0 0 0 3px rgba(192,86,63,0.12);
}

/* Bouton */
.cf-submit {
  width: 100%;
  margin-top: 0.4rem;
  padding: 1rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;            /* vert WhatsApp */
  color: #0c2a16;
  border: none;
  border-radius: 10px;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}
.cf-submit:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.28);
}
.cf-submit:active { transform: translateY(0); }
.cf-note {
  margin-top: 1rem;
  font-size: 0.74rem;
  text-align: center;
  color: rgba(245,241,232,0.4);
}

/* ── RTL ── */
[dir="rtl"] .contact-info li { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .ci-txt { align-items: flex-end; }
[dir="rtl"] .cf-field select {
  background-position: left 1rem center;
  padding-right: 1rem;
  padding-left: 2.5rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  #contact { padding: 4.5rem 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-lead { max-width: none; }
}
@media (max-width: 480px) {
  .contact-form { padding: 1.8rem 1.4rem; }
  .contact-info { margin-top: 2rem; }
}

/* ── Footer Quote — Citation Méditerranéenne ─────────────────── */
.footer-quote {
  position: relative;
  border-top: 1px solid rgba(200,169,107,0.1);
  border-bottom: 1px solid rgba(200,169,107,0.1);
  padding: 5rem 0;
  background:
    radial-gradient(ellipse at center, rgba(200,169,107,0.06) 0%, transparent 70%),
    rgba(200,169,107,0.015);
  overflow: hidden;
}
.footer-quote::before,
.footer-quote::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 22%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,169,107,0.25), transparent);
  pointer-events: none;
}
.footer-quote::before { left: 0; }
.footer-quote::after  { right: 0; }

.footer-quote-inner {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.fq-branch {
  color: var(--gold, #C8A96B);
  opacity: 0;
  transform: scale(0.7);
  display: block;
  margin: 0 auto;
  transition: opacity 1s ease, transform 1.2s var(--ease-out, cubic-bezier(0.16,1,0.3,1));
}
.footer-quote.is-visible .fq-branch {
  opacity: 0.55;
  transform: scale(1);
}
.fq-branch-left  { transition-delay: 0.05s; }
.fq-branch-right { transition-delay: 0.9s; transform: scale(0.7) scaleY(-1); }
.footer-quote.is-visible .fq-branch-right { transform: scale(1) scaleY(-1); }

.fq-text {
  position: relative;
  font-family: var(--ff-serif, 'Cormorant Garamond', serif);
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: 0.005em;
  color: var(--cream, #F5F1E8);
  margin: 1.8rem 0;
  padding: 0 2rem;
}

/* Decorative quote marks */
.fq-mark {
  font-family: var(--ff-serif, 'Cormorant Garamond', serif);
  font-size: 4.5rem;
  font-style: normal;
  color: var(--gold, #C8A96B);
  opacity: 0;
  line-height: 0;
  display: inline-block;
  transition: opacity 0.8s ease 0.2s, transform 0.8s var(--ease-out, cubic-bezier(0.16,1,0.3,1)) 0.2s;
}
.fq-mark-l {
  vertical-align: -0.45em;
  margin-right: 0.18em;
  transform: translateY(20px);
}
.fq-mark-r {
  vertical-align: -0.45em;
  margin-left: 0.18em;
  transform: translateY(20px);
}
.footer-quote.is-visible .fq-mark {
  opacity: 0.6;
  transform: translateY(0);
}

/* Word-by-word reveal — populated by JS */
.fq-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease-out, cubic-bezier(0.16,1,0.3,1)),
              transform 0.7s var(--ease-out, cubic-bezier(0.16,1,0.3,1));
}
.footer-quote.is-visible .fq-word { opacity: 1; transform: translateY(0); }

/* Subtle gold underline */
.fq-text::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -1.5rem;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold, #C8A96B), transparent);
  transform: translateX(-50%);
  transition: width 1.2s var(--ease-out, cubic-bezier(0.16,1,0.3,1)) 0.6s;
}
.footer-quote.is-visible .fq-text::after { width: 70%; }

/* Attribution */
.fq-attribution {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease 1s, transform 0.8s var(--ease-out, cubic-bezier(0.16,1,0.3,1)) 1s;
}
.footer-quote.is-visible .fq-attribution { opacity: 1; transform: translateY(0); }

.fq-dash {
  width: 30px;
  height: 1px;
  background: rgba(200,169,107,0.45);
}
.fq-author {
  font-family: var(--ff-sans, 'Inter', sans-serif);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold, #C8A96B);
  white-space: nowrap;
}

/* RTL adjustments */
[dir="rtl"] .fq-text { font-style: normal; font-family: 'Noto Sans Arabic', serif; }
[dir="rtl"] .fq-author { font-family: 'Noto Sans Arabic', sans-serif; letter-spacing: 0.1em; }

/* Responsive */
@media (max-width: 768px) {
  .footer-quote { padding: 3.5rem 0; }
  .fq-text { padding: 0 1rem; margin: 1.2rem 0; }
  .fq-mark { font-size: 3rem; }
  .fq-attribution { margin-top: 2rem; gap: 0.7rem; }
  .fq-dash { width: 20px; }
  .fq-author { font-size: 0.62rem; letter-spacing: 0.18em; }
  .footer-quote::before, .footer-quote::after { width: 10%; }
}

/* ── Back to top ───────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 990;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(200,169,107,0.12);
  border: 1px solid rgba(200,169,107,0.3);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.4s, transform 0.4s, background 0.3s;
  backdrop-filter: blur(12px);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: rgba(200,169,107,0.22);
  border-color: var(--gold);
}

@media (max-width: 640px) {
  .back-to-top { bottom: 1.2rem; left: 1.2rem; }
  .footer-newsletter-inner { flex-direction: column; align-items: flex-start; }
  .fn-form { width: 100%; }
  .fn-input { width: 100%; flex: 1; }
  .hero-sub { font-size: 0.88rem; margin-bottom: 1.5rem; }
  .hero-ctas { gap: 0.8rem; }
}

#footer {
  background: var(--dark2);
  border-top: 1px solid rgba(200,169,107,0.12);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 6rem;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.footer-logo {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 2rem;
}

.footer-socials {
  display: flex; gap: 1rem;
}
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(200,169,107,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.83rem;
  color: rgba(245,241,232,0.5);
  margin-bottom: 0.7rem;
  transition: color 0.3s;
  line-height: 1.6;
}
.footer-col a:hover { color: var(--cream); }
.footer-addr { font-style: normal; }

.footer-bottom {
  border-top: 1px solid rgba(200,169,107,0.08);
  padding: 1.8rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p, .footer-cert {
  font-size: 0.7rem;
  color: rgba(245,241,232,0.3);
  letter-spacing: 0.05em;
}
.footer-legal {
  display: flex; gap: 2rem;
}
.footer-legal a {
  font-size: 0.7rem;
  color: rgba(245,241,232,0.3);
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--cream); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) and (min-width: 641px) {
  #hero { height: auto; min-height: 100vh; padding: 6rem 0 3rem; }
  .hero-container { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 2rem; }
  .hero-visual { min-height: 460px; order: -1; }
  .bottle-stage { max-width: 360px; }
  .float-card-top { right: -6%; }
  .float-card-bottom { left: -6%; }
  .hero-scroll-cue { display: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-pill { padding: 0.55rem 0.55rem 0.55rem 1.2rem; gap: 1rem; }
  .nav-cta { padding: 0.6rem 0.9rem 0.6rem 1.1rem; font-size: 0.72rem; }
  .nav-cta span:not([class]) { display: none; }

  #hero { padding: 6rem 0 4rem; height: auto; min-height: auto; }
  .hero-container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { order: -1; min-height: 400px; }
  .bottle-stage { max-width: 300px; }
  .float-card-top { right: 2%; }
  .float-card-bottom { left: 2%; }
  .hero-meta { gap: 1rem; flex-wrap: wrap; }
  .meta-num { font-size: 1.4rem; }

  .container { padding: 0 1.8rem; }

  .story-layout { grid-template-columns: 1fr; gap: 4rem; }
  .story-right { position: relative; }
  .story-float-badge { position: relative; left: auto; bottom: auto; margin-top: 1.5rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }

  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  /* ── Global overflow guard: clip each section at its own edge ── */
  section, footer, header, nav { overflow-x: hidden; }
  img, video, svg { max-width: 100%; }

  /* Indicateur "Défiler" masqué sur mobile (chevauchait les boutons) */
  .hero-scroll-cue { display: none; }

  /* ── Nav ── */
  #nav { top: 0.6rem; padding: 0 0.8rem; }
  .nav-pill { padding: 0.4rem 0.4rem 0.4rem 0.9rem; border-radius: 100px; gap: 0.6rem; max-width: calc(100vw - 1.6rem); }
  .nav-logo { font-size: 1.1rem; gap: 0.35rem; }
  .logo-mark { width: 24px; height: 24px; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 0.5rem 0.7rem; }
  .wa-icon-nav { display: block; width: 16px; height: 16px; }

  /* ── Shared typography ── */
  .section-label {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    gap: 0.5em;
  }
  .section-label::before { width: 1.2rem; }
  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* ── Hero layout ── */
  #hero {
    height: auto;
    min-height: 100svh;
    padding: 5rem 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 1.4rem;
    width: 100%;
    max-width: 100%;
  }

  /* ── Bottle — compact, centered, float cards hidden ── */
  .hero-visual {
    order: -1;
    min-height: unset;
    height: 200px;
    width: 100%;
    padding: 0;
    margin-bottom: 1.4rem;
    overflow: hidden;
  }
  .bottle-stage {
    max-width: 150px;
    aspect-ratio: 3/4.5;
    margin: 0 auto;
  }
  .hero-bottle { max-height: 200px; }
  .float-card-top,
  .float-card-bottom { display: none; }

  /* ── Hero content ── */
  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .hero-badge-pill {
    font-size: 0.6rem;
    padding: 0.35rem 0.8rem 0.35rem 0.6rem;
    margin-bottom: 0.9rem;
    justify-content: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-title {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
    margin-bottom: 0.8rem;
    line-height: 1.05;
    overflow-wrap: break-word;
  }
  .ht-italic { margin-left: 0; padding-left: 0; }
  .hero-sub {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    width: 100%;
    max-width: 100%;
    line-height: 1.6;
    color: rgba(245,241,232,0.55);
    overflow-wrap: break-word;
  }

  /* ── CTAs — stacked full-width ── */
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    margin-bottom: 1.6rem;
    width: 100%;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.2rem;
    font-size: 0.73rem;
  }

  /* ── Meta stats ── */
  .hero-meta {
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap; /* allow wrap to prevent overflow */
  }
  .meta-sep { height: 18px; }
  .meta-num { font-size: 1.05rem; }
  .meta-label { font-size: 0.54rem; }

  /* ── Marquee ── */
  .hero-marquee { overflow: hidden; }
  .marquee-content { gap: 1.2rem; padding-right: 1.2rem; font-size: 0.58rem; }

  /* ── Story ── */
  #story { padding: 5rem 0 4rem; }
  .story-lead { font-size: 1.15rem; }
  .story-body { font-size: 0.88rem; margin-bottom: 2.5rem; }
  .story-stats { flex-wrap: wrap; gap: 1.5rem; padding-top: 1.8rem; }
  .stat-n { font-size: 2.2rem; }
  .stat-prefix { font-size: 1.8rem; }
  .story-img-frame { aspect-ratio: 3/2; max-height: 260px; }
  .story-float-badge { min-width: 180px; padding: 0.8rem 1rem; }
  .story-quote { margin-top: 4rem; padding-top: 3rem; }
  .story-quote blockquote {
    font-size: clamp(1.4rem, 6vw, 2rem);
    overflow-wrap: break-word;
  }
  .quote-mark { display: none; }

  /* ── Heritage ── */
  .heritage-frame { padding: 0 0.8rem; }
  .heritage-body { font-size: 0.9rem; }

  /* ── Products ── */
  .products-header .section-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }

  /* ── Process ── */
  .step-title { max-width: 110px; font-size: 0.66rem; }

  /* ── Quality ── */
  .quality-content .section-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .quality-visual { max-width: 260px; }
  .quality-seal { width: 220px; height: 220px; }
  .seal-core { width: 100px; height: 100px; }

  /* ── Gallery ── */
  .gallery-header .section-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .gallery-sub { font-size: 0.7rem; }

  /* ── Footer quote ── */
  .fq-author { white-space: normal; text-align: center; }
  .fq-attribution { flex-direction: column; gap: 0.5rem; }
  .fq-dash { display: none; }

  /* ── Footer ── */
  .footer-nav { grid-template-columns: 1fr; }
  .footer-logo { font-size: 1.6rem; }
  .footer-tagline { font-size: 0.8rem; }

  /* ── Back to top ── */
  .back-to-top { bottom: 1.2rem; left: 1.2rem; }
}

/* ── Extra-small phones (≤ 380px) ── */
@media (max-width: 380px) {
  .container { padding: 0 1rem; }

  .hero-container { padding: 0 1rem; }
  .hero-title { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .hero-visual { height: 180px; }
  .bottle-stage { max-width: 130px; }
  .hero-bottle { max-height: 180px; }

  .section-title { font-size: clamp(1.6rem, 7.5vw, 2.2rem); }
  .section-label { font-size: 0.55rem; letter-spacing: 0.12em; }
  .section-label::before { width: 0.8rem; }

  .stat-n { font-size: 1.8rem; }

  .step-icon-wrap { width: 80px; height: 80px; }
  .step-icon { width: 30px; height: 30px; }
  .step-title { font-size: 0.6rem; max-width: 90px; }

  .quality-seal { width: 190px; height: 190px; }
  .seal-core { width: 88px; height: 88px; }

  /* Galerie — flèches au plus près des bords */
  .carousel-arrow { width: 36px; height: 36px; }
  .carousel-prev { left: 0.3rem; }
  .carousel-next { right: 0.3rem; }
  [dir="rtl"] .carousel-prev { left: auto; right: 0.3rem; }
  [dir="rtl"] .carousel-next { right: auto; left: 0.3rem; }

  .wa-float { right: 0.8rem; }
}
