/* ========================================
   EMILY YEATES - SPORTS MASSAGE & BEAUTY
   Design System & Global Styles
   ======================================== */

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

/* === PREMIUM PRICE LIST (Laser/Treatments) === */
.price-list-container {
  max-width: 800px;
  margin: 0 auto;
}

.price-list-item {
  display: flex;
  align-items: baseline;
  padding: var(--space-md) 0;
  border-bottom: 1px dashed rgba(201, 168, 119, 0.4);
  position: relative;
  transition: background-color var(--transition-base);
}

.price-list-item:last-child {
  border-bottom: none;
}

.price-list-item:hover {
  background-color: rgba(255, 255, 255, 0.5);
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
  margin-left: calc(var(--space-sm) * -1);
  margin-right: calc(var(--space-sm) * -1);
  border-radius: var(--radius-sm);
}

.price-item-info {
  flex-grow: 1;
  padding-right: var(--space-md);
}

.price-item-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-charcoal);
  margin-bottom: 0.2rem;
}

.price-item-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
}

.price-item-cost {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-charcoal);
  font-weight: 600;
  white-space: nowrap;
}

/* === QUESTIONS CTA REDESIGN === */
.questions-box-premium {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 235, 225, 0.6) 100%);
  border: 1px solid rgba(201, 168, 119, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 600px;
  margin: var(--space-2xl) auto 0;
  box-shadow: var(--shadow-md);
}

.btn-premium-outline {
  background: transparent;
  border: 1px solid var(--color-charcoal);
  color: var(--color-charcoal);
  padding: 0.8rem 2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-premium-outline:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* === AWARD BADGE === */
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-accent-gold);
  padding: 0.35rem 1rem;
  /* Reduced padding */
  border-radius: 999px;
  color: var(--color-charcoal);
  font-family: var(--font-heading);
  /* Use heading font/accent font for elegance */
  font-size: 0.8rem;
  /* Reduced size */
  font-weight: 600;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 15px rgba(201, 168, 119, 0.2);
  backdrop-filter: blur(5px);
  animation: fadeInDown 1s ease-out;
  cursor: pointer;
  /* Indicates interactivity */
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.award-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(201, 168, 119, 0.4);
}

.award-icon {
  color: var(--color-accent-gold);
  font-size: 1.1em;
}


/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Colors - Luxury Editorial Palette */
  --color-cream: #F9F8F6;
  /* Cleaner, lighter cream */
  --color-marble: #F2EFE9;
  /* Smooth marble base */
  --color-beige: #E6E0D4;
  /* Warm mid-tone beige */
  --color-taupe: #B0A695;
  /* Elegant taupe */
  --color-warm-gray: #787068;
  /* Sophisticated gray */
  --color-charcoal: #1C1C1C;
  /* Soft Black - confident & premium */
  --color-black: #111111;
  --color-white: #FFFFFF;

  /* Accent Colors */
  --color-accent-gold: #C9A877;
  /* Muted Gold - luxury accent */
  --color-accent-rose: #D4B5A8;

  /* Semantic Colors */
  --color-primary: #1C1C1C;
  /* Primary text/action is now dark */
  --color-secondary: #B0A695;
  /* Secondary is the elegant taupe */
  --color-text: #1C1C1C;
  /* High contrast for confidence */
  --color-text-light: #5A544E;
  /* Softer text for secondary info */
  --color-bg: var(--color-cream);
  --color-bg-alt: var(--color-marble);
  --color-success: #5D7962;
  --color-error: #9E3E3E;

  /* Typography - Editorial System */
  --font-accent: 'Mrs Saint Delafield', cursive;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  /* Text Sizes - Scaled for Drama */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  /* H4 */
  --text-2xl: 2rem;
  /* H3 */
  --text-3xl: 3rem;
  /* H2 */
  --text-4xl: 4.5rem;
  /* H1 */
  --text-hero: clamp(4.5rem, 8vw, 10rem);
  /* Hero Title */

  /* Spacing - Increased for "Luxury Breath" */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  /* Increased from 1.5rem */
  --space-lg: 3.5rem;
  /* Increased from 2rem */
  --space-xl: 5rem;
  /* Increased from 3rem */
  --space-2xl: 8rem;
  /* Increased from 4rem */
  --space-3xl: 12rem;
  /* Significant section visual breaks */

  /* Layout */
  --max-width: 1440px;
  /* Slightly wider for modern screens */
  --max-width-narrow: 800px;
  --max-width-wide: 1800px;

  /* Border Radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  /* Pill shapes */

  /* Shadows - Softer, sharper, premium */
  --shadow-sm: 0 2px 4px rgba(28, 28, 28, 0.03);
  --shadow-md: 0 8px 16px rgba(28, 28, 28, 0.04);
  --shadow-lg: 0 16px 32px rgba(28, 28, 28, 0.05);
  --shadow-xl: 0 24px 48px rgba(28, 28, 28, 0.08);

  /* Transitions */
  --transition-fast: 200ms cubic-bezier(0.2, 0.0, 0.2, 1);
  --transition-base: 400ms cubic-bezier(0.2, 0.0, 0.2, 1);
  /* Slower, smoother */
  --transition-slow: 700ms cubic-bezier(0.2, 0.0, 0.2, 1);

  /* Z-Index Scale */
  --z-base: 1;
  --z-motif: 0;
  /* Behind content */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  /* Increased for readability */
  color: var(--color-text);
  background-color: var(--color-cream);
  background-image: url('assets/images/marble-bg.png');
  /* Removing old marble texture for cleaner look, will re-add as subtle motif if needed */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  /* Editorial look is often lighter */
  line-height: 1.1;
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--text-4xl);
  font-weight: 400;
}

h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
  font-family: var(--font-body);
  /* Functional headings can be sans */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h6 {
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-warm-gray);
}

p {
  margin-bottom: var(--space-sm);
  max-width: 70ch;
  /* Optimal reading length */
}

a {
  color: var(--color-charcoal);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

a:hover {
  color: var(--color-accent-gold);
}

strong {
  font-weight: 600;
}

/* === LAYOUT COMPONENTS === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.container-narrow {
  max-width: var(--max-width-narrow);
}

.container-wide {
  max-width: var(--max-width-wide);
}

.section {
  padding: var(--space-2xl) 0;
  /* Significant vertical breathing room */
  position: relative;
}

.section-sm {
  padding: var(--space-lg) 0;
}

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

/* === HEADER & NAVIGATION === */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(249, 248, 246, 0.95);
  /* Matches new cream background */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(28, 28, 28, 0.05);
  /* Subtle border */
  transition: all var(--transition-base);
  padding: var(--space-sm) 0;
}

.header.scrolled {
  background: rgba(249, 248, 246, 0.98);
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 80px;
  /* Slightly refined size */
  transition: transform var(--transition-base);
}

.logo:hover {
  transform: scale(1.02);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  /* Modern sans for UI */
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-charcoal);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-base);
  /* wrapping styles for condensed desktop menu */
  display: block;
  width: min-content;
  text-align: center;
  line-height: 1.2;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  /* Thinner elegant underline */
  background-color: var(--color-accent-gold);
  transition: width var(--transition-base);
}

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

.nav-link:hover {
  color: var(--color-accent-gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.mobile-menu-toggle span {
  width: 30px;
  height: 1px;
  /* Thinner lines */
  background-color: var(--color-charcoal);
  transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  /* Always pill shaped */
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-charcoal);
  /* Soft black primary button */
  color: var(--color-white);
  border-color: var(--color-charcoal);
  box-shadow: var(--shadow-md);
}

.btn-primary::before {
  display: none;
  /* Removing the old shine effect for cleaner luxury */
}

.btn-primary:hover {
  background-color: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-charcoal);
  border-color: var(--color-taupe);
}

.btn-secondary:hover {
  background-color: var(--color-taupe);
  color: var(--color-white);
  border-color: var(--color-taupe);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

.btn-outline:hover {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: var(--text-base);
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: var(--text-xs);
}

/* === HERO SECTION - BOLD EDITORIAL === */
.hero {
  position: relative;
  min-height: 85vh;
  /* Reduced from 100vh */
  display: flex;
  align-items: center;
  background: transparent;
  overflow: visible;
  padding: 0;
}

/* Subtle texture overlay - Disabled for cleanliness */
.hero::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: var(--z-base);
  max-width: 100%;
  width: 100%;
}

.hero-expert-text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
  display: block;
  letter-spacing: -0.01em;
  color: var(--color-charcoal);
  margin-bottom: 0.2em;
}

.hero-main-text {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 300;
  line-height: 0.85;
  color: var(--color-charcoal);
  display: block;
  letter-spacing: -0.03em;
  text-shadow: none;
}

/* Carousel Text Transition */
.hero-carousel-text {
  display: inline-block;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}

.hero-carousel-text.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.text-gold-highlight {
  color: var(--color-accent-gold);
  background: none;
  font-style: italic;
}

.hero-glow {
  position: absolute;
  width: 80vh;
  height: 80vh;
  background: radial-gradient(circle, rgba(201, 168, 119, 0.1) 0%, rgba(201, 168, 119, 0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn-hero {
  /* Inherits .btn-primary */
  padding: 1.4rem 3.5rem;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-charcoal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stars {
  color: var(--color-accent-gold);
  letter-spacing: 2px;
}

/* === BRAND MOTIFS (LOGO DECONSTRUCTION) === */
.bg-motif-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-motif-e,
.bg-motif-y {
  position: absolute;
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-charcoal);
  opacity: 0.04;
  line-height: 1;
  user-select: none;
}

.bg-motif-e {
  font-size: 40vw;
  top: -10vw;
  left: -5vw;
}

.bg-motif-y {
  font-size: 50vw;
  bottom: -15vw;
  right: -10vw;
  transform: rotate(10deg);
}

.accent-stroke {
  font-family: var(--font-accent);
  color: var(--color-accent-gold);
  font-size: 1.5em;
  position: absolute;
  opacity: 0.3;
  z-index: -1;
}

/* === SERVICE CARDS === */
/* === SERVICE CARDS === */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  /* More compact width */
  gap: var(--space-md);
  /* Tighter gap */
  margin-top: var(--space-xl);
  align-items: stretch;
  /* Ensure cards stretch to same height */
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  border: none;
  display: flex;
  /* Flexbox for sticky footer/equal height content */
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-image {
  width: 100%;
  aspect-ratio: 16/9;
  /* More compact/cinematic */
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-content {
  padding: var(--space-md) var(--space-lg);
  /* Tighter padding */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}


.hero-bg-split-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(135deg, rgba(140, 131, 119, 0.35) 0%, rgba(184, 175, 160, 0.28) 50%, rgba(140, 131, 119, 0.32) 100%);
  z-index: 0;
}

.hero-image-container {
  position: absolute;
  right: 5%;
  top: 0;
  width: 55%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
  pointer-events: none;
}

.card-icon {
  width: 60px;
  height: 60px;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  transition: transform var(--transition-base), color var(--transition-base);
}

.card:hover .card-icon {
  transform: scale(1.1);
  color: var(--color-accent-gold);
}

.service-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.service-description {
  color: var(--color-text-light);
  font-family: var(--font-body);
  margin-bottom: var(--space-md);
  line-height: 1.8;
  flex-grow: 1;
  /* Pushes button to bottom if descriptions vary in length */
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-charcoal);
  font-weight: 500;
  text-transform: uppercase;
  font-size: var(--text-xs);
  letter-spacing: 1.5px;
  transition: all var(--transition-base);
  position: relative;
  z-index: 2;
  margin-top: auto;
  /* Ensures button is always at the bottom */
}

/* === REVIEWS SECTION === */
/* === REVIEWS CAROUSEL === */
.reviews-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: var(--space-lg);
  margin-top: 0;
  padding-bottom: var(--space-md);
  /* Space for scrollbar if visible */
  scrollbar-width: thin;
  /* Show thin scrollbar on Firefox for mobile UX */
  scrollbar-color: var(--color-secondary) transparent;
  -ms-overflow-style: auto;
  /* Show scrollbar on IE/Edge */
  -webkit-overflow-scrolling: touch;
  /* Smooth momentum scrolling on iOS */
}

.reviews-grid::-webkit-scrollbar {
  height: 4px;
  /* Thin scrollbar for mobile indication */
}

.reviews-grid::-webkit-scrollbar-track {
  background: transparent;
}

.reviews-grid::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 2px;
}

.review-card {
  min-width: calc(100% - var(--space-lg));
  /* Mobile: 1 item */
  scroll-snap-align: start;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

@media (min-width: 768px) {
  .review-card {
    min-width: calc(50% - var(--space-lg));
    /* Tablet: 2 items */
  }
}

@media (min-width: 1024px) {
  .review-card {
    min-width: calc(25% - (var(--space-lg) * 3 / 4));
    /* Desktop: 4 items */
  }
}

.reviews-carousel-wrapper {
  margin: 0 -1rem;
  /* Negative margin on mobile for edge-to-edge feel */
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .reviews-carousel-wrapper {
    margin: 0;
    padding: 0;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-marble);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--color-charcoal);
  transition: all var(--transition-base);
  opacity: 0;
  /* Hidden by default, shown on hover/desktop */
}

.reviews-carousel-wrapper:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: -24px;
}

.carousel-btn.next {
  right: -24px;
}

@media (max-width: 768px) {
  .carousel-btn {
    display: none;
    /* Hide arrows on mobile, rely on swipe */
  }

  #swipe-hint {
    display: block !important;
  }

  #swipe-hint:parent {
    display: block !important;
  }
}

.review-stars {
  display: flex;
  gap: var(--space-xs);
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.review-text {
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.review-author {
  font-weight: 600;
  color: var(--color-charcoal);
}

.review-date {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

/* === INSTAGRAM FEED === */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-base);
}

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

.instagram-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 119, 0.9), rgba(184, 175, 160, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
  color: var(--color-white);
  font-size: var(--text-lg);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

/* === TRUST BADGES === */
.trust-badges {
  display: flex;
  gap: var(--space-2xl);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: var(--space-2xl) 0;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(201, 168, 119, 0.2);
}

.trust-badge:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
  border-color: rgba(201, 168, 119, 0.4);
  box-shadow: 0 8px 25px rgba(201, 168, 119, 0.15);
}

.trust-badge-icon {
  width: 50px;
  height: 50px;
  color: var(--color-secondary);
  transition: all 0.3s ease;
}

.trust-badge:hover .trust-badge-icon {
  transform: scale(1.1) rotateY(180deg);
  color: var(--color-accent-gold);
}

.trust-badge-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-charcoal);
}

/* === FOOTER === */
.footer {
  background-color: var(--color-charcoal);
  color: var(--color-marble);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.footer-section h4 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  color: var(--color-marble);
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(232, 227, 218, 0.2);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-beige);
}

.social-links {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-md);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(232, 227, 218, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-marble);
  transition: all var(--transition-base);
}

.social-link:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* Utility: Hover Lift */
.hover-lift {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.text-center {
  text-align: center;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === FLOATING CTA BUTTON === */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1rem 1.75rem;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent-gold) 100%);
  color: var(--color-white);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 30px rgba(201, 168, 119, 0.4),
    0 4px 15px rgba(44, 44, 44, 0.2),
    0 0 0 0 rgba(201, 168, 119, 0.5);
  font-weight: 600;
  font-size: var(--text-base);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(150%);
  opacity: 0;
  animation: floatPulse 3s ease-in-out infinite;
}

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

.floating-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(201, 168, 119, 0.5),
    0 6px 20px rgba(44, 44, 44, 0.25),
    0 0 0 8px rgba(201, 168, 119, 0.2);
  color: var(--color-white);
}

.floating-cta svg {
  width: 20px;
  height: 20px;
}

@keyframes floatPulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(201, 168, 119, 0.4),
      0 4px 15px rgba(44, 44, 44, 0.2),
      0 0 0 0 rgba(201, 168, 119, 0.5);
  }

  50% {
    box-shadow: 0 8px 30px rgba(201, 168, 119, 0.4),
      0 4px 15px rgba(44, 44, 44, 0.2),
      0 0 0 15px rgba(201, 168, 119, 0);
  }
}

/* === PREMIUM GIFT VOUCHER === */
.gift-card-premium {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  border: 1px solid var(--color-accent-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  /* Reduced from 2xl to match other cards */
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  color: var(--color-white);
  transition: transform var(--transition-base);
  height: 100%;
  /* Ensure full height match */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gift-card-premium:hover {
  transform: translateY(-5px);
}

.gift-ribbon-badge {
  position: absolute;
  top: 32px;
  right: -32px;
  transform: rotate(45deg);
  background: var(--color-accent-gold);
  color: var(--color-white);
  width: 150px;
  /* Fixed width ensures it spans corners */
  text-align: center;
  padding: 8px 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  /* Increased spacing */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.gift-icon-container {
  width: 60px;
  /* Reduced slightly */
  height: 60px;
  margin: 0 auto var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 119, 0.3);
}

.gift-title {
  font-family: var(--font-accent);
  font-size: 2rem;
  /* Adjusted opacity/size */
  color: var(--color-accent-gold);
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}

.gift-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-md);
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gift-btn {
  background: transparent;
  border: 1px solid var(--color-accent-gold);
  color: var(--color-accent-gold);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  transition: all var(--transition-base);
  display: inline-block;
  margin-top: auto;
  /* Push to bottom */
}

.gift-btn:hover {
  background: var(--color-accent-gold);
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(201, 168, 119, 0.4);
}

/* === PREMIUM MEMBERSHIP CARD === */
.membership-card-premium {
  background: var(--color-white);
  border: 1px solid rgba(201, 168, 119, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  margin-top: var(--space-2xl);
}

.membership-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201, 168, 119, 0.15);
  border-color: var(--color-accent-gold);
}

.membership-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-accent-gold);
  color: var(--color-white);
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom-left-radius: var(--radius-md);
}

.membership-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--color-charcoal);
  line-height: 1;
  margin: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.membership-currency {
  font-size: 1.5rem;
  align-self: flex-start;
  margin-top: 0.5rem;
  color: var(--color-secondary);
}

.membership-period {
  font-size: 1rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
  align-self: flex-end;
  margin-bottom: 0.5rem;
}

.membership-features {
  list-style: none;
  margin: var(--space-lg) 0;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.membership-features li {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-charcoal);
  font-size: 1.05rem;
}

.membership-check {
  color: var(--color-accent-gold);
  flex-shrink: 0;
}

/* === PREMIUM BOOKING CTA === */
.booking-cta-premium {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, #1a1a1a 100%);
  border: 1px solid rgba(201, 168, 119, 0.3);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 100%;
  transition: transform var(--transition-base);
}

.booking-cta-premium:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent-gold);
}

.booking-cta-content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
}

.booking-cta-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
  line-height: 1.1;
}

.booking-cta-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-accent-gold);
  margin: var(--space-sm) auto 0;
}

.booking-cta-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 90%;
}

.booking-cta-btn {
  background: var(--color-accent-gold);
  color: var(--color-charcoal);
  padding: 1rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  border: none;
  box-shadow: 0 4px 15px rgba(201, 168, 119, 0.3);
}

.booking-cta-btn:hover {
  background: var(--color-white);
  color: var(--color-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 119, 0.4);
}

.booking-cta-bg-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  opacity: 0.05;
  pointer-events: none;
  color: var(--color-accent-gold);
  z-index: 1;
}

/* === COOKIE CONSENT === */
@media (max-width: 1024px) {
  .hero {
    min-height: 70vh;
  }

  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    display: flex;
    flex-direction: column-reverse;
  }

  .hero-split .text-left {
    text-align: center;
  }
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1200px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background-color: rgba(250, 248, 243, 0.98);
    backdrop-filter: blur(10px);
    padding: var(--space-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    text-align: left;
    white-space: normal;
    padding: var(--space-sm) 0;
  }

  /* Hero responsive styles */
  .hero {
    min-height: auto !important;
    overflow: visible !important;
  }

  .hero>div {
    overflow: visible !important;
  }

  .hero-bg-split-left {
    display: none;
    /* Hide the darker split on mobile */
  }

  .hero-bg-split-right {
    width: 100%;
    height: 100%;
    /* Full coverage */
    top: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(240, 235, 225, 0.9) 0%, rgba(230, 220, 205, 0.85) 100%);
    /* Lighter, more opaque for readability */
  }

  .hero-image-container {
    position: absolute !important;
    width: calc(50vw + 3.5rem) !important;
    /* 50vw plus padding compensation */
    right: 0 !important;
    margin-right: -3.5rem !important;
    /* Fine-tuned negative margin to reach edge perfectly */
    top: 0 !important;
    bottom: 0 !important;
    z-index: 1 !important;
    opacity: 1 !important;
    display: block !important;
  }

  .hero-image-container img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: 30% center !important;
    /* Position to show Emily more to the right on screen */
  }

  /* Premium Map Styling */
  .map-container-premium {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(201, 168, 119, 0.2);
    height: 400px;
    background: var(--color-beige);
  }

  .map-frame-custom {
    filter: grayscale(100%) invert(0%) sepia(15%) contrast(1.1);
    /* Elegant desaturated look */
    transition: filter var(--transition-slow);
  }

  .map-container-premium:hover .map-frame-custom {
    filter: grayscale(0%);
    /* Full color on hover */
  }

  .map-overlay-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    /* Center bottom of pin on center of map */
    pointer-events: none;
    /* Allow clicking through to map */
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  }

  .marker-logo-circle {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-white);
    padding: 5px;
  }

  .marker-logo-circle img {
    width: 100%;
    height: auto;
  }

  .marker-pin-bottom {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid var(--color-white);
    margin-top: -1px;
  }

  .hero-content {
    padding: 6rem 0.75rem 4rem !important;
    /* Reduced padding to ensure content stays within 50% */
    z-index: 2;
    max-width: 48% !important;
    /* Keep text safely in left half with margin */
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem) !important;
  }

  /* Mobile-specific hero adjustments */
  .mobile-break {
    display: inline;
  }

  .hide-mobile {
    display: none;
  }

  .social-proof {
    display: flex;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.3rem !important;
  }

  .social-proof .stars {
    display: block;
  }

  .social-proof-text {
    display: block;
  }

  .hero [style*="height: 100vh"] {
    height: 50vh !important;
    padding: 2rem 0 !important;
  }

  .hero img {
    max-width: 100% !important;
    width: 85% !important;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-badges {
    flex-direction: column;
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--space-2xl) 0;
  }

  .logo {
    height: 50px;
  }

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

/* === ACCESSIBILITY === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus styles */
*:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn var(--transition-slow) ease-out;
}

.animate-slide-left {
  animation: slideInLeft var(--transition-slow) ease-out;
}

.animate-slide-right {
  animation: slideInRight var(--transition-slow) ease-out;
}

/* === LOADING STATES === */
.skeleton {
  background: linear-gradient(90deg,
      var(--color-marble) 25%,
      var(--color-beige) 50%,
      var(--color-marble) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* === PREMIUM MEMBERSHIP CARD === */
.membership-card-premium {
  background: var(--color-white);
  border: 1px solid rgba(201, 168, 119, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  margin-top: var(--space-2xl);
}

.membership-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201, 168, 119, 0.15);
  border-color: var(--color-accent-gold);
}

.membership-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-accent-gold);
  color: var(--color-white);
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom-left-radius: var(--radius-md);
}

.membership-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--color-charcoal);
  line-height: 1;
  margin: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.membership-currency {
  font-size: 1.5rem;
  align-self: flex-start;
  margin-top: 0.5rem;
  color: var(--color-secondary);
}

.membership-period {
  font-size: 1rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
  align-self: flex-end;
  margin-bottom: 0.5rem;
}

.membership-features {
  list-style: none;
  margin: var(--space-lg) 0;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.membership-features li {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-charcoal);
  font-size: 1.05rem;
}

.membership-check {
  color: var(--color-accent-gold);
  flex-shrink: 0;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-modal);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-text {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }
}