/* ═══════════════════════════════════════════════════════════════
   Woo & Wonder — Main Stylesheet
   Brand: Cormorant Garamond (display) + Manrope (body)
   Tokens: --ww-plum · --ww-navy · --ww-slate · --ww-green · --ww-gold · --ww-lilac
═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── BRAND TOKENS ────────────────────────────────────────── */
  --ww-plum:        #582377;   /* Primary identity — headings, CTAs */
  --ww-plum-mid:    #6d3190;   /* Hover plum */
  --ww-plum-faint:  rgba(88, 35, 119, 0.07);

  --ww-lilac:       #BE97DF;   /* Soft celestial accent */
  --ww-lilac-faint: rgba(190, 151, 223, 0.14);

  --ww-navy:        #1C3059;   /* Dark anchor — footer, hero, trust sections */
  --ww-navy-deep:   #172848;

  --ww-slate:       #495F8E;   /* Secondary — links, cards */
  --ww-slate-faint: rgba(73, 95, 142, 0.12);

  --ww-green:       #36946F;   /* Healing accent */
  --ww-green-faint: rgba(54, 148, 111, 0.10);

  --ww-gold:        #E5B675;   /* Premium highlight — icons, dividers */
  --ww-gold-faint:  rgba(229, 182, 117, 0.14);

  --ww-white:       #FFFFFF;
  --ww-neutral:     #F7F4F8;

  --ww-font-display: "Cormorant Garamond", Georgia, serif;
  --ww-font-body:    "Manrope", Inter, Arial, sans-serif;

  --ww-r-sm:   8px;
  --ww-r-md:   12px;
  --ww-r-lg:   18px;
  --ww-r-xl:   26px;
  --ww-r-pill: 9999px;

  --ww-shadow-sm: 0 4px 18px rgba(28, 48, 89, 0.08);
  --ww-shadow-md: 0 8px 36px rgba(28, 48, 89, 0.10);
  --ww-shadow-lg: 0 16px 60px rgba(28, 48, 89, 0.14);

  --ww-ease: 0.22s ease;

  /* ── LEGACY ALIASES (backwards compatibility) ────────────── */
  --cosmos:     var(--ww-navy);
  --dusk:       var(--ww-navy-deep);
  --eve:        var(--ww-plum);
  --moon:       var(--ww-lilac);
  --moonsoft:   var(--ww-plum-mid);
  --gold:       var(--ww-gold);
  --gold-lt:    var(--ww-plum-mid);
  --champagne:  var(--ww-plum);
  --rose:       var(--ww-plum);
  --cream:      var(--ww-white);
  --mist:       var(--ww-neutral);
  --parchment:  var(--ww-neutral);
  --text:       #3b3350;
  --text-muted: var(--ww-slate);
  --border:     rgba(73, 95, 142, 0.18);
  --border-lt:  rgba(73, 95, 142, 0.10);
  --shadow:     0 4px 24px rgba(28, 48, 89, 0.08);
  --shadow-lg:  0 12px 48px rgba(28, 48, 89, 0.12);
  --radius:     14px;
  --radius-sm:  8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ww-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: var(--eve); text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--cosmos);
}

/* ── UTILITIES ──────────────────────────────────────────────── */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-alt { background: var(--mist); }
.text-center { text-align: center; }

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--cosmos);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.divider-gold {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--moon), transparent);
  margin: 0 auto 2rem;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--ww-font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cosmos);
  color: var(--cream);
  border: 1px solid var(--cosmos);
}
.btn-primary:hover { background: var(--dusk); border-color: var(--dusk); color: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-gold {
  background: var(--ww-plum);
  color: #fff;
  border: 1.5px solid var(--ww-plum);
}
.btn-gold:hover { background: var(--ww-plum-mid); border-color: var(--ww-plum-mid); color: #fff; transform: translateY(-2px); box-shadow: var(--ww-shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--ww-plum);
  border: 1.5px solid var(--ww-plum);
}
.btn-outline:hover { background: var(--ww-plum); color: var(--ww-white); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250,248,254,0.45);
}
.btn-outline-light:hover { background: rgba(250,248,254,0.12); border-color: var(--cream); color: var(--cream); }

/* ── BADGE ──────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: rgba(201,146,77,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,146,77,0.3);
  margin-bottom: 0.6rem;
}

/* ── NAV ────────────────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

#main-nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 20px rgba(28,48,89,0.08);
  padding: 0.6rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cosmos);
  letter-spacing: 0.04em;
  line-height: 1;
}

.nav-logo-text span { color: var(--gold); }

#main-nav:not(.scrolled) .nav-logo-text { color: var(--cream); }
#main-nav:not(.scrolled) .nav-logo-text span { color: var(--gold-lt); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.nav-links a:hover { color: var(--gold); }

#main-nav:not(.scrolled) .nav-links a { color: rgba(250,248,254,0.8); }
#main-nav:not(.scrolled) .nav-links a:hover { color: var(--gold-lt); }

.nav-book {
  font-family: var(--ww-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ww-white) !important;
  background: var(--ww-plum);
  padding: 0.5rem 1.4rem;
  border-radius: var(--ww-r-pill);
  transition: background 0.3s !important;
}
#main-nav.scrolled .nav-book { background: var(--ww-plum); color: var(--ww-white) !important; }
.nav-book:hover { background: var(--ww-plum-mid) !important; color: var(--ww-white) !important; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cosmos);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}
#main-nav:not(.scrolled) .nav-toggle span { background: var(--cream); }

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--cosmos);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 { width: 600px; height: 600px; background: var(--eve);       top: -150px; left: -100px; opacity: 0.3; }
.hero-orb-2 { width: 450px; height: 450px; background: var(--champagne); bottom: -100px; right: -80px; opacity: 0.18; }
.hero-orb-3 { width: 350px; height: 350px; background: var(--moon);      top: 35%; left: 55%; opacity: 0.12; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 8rem 1.5rem 4rem;
}

.hero-moon {
  width: 70px;
  height: 70px;
  margin: 0 auto 2rem;
  animation: gentleGlow 4s ease-in-out infinite alternate;
}
@keyframes gentleGlow {
  from { filter: drop-shadow(0 0 6px rgba(200,191,232,0.3)); }
  to   { filter: drop-shadow(0 0 20px rgba(200,191,232,0.6)); }
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--moon);
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--gold); }

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(250,248,254,0.7);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(200,191,232,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200,191,232,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.1); }
}

/* ── INTRO STRIP ─────────────────────────────────────────────── */
.intro-strip {
  background: var(--cosmos);
  padding: 3rem 0;
}

.intro-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  divide: var(--border);
}

.intro-pillar {
  text-align: center;
  padding: 2rem 2.5rem;
  border-right: 1px solid rgba(200,191,232,0.15);
}
.intro-pillar:last-child { border-right: none; }

.pillar-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: rgba(200,191,232,0.08);
  border: 1px solid rgba(200,191,232,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-icon svg {
  width: 22px; height: 22px;
  stroke: var(--moon);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.pillar-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(200,191,232,0.55);
  line-height: 1.6;
}

/* ── SERVICES ────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 0;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card-img {
  height: 200px;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-card-img svg {
  width: 80px;
  height: 80px;
  opacity: 0.7;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-img .card-category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(250,248,254,0.9);
  padding: 0.2rem 0.65rem;
  border-radius: 12px;
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cosmos);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.service-card-meta span {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.service-card-meta svg {
  width: 13px; height: 13px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.service-card-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cosmos);
}
.service-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--ww-font-body);
  font-weight: 300;
}

/* ── CRYSTAL KITS ────────────────────────────────────────────── */
.kits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.kit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
  position: relative;
}
.kit-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.kit-crystal-art {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
}

.kit-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cosmos);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.kit-card-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.kit-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--cosmos);
  margin-bottom: 1rem;
}

/* ── ABOUT STRIP ─────────────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--parchment);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
}

.about-image-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

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

.about-deco {
  position: absolute;
  width: 200px; height: 200px;
  border: 1px solid rgba(201,146,77,0.2);
  border-radius: 50%;
  bottom: -30px; right: -30px;
  pointer-events: none;
}

.about-text { }
.about-text .section-label { text-align: left; }
.about-text .section-title { text-align: left; }

.about-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-value::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237FA0D8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l2.4 7.4H22l-6.2 4.5 2.4 7.4L12 17l-6.2 4.3 2.4-7.4L2 9.4h7.6z'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,146,77,0.15);
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--cosmos);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
}

.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.75rem;
}
.testimonial-stars svg {
  width: 13px; height: 13px;
  fill: var(--gold);
  stroke: none;
}

/* ── BOOKING MODAL ───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,22,64,0.7);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--cream);
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.96) translateY(16px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }

.modal-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cosmos);
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--cosmos); }

.modal-body { padding: 1.5rem 2rem 2rem; }

/* ── FORMS ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--ww-font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--eve);
  box-shadow: 0 0 0 3px rgba(74,58,138,0.1);
}
.form-textarea { resize: vertical; min-height: 100px; }

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

.form-message {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}
.form-message.success { background: rgba(72,187,120,0.1); color: #276749; border: 1px solid rgba(72,187,120,0.3); display: block; }
.form-message.error   { background: rgba(220,53,69,0.08); color: #c0392b; border: 1px solid rgba(220,53,69,0.2);  display: block; }

.booking-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.booking-actions .btn { justify-content: center; }
@media (max-width: 480px) {
  .booking-actions { flex-direction: column; }
  .booking-actions .btn { width: 100%; }
}

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 38px; height: 38px;
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.contact-info-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-info-value {
  font-size: 0.92rem;
  color: var(--cosmos);
  font-weight: 300;
}

/* ── DETAIL PAGE ─────────────────────────────────────────────── */
.detail-hero {
  background: var(--cosmos);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.detail-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: radial-gradient(circle at 70% 50%, var(--dusk) 0%, transparent 70%);
  pointer-events: none;
}

.detail-hero-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.detail-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.detail-hero-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.detail-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: rgba(200,191,232,0.8);
}

.detail-meta-item svg {
  width: 14px; height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.detail-price-badge {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--cream);
}

.detail-content {
  padding: 4rem 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.detail-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
}

.detail-body p { margin-bottom: 1.2rem; }

.detail-sidebar {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.sidebar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--cosmos);
  margin-bottom: 1.25rem;
}

.sidebar-includes {
  list-style: none;
  margin-bottom: 1.5rem;
}

.sidebar-includes li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-lt);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sidebar-includes li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ── MOON CIRCLES CALENDAR ───────────────────────────────────── */
.moon-phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.moon-phase-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}
.moon-phase-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.moon-phase-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.moon-phase-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cosmos);
  margin-bottom: 0.4rem;
}

.moon-phase-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
#site-footer {
  background: var(--cosmos);
  color: rgba(200,191,232,0.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo-text {
  font-size: 1.4rem;
  color: var(--cream);
  display: block;
  margin-bottom: 0.8rem;
}
.footer-brand .nav-logo-text span { color: var(--gold); }

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(200,191,232,0.5);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-nav-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200,191,232,0.5);
  margin-bottom: 1rem;
}

.footer-nav-links { list-style: none; }
.footer-nav-links li { margin-bottom: 0.5rem; }
.footer-nav-links a {
  font-size: 0.88rem;
  color: rgba(200,191,232,0.55);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-nav-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(200,191,232,0.1);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(200,191,232,0.35);
}

.footer-built-by {
  font-size: 0.75rem;
  color: rgba(200,191,232,0.35);
}
.footer-built-by a {
  color: rgba(200,191,232,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-built-by a:hover { color: var(--gold); }

/* ── PAGE TRANSITIONS ────────────────────────────────────────── */
#app { min-height: 100vh; }
.page { display: none; }
.page.active { display: block; }

/* ── LOADING ─────────────────────────────────────────────────── */
.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem;
}
.spinner {
  width: 36px; height: 36px;
  border: 2px solid var(--border);
  border-top-color: var(--eve);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── EMPTY STATE ─────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

/* ── TOAST ───────────────────────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--cosmos);
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  white-space: nowrap;
}
#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── BACK TO TOP ─────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 44px; height: 44px;
  background: var(--cosmos);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top svg {
  width: 18px; height: 18px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ══ RESPONSIVE ══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-strip     { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .detail-layout   { grid-template-columns: 1fr; }
  .contact-layout  { grid-template-columns: 1fr; gap: 2rem; }
  .intro-pillars   { grid-template-columns: 1fr; }
  .intro-pillar    { border-right: none; border-bottom: 1px solid var(--ww-lilac-faint); }
  .intro-pillar:last-child { border-bottom: none; }
}

@media (max-width: 700px) {
  .section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--cosmos);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open a {
    font-size: 1.2rem;
    color: var(--cream) !important;
  }
  .nav-links.open .nav-book {
    font-size: 1rem;
    padding: 0.7rem 2rem;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .kits-grid { grid-template-columns: 1fr; }
}

@media (pointer: coarse) {
  body { cursor: auto; }
  button, a, [role="button"] {
    cursor: pointer;
    touch-action: manipulation;
  }
}

/* ── NAV LOGO (PNG brand lockup) ─────────────────────────────── */
.nav-logo-mark { display: none; } /* hide legacy SVG mark */
.nav-logo-text { display: none; } /* hide legacy text wordmark */

.nav-logo-img { display: block; height: 44px; width: auto; }
.nav-logo-dark { display: none; }

#main-nav:not(.scrolled) .nav-logo-light { display: none; }
#main-nav:not(.scrolled) .nav-logo-dark  { display: block; }

/* Enlarge hero moon to show full brand mark with phase dots */
.hero-moon { width: 130px; height: 130px; }

/* Footer brand logo */
.footer-logo-img { display: block; width: 195px; height: auto; margin-bottom: 0.8rem; }

/* ── BASKET ──────────────────────────────────────────────────── */
.nav-basket-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ww-slate);
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.4rem;
  margin-right: 0.25rem;
  flex-shrink: 0;
  transition: color 0.2s;
}
.nav-basket-btn:hover { color: var(--ww-plum); }
#main-nav:not(.scrolled) .nav-basket-btn { color: rgba(255,255,255,0.75); }
#main-nav:not(.scrolled) .nav-basket-btn:hover { color: white; }

.basket-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--gold);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}

.basket-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,22,64,0.55);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.basket-overlay.open { opacity: 1; pointer-events: all; }

.basket-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100vw);
  height: 100vh;
  background: var(--cream);
  z-index: 901;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 32px rgba(30,22,64,0.18);
}
.basket-drawer.open { transform: translateX(0); }

.basket-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.basket-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cosmos);
  margin: 0;
}
.basket-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.25rem;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.basket-close:hover { color: var(--cosmos); }

.basket-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 1.5rem;
}
.basket-empty {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 300;
  text-align: center;
  margin-top: 2.5rem;
  font-style: italic;
}
.basket-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.basket-item:last-child { border-bottom: none; }
.basket-item-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  gap: 0.5rem;
}
.basket-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--cosmos);
  font-weight: 500;
  flex: 1;
  line-height: 1.3;
}
.basket-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--cosmos);
  white-space: nowrap;
  font-weight: 500;
}
.basket-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.basket-qty-btn {
  background: var(--mist);
  border: 1px solid var(--border);
  color: var(--cosmos);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
}
.basket-qty-btn:hover { background: var(--moon); }
.basket-qty {
  font-size: 0.9rem;
  color: var(--cosmos);
  min-width: 22px;
  text-align: center;
  font-weight: 500;
}
.basket-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0.25rem 0.3rem;
  margin-left: 0.15rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.basket-remove-btn:hover { color: #c0392b; }

.basket-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--mist);
  flex-shrink: 0;
}
.basket-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--cosmos);
  font-weight: 500;
  text-align: right;
  margin-bottom: 1rem;
}
.basket-stripe-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.btn-added {
  background: var(--eve) !important;
  pointer-events: none;
}
