/* ── Design System & Variables ────────────────── */
:root {
  /* Color Palette */
  --bg-primary: #FAF6F0;
  --bg-secondary: #FFFFFF;
  --bg-dark: #121315;
  --bg-dark-accent: #1C1D1F;
  --text-primary: #1C1C1E;
  --text-secondary: #6E6E73;
  --text-muted: #8E8E93;
  --text-light: #F5F5F7;
  --text-light-secondary: #AEAEB2;
  
  --accent: #C5A059;
  --accent-light: #E6D5B8;
  --accent-dark: #9A7532;
  --accent-alpha: rgba(197, 160, 89, 0.1);
  --accent-alpha-strong: rgba(197, 160, 89, 0.25);
  
  /* Borders */
  --border-light: rgba(197, 160, 89, 0.15);
  --border-medium: rgba(197, 160, 89, 0.3);
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Shadows (Soft UI Evolution) */
  --shadow-sm: 0 2px 8px rgba(28, 28, 30, 0.03);
  --shadow-md: 0 10px 30px rgba(28, 28, 30, 0.06);
  --shadow-lg: 0 20px 50px rgba(28, 28, 30, 0.12);
  --shadow-gold: 0 10px 30px rgba(197, 160, 89, 0.15);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Utilities */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --section-pad: clamp(4.5rem, 8vw, 7.5rem);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

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

::selection {
  background-color: var(--accent-alpha-strong);
  color: var(--text-primary);
}

/* ── Custom Loader ────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--transition), visibility 0.6s var(--transition);
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-brand {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUpIn 0.8s ease forwards 0.2s;
}
.loader-bar {
  width: 150px;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}
.loader-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--accent);
  animation: fillBar 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) forwards;
}

@keyframes fadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fillBar {
  to { width: 100%; }
}

/* ── Scroll Progress Line ──────────────────────── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  width: 0%;
  transition: width 0.1s linear;
}

/* ── Typography & Section Headers ──────────────── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--text-secondary);
}
.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
}

/* ── Buttons & UI Controls ─────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg-secondary);
  border: 1px solid var(--accent);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--accent-dark);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-primary:hover {
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-secondary {
  background-color: var(--text-primary);
  color: var(--bg-secondary);
  border: 1px solid var(--text-primary);
}
.btn-secondary:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
}
.btn-outline:hover {
  background-color: var(--text-primary);
  color: var(--bg-secondary);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ── Header Navigation ────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.8rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#nav.scrolled {
  background: rgba(250, 246, 240, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.1rem clamp(1.5rem, 5vw, 4rem);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03), 0 1px 0 var(--border-light);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--text-light);
  transition: color 0.4s ease;
}
#nav.scrolled .nav-logo {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s;
}
#nav.scrolled .nav-links a {
  color: var(--text-secondary);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s ease;
}
.nav-links a:hover {
  color: var(--accent) !important;
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--accent) !important;
  color: var(--bg-secondary) !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background-color: var(--accent-dark) !important;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.4) !important;
  transform: translateY(-1px);
}
.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-light);
  transition: transform 0.3s, opacity 0.3s, background 0.4s;
  border-radius: 1px;
}
#nav.scrolled .hamburger span {
  background: var(--text-primary);
}
.hamburger.open span {
  background: var(--text-light) !important;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Panel */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
#mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-light);
  transform: translateY(20px);
  transition: transform 0.4s var(--transition), color 0.3s;
}
#mobile-menu.open a {
  transform: translateY(0);
}
#mobile-menu a:hover {
  color: var(--accent);
}
#mobile-menu .nav-cta {
  font-family: var(--font-sans) !important;
  font-size: 0.85rem !important;
  padding: 0.9rem 2.2rem !important;
  margin-top: 1rem;
}

/* Stagger transition delay for mobile links */
#mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
#mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
#mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
#mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
#mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }
#mobile-menu.open a:nth-child(6) { transition-delay: 0.35s; }
#mobile-menu.open a:nth-child(7) { transition-delay: 0.4s; }

/* ── Hero Section ─────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero_bg.png');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  transition: transform 6s cubic-bezier(0.1, 1, 0.1, 1);
}
#hero.loaded .hero-bg {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18, 19, 21, 0.9) 0%,
    rgba(18, 19, 21, 0.6) 45%,
    rgba(18, 19, 21, 0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  max-width: 860px;
  color: var(--text-light);
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
#hero.loaded .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(30px);
}
.hero-title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--accent-light);
}
#hero.loaded .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
}
#hero.loaded .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s, transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
#hero.loaded .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.6s, transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── Stats Section ────────────────────────────── */
#stats {
  background: var(--bg-dark);
  padding: 4rem clamp(1.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border-dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -2vw;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light-secondary);
  margin-top: 0.6rem;
}

/* ── About Section ────────────────────────────── */
#about {
  padding: var(--section-pad) clamp(1.5rem, 6vw, 6rem);
  background-color: var(--bg-primary);
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--accent);
  color: var(--bg-secondary);
  padding: 1.8rem 2.2rem;
  text-align: center;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
}
.about-badge-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}
.about-badge-txt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 0.4rem;
}
.about-body p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
  margin: 2.5rem 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.about-feature svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* ── Diagnostic Beauté Tool ───────────────────── */
#diagnostic {
  background-color: var(--bg-secondary);
  padding: var(--section-pad) clamp(1.5rem, 6vw, 6rem);
}
.diagnostic-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}
.diagnostic-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.diag-step-container {
  min-height: 250px;
}
.diag-slide {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}
.diag-slide.active {
  display: block;
}
.diag-question {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.8rem;
  text-align: center;
}
.diag-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.diag-option {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  font-weight: 500;
  color: var(--text-secondary);
}
.diag-option:hover {
  border-color: var(--accent-light);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.diag-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.diag-option.selected {
  border-color: var(--accent);
  background-color: var(--accent-alpha);
  color: var(--text-primary);
}

.diag-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}
.diag-btn {
  padding: 0.8rem 1.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.diag-btn-prev {
  border: 1px solid var(--text-muted);
  color: var(--text-secondary);
}
.diag-btn-prev:hover {
  background-color: rgba(0, 0, 0, 0.02);
  color: var(--text-primary);
}
.diag-btn-next {
  background-color: var(--text-primary);
  color: var(--bg-secondary);
}
.diag-btn-next:hover {
  background-color: var(--accent);
}

.diag-progress-bar {
  flex-grow: 1;
  max-width: 40%;
  height: 3px;
  background: rgba(0, 0, 0, 0.05);
  margin: 0 1.5rem;
  border-radius: 2px;
  overflow: hidden;
}
.diag-progress-fill {
  height: 100%;
  width: 33%;
  background: var(--accent);
  transition: width 0.4s ease;
}

/* Result Card */
.diag-result {
  text-align: center;
}
.diag-result-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.diag-result-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.diag-result-desc {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}
.diag-reco-box {
  background: var(--bg-secondary);
  border: 1px dashed var(--accent);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  display: inline-block;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 550px;
}
.diag-reco-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--accent-dark);
  margin-bottom: 0.4rem;
}
.diag-reco-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Services Section ─────────────────────────── */
#services {
  background-color: var(--bg-primary);
  padding: var(--section-pad) clamp(1.5rem, 6vw, 6rem);
}
.services-container {
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.services-nav {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.services-tab-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  background-color: var(--bg-secondary);
  transition: all var(--transition);
}
.services-tab-btn:hover, .services-tab-btn.active {
  background-color: var(--text-primary);
  color: var(--text-light);
  border-color: var(--text-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: 1px solid var(--border-light);
}
.service-icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.service-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.service-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}
.service-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent-dark);
}
.service-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-primary);
  transition: gap 0.3s, color 0.3s;
}
.service-link svg {
  width: 14px;
  height: 14px;
}
.service-link:hover {
  color: var(--accent);
  gap: 0.7rem;
}

/* ── Experience Section ───────────────────────── */
#experience {
  position: relative;
  height: 60vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.exp-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/experience_bg.png');
  background-size: cover;
  background-position: center;
}
.exp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 19, 21, 0.75);
}
.exp-container {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  max-width: 750px;
  color: var(--text-light);
}
.exp-container .section-title {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.exp-container .section-title em {
  color: var(--accent-light);
}
.exp-container p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
}

/* ── Gallery Section ──────────────────────────── */
#gallery {
  background-color: var(--bg-secondary);
  padding: var(--section-pad) clamp(1.5rem, 6vw, 6rem);
}
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.gallery-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.gallery-filter-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  transition: all var(--transition);
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background-color: var(--accent);
  color: var(--bg-secondary);
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 19, 21, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-info {
  color: var(--text-light);
}
.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.gallery-item-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(18, 19, 21, 0.96);
  align-items: center;
  justify-content: center;
}
#lightbox.open {
  display: flex;
}
#lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}
#lightbox img {
  max-height: 80vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-caption {
  color: var(--text-light);
  text-align: center;
  font-family: var(--font-serif);
  margin-top: 1rem;
  font-size: 1.1rem;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--text-light);
  font-size: 2rem;
  transition: color 0.3s;
}
.lightbox-close:hover {
  color: var(--accent);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s;
}
.lightbox-nav:hover {
  background: var(--accent);
  color: var(--bg-secondary);
}
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ── Team Section ─────────────────────────────── */
#team {
  background-color: var(--bg-primary);
  padding: var(--section-pad) clamp(1.5rem, 6vw, 6rem);
}
.team-container {
  max-width: 1200px;
  margin: 0 auto;
}
.team-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.team-header .section-eyebrow {
  justify-content: center;
}
.team-header .section-eyebrow::before {
  display: none;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.team-card {
  text-align: center;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.team-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 3/4;
  margin-bottom: 1.8rem;
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
  filter: grayscale(15%);
}
.team-card:hover .team-photo-wrap img {
  transform: scale(1.04);
  filter: grayscale(0);
}
.team-socials {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  display: flex;
  gap: 0.6rem;
  transition: all 0.3s var(--transition);
}
.team-card:hover .team-socials {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.team-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.team-social-btn svg {
  width: 16px;
  height: 16px;
}
.team-social-btn:hover {
  background: var(--accent-dark);
}
.team-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}
.team-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.team-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Testimonials Section ─────────────────────── */
#testimonials {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: var(--section-pad) clamp(1.5rem, 6vw, 6rem);
  text-align: center;
}
#testimonials .section-eyebrow {
  justify-content: center;
}
#testimonials .section-eyebrow::before {
  display: none;
}
#testimonials .section-title {
  color: var(--text-light);
}
#testimonials .section-title em {
  color: var(--accent-light);
}
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 3.5rem auto 0;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 1.5rem;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.8rem;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.2rem;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.testimonial-author span {
  color: var(--accent);
  margin-right: 0.6rem;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 3rem;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

/* ── Forfaits / Pricing Section ───────────────── */
#pricing {
  background-color: var(--bg-primary);
  padding: var(--section-pad) clamp(1.5rem, 6vw, 6rem);
}
.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.pricing-header .section-eyebrow {
  justify-content: center;
}
.pricing-header .section-eyebrow::before {
  display: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}
.pricing-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  background: var(--bg-dark);
  border-color: var(--accent);
  color: var(--text-light);
}
.pricing-card.featured::before {
  content: 'Populaire';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-secondary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  box-shadow: var(--shadow-gold);
}
.pricing-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}
.pricing-card.featured .pricing-name {
  color: var(--text-light);
}
.pricing-tagline {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.pricing-card.featured .pricing-tagline {
  color: var(--text-light-secondary);
}
.pricing-price-wrap {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
}
.pricing-card.featured .pricing-price-wrap {
  border-bottom-color: var(--border-dark);
}
.pricing-price {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.pricing-period {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.4rem;
}
.pricing-features {
  margin-bottom: 3rem;
  flex-grow: 1;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.7rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.04);
}
.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── FAQ Section ──────────────────────────────── */
#faq {
  background-color: var(--bg-secondary);
  padding: var(--section-pad) clamp(1.5rem, 6vw, 6rem);
}
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  gap: 1.5rem;
  transition: color 0.3s;
}
.faq-question:hover {
  color: var(--accent);
}
.faq-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: all var(--transition);
}
.faq-icon-box svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon-box {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--bg-secondary);
}
.faq-item.open .faq-icon-box svg {
  transform: rotate(45deg);
}

/* Smooth Accordion using Grid */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease-out;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer-content {
  overflow: hidden;
}
.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── Booking Section ──────────────────────────── */
#booking {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: var(--section-pad) clamp(1.5rem, 6vw, 6rem);
}
.booking-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 7vw, 8rem);
  max-width: 1200px;
  margin: 0 auto;
}
.booking-info .section-title {
  color: var(--text-light);
}
.booking-info p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light-secondary);
  margin-bottom: 3rem;
}
.booking-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.booking-detail-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.bdi-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.bdi-icon-box svg {
  width: 18px;
  height: 18px;
}
.bdi-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}
.bdi-text a:hover {
  color: var(--accent);
}

/* Booking Wizard */
.wizard-box {
  background: var(--bg-dark-accent);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}
.wizard-steps-header {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 3rem;
}
.wizard-steps-header::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}
.wizard-step-indicator {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
}
.wsi-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition);
}
.wsi-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.wizard-step-indicator.active .wsi-num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-secondary);
  box-shadow: var(--shadow-gold);
}
.wizard-step-indicator.active .wsi-label {
  color: var(--accent);
}
.wizard-step-indicator.completed .wsi-num {
  background: var(--bg-dark-accent);
  border-color: var(--accent);
  color: var(--accent);
}
.wizard-step-indicator.completed .wsi-label {
  color: var(--text-light);
}

.wizard-content {
  min-height: 280px;
}
.wizard-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}
.wizard-panel.active {
  display: block;
}

.wizard-form-group {
  margin-bottom: 1.5rem;
}
.wizard-form-group.half-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.wizard-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-secondary);
  margin-bottom: 0.6rem;
}
.wizard-input, .wizard-select, .wizard-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
  transition: border-color 0.3s, background 0.3s;
}
.wizard-input:focus, .wizard-select:focus, .wizard-textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}
.wizard-select option {
  background-color: var(--bg-dark-accent);
  color: var(--text-light);
}
.wizard-textarea {
  resize: vertical;
  min-height: 90px;
}

/* Service Category Cards in Wizard */
.wizard-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 5px;
}
.wizard-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}
.wizard-service-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(197, 160, 89, 0.3);
}
.wizard-service-item.selected {
  background: var(--accent-alpha);
  border-color: var(--accent);
}
.wsi-details {
  display: flex;
  flex-direction: column;
}
.wsi-name {
  font-size: 0.9rem;
  font-weight: 500;
}
.wsi-duration {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.wsi-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent-light);
  font-weight: 500;
}

/* Calendar & Time selector styles */
.calendar-widget {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.calendar-day-header {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 0.4rem;
}
.calendar-day-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.01);
  cursor: pointer;
  transition: all 0.2s;
}
.calendar-day-cell:hover:not(.disabled) {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(197, 160, 89, 0.2);
}
.calendar-day-cell.selected {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: var(--bg-secondary) !important;
  box-shadow: var(--shadow-gold);
}
.calendar-day-cell.disabled {
  opacity: 0.15;
  cursor: not-allowed;
}
.cdc-num {
  font-size: 0.9rem;
  font-weight: 500;
}
.cdc-month {
  font-size: 0.55rem;
  text-transform: uppercase;
  opacity: 0.7;
}

.slots-widget {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 1rem;
  max-height: 130px;
  overflow-y: auto;
}
.slot-cell {
  padding: 0.7rem;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}
.slot-cell:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(197, 160, 89, 0.3);
}
.slot-cell.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-secondary);
}

.wizard-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Success Panel */
.wizard-success {
  text-align: center;
  padding: 2rem 0;
}
.ws-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-alpha);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  color: var(--accent);
}
.ws-icon-circle svg {
  width: 32px;
  height: 32px;
}
.ws-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}
.ws-subtitle {
  color: var(--text-light-secondary);
  font-size: 0.95rem;
  max-width: 420px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.ws-summary-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  max-width: 450px;
  margin: 0 auto;
  text-align: left;
}
.wss-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.wss-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.wss-lbl {
  color: var(--text-muted);
}
.wss-val {
  font-weight: 500;
  color: var(--text-light);
}

/* ── Contact & Map Section ────────────────────── */
#contact {
  background-color: var(--bg-secondary);
  padding: var(--section-pad) clamp(1.5rem, 6vw, 6rem);
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
}
.contact-block {
  margin-bottom: 2.2rem;
}
.contact-block h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}
.contact-block p, .contact-block a {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: block;
}
.contact-block a:hover {
  color: var(--accent);
}
.hours-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem;
}
.hours-day {
  font-weight: 500;
  color: var(--text-primary);
}

.map-card {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Footer Section ───────────────────────────── */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light-secondary);
  padding: 5rem clamp(1.5rem, 6vw, 6rem) 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.8rem;
}
.footer-socials {
  display: flex;
  gap: 0.8rem;
}
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}
.footer-social-btn svg {
  width: 16px;
  height: 16px;
}
.footer-social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.02);
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links-list a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s;
}
.footer-links-list a:hover {
  color: var(--accent);
}
.footer-newsletter-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.footer-newsletter-form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.footer-newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  color: var(--text-light);
}
.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.footer-newsletter-btn {
  background: var(--accent);
  border: none;
  padding: 0.7rem 1.2rem;
  color: var(--bg-secondary);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-newsletter-btn svg {
  width: 14px;
  height: 14px;
}
.footer-newsletter-btn:hover {
  background: var(--accent-dark);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-legal-links {
  display: flex;
  gap: 1.8rem;
}
.footer-legal-links a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: var(--accent);
}

/* ── Toast Notifications ──────────────────────── */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  pointer-events: none;
}
.toast {
  background: var(--bg-dark-accent);
  color: var(--text-light);
  padding: 1rem 1.6rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: auto;
  max-width: 350px;
}
.toast.show {
  transform: translateX(0);
}
.toast-success-icon {
  color: var(--accent);
  flex-shrink: 0;
}
.toast-success-icon svg {
  width: 16px;
  height: 16px;
}

/* ── Cookie Consent Banner ────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: 1.4rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#cookie-banner.show {
  transform: translateY(0);
}
.cookie-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 750px;
  line-height: 1.6;
}
.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.3s;
}
.cookie-text a:hover {
  color: var(--accent-light);
}
.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.cookie-accept {
  background: var(--accent);
  color: var(--bg-secondary);
}
.cookie-accept:hover {
  background: var(--accent-dark);
  box-shadow: var(--shadow-gold);
}
.cookie-decline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
}
.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
}

/* ── Scroll Reveal Effects ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Responsive Breakpoints ───────────────────── */
@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .stat-item:nth-child(1)::after, .stat-item:nth-child(3)::after {
    right: -2rem;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-image {
    aspect-ratio: 16/9;
  }
  .about-badge {
    right: 1.5rem;
    bottom: -1.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.tall {
    grid-row: span 1;
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }
  .faq-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .booking-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  #nav {
    padding: 1.5rem 2rem;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .stat-item::after {
    display: none !important;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card:last-child {
    max-width: 100%;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card:last-child {
    max-width: 100%;
  }
  .wizard-box {
    padding: 2rem 1.5rem;
  }
  .diagnostic-container {
    padding: 2rem 1.5rem;
  }
  .diag-options {
    grid-template-columns: 1fr;
  }
  .wizard-form-group.half-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .wizard-steps-header {
    margin-bottom: 2rem;
  }
  .wsi-label {
    display: none;
  }
  .slots-widget {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  #nav {
    padding: 1.2rem 1.5rem;
  }
  .hero-content {
    padding: 0 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-badge {
    position: static;
    margin-top: 1rem;
  }
  .slots-widget {
    grid-template-columns: 1fr;
  }
  .calendar-widget {
    gap: 0.3rem;
  }
  .calendar-day-cell {
    padding: 0.2rem 0;
  }
}
