/* ═══════════════════════════════════════════════════════════════════
   Pristine & Spotless Cleaning Services — Style System
   Design tokens derived from DESIGN.md
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ──────────────────────────────────────────────── */
:root {
  /* Colors */
  --cream: #FAF7F2;
  --cream-dark: #F0EBE1;
  --purple: #7B2D8B;
  --purple-dark: #5A1F67;
  --purple-light: rgba(123, 45, 139, 0.08);
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --text: #1A1018;
  --text-muted: #6B5C72;
  --white: #FFFFFF;

  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;

  /* Spacing */
  --section-pad: 80px;
  --container-max: 1100px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow: 0 4px 24px rgba(123,45,139,0.10);
  --shadow-hover: 0 8px 32px rgba(123,45,139,0.18);
  --shadow-lg: 0 12px 48px rgba(123,45,139,0.14);
}

/* ─── Reset & Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
::selection {
  background: var(--purple);
  color: var(--white);
}
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  background-image: radial-gradient(rgba(123, 45, 139, 0.03) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ─── Skip Link (A11y) ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--purple);
  color: var(--white);
  border-radius: var(--radius-pill);
  z-index: 200;
  font-weight: 500;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

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

/* ─── Section Titles ─────────────────────────────────────────────── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: var(--text-4xl);
  color: var(--text);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* ═══════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-bottom-color: var(--cream-dark);
  box-shadow: 0 2px 12px rgba(123,45,139,0.06);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  line-height: 1.2;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: width 0.2s;
}
.nav-links a:hover { color: var(--purple); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(12px);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay a {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-3xl);
  color: var(--text);
  transition: color 0.2s;
}
.nav-overlay a:hover { color: var(--purple); }

.nav-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--purple-light);
  border: none;
  color: var(--purple);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 110;
}
.nav-overlay-close:hover {
  background: rgba(123, 45, 139, 0.15);
  transform: scale(1.1) rotate(90deg);
}
.nav-overlay-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--purple);
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-base);
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.btn-primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  box-shadow: var(--shadow-hover);
}
.btn-nav {
  padding: 0.5rem 1.5rem;
  font-size: var(--text-sm);
}
.btn-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text-muted);
}
.btn-ghost:hover {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}
.btn-gold-filled {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold-filled:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-hover);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-white-outline:hover {
  background: var(--white);
  color: var(--purple);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
#hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
}

.hero-blob {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: var(--purple);
  opacity: 0.10;
  z-index: 0;
  animation: blobFloat 12s ease-in-out infinite alternate;
}

@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-20px, 20px) scale(1.05); }
}

.sparkle {
  position: absolute;
  z-index: 1;
  animation: spin 8s linear infinite;
}
.sparkle svg {
  fill: var(--gold);
}
.sparkle-1 { top: 12%; left: 55%; }
.sparkle-1 svg { width: 28px; height: 28px; }
.sparkle-2 { top: 25%; right: 8%; }
.sparkle-2 svg { width: 20px; height: 20px; }
.sparkle-3 { bottom: 20%; left: 48%; }
.sparkle-3 svg { width: 16px; height: 16px; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: var(--text-5xl);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}
.hero-headline .accent {
  background: linear-gradient(
    120deg, 
    var(--purple) 0%, 
    var(--purple) 30%, 
    var(--gold) 45%, 
    var(--gold-light) 50%, 
    var(--gold) 55%, 
    var(--purple) 70%, 
    var(--purple) 100%
  );
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shimmerShine 5s linear infinite;
  display: inline-block;
}
@keyframes shimmerShine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.hero-sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 420px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-image-ring {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  outline: 4px solid var(--purple);
  outline-offset: 8px;
  box-shadow: var(--shadow-lg);
}
.hero-image-ring img,
.hero-image-ring picture { width: 100%; height: 100%; }
.hero-image-ring picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════════ */
#services {
  background: var(--cream-dark);
  padding: var(--section-pad) 0;
}

/* Tabs Nav */
.tabs-nav {
  display: flex;
  border-bottom: 1px solid rgba(123,45,139,0.12);
  margin-bottom: 2rem;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none;  /* Hide scrollbar for IE/Edge */
}
.tabs-nav::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}
.tab-btn {
  padding: 1rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: var(--text-base);
  background: transparent;
  border: none;
  color: var(--text-muted);
  position: relative;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--purple); }
.tab-btn.active {
  color: var(--purple);
}
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--purple);
  border-radius: 2px 2px 0 0;
}
.tab-btn.active::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Tab Content */
.tab-content {
  display: none;
}
.tab-content.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--purple);
}
.service-icon {
  margin-bottom: 0.75rem;
}
.service-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--purple);
  transition: transform 0.2s ease;
}
.service-card:hover .service-icon svg {
  transform: scale(1.15);
}
.service-name {
  font-weight: 500;
  font-size: var(--text-base);
  margin-bottom: 0.25rem;
}
.service-price {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════════ */
#about {
  background: var(--cream);
  padding: var(--section-pad) 0;
}
.about-grid {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.about-copy {
  flex: 1;
}
.about-copy p {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2rem;
}
.stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.stat-pill {
  background: var(--purple);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
}
.about-visual {
  flex: 0 0 320px;
  position: relative;
}
.about-image-wrap {
  position: relative;
  width: 320px;
  height: 380px;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.about-img-accent {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: var(--gold);
  z-index: 1;
  box-shadow: var(--shadow);
}

/* ═══════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════ */
#how-it-works {
  background: var(--cream-dark);
  padding: var(--section-pad) 0;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(33.3% - 1rem);
  right: calc(33.3% - 1rem);
  height: 2px;
  border-top: 2px dashed var(--gold);
  z-index: 0;
}
.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow);
}
.step-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--purple);
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: var(--text-xl);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 260px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════════ */
#gallery {
  background: var(--cream);
  padding: var(--section-pad) 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.gallery-item picture img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(123, 45, 139, 0.30);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-overlay svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.gallery-item:hover picture img { transform: scale(1.05); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Gallery placeholder (missing image fallback) */
.gallery-placeholder {
  width: 100%;
  height: 260px;
  background: var(--purple-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-placeholder svg {
  width: 48px;
  height: 48px;
  fill: var(--purple);
  opacity: 0.3;
}

/* ═══════════════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26, 16, 24, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  transition: opacity 0.25s;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 1010;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}
.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
}
.lightbox-close svg { width: 24px; height: 24px; stroke: white; }
.lightbox-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-prev svg,
.lightbox-next svg { width: 24px; height: 24px; stroke: white; }
.lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════════════
   RESERVE (QR Strip)
   ═══════════════════════════════════════════════════════════════════ */
#reserve {
  background: var(--purple);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.reserve-blob {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 420px;
  height: 420px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
}
.reserve-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
#reserve h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: var(--text-4xl);
  color: var(--white);
  margin-bottom: 0.75rem;
}
#reserve .reserve-sub {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-lg);
  margin-bottom: 2rem;
  max-width: 400px;
}
.reserve-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.qr-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qr-card img {
  width: 180px;
  height: 180px;
  image-rendering: pixelated;
}
.qr-placeholder {
  width: 180px;
  height: 180px;
  border: 2px dashed rgba(123,45,139,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-sm);
  text-align: center;
  padding: 1rem;
}

/* Reserve sparkles */
.reserve-sparkle {
  position: absolute;
  z-index: 0;
  animation: spin 8s linear infinite;
}
.reserve-sparkle svg { fill: var(--gold); opacity: 0.6; }
.reserve-sparkle-1 { top: 10%; right: 12%; }
.reserve-sparkle-1 svg { width: 24px; height: 24px; }
.reserve-sparkle-2 { bottom: 15%; left: 30%; }
.reserve-sparkle-2 svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIAL
   ═══════════════════════════════════════════════════════════════════ */
#testimonial {
  background: var(--cream-dark);
  padding: var(--section-pad) 0;
}
.testimonial-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border-left: 4px solid var(--purple);
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-quote-mark {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  opacity: 0.15;
}
.testimonial-quote-mark svg {
  width: 48px;
  height: 48px;
  fill: var(--gold);
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl);
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
}
.testimonial-stars {
  color: var(--gold);
  letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════════ */
#contact {
  background: var(--cream);
  padding: var(--section-pad) 0;
}
.contact-grid {
  display: flex;
  gap: 3rem;
}
.contact-info {
  flex: 1;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--purple);
  transition: transform 0.2s;
}
.contact-item:hover .contact-item-icon svg {
  transform: scale(1.15);
}
.contact-item-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}
.contact-item-value {
  font-weight: 500;
}
.contact-item-value a {
  color: var(--purple);
  transition: color 0.2s;
}
.contact-item-value a:hover { color: var(--purple-dark); }

/* Contact Form */
.contact-form {
  flex: 1;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-base);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,45,139,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--purple-dark);
  padding: 3rem 0 2rem;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-logo svg { width: 36px; height: 36px; }
.footer-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-sm);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-tagline {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: var(--text-lg);
  margin-bottom: 1rem;
}
.footer-copy {
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
}

/* ═══════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Animated Background Decorations */
.bg-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}
.bg-decor-circle {
  width: 250px;
  height: 250px;
  border: 1.5px dashed var(--purple);
  border-radius: 50%;
  animation: floatOrb 20s linear infinite;
}
.bg-decor-circle-lg {
  width: 400px;
  height: 400px;
  border: 1.5px dashed var(--gold);
  border-radius: 50%;
  animation: floatOrb 30s linear infinite reverse;
}
.bg-decor-lines {
  width: 180px;
  height: 180px;
  stroke: var(--purple);
  stroke-width: 1;
  animation: spinSlow 35s linear infinite;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(40px, -20px) rotate(180deg) scale(1.05); }
  100% { transform: translate(0, 0) rotate(360deg); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 900px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --section-pad: 56px; }

  /* Reposition and scale down sparkles on mobile/tablet */
  .sparkle-1 {
    top: 6%;
    left: 6%;
  }
  .sparkle-1 svg {
    width: 20px;
    height: 20px;
  }
  .sparkle-2 {
    top: 35%;
    right: 6%;
  }
  .sparkle-2 svg {
    width: 16px;
    height: 16px;
  }
  .sparkle-3 {
    bottom: 6%;
    left: 8%;
  }
  .sparkle-3 svg {
    width: 12px;
    height: 12px;
  }

  .reserve-sparkle-1 {
    top: 5%;
    right: 8%;
  }
  .reserve-sparkle-1 svg {
    width: 18px;
    height: 18px;
  }
  .reserve-sparkle-2 {
    bottom: 5%;
    left: 8%;
  }
  .reserve-sparkle-2 svg {
    width: 14px;
    height: 14px;
  }

  #hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: 3rem 0;
  }
  .hero-content { padding: 0 2rem; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-image-wrap { display: none; }
  .hero-blob { width: 320px; height: 320px; top: -40px; right: -60px; }

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

  .about-grid { flex-direction: column; }
  .about-visual { flex: none; width: 100%; display: flex; justify-content: center; }

  .steps { flex-direction: column; align-items: center; }
  .steps::before { display: none; }

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

  .reserve-inner { flex-direction: column; align-items: center; text-align: center; }
  #reserve .reserve-sub { margin-left: auto; margin-right: auto; }
  .reserve-ctas { justify-content: center; }

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

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 600px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.5rem;
  }

  .container { padding: 0 1.25rem; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .navbar { padding: 0 1.25rem; }

  .tab-content.active { grid-template-columns: 1fr; }
  .tabs-nav { gap: 0; }
  .tab-btn { padding: 0.75rem 1.25rem; font-size: var(--text-sm); }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item picture img { height: 220px; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-headline { font-size: var(--text-4xl); }

  .testimonial-card { padding: 2rem 1.5rem; }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; }
}
