/* ═══════════════════════════════════════════════════════
   MAISONS DE MARIE — v2.0 Ultra-Modern Mobile-First
   GSAP • Lenis • Scroll-Snap • Dark Luxury
   ═══════════════════════════════════════════════════════ */

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

/* ── CSS Variables ── */
:root {
  --gold: #C8A96E;
  --gold-light: #D4BF8A;
  --gold-dark: #A8894E;
  --gold-glow: rgba(200, 169, 110, 0.15);
  --black: #080808;
  --black-light: #111111;
  --black-card: #161616;
  --black-card-hover: #1C1C1C;
  --black-border: #252525;
  --cream: #F5F0E8;
  --cream-dark: #E8E0D0;
  --white: #FAFAFA;
  --gray: #7A7A7A;
  --gray-light: #A0A0A0;
  --gray-dark: #4A4A4A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Mobile-first spacing */
  --space-section: 5rem;
  --space-px: 1.25rem;
  --nav-height: 60px;
  --bottom-bar-height: 64px;
}

@media (min-width: 768px) {
  :root {
    --space-section: 8rem;
    --space-px: 2.5rem;
    --nav-height: 72px;
    --bottom-bar-height: 0px;
  }
}
@media (min-width: 1280px) {
  :root {
    --space-section: 10rem;
    --space-px: 4rem;
  }
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Lenis handles smooth scroll */
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 0.9375rem; /* 15px — readable on mobile */
  /* Prevent bottom bar overlap */
  padding-bottom: var(--bottom-bar-height);
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

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

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

/* ── Typography Utility ── */
.font-display { font-family: var(--font-display); }
.font-elegant { font-family: var(--font-elegant); }
.text-gold { color: var(--gold); }

/* ── Loader — Progressive Reveal ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  pointer-events: all;
}
#loader.done {
  animation: loaderExit 0.8s var(--ease-out-expo) forwards;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0;
  animation: loaderFadeIn 0.6s ease 0.1s forwards;
}
.loader-bar {
  width: 100px;
  height: 2px;
  background: var(--black-border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeIn 0.6s ease 0.3s forwards;
}
.loader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: loaderSlide 1s ease-in-out infinite;
}
@keyframes loaderFadeIn {
  to { opacity: 1; }
}
@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}
@keyframes loaderExit {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.05); pointer-events: none; visibility: hidden; }
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-px);
  transition: background 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo);
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(200, 169, 110, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 36px;
  width: auto;
  transition: transform 0.4s var(--ease-out-expo);
}
@media (min-width: 768px) {
  .nav-logo img { height: 42px; }
}

/* Desktop Nav Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}
.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  position: relative;
  transition: color 0.3s, text-shadow 0.3s;
  padding: 0.5rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out-expo);
}
.nav-link:hover {
  color: var(--gold);
}
.nav-link:hover::after {
  width: 100%;
}

/* Hamburger — only mobile */
.hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 201;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Min touch target 44px */
  padding: 10px 6px;
  margin: -10px -6px;
}
@media (min-width: 1024px) {
  .hamburger { display: none; }
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  position: absolute;
  left: 6px;
  right: 6px;
  width: calc(100% - 12px);
  transition: all 0.4s var(--ease-out-expo);
}
.hamburger span:nth-child(1) { top: 5px; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 5px; width: 55%; }
.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) {
  bottom: 50%;
  width: calc(100% - 12px);
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile Fullscreen Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out-expo), visibility 0.5s;
}
.mobile-menu-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem 0;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu-scroll::-webkit-scrollbar { display: none; }
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.08em;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out-expo),
              opacity 0.5s var(--ease-out-expo),
              color 0.3s;
  /* Touch target */
  padding: 0.5rem 1rem;
}
.mobile-menu.active a {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.16s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.24s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.28s; }
.mobile-menu a:nth-child(7) { transition-delay: 0.32s; }
.mobile-menu a:nth-child(8) { transition-delay: 0.36s; }
.mobile-menu a:nth-child(9) { transition-delay: 0.40s; }
.mobile-menu a:active {
  color: var(--gold);
  transform: scale(0.97);
}
.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: var(--space-px);
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 201;
  transition: all 0.3s;
  padding: 0;
}
.mobile-menu-close svg {
  width: 28px;
  height: 28px;
}
.mobile-menu-close:active {
  transform: scale(0.85);
}

/* ── Bottom Sticky CTA (Mobile Only) ── */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--bottom-bar-height);
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(200, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-px);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
}
.bottom-bar.visible {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .bottom-bar { display: none; }
}
.bottom-bar-btn {
  width: 100%;
  max-width: 400px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-full);
  transition: transform 0.2s, box-shadow 0.3s;
}
.bottom-bar-btn:active {
  transform: scale(0.97);
}
.bottom-bar-btn svg {
  width: 16px;
  height: 16px;
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg.swiper, .hero-bg .swiper-wrapper, .hero-bg .swiper-slide {
  width: 100%;
  height: 100%;
}
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.6) 0%,
    rgba(8,8,8,0.4) 40%,
    rgba(8,8,8,0.75) 85%,
    rgba(8,8,8,1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-px);
  width: 100%;
  max-width: 1200px;
}
.hero-center-logo {
  height: 60px;
  width: auto;
  margin: 0 auto 1.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  display: block;
}
@media (min-width: 768px) {
  .hero-center-logo { height: 80px; }
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.8);
}
.hero-title-small {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.25rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.8);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 11vw, 9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--white);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.7));
  margin-right: -0.02em; /* Optical centering for letter-spacing */
}
.hero-title .gold-text {
  display: inline-block;
  padding: 0.1em;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #E8D5A8, var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.hero-cta {
  margin-top: 2.5rem;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: calc(var(--bottom-bar-height) + 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .hero-scroll { bottom: 2.5rem; }
}
.hero-scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: var(--black-border);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 60%;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { top: -60%; }
  100% { top: 120%; }
}

/* ── Reveal Animations (GSAP classes) ── */
.gs-reveal {
  opacity: 0;
  visibility: hidden;
}
/* Fallback if GSAP fails to load */
.no-gsap .gs-reveal {
  opacity: 1;
  visibility: visible;
}

/* CSS-only reveals as fallback */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section Common ── */
.section {
  padding: var(--space-section) var(--space-px);
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 600;
  line-height: 1.05;
  margin-top: 0.75rem;
  letter-spacing: -0.01em;
}

.section-divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.25rem 0;
}

.section-desc {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-light);
  max-width: 550px;
}

/* ── Room Section Layout ── */
.room-section {
  overflow: hidden;
}

.room-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .room-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .room-grid.reverse .room-images { order: 2; }
  .room-grid.reverse .room-info { order: 1; }
}

/* Room Images */
.room-images {
  position: relative;
}
.room-img-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
@media (min-width: 768px) {
  .room-img-main { aspect-ratio: 4/5; }
}
.room-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}
.room-img-main:hover img {
  transform: scale(1.04);
}

/* Floating accent image */
.room-img-accent {
  position: absolute;
  bottom: -1rem;
  right: -0.75rem;
  width: 40%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--black);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
@media (min-width: 768px) {
  .room-img-accent {
    bottom: -1.5rem;
    right: -1.5rem;
    width: 42%;
  }
}
.room-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Room Info */
.room-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.room-description {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray-light);
}

/* ── Feature Pills (Wrap on mobile, scroll if too many) ── */
.features-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

@media (max-width: 479px) {
  /* On very small screens, allow horizontal scroll as fallback */
  .features-scroll.scroll-mobile {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 calc(-1 * var(--space-px));
    padding-left: var(--space-px);
    padding-right: var(--space-px);
  }
  .features-scroll.scroll-mobile::-webkit-scrollbar { display: none; }
}

.feature-pill {
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--cream);
  transition: all 0.3s var(--ease-smooth);
  /* Touch feedback */
  -webkit-tap-highlight-color: transparent;
}
.feature-pill svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.feature-pill:active {
  transform: scale(0.96);
  background: var(--gold-glow);
  border-color: var(--gold);
}
@media (hover: hover) {
  .feature-pill:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
  }
}

/* ── Feature Grid (for desktop fallback) ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.625rem;
  padding: 1.25rem 0.75rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out-expo);
  /* Touch target: always > 44px */
  min-height: 80px;
}
.feature-card:active {
  transform: scale(0.97);
  background: var(--gold-glow);
}
@media (hover: hover) {
  .feature-card:hover {
    border-color: rgba(200, 169, 110, 0.25);
    transform: translateY(-3px);
    background: var(--gold-glow);
  }
}
.feature-card-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
}
.feature-card-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}
.feature-card-name {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.3;
}

/* ── CTA Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  /* Min touch target */
  min-height: 48px;
  padding: 0 2rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}
.btn-primary:active {
  transform: scale(0.97);
}
@media (hover: hover) {
  .btn-primary:hover {
    color: var(--black);
  }
  .btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s var(--ease-out-expo);
}
@media (hover: hover) {
  .btn-primary:hover svg { transform: translateX(3px); }
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 48px;
  padding: 0 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-full);
  transition: all 0.4s var(--ease-out-expo);
}
.btn-gold:active {
  transform: scale(0.97);
}
@media (hover: hover) {
  .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 169, 110, 0.3);
  }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 2rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}
.btn-outline:active {
  transform: scale(0.97);
}
@media (hover: hover) {
  .btn-outline:hover { color: var(--black); }
  .btn-outline:hover::before { transform: scaleX(1); transform-origin: left; }
}

/* ── Services Cards (Now uses same style as Boutique carousel) ── */

/* Counter */
.counter-wrap {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 0.5rem;
}
.counter-btn {
  /* 44px minimum touch target */
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--black-border);
  color: var(--gold);
  font-size: 1.2rem;
  border-radius: 50%;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.counter-btn:active {
  transform: scale(0.92);
  background: var(--gold-glow);
  border-color: var(--gold);
}
@media (hover: hover) {
  .counter-btn:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
  }
}
.counter-val {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

/* ── Boutique Carousel (Swiper) ── */
.boutique-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  height: 100%;
}
.boutique-card:active {
  transform: scale(0.98);
}
@media (hover: hover) {
  .boutique-card:hover {
    border-color: rgba(200, 169, 110, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  }
}
.boutique-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--black-light);
}
.boutique-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
@media (hover: hover) {
  .boutique-card:hover .boutique-card-img img { transform: scale(1.05); }
}
.boutique-card-body {
  padding: 1.25rem;
}
.boutique-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
}
.boutique-card-price {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.boutique-card-desc {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.6;
  margin-top: 0.625rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Services Full-Width Grid ── */
.container-full {
  width: 100%;
  padding: 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card-img {
  position: absolute;
  inset: 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.2) 50%, transparent 100%);
  pointer-events: none;
  transition: background 0.4s;
}
.service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 1;
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out-expo);
}
.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 500;
  color: var(--white);
}
.service-card-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.service-card-desc {
  font-size: 0.75rem;
  color: var(--gray-light);
  line-height: 1.5;
  margin-top: 0.5rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s, max-height 0.4s var(--ease-out-expo);
}
@media (hover: hover) {
  .service-card:hover .service-card-img img {
    transform: scale(1.08);
  }
  .service-card:hover::after {
    background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.4) 60%, rgba(8,8,8,0.1) 100%);
  }
  .service-card:hover .service-card-desc {
    opacity: 1;
    max-height: 80px;
  }
}
/* Mobile: always show desc */
@media (hover: none) {
  .service-card-desc {
    opacity: 1;
    max-height: 80px;
  }
}

/* ── About / Marie Section ── */
.about-section {
  position: relative;
  overflow: hidden;
}
.about-text {
  font-family: var(--font-elegant);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 300;
  line-height: 2;
  color: var(--gray-light);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.about-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 700;
  line-height: 0.9;
  text-align: center;
  color: var(--black-card);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

/* ── Stats ── */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.375rem;
}

/* ── Swiper Navigation Arrows ── */
.reviews-swiper .swiper-button-prev,
.reviews-swiper .swiper-button-next {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--black-border);
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold);
  transition: border-color 0.3s, background 0.3s;
}
.reviews-swiper .swiper-button-prev::after,
.reviews-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}
.reviews-swiper .swiper-button-prev:hover,
.reviews-swiper .swiper-button-next:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.1);
}
@media (min-width: 768px) {
  .reviews-swiper .swiper-button-prev,
  .reviews-swiper .swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ── Reviews ── */
.review-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.4s;
  height: 100%;
}
@media (hover: hover) {
  .review-card:hover {
    border-color: rgba(200, 169, 110, 0.15);
  }
}
.review-stars {
  display: flex;
  gap: 2px;
}
.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  color: var(--gold);
}
.review-text {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--gray-light);
  margin-top: 1rem;
}
.review-author {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 1.25rem;
}

/* ── Review Form ── */
.form-input {
  width: 100%;
  min-height: 48px;
  padding: 0.875rem 1rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}
.form-input::placeholder {
  color: var(--gray);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  padding: 1rem;
}

/* Star Rating */
.star-rating {
  display: flex;
  gap: 4px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.star-rating input { display: none; }
.star-rating label {
  cursor: pointer;
  color: var(--black-border);
  transition: color 0.2s;
  /* Touch target */
  padding: 4px;
}
.star-rating label svg {
  width: 28px;
  height: 28px;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--gold);
}
.star-rating input:checked ~ label svg,
.star-rating label:hover svg,
.star-rating label:hover ~ label svg {
  fill: var(--gold);
}

/* ── Newsletter ── */
.newsletter-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
}
@media (min-width: 480px) {
  .newsletter-wrap {
    flex-direction: row;
  }
}
.newsletter-input {
  flex: 1;
  min-height: 48px;
  padding: 0 1.25rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-full);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input:focus {
  border-color: var(--gold);
}
.newsletter-input::placeholder {
  color: var(--gray);
}

/* ── Parallax Section ── */
.parallax-section {
  position: relative;
  height: 45vh;
  overflow: hidden;
}
@media (min-width: 768px) {
  .parallax-section { height: 55vh; }
}
.parallax-img {
  position: absolute;
  inset: -15%;
  width: 100%;
  height: 130%;
}
.parallax-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.5) 0%,
    rgba(8,8,8,0.3) 50%,
    rgba(8,8,8,0.8) 100%
  );
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-px);
}

/* ── Marquee ── */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 1.5rem 0;
  user-select: none;
  pointer-events: none;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 35s linear infinite;
  will-change: transform;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 300;
  color: rgba(200, 169, 110, 0.08);
  padding: 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.marquee-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: rgba(200, 169, 110, 0.2);
  border-radius: 50%;
  margin: 0 1.5rem;
  vertical-align: middle;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Decorative ── */
.gold-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto;
}
.gold-line-h {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ── Glass Card ── */
.glass {
  background: rgba(22, 22, 22, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 169, 110, 0.08);
  border-radius: var(--radius-lg);
}

/* ── Swiper ── */
.swiper-pagination-bullet {
  background: var(--gray) !important;
  opacity: 0.4 !important;
  width: 6px !important;
  height: 6px !important;
  transition: all 0.3s !important;
}
.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  opacity: 1 !important;
  width: 20px !important;
  border-radius: 3px !important;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--black-border);
  padding: 3rem var(--space-px) calc(2rem + var(--bottom-bar-height));
  background: var(--black-card);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-text {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.6;
}
.footer-link {
  font-size: 0.8125rem;
  color: var(--gray-light);
  transition: color 0.3s;
  padding: 0.25rem 0;
  display: inline-block;
}
.footer-link:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--gray-dark);
}

/* ── Responsive Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-px);
}

/* ── Image Reveal Animation ── */
.img-reveal {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.img-reveal img {
  transform: scale(1.2);
  transition: transform 1.4s var(--ease-out-expo);
}
.img-reveal.revealed img {
  transform: scale(1);
}

/* ── Voir plus ── */
.voir-plus-text {
  display: none;
}
.voir-plus-text.active {
  display: inline;
}
.voir-plus-btn {
  color: var(--gold);
  font-size: 0.8125rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  padding: 0.25rem;
  cursor: pointer;
}

/* ── Cursor (Desktop) ── */
@media (min-width: 1024px) and (hover: hover) {
  .cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
    opacity: 0;
  }
  .cursor-dot.active { opacity: 1; }
  .cursor-ring {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(200, 169, 110, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s;
    opacity: 0;
  }
  .cursor-ring.active { opacity: 1; }
}

/* ── Magnetic Button ── */
.magnetic-btn {
  transition: transform 0.3s var(--ease-out-expo);
}

/* ── Toast / Notification ── */
.toast {
  position: fixed;
  bottom: calc(var(--bottom-bar-height) + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  z-index: 300;
  opacity: 0;
  transition: all 0.5s var(--ease-out-expo);
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Sur Mesure Banner ── */
.custom-banner {
  background: linear-gradient(135deg, var(--black-card), var(--black-light));
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem var(--space-px);
  text-align: center;
}
@media (min-width: 768px) {
  .custom-banner { padding: 4rem 3rem; }
}

/* ── Localisation ── */
.location-section {
  position: relative;
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
  background: var(--black);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0;
  }
}
.location-map {
  width: 100%;
  min-height: 400px;
  background: var(--black-light);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) contrast(1.1);
}
.location-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .location-info {
    padding: 4rem;
  }
}
.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.location-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out-expo);
}
@media (hover: hover) {
  .location-item:hover .location-icon {
    background: var(--gold-glow);
    border-color: var(--gold);
    transform: scale(1.05);
  }
}
.location-item-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}
.location-item-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray-light);
}
.location-item-text a {
  transition: color 0.3s;
}
.location-item-text a:hover {
  color: var(--gold) !important;
}

/* ── Instagram Section ── */
.instagram-section {
  padding: var(--space-section) 0;
  overflow: hidden;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (min-width: 768px) {
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .insta-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.insta-card {
  position: relative;
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  background: var(--black-light);
}
.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.5s;
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.4s;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.insta-overlay svg {
  transform: scale(0.8);
  transition: transform 0.5s var(--ease-out-expo);
}
@media (hover: hover) {
  .insta-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
  }
  .insta-card:hover .insta-overlay {
    opacity: 1;
  }
  .insta-card:hover .insta-overlay svg {
    transform: scale(1);
  }
}
