/* =============================================
   BEAUTY DESIGNER – Design System
   Studio Esthétique & Dermo-Réparatrice
   Le Barcarès, 66420
   ============================================= */

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

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  /* Colors */
  --nude:      #F5EDE0;
  --nude-light: #FAF7F2;
  --nude-mid:  #EDE0CF;
  --nude-dark: #E0CCB3;
  --gold:      #C9A96E;
  --gold-light: #DFC08A;
  --gold-dark: #8B7355;
  --black-soft: #2C2C2C;
  --black-mid:  #1A1A1A;
  --white-warm: #FDFAF6;
  --gray-soft:  #9A8F85;
  --gray-light: #D4CAC0;

  /* Typography */
  --font-title:   'Playfair Display', 'Cormorant Garamond', serif;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 10rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-soft: 0 4px 30px rgba(44, 44, 44, 0.08);
  --shadow-card: 0 8px 40px rgba(44, 44, 44, 0.12);
  --shadow-hover: 0 16px 60px rgba(44, 44, 44, 0.18);
  --shadow-gold: 0 8px 30px rgba(201, 169, 110, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med:  0.4s ease;
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --max-width: 1200px;
  --nav-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--black-soft);
  background-color: var(--white-warm);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.display-title {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.04em;
}

h1, h2, h3 {
  font-family: var(--font-title);
  color: var(--black-soft);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
}

h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-soft);
  line-height: 1.8;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad {
  padding: var(--space-xl) 0;
}

.section-pad-lg {
  padding: var(--space-2xl) 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

.divider-gold {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  display: block;
}
.divider-gold.left {
  margin: 1.5rem 0;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.3s; }
.fade-in-delay-3 { transition-delay: 0.45s; }
.fade-in-delay-4 { transition-delay: 0.6s; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all var(--transition-med);
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--white-warm);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white-warm);
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(253, 250, 246, 0.15);
  color: var(--white-warm);
  border: 1px solid rgba(253, 250, 246, 0.4);
  backdrop-filter: blur(8px);
}
.btn-light:hover {
  background: rgba(253, 250, 246, 0.25);
  transform: translateY(-2px);
}

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-med);
}

#navbar.transparent {
  background: linear-gradient(rgba(26, 18, 8, 0.75) 0%, rgba(26, 18, 8, 0) 100%);
}

#navbar.scrolled {
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201, 169, 110, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-img {
  height: 72px;
  width: auto;
  transition: transform var(--transition-fast);
  display: block;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.04);
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white-warm);
  transition: color var(--transition-fast);
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color var(--transition-fast);
}

#navbar.scrolled .nav-logo-name { color: var(--black-soft); }
#navbar.scrolled .nav-logo-sub  { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 250, 246, 0.85);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width var(--transition-fast);
}

.nav-links a:hover { color: var(--white-warm); }
.nav-links a:hover::after { width: 100%; }

#navbar.scrolled .nav-links a { color: var(--gray-soft); }
#navbar.scrolled .nav-links a:hover { color: var(--gold); }
#navbar.scrolled .nav-links a::after { background: var(--gold); }

.nav-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(253, 250, 246, 0.15) !important;
  color: white !important;
  border: 1.5px solid rgba(253, 250, 246, 0.45) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none !important;
}
.nav-cta:hover {
  background: rgba(253, 250, 246, 0.25) !important;
  transform: scale(1.05);
}
#navbar.scrolled .nav-cta {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%) !important;
  color: var(--white-warm) !important;
  border: 1.5px solid var(--gold) !important;
  box-shadow: var(--shadow-gold) !important;
}
#navbar.scrolled .nav-cta:hover {
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.45) !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white-warm);
  transition: all var(--transition-fast);
}
#navbar.scrolled .nav-toggle span { background: var(--black-soft); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white-warm);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--black-soft);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}
.mobile-nav-link:hover {
  color: var(--gold);
}
.mobile-nav .btn {
  font-size: 0.72rem;
  padding: 0.7rem 1.6rem;
}
.mobile-nav-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-soft);
}

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(224, 204, 179, 0.25) 0%, transparent 55%),
    linear-gradient(135deg, #1A1208 0%, #2C1F0A 30%, #1E160A 60%, #0E0D0B 100%);
}

/* Decorative orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.2) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(224,204,179,0.15) 0%, transparent 70%);
  bottom: -50px;
  left: 10%;
  animation-delay: 3s;
}
.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation-delay: 5s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* Decorative lines */
.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.06;
}
.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
}
.hero-lines::before {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-lines::after {
  width: 1000px;
  height: 1000px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: hero-fade-up 1s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white-warm);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: hero-fade-up 1s ease 0.5s forwards;
}

.hero-title span {
  display: block;
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(253, 250, 246, 0.65);
  margin-bottom: 3rem;
  opacity: 0;
  animation: hero-fade-up 1s ease 0.7s forwards;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: hero-fade-up 1s ease 0.9s forwards;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 250, 246, 0.7);
}

.hero-badge .badge-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-fade-up 1s ease 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(253, 250, 246, 0.4);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: hero-fade-up 1s ease 1.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.1); }
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   À PROPOS SECTION
   ============================================= */
#about {
  background: var(--white-warm);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual-main {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-visual-bg {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,169,110,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(224,204,179,0.4) 0%, transparent 50%),
    linear-gradient(145deg, #2C1F0A 0%, #3D2A0D 40%, #2A1E0B 70%, #1A1208 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-inner {
  text-align: center;
  color: rgba(253,250,246,0.6);
}

.about-visual-inner .big-letter {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(201,169,110,0.4);
  line-height: 1;
  display: block;
  font-style: italic;
}

.about-badge {
  position: absolute;
  bottom: 2.5rem;
  right: -1.5rem;
  background: var(--white-warm);
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about-badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--black-soft);
  line-height: 1;
}
.about-badge-text span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-soft);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(201,169,110,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-top: 2px;
}

.about-feature-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black-soft);
  margin-bottom: 0.2rem;
}
.about-feature-text p {
  font-size: 0.85rem;
  margin: 0;
}

/* =============================================
   PRESTATIONS SECTION
   ============================================= */
#prestations {
  background: var(--nude);
  position: relative;
  overflow: hidden;
}

#prestations::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.prestations-header {
  text-align: center;
  margin-bottom: 4rem;
}

.prestations-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.7rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gray-soft);
  border: 1px solid var(--gray-light);
  transition: all var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--gold);
  color: var(--white-warm);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.presta-card {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.presta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition-med);
  transform-origin: left;
}

.presta-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,169,110,0.15);
}
.presta-card:hover::before {
  transform: scaleX(1);
}

.presta-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(201,169,110,0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(201,169,110,0.2);
}

.presta-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--black-soft);
}

.presta-card p {
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}

.presta-services {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.presta-service-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--gray-soft);
  font-family: var(--font-body);
}

.presta-service-item::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   AVIS CLIENTS SECTION
   ============================================= */
#avis {
  background: var(--nude);
  position: relative;
  overflow: hidden;
}

#avis::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(201,169,110,0.06);
  line-height: 1;
  pointer-events: none;
}

.avis-header {
  text-align: center;
  margin-bottom: 4rem;
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.avis-card {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-med);
  position: relative;
  border: 1px solid transparent;
}

.avis-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201,169,110,0.15);
}

.avis-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
}

.avis-stars span {
  color: var(--gold);
  font-size: 1rem;
}

.avis-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--black-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

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

.avis-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white-warm);
}

.avis-author-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black-soft);
}
.avis-author-info span {
  font-size: 0.75rem;
  color: var(--gray-soft);
}

.avis-google-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gray-soft);
  letter-spacing: 0.05em;
}

.google-g {
  width: 16px;
  height: 16px;
  background: #EA4335;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.55rem;
  font-weight: 700;
}

.avis-reply {
  margin-top: 1.5rem;
  background: rgba(201, 169, 110, 0.05);
  border-left: 2px solid var(--gold);
  padding: 0.8rem 1rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.avis-reply-from {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.avis-reply-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--black-soft);
  font-style: italic;
  font-family: var(--font-display);
  margin: 0;
}

.avis-cta {
  text-align: center;
  margin-top: 3rem;
}

/* =============================================
   INSTAGRAM STRIP
   ============================================= */
#instagram {
  background: var(--white-warm);
  padding: 5rem 0;
  overflow: hidden;
}

.insta-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.insta-header h2 { color: var(--black-soft); }
.insta-header p { color: var(--gray-soft); }
.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 1rem;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.insta-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.insta-img {
  width: 100%;
  height: 100%;
  transition: transform var(--transition-med);
}

.insta-item:hover .insta-img { transform: scale(1.08); }

.insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(26,18,8,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.insta-item:hover .insta-hover { opacity: 1; }
.insta-hover span { color: var(--white-warm); font-size: 1.5rem; }

/* Instagram image backgrounds */
.ig-1 { background: linear-gradient(135deg, #2C1F0A, #C9A96E 80%); }
.ig-2 { background: linear-gradient(145deg, #FAF7F2, #EDE0CF 70%, #C9A96E); }
.ig-3 { background: linear-gradient(160deg, #1A1208, #3D2A0D); }
.ig-4 { background: linear-gradient(125deg, #F5EDE0, #C9A96E); }
.ig-5 { background: linear-gradient(150deg, #2C1F0A, #EDE0CF 60%); }

/* =============================================
   CONTACT SECTION
   ============================================= */
#contact {
  background: var(--white-warm);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info > p {
  margin-bottom: 2.5rem;
}

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

.contact-detail {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(201,169,110,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(201,169,110,0.2);
}

.contact-detail-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--black-soft);
}

.contact-detail-text a {
  font-size: 0.95rem;
  color: var(--black-soft);
  transition: color var(--transition-fast);
}
.contact-detail-text a:hover { color: var(--gold); }

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-soft);
  transition: all var(--transition-fast);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white-warm);
  transform: translateY(-2px);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-container {
  width: 100%;
  height: 350px;
  background: var(--nude-mid);
  position: relative;
  overflow: hidden;
}

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

/* Contact Form */
.contact-form-section {
  background: var(--nude);
  padding: var(--space-xl) 0;
}

.contact-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-wrap h2 {
  margin-bottom: 0.5rem;
}
.contact-form-wrap p {
  margin-bottom: 2.5rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-soft);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  background: var(--white-warm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black-soft);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}

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

.form-submit {
  text-align: center;
  padding-top: 0.5rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(201,169,110,0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,169,110,0.3);
}

.form-success p {
  color: var(--gold-dark);
  font-weight: 400;
}

/* RGPD */
.rgpd-note {
  font-size: 0.72rem;
  color: var(--gray-soft);
  text-align: center;
  margin-top: 1rem;
}

/* =============================================
   BOOKING STRIP (CTA Banner)
   ============================================= */
.booking-strip {
  background: var(--nude-mid);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(201,169,110,0.08) 0%, transparent 50%);
}

.booking-strip-content {
  position: relative;
  z-index: 1;
}

.booking-strip h2 {
  color: var(--black-soft);
  margin-bottom: 0.5rem;
}

.booking-strip p {
  color: var(--gray-soft);
  margin-bottom: 2rem;
}

/* =============================================
   FLOATING CTA
   ============================================= */
#floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-med);
  pointer-events: none;
}

#floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--white-warm);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(201,169,110,0.5);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,169,110,0.65);
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--black-mid);
  color: rgba(253,250,246,0.6);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(253,250,246,0.08);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white-warm);
  margin-bottom: 0.3rem;
  letter-spacing: 0.06em;
}

.footer-brand .tagline {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(253,250,246,0.55);
  transition: color var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
}

.footer-bottom a {
  color: rgba(253,250,246,0.4);
  transition: color var(--transition-fast);
}
.footer-bottom a:hover { color: var(--gold); }

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials .social-link {
  width: 36px;
  height: 36px;
  font-size: 0.9rem;
  border-color: rgba(253,250,246,0.12);
  color: rgba(253,250,246,0.4);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual-main {
    aspect-ratio: 16/9;
    max-height: 400px;
  }

  .about-badge {
    right: 1rem;
    bottom: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .insta-item:nth-child(n+4) { display: none; }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-badges { display: none; }

  .prestations-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .avis-grid {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insta-item:nth-child(n+3) { display: none; }

  .booking-strip { padding: 3rem 0; }

  #floating-cta {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }

  .container { padding: 0 1.2rem; }
  .section-pad { padding: 4rem 0; }
}

/* =============================================
   SCROLLBAR STYLING
   ============================================= */
/* =============================================
   MULTI-PAGE – INNER PAGE STYLES
   ============================================= */

/* Active nav link */
.nav-links a.nav-active {
  color: var(--gold-light) !important;
}
#navbar.scrolled .nav-links a.nav-active {
  color: var(--gold) !important;
}
.nav-links a.nav-active::after {
  width: 100% !important;
}

/* =============================================
   PAGE HERO – Inner pages banner
   ============================================= */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 5rem) 0 5rem;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(201,169,110,0.18) 0%, transparent 60%),
    linear-gradient(135deg, #1A1208 0%, #2C1F0A 40%, #1A1208 100%);
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(201,169,110,0.1) 0%, transparent 50%);
}

.page-hero-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.05;
}
.page-hero-deco::before,
.page-hero-deco::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold);
}
.page-hero-deco::before {
  width: 500px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.page-hero-deco::after {
  width: 750px; height: 750px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.breadcrumb a {
  color: rgba(201,169,110,0.7);
  transition: color var(--transition-fast);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(253,250,246,0.35); }
.breadcrumb .current { color: var(--gold-light); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white-warm);
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero p {
  color: rgba(253,250,246,0.55);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-section {
  background: var(--nude);
  padding: var(--space-xl) 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 2rem);
  right: calc(16.66% + 2rem);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 50%, var(--gold));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white-warm);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-gold);
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.88rem;
}

/* =============================================
   FAQ – Accordion
   ============================================= */
.faq-section {
  background: var(--white-warm);
  padding: var(--space-xl) 0;
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white-warm);
  transition: border-color var(--transition-fast);
}

.faq-item:hover, .faq-item.open {
  border-color: rgba(201,169,110,0.4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black-soft);
  gap: 1rem;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  line-height: 1;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =============================================
   SERVICE DETAIL – Full presta layout
   ============================================= */
.service-section {
  padding: var(--space-xl) 0;
}
.service-section:nth-child(even) {
  background: var(--nude);
}

.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-section-inner.reverse {
  direction: rtl;
}
.service-section-inner.reverse > * {
  direction: ltr;
}

.service-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-visual-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual-icon {
  font-size: 5rem;
  opacity: 0.3;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.service-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.service-item-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--white-warm);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
  transition: all var(--transition-fast);
}
.service-section:nth-child(even) .service-item-row {
  background: var(--nude-light);
}
.service-item-row:hover {
  border-color: rgba(201,169,110,0.35);
  transform: translateX(4px);
}

.service-item-icon {
  font-size: 1.2rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.service-item-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black-soft);
  margin-bottom: 0.15rem;
}
.service-item-info span {
  font-size: 0.82rem;
  color: var(--gray-soft);
}

/* Price badge */
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
}



/* =============================================
   CONTACT PAGE – Specific
   ============================================= */
.contact-page-map {
  width: 100%;
  height: 450px;
  border-radius: 0;
  overflow: hidden;
  margin-top: 4rem;
}
.contact-page-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.horaires-card {
  background: var(--nude);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(201,169,110,0.2);
}

.horaires-card h4 {
  margin-bottom: 1.2rem;
}

.horaire-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.12);
  font-size: 0.88rem;
}
.horaire-row:last-child { border-bottom: none; }
.horaire-row .day { color: var(--black-soft); font-weight: 700; }
.horaire-row .time { color: var(--gray-soft); }
.horaire-row .planity-link a { color: var(--gold); font-weight: 700; }

/* =============================================
   RESPONSIVE – Inner pages
   ============================================= */
@media (max-width: 1024px) {
  .service-section-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-section-inner.reverse { direction: ltr; }
  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .page-hero { padding: calc(var(--nav-height) + 3rem) 0 3rem; }
}

/* =============================================
   SCROLLBAR STYLING
   ============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--nude); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* =============================================
   SELECTION
   ============================================= */
::selection {
  background: rgba(201,169,110,0.25);
  color: var(--black-soft);
}

/* =============================================
   REFRESH VISUEL & DROPDOWN SERVICES
   ============================================= */

/* Dropdown Menu */
.nav-links li {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  transition: transform var(--transition-med);
}

.nav-links li:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white-warm);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--radius-md);
  padding: 0.7rem 0;
  min-width: 220px;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: 1000;
}

.nav-links li:hover .nav-dropdown-menu,
.nav-links li:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
  display: block;
  width: 100%;
}

.nav-dropdown-menu li a {
  display: block !important;
  padding: 0.7rem 1.5rem !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--black-soft) !important;
  text-align: center !important;
  transition: all var(--transition-fast) !important;
}

.nav-dropdown-menu li a::after {
  display: none !important;
}

.nav-dropdown-menu li a:hover {
  color: var(--gold) !important;
  background: rgba(201, 169, 110, 0.06);
}

/* Translucent dropdown style when navbar scrolled */
#navbar.scrolled .nav-dropdown-menu {
  background: var(--white-warm);
  border-color: rgba(201, 169, 110, 0.2);
}

/* SVG Curve in Hero Bottom */
.hero-curve {
  position: absolute;
  bottom: -1px; /* overlap to prevent line */
  left: 0;
  right: 0;
  z-index: 20;
  line-height: 0;
  pointer-events: none;
}

.hero-curve svg {
  width: 100%;
  height: clamp(2rem, 5vw, 4rem);
  display: block;
}

/* Section Divider Premium */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  margin: 1.5rem auto;
}

.section-divider svg {
  width: 180px;
  height: 20px;
}

.section-divider.left {
  justify-content: flex-start;
  margin: 1.5rem 0;
}

.section-divider.left svg {
  width: 90px;
}

/* Visual Category Cards (Univers de Soins) */
.home-presta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.home-presta-card {
  background: var(--white-warm);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-med);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.home-presta-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 169, 110, 0.35);
}

.home-presta-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-color: var(--nude-dark);
}

.home-presta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-presta-card:hover .home-presta-img {
  transform: scale(1.06);
}

.home-presta-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(44, 44, 44, 0.65) 100%);
  pointer-events: none;
}

.home-presta-icon-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(253, 250, 246, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-soft);
  z-index: 10;
}

.home-presta-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.8rem;
}

.home-presta-card-body h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.home-presta-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--black-soft);
  line-height: 1.2;
}

.home-presta-card-body p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray-soft);
  margin-bottom: 0.5rem;
}

.home-presta-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.home-presta-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-dark);
}

.home-presta-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition-fast);
}

.home-presta-card:hover .home-presta-cta {
  gap: 0.7rem;
}

/* Responsive category grid */
@media (max-width: 1200px) {
  .home-presta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .home-presta-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* =============================================
   EYE SHAPED GRADIENT DIVIDER
   ============================================= */
.eye-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem auto;
  height: 20px;
}
.eye-divider-line {
  display: inline-block;
  height: 1px;
  width: 64px;
}
.eye-divider-line.left {
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eye-divider-line.right {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eye-divider svg {
  width: 18px;
  height: 18px;
}


/* =============================================
   SERVICES PAGES – PANEL LAYOUT (Ref: massage.html)
   ============================================= */
.services-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-card {
  background: var(--white-warm);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all var(--transition-med);
}

.service-card:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(201, 169, 110, 0.4);
}

.service-card-header {
  padding: 1.25rem 2rem;
  background: var(--nude-light);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.service-card-header h3 {
  font-family: var(--font-title);
  color: var(--black-soft);
  font-size: 1.3rem;
  font-weight: 500;
}

.service-card-body {
  padding: 0 2rem;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 2rem;
  border-bottom: 1px dashed rgba(201, 169, 110, 0.2);
}

.service-row:last-child {
  border-bottom: none;
}

.service-row-left {
  flex: 1;
}

.service-row-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black-soft);
  margin-bottom: 0.25rem;
}

.service-row-desc {
  font-size: 0.88rem;
  color: var(--gray-soft) !important;
  line-height: 1.5;
  margin: 0;
}

.service-row-duration {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
  margin-top: 0.4rem;
  display: block;
}

.service-row-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.service-row-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
}

.service-row-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(201, 169, 110, 0.35);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black-soft);
  background: transparent;
  transition: all var(--transition-fast);
}

.service-row-btn:hover {
  background: var(--gold);
  color: var(--white-warm);
  border-color: var(--gold);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .service-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
  }
  .service-row-right {
    width: 100%;
    justify-content: space-between;
    margin-top: 0.5rem;
  }
}

