/* =====================================================
   DESIGN TOKENS & RESET
===================================================== */
:root {
  /* Primary — warm cream */
  --bg:          #F9F8F6;
  --card-1:      #EFECE4;   /* alternate section bg */
  --card-2:      #FFFFFF;   /* elevated card surface */

  /* Secondary — purple */
  --purple:       #a855f7;
  --purple-light: #9333ea;  /* deepened for contrast on light bg */
  --purple-soft:  #c084fc;  /* lighter tint, decorative use only */

  /* Tertiary — dark (anchors, footer, overlays) */
  --dark:        #050507;
  --dark-2:      #0d0d12;
  --dark-3:      #13131a;

  /* Typography */
  --lavender:    #1a1824;   /* primary heading colour (repurposed var) */
  --body-text:   #2d2a38;
  --muted:       #6b7280;

  /* Functional */
  --amber:       #d97706;
  --glow:        rgba(168,85,247,0.18);
  --glow-strong: rgba(168,85,247,0.45);
}

/* ── Footer scopes its own dark-theme vars ── */
#footer {
  --card-1:      #0d0d12;
  --card-2:      #13131a;
  --lavender:    #e9d5ff;
  --body-text:   #f5f3ff;
  --muted:       #9ca3af;
  --purple-light:#c084fc;
  --purple-soft: #c084fc;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--body-text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
}

@media (hover: hover) and (pointer: fine) {
  body, a, button, [role="button"] { cursor: none !important; }
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =====================================================
   SCROLL PROGRESS BAR
===================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-soft), var(--amber));
  z-index: 9999;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

/* =====================================================
   CUSTOM CURSOR
===================================================== */
.cursor-ring {
  display: none;
  position: fixed;
  top: -18px; left: -18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(168,85,247,0.65);
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
}

.cursor-dot {
  display: none;
  position: fixed;
  top: -3px; left: -3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple);
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-ring,
  .cursor-dot { display: block; }
}

.cursor-ring.hovering {
  border-color: rgba(168,85,247,0.4);
  background: rgba(168,85,247,0.07);
}

/* =====================================================
   NAV
===================================================== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(249,248,246,0.88);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  transform: translateY(-100%);
}

#nav.scrolled {
  border-bottom-color: rgba(168,85,247,0.18);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 32px; height: 32px;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  border: 1.5px solid rgba(168,85,247,0.45);
}

.nav-wordmark {
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--lavender);
}

.nav-links { display: flex; gap: 2.5rem; }

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--purple);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--lavender); }
.nav-links a:hover::after { width: 100%; }


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--lavender);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(249,248,246,0.97);
  backdrop-filter: blur(20px);
  padding: 2rem 5%;
  z-index: 999;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(168,85,247,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; color: var(--lavender); }

/* =====================================================
   HERO
===================================================== */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(168,85,247,0.14) 0%, transparent 68%);
  pointer-events: none;
  z-index: 1;
  transition: background 0.1s;
}

.hero-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,0.12);
  z-index: 1;
  pointer-events: none;
  animation: ringRotate 30s linear infinite;
}

.hero-ring::before {
  content: '';
  position: absolute;
  top: -3px; left: 40%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 10px var(--purple);
}

@keyframes ringRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  opacity: 0;
}

/* ---- Circular logo frame ---- */
.logo-frame {
  position: relative;
  width: 460px; height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.85);
}

.logo-circle {
  width: 340px; height: 340px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(168,85,247,0.45);
  box-shadow:
    0 0 0 6px rgba(168,85,247,0.06),
    0 0 36px rgba(168,85,247,0.3),
    0 0 70px rgba(168,85,247,0.12),
    0 8px 40px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
}

@keyframes logoPulse {
  0%, 100% {
    box-shadow:
      0 0 0 6px rgba(168,85,247,0.06),
      0 0 30px rgba(168,85,247,0.28),
      0 0 60px rgba(168,85,247,0.1),
      0 8px 40px rgba(0,0,0,0.1);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(168,85,247,0.1),
      0 0 55px rgba(168,85,247,0.55),
      0 0 100px rgba(168,85,247,0.22),
      0 8px 40px rgba(0,0,0,0.14);
  }
}

.logo-circle.pulsing { animation: logoPulse 3s ease-in-out infinite; }

.hero-logo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Decorative rings */
.logo-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  z-index: 1;
}

.logo-ring-outer {
  width: 408px; height: 408px;
  margin-top: -204px; margin-left: -204px;
  border: 1px dashed rgba(168,85,247,0.18);
}

.logo-ring-inner {
  width: 372px; height: 372px;
  margin-top: -186px; margin-left: -186px;
  border: 1px solid rgba(168,85,247,0.1);
}

/* Hero text */
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--lavender);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-headline .char { display: inline-block; }

.hero-sub {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--purple);
  opacity: 0;
}

.hero-divider {
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  transform: scaleX(0);
  opacity: 0;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-indicator span {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.scroll-chevron {
  width: 20px; height: 20px;
  border-right: 1.5px solid var(--purple);
  border-bottom: 1.5px solid var(--purple);
  transform: rotate(45deg);
  animation: bounce 1.6s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* =====================================================
   STATS BAR
===================================================== */
#stats {
  background: var(--card-1);
  border-top: 1px solid rgba(168,85,247,0.1);
  border-bottom: 1px solid rgba(168,85,247,0.1);
  padding: 4rem 5%;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  opacity: 0;
}

.stat-number {
  font-family: 'Space Mono', monospace;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.stat-divider {
  width: 24px; height: 1px;
  background: var(--purple);
  margin: 0.6rem auto;
  opacity: 0.4;
}

/* =====================================================
   SECTION HEADERS
===================================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--purple);
  display: block;
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  /* dark → purple → dark shimmer, reads beautifully on light bg */
  background: linear-gradient(90deg, var(--lavender) 0%, var(--purple) 50%, var(--lavender) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes shimmerSweep {
  0%   { background-position: 200% center; }
  100% { background-position: 0% center; }
}

.section-title.shimmer-anim { animation: shimmerSweep 2s ease-out forwards; }

/* =====================================================
   FEATURED FUEL
===================================================== */
#featured { padding: 7rem 5%; }

.featured-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.featured-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-2);
  cursor: none;
  border: 1px solid rgba(168,85,247,0);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07), 0 0 0 1px rgba(168,85,247,0.06);
  transition: border-color 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
  will-change: transform;
}

.featured-card:hover {
  border-color: rgba(168,85,247,0.4);
  box-shadow: 0 8px 40px rgba(168,85,247,0.18), 0 2px 20px rgba(0,0,0,0.08);
}

.featured-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.featured-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-card:hover .featured-img-wrap img { transform: scale(1.04); }

/* Dark overlay stays — ensures text over image is always readable */
.featured-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(5,5,7,0.92) 100%);
}

.featured-category {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--purple);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

.featured-body { padding: 1.4rem; }

.featured-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lavender);
  margin-bottom: 0.5rem;
}

.featured-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.cal-badge {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--amber);
  background: rgba(217,119,6,0.08);
  border: 1px solid rgba(217,119,6,0.22);
  padding: 3px 9px;
  border-radius: 100px;
}

.price-tag {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--lavender);
}

/* =====================================================
   FULL MENU
===================================================== */
#menu {
  padding: 7rem 5%;
  background: var(--card-1);
}

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tab-btn {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(168,85,247,0.22);
  background: transparent;
  color: var(--muted);
  cursor: none;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.tab-btn:hover, .tab-btn.active {
  background: rgba(168,85,247,0.1);
  border-color: var(--purple);
  color: var(--purple-light);
}

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(168,85,247,0.25);
  transform: scale(0);
  animation: rippleAnim 0.55s linear;
  pointer-events: none;
  width: 80px; height: 80px;
  margin-top: -40px; margin-left: -40px;
}

@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

.menu-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.menu-card {
  display: flex;
  align-items: stretch;
  background: var(--card-2);
  border-radius: 16px;
  border: 1px solid rgba(168,85,247,0.08);
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.menu-card:hover {
  border-color: rgba(168,85,247,0.28);
  box-shadow: 0 6px 28px rgba(168,85,247,0.12), 0 2px 14px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.menu-card-img {
  width: 190px;
  align-self: stretch;
  object-fit: cover;
  flex-shrink: 0;
}

.menu-card-body {
  flex: 1;
  padding: 1.4rem 1.2rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-card-cat {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.4rem;
}

.menu-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lavender);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.menu-card-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

.menu-card-right {
  padding: 1.4rem 1.4rem 1.4rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.menu-price {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--lavender);
}

/* =====================================================
   THE RITUAL
===================================================== */
#ritual {
  padding: 8rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

.ritual-images {
  position: relative;
  height: 600px;
}

.ritual-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(168,85,247,0.1);
  box-shadow: 0 12px 48px rgba(0,0,0,0.14);
  opacity: 0;
}

.ritual-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ritual-img:hover img { transform: scale(1.04); }

.ritual-img-1 { width: 75%; height: 350px; top: 0; left: 0; z-index: 1; }
.ritual-img-2 { width: 60%; height: 260px; bottom: 60px; right: 0; z-index: 2; }
.ritual-img-3 { width: 45%; height: 180px; bottom: 0; left: 5%; z-index: 3; }

.ritual-text {
  position: sticky;
  top: 120px;
  padding-top: 2rem;
  opacity: 0;
}

.ritual-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--lavender);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.ritual-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.pill {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid rgba(168,85,247,0.28);
  color: var(--purple-light);
  background: rgba(168,85,247,0.06);
  opacity: 0;
  transform: translateY(8px);
  transition: background 0.25s, border-color 0.25s;
}

.pill:hover {
  background: rgba(168,85,247,0.12);
  border-color: rgba(168,85,247,0.55);
}

/* =====================================================
   TESTIMONIALS
===================================================== */
#testimonials {
  padding: 7rem 5%;
  background: var(--card-1);
  overflow: hidden;
}

.carousel-track-wrap {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1rem;
  scrollbar-width: none;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.carousel-track-wrap::-webkit-scrollbar { display: none; }

.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--card-2);
  border-radius: 16px;
  border: 1px solid rgba(168,85,247,0.1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(168,85,247,0.28);
  box-shadow: 0 6px 32px rgba(168,85,247,0.1);
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 0.8;
  color: rgba(168,85,247,0.1);
  font-weight: 900;
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  user-select: none;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--body-text);
  margin-bottom: 1.5rem;
  padding-top: 2rem;
}

.testimonial-author {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.05em;
}

.testimonial-detail {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--muted);
  margin-top: 0.3rem;
  letter-spacing: 0.08em;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(168,85,247,0.22);
  cursor: none;
  transition: background 0.3s, transform 0.3s;
  border: none;
}

.dot.active {
  background: var(--purple);
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); box-shadow: none; }
  50%       { transform: scale(1.3); box-shadow: 0 0 8px rgba(168,85,247,0.5); }
}

/* =====================================================
   LOCATION + HOURS
===================================================== */
#location-outer { padding: 7rem 5%; background: var(--bg); }

#location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.map-container {
  aspect-ratio: 1 / 1;
  max-width: 480px;
  border-radius: 16px;
  border: 1px solid rgba(168,85,247,0.18);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--lavender);
  margin-bottom: 0.5rem;
}

.location-address {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hours-table { width: 100%; border-collapse: collapse; }

.hours-table tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.2s;
}

.hours-table tr.today { background: rgba(168,85,247,0.07); }

.hours-table td { padding: 0.7rem 0.5rem; font-size: 0.85rem; color: var(--body-text); }

.hours-table td:first-child {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  width: 110px;
}

.hours-table td:last-child {
  text-align: right;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
}

.hours-table tr.today td { color: var(--purple); }

.today-badge {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  background: var(--purple);
  color: #fff;
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
}

/* =====================================================
   FOOTER  (dark — tertiary colour anchor)
===================================================== */
#footer {
  background: #050507;
  border-top: 1px solid rgba(168,85,247,0.12);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand img {
  width: 48px;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,0.3);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 1.4rem;
  color: var(--purple-soft);
  margin-bottom: 0.5rem;
  display: block;
}

.footer-blurb {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-soft);
  margin-bottom: 1.2rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }

.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover { color: var(--lavender); padding-left: 4px; }

.social-links { display: flex; flex-direction: column; gap: 0.7rem; }

.social-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}

.social-link:hover { color: var(--purple-soft); }

.social-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(168,85,247,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: border-color 0.2s, background 0.2s;
}

.social-link:hover .social-icon {
  border-color: var(--purple-soft);
  background: rgba(168,85,247,0.12);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(168,85,247,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy { font-size: 0.78rem; color: var(--muted); }

.footer-made {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  color: rgba(168,85,247,0.45);
  letter-spacing: 0.1em;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-ring { width: 320px; height: 320px; }
  .hero-glow { width: 360px; height: 360px; }
  .logo-frame { width: 320px; height: 320px; }
  .logo-circle { width: 240px; height: 240px; }
  .logo-ring-outer { width: 288px; height: 288px; margin-top: -144px; margin-left: -144px; }
  .logo-ring-inner { width: 262px; height: 262px; margin-top: -131px; margin-left: -131px; }

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

  #ritual { grid-template-columns: 1fr; padding: 5rem 5%; }
  .ritual-images { height: 400px; }
  .ritual-text { position: static; }

  #location { grid-template-columns: 1fr; gap: 2rem; }
  .map-container { max-width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .testimonial-card { flex: 0 0 85%; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card-img { width: 140px; }
  .menu-card-body { padding: 0.9rem 0.8rem 0.9rem 1rem; }
  .menu-card-right { padding: 0.9rem 1rem 0.9rem 0.5rem; }
  .menu-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .menu-card-img { width: 100px; }
  .menu-card-name { font-size: 1rem; }
  .stats-grid { gap: 1rem; }
}
