@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN TOKENS & RESET
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette */
  --bg-cream: #FCF9F5;
  --bg-cream-dark: #F5EFEB;
  --bg-white: #FFFFFF;
  
  --gold-primary: #C5A059;
  --gold-dark: #A9843F;
  --gold-light: #E0C797;
  --gold-ultra-light: rgba(197, 160, 89, 0.08);
  --gold-glow: rgba(197, 160, 89, 0.2);
  
  --sage-green: #607A66;
  --sage-light: #E9ECE9;
  --sage-dark: #3F5344;
  
  --text-dark: #1E1E1E;
  --text-muted: #555555;
  --text-light: #888888;
  --text-white: #FFFFFF;
  
  /* Fonts */
  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Layout */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;
  --r-xl: 30px;
  
  /* Transitions */
  --ease: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --ease-quick: all 0.2s ease;
  --ease-elastic: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Shadows */
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.03);
  --shadow-gold: 0 10px 30px rgba(197, 160, 89, 0.08);
  --shadow-gold-hover: 0 20px 45px rgba(197, 160, 89, 0.16);
  --shadow-premium: 0 30px 70px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-light);
  border-radius: var(--r-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* ==========================================
   TYPOGRAPHY & UTILITIES
   ========================================== */
.s-title-container {
  text-align: center;
  margin-bottom: 4rem;
}

.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.s-tag::before, .s-tag::after {
  content: '';
  width: 15px;
  height: 1px;
  background-color: var(--gold-primary);
}

.s-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-dark);
}

.s-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-primary);
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* Premium Thin Gold Line */
.gold-divider {
  width: 60px;
  height: 1px;
  background-color: var(--gold-primary);
  margin: 1.5rem auto;
  opacity: 0.6;
}

/* ==========================================
   LAYOUT CONTAINERS
   ========================================== */
section {
  padding: 8rem 0;
  position: relative;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================
   PREMIUM BUTTONS
   ========================================== */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--text-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.1rem 2.4rem;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Metallic shine overlay effect */
.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  z-index: -1;
}

.btn-premium:hover::before {
  left: 150%;
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-hover);
  color: var(--text-white);
}

.btn-premium-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.05rem 2.3rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--ease);
}

.btn-premium-outline:hover {
  background: var(--gold-ultra-light);
  transform: translateY(-2px);
}

/* ==========================================
   NAVIGATION HEADER
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(252, 249, 245, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.12);
  transition: var(--ease);
}

header.scrolled {
  padding: 0.4rem 0;
  background: rgba(252, 249, 245, 0.95);
  box-shadow: var(--shadow-soft);
}

.nav-w {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  transition: var(--ease);
}

header.scrolled .nav-w {
  height: 70px;
}

/* Logo */
.brand {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-title);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-top: 0.15rem;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--ease-quick);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold-primary);
  transition: var(--ease-quick);
}

.nav-links a:hover {
  color: var(--gold-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Responsive Menu Button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  z-index: 1100;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--text-dark);
  transition: var(--ease-quick);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-cream);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative backdrop patterns */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--gold-ultra-light) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-w {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Hero Info */
.hero-content {
  max-width: 580px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold-ultra-light);
  border: 1px solid rgba(197, 160, 89, 0.2);
  color: var(--gold-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.hero-tag span {
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  animation: heartbeats 1.8s infinite;
}

@keyframes heartbeats {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 10px var(--gold-primary); }
  100% { transform: scale(1); opacity: 0.5; }
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-primary);
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--gold-primary);
}

.proof-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.proof-text strong {
  color: var(--text-dark);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Right Hero Visual Showcase */
.hero-visual {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-frame {
  position: relative;
  width: 85%;
  height: 90%;
  border-radius: var(--r-xl);
  border: 1px solid rgba(197, 160, 89, 0.2);
  background: var(--bg-white);
  padding: 10px;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  z-index: 2;
}

/* Gold background overlay decorative corner */
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -4%;
  left: 0;
  width: 120px;
  height: 120px;
  border-left: 2px solid var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);
  border-bottom-left-radius: var(--r-lg);
  pointer-events: none;
  z-index: 1;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: -4%;
  right: 0;
  width: 120px;
  height: 120px;
  border-right: 2px solid var(--gold-primary);
  border-top: 2px solid var(--gold-primary);
  border-top-right-radius: var(--r-lg);
  pointer-events: none;
  z-index: 1;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--r-xl) - 10px);
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 1.2s ease;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.96);
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
  color: var(--text-white);
  padding: 2.5rem 1.8rem 1.5rem;
  font-family: var(--font-title);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-align: center;
  z-index: 3;
}

/* Carousel indicators */
.carousel-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--ease-quick);
}

.carousel-dot.active {
  background: var(--gold-light);
  width: 16px;
  border-radius: 10px;
}

/* ==========================================
   LE SALON (GALERIE & AMBIANCE)
   ========================================== */
.salon {
  background-color: var(--bg-cream-dark);
}

.salon-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.salon-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  border: 1px solid rgba(197, 160, 89, 0.1);
  transition: var(--ease);
}

.salon-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--ease);
}

.salon-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(197, 160, 89, 0.15);
  opacity: 0;
  transition: var(--ease);
  z-index: 1;
}

.salon-item::after {
  content: '✨ Voir l\'institut';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  color: var(--text-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transition: var(--ease);
  z-index: 2;
}

.salon-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.salon-item:hover img {
  transform: scale(1.05);
}

.salon-item:hover::before {
  opacity: 1;
}

.salon-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* Asymmetric Columns Layout */
.salon-item.grid-1 { grid-column: span 5; height: 380px; }
.salon-item.grid-2 { grid-column: span 7; height: 380px; }
.salon-item.grid-3 { grid-column: span 7; height: 420px; }
.salon-item.grid-4 { grid-column: span 5; height: 420px; }

/* ==========================================
   PRESTATIONS & TARIFS INTERACTIFS
   ========================================== */
.prestations {
  background-color: var(--bg-white);
}

/* Dynamic Tabs */
.tabs-nav-container {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.1);
  -webkit-overflow-scrolling: touch;
}

.tabs-nav-container::-webkit-scrollbar {
  height: 4px;
}

.tabs-nav {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
}

.tab-btn {
  background: none;
  border: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: var(--ease-quick);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn i {
  font-size: 1.1rem;
}

.tab-btn:hover {
  color: var(--gold-primary);
}

.tab-btn.active {
  background: var(--gold-ultra-light);
  color: var(--gold-primary);
  border: 1px solid rgba(197, 160, 89, 0.25);
}

/* Tab Panels Grid */
.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-panel.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

/* Service elegant Card */
.service-card {
  background-color: var(--bg-cream);
  border: 1px solid rgba(197, 160, 89, 0.08);
  border-radius: var(--r-md);
  padding: 2.2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--gold-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--ease);
}

.service-card:hover {
  border-color: rgba(197, 160, 89, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 0.8rem;
}

.service-name {
  font-family: var(--font-title);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
}

.service-price {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-primary);
  white-space: nowrap;
}

.service-duration {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: var(--gold-ultra-light);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.service-desc {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.service-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--ease-quick);
}

.service-link span {
  display: inline-block;
  transition: transform 0.25s ease;
}

.service-card:hover .service-link {
  color: var(--gold-primary);
}

.service-card:hover .service-link span {
  transform: translateX(4px);
}

.prestations-disclaimer {
  text-align: center;
  margin-top: 3.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  font-style: italic;
}

/* ==========================================
   ENGAGEMENTS & COSMÉTIQUES VITACOLOGY
   ========================================== */
.engagements {
  background-color: var(--bg-cream);
  overflow: hidden;
}

.engagements-w {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

/* Left products block */
.engagements-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

.products-stack {
  position: relative;
  width: 85%;
  height: 90%;
  border-radius: 200px 200px var(--r-xl) var(--r-xl); /* Arch Shape */
  border: 1px solid rgba(197, 160, 89, 0.15);
  background: var(--bg-white);
  padding: 12px;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  z-index: 2;
}

.products-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 190px 190px calc(var(--r-xl) - 5px) calc(var(--r-xl) - 5px);
}

/* Small plant decorative badge absolute */
.badge-eco {
  position: absolute;
  bottom: 5%;
  right: -5%;
  background: var(--sage-green);
  color: var(--text-white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(96, 122, 102, 0.25);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.badge-eco i {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.badge-eco span {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

/* Right content details */
.brand-highlight {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-green);
  margin-bottom: 1rem;
  display: block;
}

.engagements-content h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
}

.engagements-content h2 span {
  font-style: italic;
  font-weight: 300;
  color: var(--sage-green);
}

.engagements-content p {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.engagement-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.engagement-item-row {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.engagement-icon-w {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.engagement-txt-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.engagement-txt-desc {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.5;
}

/* ==========================================
   AVIS CLIENTS HAUT DE GAMME
   ========================================== */
.testimonials {
  background-color: var(--bg-white);
  padding: 8rem 0;
  position: relative;
}

.testimonials::before {
  content: '“';
  position: absolute;
  top: 10%;
  left: 5%;
  font-family: var(--font-title);
  font-size: 12rem;
  color: var(--gold-ultra-light);
  line-height: 0.8;
  pointer-events: none;
}

.testi-carousel-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.testi-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.testi-slide {
  flex-shrink: 0;
  width: 100%;
  text-align: center;
  padding: 0 2rem;
}

.testi-stars {
  justify-content: center;
  margin-bottom: 1.8rem;
}

.testi-text {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 2.2rem;
}

.testi-author {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-ultra-light);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
}

.testi-author-info {
  text-align: left;
}

.testi-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testi-meta {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 0.1rem;
}

/* Carousel arrows */
.testi-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: 1px solid rgba(197, 160, 89, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease-quick);
  z-index: 10;
}

.testi-btn:hover {
  background: var(--gold-primary);
  color: var(--text-white);
  border-color: var(--gold-primary);
}

.testi-btn.prev { left: 0; }
.testi-btn.next { right: 0; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.testi-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.25);
  cursor: pointer;
  transition: var(--ease-quick);
}

.testi-dot.active {
  background: var(--gold-primary);
  transform: scale(1.4);
}

/* ==========================================
   FAQ ACCORDÉON BIEN-ÊTRE
   ========================================== */
.faq {
  background-color: var(--bg-cream-dark);
}

.faq-w {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.faq-aside {
  position: sticky;
  top: 130px;
}

.faq-aside h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.faq-aside h2 span {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-primary);
}

.faq-aside p {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid rgba(197, 160, 89, 0.06);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--ease);
}

.faq-item.active {
  border-color: rgba(197, 160, 89, 0.2);
  box-shadow: var(--shadow-gold);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 2rem;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  user-select: none;
  transition: var(--ease-quick);
}

.faq-q:hover {
  color: var(--gold-primary);
}

.faq-item.active .faq-q {
  color: var(--gold-primary);
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--gold-primary);
  transition: var(--ease);
}

/* Horizontal line */
.faq-icon::before {
  width: 12px;
  height: 1.5px;
}

/* Vertical line */
.faq-icon::after {
  width: 1.5px;
  height: 12px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-icon::before {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-a-inner {
  padding: 0 2rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================
   CONTACT, HORAIRES & LOCALISATION
   ========================================== */
.contact {
  background-color: var(--bg-white);
}

.contact-w {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
}

/* Form block style */
.contact-block {
  background-color: var(--bg-cream);
  border: 1px solid rgba(197, 160, 89, 0.08);
  border-radius: var(--r-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-premium);
}

.contact-block h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.contact-block-sub {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.45rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(197, 160, 89, 0.15);
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 500;
  outline: none;
  transition: var(--ease-quick);
}

.form-control::placeholder {
  color: #B2B2B2;
  font-weight: 400;
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  display: none;
}

.form-feedback.success {
  color: var(--sage-green);
  display: block;
}

.form-feedback.error {
  color: #C24B4B;
  display: block;
}

/* Info, Location & Hours column */
.info-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-box {
  background-color: var(--bg-cream-dark);
  border-radius: var(--r-md);
  padding: 2rem 2.2rem;
  border: 1px solid rgba(197, 160, 89, 0.04);
}

.info-box h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.info-line {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.info-line i {
  color: var(--gold-primary);
  margin-top: 0.2rem;
  font-size: 1rem;
}

.info-line strong {
  color: var(--text-dark);
}

/* Hours grid */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px dashed rgba(197, 160, 89, 0.12);
  padding-bottom: 0.35rem;
}

.hours-row.highlight {
  color: var(--gold-primary);
  font-weight: 700;
}

.hours-row.closed {
  opacity: 0.55;
}

/* Map frame styling */
.map-container {
  width: 100%;
  height: 220px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.15);
  box-shadow: var(--shadow-soft);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================
   FOOTER PREMIUM
   ========================================== */
footer {
  background-color: var(--text-dark);
  color: var(--bg-cream);
  padding: 5.5rem 0 2rem;
  border-top: 3px solid var(--gold-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.f-brand .brand-title {
  color: var(--bg-cream);
}

.f-brand .brand-sub {
  color: var(--gold-light);
}

.f-brand p {
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-light);
  margin-top: 1.2rem;
  max-width: 240px;
}

.f-title {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.f-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--ease-quick);
}

.f-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.f-contact-line {
  display: flex;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.f-contact-line i {
  color: var(--gold-light);
  margin-top: 0.15rem;
}

.f-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-cream);
  font-size: 0.95rem;
  transition: var(--ease-quick);
}

.social-icon:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.f-copy {
  font-size: 0.72rem;
  color: var(--text-light);
}

.f-legal {
  display: flex;
  gap: 1.5rem;
}

.f-legal a {
  font-size: 0.72rem;
  color: var(--text-light);
  transition: var(--ease-quick);
}

.f-legal a:hover {
  color: var(--gold-light);
}

/* ==========================================
   FLOATING ACTION BUTTON
   ========================================== */
.float-rdv {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--text-white);
  padding: 0.9rem 1.6rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--ease);
  transform: translateY(120px);
  opacity: 0;
  visibility: hidden;
}

.float-rdv.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.float-rdv:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(197, 160, 89, 0.5);
  color: var(--text-white);
}

/* ==========================================
   INTERSECTION OBSERVER REVEAL EFFECT
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.d-1 { transition-delay: 0.15s; }
.d-2 { transition-delay: 0.3s; }
.d-3 { transition-delay: 0.45s; }

/* ==========================================
   RESPONSIVE STYLES (MOBILE-FIRST)
   ========================================== */
@media (max-width: 1024px) {
  section {
    padding: 6rem 0;
  }
  
  .hero-w {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-proof {
    justify-content: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .salon-grid {
    gap: 1.2rem;
  }
  
  .salon-item.grid-1,
  .salon-item.grid-2,
  .salon-item.grid-3,
  .salon-item.grid-4 {
    grid-column: span 6;
    height: 300px;
  }
  
  .tab-panel {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .engagements-w {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .engagements-visual {
    max-width: 440px;
    height: 400px;
    margin: 0 auto;
    order: 2;
  }
  
  .engagements-content {
    text-align: center;
  }
  
  .engagement-list {
    align-items: center;
    max-width: 500px;
    margin: 0 auto 2.5rem;
  }
  
  .engagement-item-row {
    text-align: left;
  }
  
  .faq-w {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .faq-aside {
    position: static;
    text-align: center;
  }
  
  .contact-w {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Navigation Menu Panel */
  .menu-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
    transition: var(--ease);
    z-index: 1050;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .nav-right .btn-premium {
    display: none; /* Hide primary header CTA on small screen, using float RDV instead */
  }
  
  .salon-grid {
    grid-template-columns: 1fr;
  }
  
  .salon-item.grid-1,
  .salon-item.grid-2,
  .salon-item.grid-3,
  .salon-item.grid-4 {
    grid-column: span 12;
    height: 260px;
  }
  
  .contact-block {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .f-brand {
    text-align: center;
    align-items: center;
  }
  
  .f-brand p {
    margin: 1.2rem auto 0;
  }
  
  .f-title {
    text-align: center;
    margin-bottom: 1.2rem;
  }
  
  .f-links {
    align-items: center;
  }
  
  .f-contact-line {
    justify-content: center;
  }
  
  .f-socials {
    justify-content: center;
  }
  
  .f-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
  
  .f-legal {
    justify-content: center;
  }
  
  .float-rdv {
    bottom: 1.5rem;
    right: 1.5rem;
    left: 1.5rem;
    justify-content: center;
    font-size: 0.68rem;
    padding: 0.85rem 0;
  }
}
