﻿:root {
  --background: hsl(40 33% 97%);
  --foreground: hsl(20 20% 12%);
  --card: hsla(40 30% 95% / 0.74);
  --muted: hsl(35 20% 90%);
  --muted-foreground: hsl(20 10% 45%);
  --border: hsl(35 25% 85%);
  --gold: hsl(36 80% 50%);
  --gold-light: hsl(40 70% 75%);
  --gold-dark: hsl(36 80% 35%);
  --maroon: hsl(350 60% 25%);
  --saffron: hsl(25 90% 55%);
  --cream: hsl(40 33% 97%);
  --cream-dark: hsl(35 25% 90%);
  --shadow: 0 20px 60px -18px hsla(36 80% 50% / 0.18);
  --header-height: 72px;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

main section[id] {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

img,
iframe,
svg,
canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: hsla(40 33% 97% / 0.82);
  backdrop-filter: blur(18px);
  border-color: hsla(35 25% 85% / 0.85);
  box-shadow: 0 12px 40px -24px hsla(20 20% 12% / 0.28);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 700;
}

.brand span,
.footer-brand span {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  position: relative;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--foreground);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: hsla(40 33% 97% / 0.72);
  box-shadow: var(--shadow);
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-direction: column;
}

.menu-toggle span {
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--foreground);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero-media,
.parallax-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.parallax-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, hsla(38 89% 59% / 0.15), transparent 28%),
    linear-gradient(180deg, hsla(20 20% 12% / 0.28), hsla(20 20% 12% / 0.82));
}

.hero-noise,
.hero-grid,
.mantra-stars {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.hero-noise {
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 25%, rgba(255,215,110,0.8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 35% 70%, rgba(255,255,255,0.65) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 75%, rgba(255,215,110,0.65) 0 1px, transparent 1.5px);
  background-size: 180px 180px;
}

.hero-grid {
  opacity: 0.18;
  background-image:
    linear-gradient(hsla(40 70% 75% / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, hsla(40 70% 75% / 0.08) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 78%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.45;
}

.orb-one {
  width: 220px;
  height: 220px;
  top: 16%;
  left: 8%;
  background: radial-gradient(circle, hsla(36 80% 50% / 0.5), transparent 70%);
  animation: floatOrb 9s ease-in-out infinite;
}

.orb-two {
  width: 280px;
  height: 280px;
  right: 10%;
  top: 24%;
  background: radial-gradient(circle, hsla(25 90% 55% / 0.42), transparent 70%);
  animation: floatOrb 12s ease-in-out infinite reverse;
}

.orb-three {
  width: 180px;
  height: 180px;
  left: 42%;
  bottom: 12%;
  background: radial-gradient(circle, hsla(40 70% 75% / 0.35), transparent 72%);
  animation: floatOrb 10s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: calc(var(--header-height) + clamp(2.5rem, 7vh, 5rem));
  padding-bottom: clamp(6rem, 10vh, 8rem);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}


.hero-copy-col {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}



.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-light);
  font-size: 0.82rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.eyebrow.accent {
  color: var(--gold-dark);
}

.hero-title,
.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-title {
  max-width: none;
  color: var(--cream);
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  text-shadow: 0 12px 38px hsla(20 20% 12% / 0.3);
}


.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 760px;
  margin: 1.5rem auto 0;
  color: var(--gold-light);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.8;
}


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


.button,
.festival-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button::after,
.festival-link::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -120%;
  width: 80%;
  height: 180%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, hsla(40 33% 97% / 0.28), transparent);
  transition: transform 520ms ease;
}

.button:hover::after,
.festival-link:hover::after {
  transform: translateX(250%) rotate(18deg);
}

.button.primary,
.festival-link,
.audio-play,
.waveform-play {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--cream);
  box-shadow: 0 14px 30px -18px hsla(25 90% 55% / 0.8);
}

.button.secondary {
  border-color: hsla(40 70% 75% / 0.9);
  color: var(--gold-light);
  background: hsla(40 33% 97% / 0.03);
}

.blessing-strip {
  width: min(100%, 760px);
  margin: 1.9rem auto 0;
  overflow: hidden;
  border: 1px solid hsla(40 70% 75% / 0.15);
  border-radius: 999px;
  background: hsla(40 33% 97% / 0.08);
  backdrop-filter: blur(10px);
}


.blessing-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.blessing-track span {
  display: inline-flex;
  padding: 0.95rem 1.5rem;
  color: var(--gold-light);
  font-size: 0.84rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-visual-col {
  display: flex;
  justify-content: center;
}

.shrine-card {
  position: relative;
  width: min(100%, 420px);
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 1.85rem 1.4rem 1.55rem;
  border-radius: 34px;
  background: linear-gradient(180deg, hsla(40 33% 97% / 0.12), hsla(20 20% 12% / 0.18));
  border: 1px solid hsla(40 70% 75% / 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 35px 90px -42px hsla(20 20% 12% / 0.8);
  overflow: hidden;
}

.shrine-ring,
.shrine-glow {
  position: absolute;
  border-radius: 50%;
}

.shrine-ring {
  border: 1px solid hsla(40 70% 75% / 0.2);
}

.ring-a {
  width: 88%;
  aspect-ratio: 1;
  animation: spinSlow 22s linear infinite;
}

.ring-b {
  width: 70%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: spinSlowReverse 28s linear infinite;
}

.ring-c {
  width: 54%;
  aspect-ratio: 1;
  animation: pulseHalo 4s ease-in-out infinite;
}

.shrine-glow {
  width: 68%;
  aspect-ratio: 1;
  background: radial-gradient(circle, hsla(36 80% 50% / 0.32), transparent 72%);
  filter: blur(18px);
}

.shrine-card img {
  position: relative;
  z-index: 1;
  width: min(100%, 270px);
  border-radius: 28px;
  box-shadow: 0 30px 70px -30px hsla(36 80% 50% / 0.5);
}

.shrine-badges {
  position: absolute;
  bottom: 3.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: center;
  width: calc(100% - 2rem);
}

.shrine-badges span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: hsla(40 33% 97% / 0.1);
  border: 1px solid hsla(40 70% 75% / 0.16);
  color: var(--gold-light);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shrine-label {
  position: absolute;
  bottom: 1.5rem;
  margin: 0;
  color: var(--cream);
  font-size: 0.87rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.festival-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.95fr auto;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: 1.35rem 1.5rem;
  border: 1px solid hsla(40 70% 75% / 0.5);
  border-radius: 28px;
  background:
    linear-gradient(135deg, hsla(350 60% 25% / 0.72), hsla(20 20% 12% / 0.78)),
    hsla(40 33% 97% / 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 70px -35px hsla(20 20% 12% / 0.8);
  overflow: hidden;
  transform-style: preserve-3d;
}

.festival-banner::before,
.festival-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.festival-banner::before {
  inset: -20% auto auto -10%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, hsla(36 80% 50% / 0.18), transparent 68%);
}

.festival-banner::after {
  inset: auto -12% -26% auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, hsla(25 90% 55% / 0.16), transparent 72%);
}

.festival-copy,
.festival-countdown,
.festival-visual {
  position: relative;
  z-index: 1;
}

.festival-tag,
.mantra-audio-tag,
.jap-tag,
.reel-label {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: hsla(40 70% 75% / 0.14);
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.festival-copy h2 {
  margin: 0.8rem 0 0.55rem;
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
}

.festival-copy p {
  margin: 0 0 1rem;
  color: var(--gold-light);
  line-height: 1.7;
  font-size: 0.96rem;
}

.festival-countdown {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.countdown-pill {
  min-width: 92px;
  padding: 0.95rem 0.8rem;
  border-radius: 18px;
  background: hsla(40 33% 97% / 0.1);
  border: 1px solid hsla(40 70% 75% / 0.15);
  animation: pulseCard 3.2s ease-in-out infinite;
}

.countdown-pill:nth-child(2) {
  animation-delay: 0.3s;
}

.countdown-pill:nth-child(3) {
  animation-delay: 0.6s;
}

.countdown-pill strong {
  display: block;
  color: var(--cream);
  font-size: 1.7rem;
  line-height: 1;
}

.countdown-pill span {
  display: block;
  margin-top: 0.35rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.festival-visual {
  justify-self: end;
  position: relative;
  width: 150px;
  height: 150px;
  animation: floatCard 6s ease-in-out infinite;
}

.festival-glow {
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(36 80% 50% / 0.45), transparent 72%);
  filter: blur(14px);
}

.festival-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid hsla(40 70% 75% / 0.25);
  box-shadow: 0 18px 40px -24px hsla(36 80% 50% / 0.6);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  z-index: 1;
  transform: translateX(-50%);
  width: 1.85rem;
  height: 3rem;
  border: 2px solid hsla(40 70% 75% / 0.88);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 0.55rem;
}

.scroll-indicator span {
  width: 0.3rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--gold-light);
  animation: scrollPulse 2s infinite;
}

.mantra-section {
  position: relative;
  overflow: hidden;
  color: var(--cream);
}

.parallax-media {
  transform: scale(1.08);
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, hsla(350 60% 25% / 0.9), hsla(20 20% 12% / 0.9)),
    radial-gradient(circle at top, hsla(36 80% 50% / 0.14), transparent 30%);
}

.mantra-stars {
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,240,194,0.8) 0 1.5px, transparent 2px),
    radial-gradient(circle at 86% 24%, rgba(255,214,108,0.8) 0 1.5px, transparent 2px),
    radial-gradient(circle at 26% 74%, rgba(255,240,194,0.7) 0 1.5px, transparent 2px),
    radial-gradient(circle at 72% 76%, rgba(255,214,108,0.7) 0 1.5px, transparent 2px);
  background-size: 220px 220px;
  animation: twinkle 16s linear infinite;
}

.mantra-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 7rem 0;
}

.section-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: var(--foreground);
}

.mantra-section .section-title {
  color: var(--cream);
}

.mantra-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
  gap: 1.3rem;
  align-items: stretch;
  margin-top: 2.6rem;
}

.mantra-audio,
.jap-card {
  padding: 1.35rem;
  border-radius: 28px;
  background: hsla(40 33% 97% / 0.08);
  border: 1px solid hsla(40 70% 75% / 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 60px -35px hsla(20 20% 12% / 0.7);
}

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

.mantra-audio-copy h3,
.jap-card h3 {
  margin: 0.65rem 0 0;
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.mantra-audio-copy p,
.jap-card p {
  margin: 0.35rem 0 0;
  color: var(--gold-light);
  line-height: 1.7;
}

#mantraAudioElement {
  display: none;
}

.waveform-panel {
  position: relative;
  margin-top: 1.25rem;
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  border-radius: 24px;
  border: 1px solid hsla(40 70% 75% / 0.14);
  background:
    radial-gradient(circle at 50% 50%, hsla(36 80% 50% / 0.12), transparent 52%),
    linear-gradient(180deg, hsla(40 33% 97% / 0.09), hsla(20 20% 12% / 0.14));
  overflow: hidden;
}

.waveform-aura {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(36 80% 50% / 0.3), transparent 68%);
  filter: blur(24px);
  animation: pulseHalo 4.4s ease-in-out infinite;
}

.waveform-canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 180px;
}

.waveform-play {
  position: absolute;
  z-index: 2;
  width: 74px;
  height: 74px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.waveform-play-icon {
  position: relative;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--cream);
  transition: all 180ms ease;
}

.waveform-play.is-playing .waveform-play-icon {
  width: 16px;
  height: 20px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(90deg, var(--cream) 0 5px, transparent 5px 10px, var(--cream) 10px 15px, transparent 15px);
}

.player-timeline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.time-pill {
  min-width: 60px;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: hsla(40 33% 97% / 0.1);
  color: var(--gold-light);
  font-size: 0.84rem;
  text-align: center;
}

.timeline-slider,
#volumeSlider {
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, hsla(36 80% 50% / 0.85) var(--range-progress, 0%), hsla(40 70% 75% / 0.18) var(--range-progress, 0%));
  outline: none;
}

.timeline-slider::-webkit-slider-thumb,
#volumeSlider::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 12px -6px hsla(36 80% 50% / 0.6);
}

.timeline-slider::-moz-range-thumb,
#volumeSlider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 12px -6px hsla(36 80% 50% / 0.6);
}

.player-controls {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.mantra-repeat {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.repeat-chip {
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  border: 1px solid hsla(40 70% 75% / 0.16);
  background: hsla(40 33% 97% / 0.08);
  color: var(--gold-light);
}

.repeat-chip.is-active {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--cream);
}

.volume-control {
  display: grid;
  gap: 0.45rem;
}

.volume-control span {
  color: var(--gold-light);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mantra-audio-actions,
.jap-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.audio-button {
  min-width: 138px;
  padding: 0.9rem 1rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.audio-stop {
  background: hsla(40 33% 97% / 0.12);
  color: var(--gold-light);
  border: 1px solid hsla(40 70% 75% / 0.16);
}

.audio-status {
  margin: 0.95rem 0 0;
  color: var(--cream-dark);
  font-size: 0.92rem;
}

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

.jap-progress-wrap {
  position: relative;
  width: 150px;
  margin: 1.4rem auto 0;
}

.jap-ring {
  width: 150px;
  height: 150px;
}

.jap-ring-track,
.jap-ring-fill {
  fill: none;
  stroke-width: 8;
}

.jap-ring-track {
  stroke: hsla(40 70% 75% / 0.16);
}

.jap-ring-fill {
  stroke: hsl(36 80% 50%);
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 60px 60px;
  stroke-dasharray: 302;
  stroke-dashoffset: 302;
  transition: stroke-dashoffset 260ms ease;
}

.jap-progress-copy {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.jap-progress-copy strong {
  display: block;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
}

.jap-progress-copy span {
  display: block;
  color: var(--gold-light);
  margin-top: 0.25rem;
}

.mantra-lines {
  width: min(100%, 860px);
  margin: 3rem auto 0;
  display: grid;
  gap: 1rem;
}

.mantra-line {
  padding: 1.2rem;
  background: hsla(40 33% 97% / 0.06);
  border: 1px solid hsla(40 70% 75% / 0.12);
  border-radius: 22px;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.mantra-line.is-active {
  background: hsla(40 70% 75% / 0.1);
  border-color: hsla(36 80% 50% / 0.5);
  box-shadow: 0 0 0 1px hsla(36 80% 50% / 0.24), 0 18px 45px -30px hsla(36 80% 50% / 0.5);
}

.mantra-line h3 {
  margin: 0;
  color: var(--gold);
  font-family: "Noto Serif Devanagari", "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 700;
}

.mantra-line p {
  margin: 0.35rem 0 0;
  color: var(--gold-light);
  font-size: 0.98rem;
}

.mantra-quote {
  margin: 3.5rem auto 0;
  color: var(--gold-light);
  font-family: "Noto Serif Devanagari", "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-style: italic;
}

.mantra-meaning {
  margin: 0.6rem 0 0;
  color: var(--cream-dark);
  font-size: 0.95rem;
}

.content-section {
  padding: 6.5rem 0;
}

.muted-section,
.site-footer {
  background: var(--muted);
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-subtitle {
  width: min(100%, 720px);
  margin: 1rem auto 0;
  color: var(--muted-foreground);
  font-size: 1.05rem;
  line-height: 1.8;
}

.reel-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.reel-embed-card,
.place-card,
.book-card {
  position: relative;
  overflow: hidden;
  border: 1px solid hsla(35 25% 85% / 0.9);
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.reel-embed-card,
.book-card,
.place-card,
.mantra-audio,
.jap-card,
.mantra-line,
.shrine-card,
.festival-banner {
  transform-style: preserve-3d;
}

.reel-embed-card:hover,
.place-card:hover,
.book-card:hover,
.mantra-audio:hover,
.jap-card:hover,
.mantra-line:hover,
.shrine-card:hover,
.festival-banner:hover {
  border-color: hsla(36 80% 50% / 0.35);
  box-shadow: 0 28px 65px -30px hsla(36 80% 50% / 0.35);
}

.reel-embed-card {
  padding: 0.8rem;
}

.reel-label {
  margin: 0 0 0.8rem;
}

.reel-embed-card iframe {
  width: 100%;
  min-height: 560px;
  border: 0;
  border-radius: 18px;
  background: #fff;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.place-media {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.place-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.place-card:hover .place-media img {
  transform: scale(1.08);
}

.place-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, hsla(20 20% 12% / 0.58));
}

.place-location {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--cream);
  font-size: 0.9rem;
}

.place-copy,
.book-card {
  padding: 1.5rem;
}

.place-copy h3,
.book-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.place-copy p,
.book-card p {
  margin: 0.65rem 0 0;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.place-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.place-actions a,
.link-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.book-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--cream);
  font-size: 1.45rem;
  box-shadow: 0 16px 30px -18px hsla(25 90% 55% / 0.9);
}

.book-author {
  color: var(--gold-dark) !important;
  font-size: 0.85rem;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid hsla(35 25% 85% / 0.9);
}

.footer-shell {
  padding: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-shell p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gold-dark);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tilt-card {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

@keyframes slowZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.1); }
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

@keyframes pulseCard {
  0%, 100% { transform: translateY(0); box-shadow: inset 0 0 0 0 hsla(40 70% 75% / 0); }
  50% { transform: translateY(-3px); box-shadow: inset 0 0 0 1px hsla(40 70% 75% / 0.18); }
}

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

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

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinSlowReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes pulseHalo {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 0.55; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(8px); }
}

@media (max-width: 1200px) {
  .hero-title {
  max-width: none;
  color: var(--cream);
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  text-shadow: 0 12px 38px hsla(20 20% 12% / 0.3);
}


  .shrine-card {
    min-height: 470px;
  }

  .festival-banner {
    grid-template-columns: 1.2fr 1fr auto;
  }
}

@media (max-width: 1100px) {
  .hero-layout,
  .festival-banner,
  .mantra-experience {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: auto;
  }

  .hero-copy-col {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}



  .hero-visual-col {
    order: -1;
  }

  .shrine-card {
    width: min(100%, 460px);
  }

  .festival-countdown {
    justify-content: flex-start;
  }

  .festival-visual {
    justify-self: start;
  }

  .player-controls {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .reel-embed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .places-grid,
  .reel-embed-grid,
  .books-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 2rem);
  }

  .hero-title {
  max-width: none;
  color: var(--cream);
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  text-shadow: 0 12px 38px hsla(20 20% 12% / 0.3);
}


  .scroll-indicator {
    display: none;
  }
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.2rem;
    padding: 0.75rem;
    background: hsla(40 33% 97% / 0.96);
    backdrop-filter: blur(18px);
    border: 1px solid hsla(35 25% 85% / 0.9);
    border-radius: 1.25rem;
    box-shadow: 0 24px 50px -30px hsla(20 20% 12% / 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    background: hsla(35 20% 90% / 0.72);
  }

  .site-nav a::after {
    display: none;
  }

  .hero-content {
    padding-bottom: 4rem;
  }

  .hero-actions,
  .jap-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .festival-link,
  .audio-button {
    width: min(100%, 280px);
  }

  .festival-banner,
  .mantra-audio,
  .jap-card,
  .shrine-card {
    padding: 1rem;
    border-radius: 24px;
  }

  .festival-copy h2 {
    font-size: 1.9rem;
  }

  .countdown-pill {
    min-width: 84px;
  }

  .festival-visual {
    width: 120px;
    height: 120px;
  }

  .shrine-card {
    min-height: 420px;
  }

  .shrine-badges {
    bottom: 3.4rem;
  }

  .waveform-panel {
    min-height: 180px;
    padding: 0.9rem;
  }

  .waveform-canvas {
    height: 150px;
  }

  .player-timeline {
    grid-template-columns: 1fr;
  }

  .time-pill {
    justify-self: start;
  }

  .reel-embed-card iframe {
    min-height: 500px;
  }

  .content-section,
  .mantra-content {
    padding: 5rem 0;
  }

  .footer-shell {
    flex-direction: column;
    text-align: center;
  }

  .footer-links,
  .place-actions,
  .festival-countdown {
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .festival-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 1.4rem;
  }

  .festival-copy {
    max-width: 720px;
    text-align: center;
  }

  .festival-countdown {
    justify-content: center;
  }

  .festival-visual {
    justify-self: center;
  }
}

@media (max-width: 860px) {
  .hero-content {
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 3.5rem;
  }

  .hero-copy-col {
    max-width: min(100%, 680px);
    padding-inline: 0.25rem;
  }

  .eyebrow {
    letter-spacing: 0.22em;
  }

  .hero-title {
    font-size: clamp(2.9rem, 12vw, 4.8rem);
    line-height: 0.96;
  }

  .hero-copy {
    max-width: min(100%, 640px);
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 0.85rem;
  }

  .button,
  .festival-link {
    min-width: 0;
  }

  .blessing-strip {
    width: 100%;
    max-width: 100%;
    border-radius: 22px;
  }

  .blessing-track span {
    padding: 0.85rem 1.1rem;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .festival-banner {
    gap: 1rem;
    padding: 1.2rem;
  }

  .festival-copy h2 {
    font-size: clamp(1.7rem, 6vw, 2.3rem);
    line-height: 1.05;
  }

  .festival-copy p {
    font-size: 0.92rem;
  }

  .countdown-pill {
    min-width: 86px;
    flex: 1 1 86px;
    max-width: 110px;
  }
}

@media (max-width: 760px) {
  .hero-content {
    padding-top: calc(var(--header-height) + 1.1rem);
    padding-bottom: 3rem;
  }

  .hero-copy-col {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .button,
  .festival-link,
  .audio-button {
    width: min(100%, 320px);
  }

  .blessing-strip {
    border-radius: 18px;
  }

  .blessing-track span {
    padding: 0.78rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .festival-banner {
    padding: 1rem;
    border-radius: 22px;
  }

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

  .festival-countdown {
    gap: 0.65rem;
  }

  .countdown-pill {
    min-width: 78px;
    padding: 0.8rem 0.65rem;
  }

  .countdown-pill strong {
    font-size: 1.45rem;
  }

  .festival-visual {
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: clamp(2.1rem, 14vw, 3.2rem);
  }

  .festival-visual {
    display: none;
  }

  .festival-countdown {
    width: 100%;
  }

  .countdown-pill {
    max-width: none;
  }
}
@media (max-width: 760px) {
  .hero-section {
    overflow: hidden;
  }

  .hero-layout {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-copy-col {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-inline: 0.5rem;
    text-align: center;
    overflow: hidden;
  }

  .hero-copy-col > * {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title,
  .hero-copy,
  .eyebrow {
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 0.96rem;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .blessing-strip {
    width: 100%;
    max-width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}






