/* ==========================================================================
   AURA LASHES BY BEVERLEY — BOTANICAL LUXURY DESIGN SYSTEM
   West London, UB8 | Certified Lash Artist & Beauty Atelier
   ========================================================================== */

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

:root {
  /* Aura Brand Color Palette — Tailored from Brand Story */
  --sage-mist: #CAD6C8;            /* Primary canvas background */
  --sage-accent: #96A093;          /* Medium herb slate / pill badges */
  --sage-card: #B1C2B1;            /* Meadow sage container tint */
  --sage-deep: #4B5848;            /* Rich botanical forest */
  --sage-dark: #2A3328;            /* Deep olive charcoal */
  --sage-light: #E8EFE6;           /* Soft celadon highlight */
  --sage-surface: #F5F8F4;         /* Crisp botanical surface */
  --sage-bg: #EEF3ED;              /* Ambient page background */
  --sage-tint: #DFE8DD;            /* Border & divider tint */

  /* Luxury Accents */
  --poppy-red: #C62F18;            /* Ladybug signature accent */
  --poppy-hover: #A82410;
  --champagne-gold: #D4B26F;       /* Warm honey gold */
  --gold-dark: #B89243;
  --pure-white: #FFFFFF;

  /* High Contrast Typography */
  --text-noir: #161A15;            /* Deep espresso black */
  --text-deep: #252D24;            /* Dark olive charcoal */
  --text-medium: #495447;          /* Muted earthy slate */
  --text-muted: #6E7C6C;           /* Subtle botanical gray */
  --text-light: #9AA798;

  /* Borders & Glassmorphism */
  --border-sage: rgba(150, 160, 147, 0.35);
  --border-subtle: rgba(150, 160, 147, 0.2);
  --border-gold: rgba(212, 178, 111, 0.4);
  --glass-bg: rgba(245, 248, 244, 0.92);
  --glass-card: rgba(255, 255, 255, 0.88);

  /* Gradients */
  --sage-gradient: linear-gradient(135deg, #CAD6C8 0%, #96A093 100%);
  --arch-gradient: linear-gradient(180deg, #E8EFE6 0%, #DFE8DD 100%);
  --gold-gradient: linear-gradient(135deg, #E2CA94 0%, #D4B26F 100%);
  --dark-gradient: linear-gradient(135deg, #2A3328 0%, #161A15 100%);

  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(42, 51, 40, 0.06);
  --shadow-md: 0 10px 30px rgba(42, 51, 40, 0.1);
  --shadow-lg: 0 20px 45px rgba(42, 51, 40, 0.14);
  --shadow-glow: 0 0 25px rgba(202, 214, 200, 0.6);

  /* Typography Stacks */
  --font-title: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-serif: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Pinyon Script', cursive;

  /* Transitions */
  --trans-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --trans-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-noir);
  background-color: var(--sage-bg);
  background-image: 
    radial-gradient(at 10% 15%, rgba(202, 214, 200, 0.45) 0px, transparent 50%),
    radial-gradient(at 90% 10%, rgba(223, 232, 221, 0.55) 0px, transparent 50%),
    radial-gradient(at 80% 85%, rgba(177, 194, 177, 0.35) 0px, transparent 50%),
    radial-gradient(at 20% 90%, rgba(232, 239, 230, 0.5) 0px, transparent 50%);
  background-attachment: fixed;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  line-height: 1.65;
}


/* ==========================================================================
   1. BRANDED PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--sage-surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-flower {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed var(--sage-accent);
  border-top-color: var(--sage-deep);
  border-radius: 50%;
  animation: spinRing 3s linear infinite;
}

.preloader-ring-outer {
  position: absolute;
  inset: -10px;
  border: 1.5px solid var(--border-gold);
  border-radius: 50%;
  animation: pulseScale 2.4s ease-in-out infinite;
}

.preloader-logo-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(42, 51, 40, 0.12);
  overflow: hidden;
  border: 1.5px solid var(--sage-mist);
}

.preloader-logo-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.preloader-brand {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--text-noir);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

.preloader-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.preloader-bar-wrap {
  width: 220px;
  height: 4px;
  background: var(--sage-tint);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.preloader-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--sage-gradient);
  border-radius: 99px;
  transition: width 0.2s ease-out;
}

.preloader-percent {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--sage-deep);
  font-weight: 600;
  margin-top: 10px;
}

@keyframes spinRing {
  100% { transform: rotate(360deg); }
}

@keyframes pulseScale {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.9; }
}

/* ==========================================================================
   2. STICKY HEADER & LUXURY NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--trans-smooth);
}

.site-header.scrolled {
  background: rgba(245, 248, 244, 0.98);
  box-shadow: 0 8px 30px rgba(42, 51, 40, 0.08);
  border-bottom: 1px solid var(--border-sage);
}

.header-container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  flex-wrap: nowrap;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFF;
  border: 1.5px solid var(--sage-mist);
  box-shadow: 0 4px 12px rgba(42, 51, 40, 0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--trans-smooth);
}

.header-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-brand:hover .header-logo-badge {
  transform: scale(1.05) rotate(2deg);
  border-color: var(--sage-deep);
  box-shadow: 0 6px 18px rgba(42, 51, 40, 0.15);
}

.brand-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--text-noir);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-subtitle {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 3px;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.3vw, 22px);
  white-space: nowrap;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-deep);
  text-decoration: none;
  position: relative;
  padding: 6px 2px;
  transition: var(--trans-smooth);
  letter-spacing: 0.2px;
  white-space: nowrap;
  display: inline-block;
  line-height: 1.2;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--sage-deep);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover, .nav-link.active {
  color: var(--sage-deep);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-book-header {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--dark-gradient);
  color: #FFF !important;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(42, 51, 40, 0.2);
  transition: var(--trans-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-book-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  animation: shineSweep 4.5s infinite;
}

.btn-book-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 51, 40, 0.3);
  background: var(--sage-deep);
}

@keyframes shineSweep {
  0% { left: -75%; }
  25%, 100% { left: 130%; }
}

/* ==========================================================================
   MOBILE HAMBURGER MENU BUTTON & SLIDEOUT DRAWER WITH DEDICATED CLOSE BUTTON
   ========================================================================== */
.mobile-hamburger {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--pure-white);
  border: 1px solid var(--border-sage);
  border-radius: 99px;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 950;
  transition: var(--trans-smooth);
  flex-shrink: 0;
  color: var(--text-noir);
}

.mobile-hamburger:hover {
  background: var(--sage-surface);
  border-color: var(--sage-deep);
  box-shadow: 0 4px 12px rgba(42, 51, 40, 0.1);
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 20px;
  height: 16px;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-noir);
  border-radius: 2px;
  transition: var(--trans-smooth);
}

.hamburger-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Mobile Drawer Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 26, 21, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 910;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Drawer Container */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 380px;
  height: 100vh;
  background: var(--sage-surface);
  box-shadow: -10px 0 35px rgba(22, 26, 21, 0.25);
  z-index: 930;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

/* Drawer Header with Dedicated Close Button */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--pure-white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.drawer-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--sage-mist);
}

.drawer-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-brand-name {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-noir);
  letter-spacing: 2px;
}

/* Explicit Close Button */
.drawer-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage-bg);
  border: 1px solid var(--border-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-noir);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--trans-smooth);
}

.drawer-close-btn:hover {
  background: var(--poppy-red);
  color: #FFF;
  border-color: var(--poppy-red);
  transform: rotate(90deg);
}

/* Drawer Navigation Links */
.drawer-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-deep);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  transition: var(--trans-smooth);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid transparent;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--pure-white);
  color: var(--sage-deep);
  border-color: var(--sage-mist);
  transform: translateX(4px);
}

.mobile-nav-link span {
  color: var(--sage-accent);
  transition: transform 0.3s ease;
}

.mobile-nav-link:hover span {
  transform: translateX(3px);
  color: var(--sage-deep);
}

.drawer-contact {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-location-badge {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.drawer-insta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-deep);
  text-decoration: none;
  padding: 10px 14px;
  background: var(--pure-white);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  transition: var(--trans-smooth);
}

.drawer-insta:hover {
  border-color: var(--sage-deep);
  color: var(--sage-deep);
}

/* ==========================================================================
   3. INSTAGRAM STORY HIGHLIGHTS BAR
   ========================================================================== */
.stories-bar-section {
  padding: 24px 0 16px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.45);
}

.stories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.stories-container::-webkit-scrollbar {
  display: none;
}

.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.story-item:hover {
  transform: translateY(-3px);
}

.story-avatar-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, var(--sage-accent) 0%, var(--champagne-gold) 50%, var(--sage-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(42, 51, 40, 0.1);
  transition: var(--trans-smooth);
}

.story-item:hover .story-avatar-wrap {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(42, 51, 40, 0.18);
}

.story-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--pure-white);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-thumb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--sage-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.story-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-deep);
  letter-spacing: 0.5px;
  max-width: 80px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   4. HERO SECTION — ARCHITECTURAL BOTANICAL MOMENT
   ========================================================================== */
.hero-section {
  padding: 70px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--pure-white);
  border: 1px solid var(--border-sage);
  border-radius: 99px;
  width: fit-content;
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-deep);
  letter-spacing: 0.8px;
}

.hero-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--poppy-red);
  box-shadow: 0 0 8px rgba(198, 47, 24, 0.6);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.8rem;
  line-height: 1.12;
  font-weight: 700;
  color: var(--text-noir);
  letter-spacing: -0.5px;
}

.hero-title .brand-italic {
  font-style: italic;
  color: var(--sage-deep);
  font-family: var(--font-title);
  position: relative;
  display: inline-block;
}

.hero-title .brand-italic::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(202, 214, 200, 0.6);
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-medium);
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-primary-luxe {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-gradient);
  color: #FFF !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(42, 51, 40, 0.25);
  transition: var(--trans-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary-luxe:hover {
  transform: translateY(-2px);
  background: var(--sage-deep);
  box-shadow: 0 10px 30px rgba(42, 51, 40, 0.35);
}

.btn-secondary-luxe {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pure-white);
  color: var(--text-noir);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 99px;
  text-decoration: none;
  border: 1.5px solid var(--border-sage);
  box-shadow: var(--shadow-sm);
  transition: var(--trans-smooth);
  cursor: pointer;
}

.btn-secondary-luxe:hover {
  background: var(--sage-surface);
  border-color: var(--sage-deep);
  color: var(--sage-deep);
  transform: translateY(-2px);
}

.hero-proof-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
}

.proof-num {
  font-family: var(--font-title);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-noir);
  line-height: 1.1;
}

.proof-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.proof-divider {
  width: 1px;
  height: 32px;
  background: var(--border-sage);
}

/* Hero Visual / Arch Card */
.hero-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-arch-container {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3 / 4.4;
  border-radius: 220px 220px 24px 24px;
  padding: 10px;
  background: linear-gradient(180deg, var(--pure-white) 0%, var(--sage-mist) 100%);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-sage);
  position: relative;
  overflow: hidden;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 210px 210px 18px 18px;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-arch-container:hover .hero-main-img {
  transform: scale(1.04);
}

.studio-pill-tag {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(22, 26, 21, 0.82);
  backdrop-filter: blur(12px);
  color: #FFF;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-sage);
  border-radius: 18px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-top-right {
  top: 40px;
  right: -25px;
  animation-delay: 0s;
}

.badge-bottom-left {
  bottom: 45px;
  left: -25px;
  animation-delay: 2s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.badge-icon {
  font-size: 1.4rem;
}

.badge-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-noir);
}

.badge-info p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   5. ARCH PRICE LIST SECTION — EXACT INSTAGRAM STORY IDENTITY
   ========================================================================== */
.arch-price-section {
  padding: 90px 24px;
  background: var(--sage-surface);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: rgba(150, 160, 147, 0.18);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 3rem;
  line-height: 1.18;
  color: var(--text-noir);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title em {
  font-style: italic;
  color: var(--sage-deep);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* The Grand Story Arch Card */
.story-arch-wrapper {
  max-width: 620px;
  margin: 0 auto;
  background: var(--sage-mist);
  border: 1.5px solid var(--sage-accent);
  border-radius: 280px 280px 32px 32px;
  padding: 40px 34px 34px;
  box-shadow: 0 25px 60px rgba(42, 51, 40, 0.16);
  position: relative;
}

.arch-header-ornament {
  text-align: center;
  margin-bottom: 12px;
}

.arch-main-title {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-noir);
  margin-bottom: 6px;
}

.arch-divider-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--sage-dark);
  font-size: 0.9rem;
}

.arch-divider-flourish::before, .arch-divider-flourish::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--sage-dark);
  opacity: 0.4;
}

/* Arch Category Pill Header */
.arch-category-pill {
  background: var(--sage-accent);
  color: var(--text-noir);
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 24px;
  border-radius: 99px;
  margin: 24px auto 16px;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Arch Service Rows */
.arch-service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.arch-service-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(42, 51, 40, 0.18);
}

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

.arch-service-info {
  display: flex;
  flex-direction: column;
}

.arch-service-name {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-noir);
}

.arch-service-sub {
  font-size: 0.82rem;
  color: var(--text-medium);
  font-style: italic;
  margin-top: 2px;
}

.arch-service-price {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-noir);
  white-space: nowrap;
}

/* Loyalty Box inside Arch */
.arch-loyalty-box {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  padding: 18px 20px;
  margin-top: 18px;
  border: 1px solid var(--border-sage);
}

.loyalty-item {
  margin-bottom: 12px;
}

.loyalty-item:last-child {
  margin-bottom: 0;
}

.loyalty-badge-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-noir);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 4px;
}

.loyalty-desc {
  font-size: 0.85rem;
  color: var(--text-deep);
  line-height: 1.5;
}

/* Arch Logo Card at Bottom */
.arch-logo-card {
  margin-top: 28px;
  background: var(--sage-card);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(150, 160, 147, 0.4);
}

.arch-logo-brand {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 8px;
  color: var(--text-noir);
  text-transform: uppercase;
}

.arch-logo-sub {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-deep);
  margin-top: 2px;
}

.arch-logo-sig {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--text-noir);
  margin-top: 4px;
}

/* Ladybug on Logo Card */
.ladybug-accent {
  position: absolute;
  top: 18px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ladybug-icon {
  font-size: 1.5rem;
  animation: ladybugWiggle 3s ease-in-out infinite;
}

@keyframes ladybugWiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(8deg); }
  75% { transform: rotate(-8deg); }
}

.arch-insta-link {
  display: block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-noir);
  text-decoration: none;
  transition: var(--trans-smooth);
}

.arch-insta-link:hover {
  color: var(--poppy-red);
}

/* ==========================================================================
   6. SERVICES GRID & BOOKING SELECTOR
   ========================================================================== */
.services-section {
  padding: 90px 24px;
}

.services-container {
  max-width: 1320px;
  margin: 0 auto;
}

.services-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--pure-white);
  border: 1px solid var(--border-sage);
  border-radius: 99px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-deep);
  cursor: pointer;
  transition: var(--trans-smooth);
}

.filter-btn:hover {
  border-color: var(--sage-deep);
  color: var(--sage-deep);
}

.filter-btn.active {
  background: var(--dark-gradient);
  color: #FFF;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(42, 51, 40, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--pure-white);
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-mist);
}

.service-img-wrap {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.service-category-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--sage-deep);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-time-pill {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(22, 26, 21, 0.75);
  backdrop-filter: blur(8px);
  color: #FFF;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.service-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 12px;
}

.service-name {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-noir);
}

.service-price {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sage-deep);
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-book-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--sage-bg);
  border: 1px solid var(--border-sage);
  border-radius: 12px;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-noir);
  cursor: pointer;
  transition: var(--trans-smooth);
}

.btn-book-service:hover {
  background: var(--dark-gradient);
  color: #FFF;
  border-color: transparent;
  transform: translateY(-2px);
}

/* ==========================================================================
   7. BEFORE & AFTER TRANSFORMATION SLIDER
   ========================================================================== */
.transformation-section {
  padding: 90px 24px;
  background: var(--sage-surface);
}

.transform-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border-sage);
  user-select: none;
  cursor: ew-resize;
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 5;
}

.slider-overlay .slider-img {
  width: 100%;
  max-width: none;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #FFF;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  z-index: 10;
  transform: translateX(-50%);
}

.handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 2px solid var(--sage-deep);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.slider-badge {
  position: absolute;
  top: 14px;
  background: rgba(22, 26, 21, 0.75);
  backdrop-filter: blur(8px);
  color: #FFF;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  z-index: 8;
}

.slider-badge.before {
  left: 14px;
}

.slider-badge.after {
  right: 14px;
}

.transform-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 32px;
}

.transform-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-deep);
  line-height: 1.6;
}

.transform-feature-list .check-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ==========================================================================
   8. INTERACTIVE LASH QUIZ
   ========================================================================== */
.quiz-section {
  padding: 90px 24px;
}

.quiz-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--pure-white);
  border-radius: 24px;
  border: 1px solid var(--border-sage);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.quiz-progress-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.quiz-step-pill {
  flex: 1;
  height: 6px;
  background: var(--sage-tint);
  border-radius: 99px;
  transition: var(--trans-smooth);
}

.quiz-step-pill.active {
  background: var(--sage-deep);
}

.quiz-question-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--text-noir);
  margin-bottom: 24px;
  font-weight: 700;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quiz-option-btn {
  background: var(--sage-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  cursor: pointer;
  transition: var(--trans-smooth);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.quiz-option-btn:hover {
  background: var(--pure-white);
  border-color: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.quiz-icon-circle {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.quiz-opt-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-noir);
  margin-bottom: 4px;
}

.quiz-opt-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.quiz-result-box {
  text-align: center;
  padding: 30px 20px;
}

.result-badge {
  display: inline-block;
  background: rgba(150, 160, 147, 0.2);
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.result-title {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-noir);
  margin-bottom: 12px;
}

.result-desc {
  font-size: 1rem;
  color: var(--text-medium);
  max-width: 540px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.result-pricing-tag {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sage-deep);
  margin-bottom: 28px;
}

/* ==========================================================================
   9. MEET BEVERLEY DIAS
   ========================================================================== */
.about-section {
  padding: 90px 24px;
  background: var(--sage-surface);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.about-visual-col {
  position: relative;
}

.about-img-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-sage);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cert-card {
  position: absolute;
  bottom: 25px;
  right: -20px;
  background: var(--pure-white);
  border: 1px solid var(--border-sage);
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-icon {
  font-size: 1.6rem;
}

.cert-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-noir);
}

.cert-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.quote-block {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--sage-deep);
  line-height: 1.6;
  border-left: 3px solid var(--sage-accent);
  padding-left: 20px;
  margin: 20px 0 24px;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pillar-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pillar-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-noir);
  margin-bottom: 2px;
}

.pillar-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   10. POLICIES & PREPARATION CHECKLIST
   ========================================================================== */
.policies-section {
  padding: 90px 24px;
}

.policies-container {
  max-width: 1200px;
  margin: 0 auto;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.policy-card {
  background: var(--pure-white);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-smooth);
}

.policy-card:hover {
  transform: translateY(-4px);
  border-color: var(--sage-mist);
  box-shadow: var(--shadow-md);
}

.policy-icon-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.policy-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-noir);
  margin-bottom: 8px;
}

.policy-desc {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.prep-checklist-box {
  background: var(--pure-white);
  border: 1.5px solid var(--border-sage);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.prep-box-header {
  text-align: center;
  margin-bottom: 24px;
}

.prep-box-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-noir);
}

.prep-items-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.prep-pill {
  background: var(--sage-bg);
  border: 1px solid var(--border-sage);
  border-radius: 99px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-deep);
}

/* ==========================================================================
   11. REVIEWS WALL
   ========================================================================== */
.reviews-section {
  padding: 90px 24px;
  background: var(--sage-surface);
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--pure-white);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: var(--champagne-gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage-mist);
  color: var(--text-noir);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-noir);
}

.author-service {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   12. STUDIO LOCATION (UXBRIDGE, WEST LONDON UB8)
   ========================================================================== */
.location-section {
  padding: 90px 24px;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.location-info-card {
  background: var(--pure-white);
  border: 1px solid var(--border-sage);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.loc-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.loc-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.loc-content h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-noir);
  margin-bottom: 4px;
}

.loc-content p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.loc-content a {
  color: var(--sage-deep);
  font-weight: 600;
  text-decoration: none;
}

.loc-content a:hover {
  text-decoration: underline;
}

.map-embed-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border-sage);
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--dark-gradient);
  color: #FFF;
  padding: 70px 24px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.social-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--trans-smooth);
}

.social-circle-btn:hover {
  background: var(--sage-accent);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #FFF;
}

.footer-links-list, .footer-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--trans-smooth);
}

.footer-links-list a:hover {
  color: #FFF;
  padding-left: 4px;
}

.footer-hours-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   14. MOBILE BOTTOM ACTION BAR
   ========================================================================== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-sage);
  padding: 10px 16px;
  z-index: 850;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  justify-content: space-around;
  align-items: center;
}

.mob-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-deep);
  text-decoration: none;
}

.mob-action-btn.btn-book-highlight {
  background: var(--dark-gradient);
  color: #FFF;
  padding: 8px 18px;
  border-radius: 99px;
  flex-direction: row;
  gap: 6px;
  font-size: 0.82rem;
}

/* ==========================================================================
   15. MODAL (BOOKING & STORY HIGHLIGHTS)
   ========================================================================== */
.booking-modal, .story-modal {
  position: fixed;
  inset: 0;
  background: rgba(22, 26, 21, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.booking-modal.active, .story-modal.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-card {
  background: var(--pure-white);
  border-radius: 24px;
  width: 100%;
  max-width: 500px;
  padding: 34px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.booking-close-btn, .story-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--sage-bg);
  border: 1px solid var(--border-sage);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-noir);
  transition: var(--trans-smooth);
}

.booking-close-btn:hover, .story-close-btn:hover {
  background: var(--poppy-red);
  color: #FFF;
}

.booking-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.booking-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-noir);
  margin-top: 4px;
}

.booking-notice {
  background: var(--sage-surface);
  border: 1px solid var(--border-sage);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--text-deep);
  margin: 18px 0;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-noir);
  margin-bottom: 6px;
}

.form-select, .form-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-sage);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-noir);
  background: #FFF;
  outline: none;
  transition: var(--trans-smooth);
}

.form-select:focus, .form-input:focus {
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(150, 160, 147, 0.2);
}

.btn-whatsapp-direct {
  width: 100%;
  background: #25D366;
  color: #FFF;
  border: none;
  border-radius: 99px;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--trans-smooth);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  margin-top: 10px;
}

.btn-whatsapp-direct:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Story Highlights Modal Card */
.story-modal-card {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 12px;
  left: 0;
  z-index: 20;
}

.story-progress-fill {
  width: 0%;
  height: 100%;
  background: #FFF;
}

.story-modal-header {
  position: absolute;
  top: 24px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.story-modal-author {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-weight: 700;
  font-size: 0.88rem;
}

.story-modal-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.6);
}

.story-media-view {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px 24px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: #FFF;
  z-index: 20;
}

.story-caption-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.story-caption-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}

.story-book-cta {
  display: inline-block;
  background: #FFF;
  color: var(--text-noir);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

/* ==========================================================================
   16. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-pill, .hero-actions {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-proof-bar {
    justify-content: center;
  }

  .transform-container, .about-container, .location-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 1040px) {
  .header-nav {
    display: none;
  }

  .mobile-hamburger {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .story-arch-wrapper {
    padding: 30px 20px 24px;
    border-radius: 200px 200px 24px 24px;
  }

  .arch-main-title {
    font-size: 2.2rem;
  }

  .mobile-action-bar {
    display: flex;
  }

  body {
    padding-bottom: 65px;
  }

  .quiz-options-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

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

  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

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

  .story-arch-wrapper {
    border-radius: 160px 160px 20px 20px;
    padding: 24px 16px 20px;
  }

  .arch-main-title {
    font-size: 1.8rem;
    letter-spacing: 3px;
  }
}

/* ==========================================================================
   17. SCROLL REVEAL & LUXURY ENTRANCE ANIMATIONS
   ========================================================================== */

/* Base Fade In Up */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Horizontal Reveals */
.reveal-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-fade-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-fade-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Scale & Pop */
.reveal-scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale-in.in-view {
  opacity: 1;
  transform: scale(1);
}

/* Service, Policy, and Review Cards Scroll In */
.service-card, .policy-card, .review-card, .story-arch-wrapper, .quiz-card, .prep-checklist-box, .location-info-card, .map-embed-wrapper {
  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), box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: opacity, transform;
}

.service-card.in-view, .policy-card.in-view, .review-card.in-view, .story-arch-wrapper.in-view, .quiz-card.in-view, .prep-checklist-box.in-view, .location-info-card.in-view, .map-embed-wrapper.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Entrance for Grids */
.services-grid .service-card:nth-child(1),
.policies-grid .policy-card:nth-child(1),
.reviews-grid .review-card:nth-child(1) {
  transition-delay: 0.05s;
}

.services-grid .service-card:nth-child(2),
.policies-grid .policy-card:nth-child(2),
.reviews-grid .review-card:nth-child(2) {
  transition-delay: 0.15s;
}

.services-grid .service-card:nth-child(3),
.policies-grid .policy-card:nth-child(3),
.reviews-grid .review-card:nth-child(3) {
  transition-delay: 0.25s;
}

.services-grid .service-card:nth-child(4),
.policies-grid .policy-card:nth-child(4) {
  transition-delay: 0.35s;
}

.services-grid .service-card:nth-child(5) {
  transition-delay: 0.45s;
}

.services-grid .service-card:nth-child(6) {
  transition-delay: 0.55s;
}

/* Section Header Entrance */
.section-header {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Shimmer & Text Highlight Glow Animation */
@keyframes textAuraShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.brand-italic, .section-title em {
  background: linear-gradient(90deg, var(--sage-deep) 0%, var(--gold-dark) 50%, var(--sage-deep) 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textAuraShimmer 6s linear infinite;
}

/* Hero Section Cascade Loading */
.hero-content .hero-pill {
  animation: fadeInDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content .hero-title {
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-content .hero-subtitle {
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-content .hero-actions {
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.hero-content .hero-proof-bar {
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-visual-wrap {
  animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

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

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

