:root {
  --ink: #1a0f1f;
  --plum: #3a1340;
  --plum-deep: #220a26;
  --maroon: #7a1f2d;
  --maroon-deep: #5a1322;
  --saffron: #d98b1c;
  --saffron-bright: #e89a2a;
  --gold: #f0c35a;
  --gold-bright: #f5d27a;
  --cream: #fff6df;
  --ivory: #fffdf6;
  --paper: #fdf7e8;
  --muted: rgba(60, 30, 40, 0.65);
  --border: rgba(120, 31, 45, 0.14);
  --shadow-sm: 0 4px 14px rgba(53, 22, 29, 0.06);
  --shadow-md: 0 14px 36px rgba(53, 22, 29, 0.10);
  --shadow-lg: 0 28px 80px rgba(53, 22, 29, 0.18);
  --grad-warm: linear-gradient(135deg, var(--maroon) 0%, var(--plum) 100%);
  --grad-gold: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  --grad-text: linear-gradient(135deg, var(--maroon) 0%, var(--saffron) 55%, var(--gold) 100%);
  --grad-deep: linear-gradient(140deg, var(--plum-deep) 0%, var(--maroon-deep) 60%, var(--maroon) 100%);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.25s var(--ease);
  --t: 0.4s var(--ease);
  --t-slow: 0.7s var(--ease);
}

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 8% 12%, rgba(240, 195, 90, 0.10), transparent 70%),
    radial-gradient(1100px 700px at 92% 78%, rgba(122, 31, 45, 0.08), transparent 70%),
    radial-gradient(500px 400px at 50% 50%, rgba(217, 139, 28, 0.04), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 60px);
  background: rgba(255, 253, 246, 0.78);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid var(--border);
}

.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--cream);
  background: var(--grad-warm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1px;
  box-shadow: 0 10px 26px rgba(122, 31, 45, 0.35), inset 0 0 0 1px rgba(240, 195, 90, 0.45);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px dashed rgba(217, 139, 28, 0.5);
  animation: spin 32s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.brand strong { display: block; font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: 0.74rem; line-height: 1.2; letter-spacing: 1.4px; text-transform: uppercase; margin-top: 2px; }

.site-nav { display: flex; align-items: center; gap: 4px; }

.site-nav a {
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  color: #5f3345;
  font-size: 0.93rem;
  font-weight: 500;
  transition: all var(--t);
}

.site-nav a:hover { color: var(--maroon); background: rgba(240, 195, 90, 0.18); }

.site-nav a.active {
  color: var(--ivory);
  background: var(--grad-warm);
  box-shadow: 0 8px 20px rgba(122, 31, 45, 0.3);
}

.nav-toggle {
  display: none;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--grad-warm);
  color: var(--ivory);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
}

@media (max-width: 920px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: rgba(255, 253, 246, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; }
  .nav-toggle { display: inline-flex; }
}

/* ---------------- Eyebrow & shared bits ---------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(240, 195, 90, 0.18);
  color: var(--maroon);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow::before { content: "✦"; color: var(--saffron); font-size: 0.85rem; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all var(--t);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn::after { content: "→"; transition: transform var(--t); }
.btn:hover::after { transform: translateX(5px); }

.btn.primary {
  background: var(--grad-warm);
  color: var(--ivory);
  box-shadow: 0 14px 34px rgba(122, 31, 45, 0.28);
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(122, 31, 45, 0.4);
}

.btn.secondary {
  background: var(--ivory);
  color: var(--maroon);
  box-shadow: inset 0 0 0 1.5px var(--maroon);
}
.btn.secondary:hover {
  background: var(--maroon);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn.ghost {
  background: rgba(240, 195, 90, 0.18);
  color: var(--maroon);
}
.btn.ghost:hover { background: rgba(240, 195, 90, 0.32); }

.btn.gold {
  background: var(--grad-gold);
  color: var(--plum-deep);
  box-shadow: 0 14px 30px rgba(217, 139, 28, 0.3);
}
.btn.gold:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(217, 139, 28, 0.45); }

.btn.no-arrow::after { display: none; }

.inline-cta { display: block; width: fit-content; margin: 56px auto 0; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.28fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  min-height: min(820px, calc(100vh - 88px));
  padding: clamp(56px, 8vw, 120px) clamp(20px, 4vw, 60px) clamp(56px, 7vw, 110px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 10% 10%, rgba(240, 195, 90, 0.22), transparent 70%),
    radial-gradient(70% 90% at 95% 100%, rgba(122, 31, 45, 0.14), transparent 65%);
  z-index: -1;
}

.hero-motion-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-motion-bg .motion-image {
  position: absolute;
  top: -2%;
  bottom: -2%;
  right: 0;
  left: 46%;
  width: auto;
  background-image: url("assets/hero-hanuman-full-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  filter: saturate(1.08) contrast(1.03) brightness(1.02) drop-shadow(-16px 22px 50px rgba(53, 22, 29, 0.22));
  opacity: 1;
  transform: none;
  animation: none;
  z-index: 2;
}

@media (max-width: 980px) {
  .hero-motion-bg .motion-image {
    left: 24%;
    right: 0;
    top: 3%;
    bottom: auto;
    height: 55%;
    background-position: right center;
  }
}

.hero-motion-bg .motion-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 222, 133, .3), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(217, 139, 28, .18), transparent 28%),
    linear-gradient(90deg, rgba(255, 253, 246, .96) 0%, rgba(255, 253, 246, .82) 42%, rgba(255, 246, 223, .14) 72%, rgba(255, 246, 223, .02) 100%);
}

.motion-aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: .85;
  z-index: 1;
  pointer-events: none;
}

.aura-one {
  width: min(48vw, 620px);
  aspect-ratio: 1;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  background:
    radial-gradient(closest-side,
      rgba(255, 246, 223, 0.85) 0%,
      rgba(245, 210, 122, 0.6) 22%,
      rgba(217, 139, 28, 0.32) 45%,
      rgba(122, 31, 45, 0.12) 65%,
      transparent 82%);
  animation: flare-pulse 7s ease-in-out infinite;
}

.aura-two {
  width: min(24vw, 320px);
  aspect-ratio: 1;
  right: 8%;
  top: 12%;
  opacity: 0.55;
  filter: blur(36px);
  background: radial-gradient(circle,
    rgba(255, 222, 133, 0.45),
    transparent 72%);
  animation: aura-orbit 12s ease-in-out infinite reverse;
}

@keyframes flare-pulse {
  0%, 100% { opacity: 0.75; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.08); }
}

.motion-ray { display: none; }
.ray-two, .ray-three { display: none; }

.hero-content { max-width: 740px; position: relative; z-index: 5; grid-column: 1; }
.hero-content .eyebrow { margin-bottom: 22px; }

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-bottom: 22px;
}

.hero h1 .accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 56ch;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero portrait wrapper — Hanuman cropped with divine sun aura */
.hero-portrait {
  position: relative;
  display: grid;
  place-items: center;
  width: min(640px, 100%);
  aspect-ratio: 16 / 10;
  margin: 0 auto;
  justify-self: center;
  z-index: 5;
}

.hero picture {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  isolation: isolate;
  z-index: 2;
  animation: floaty 8s ease-in-out infinite;
  box-shadow: none;
}

.hero picture::before,
.hero picture::after { display: none; }

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

@keyframes aura-shimmer {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1);
  filter: contrast(1.1) saturate(1.2) brightness(1.05);
  border-radius: 0;
  max-width: none;
  animation: none;
  box-shadow: none;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.2) 8%, black 22%, black 82%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.2) 8%, black 22%, black 82%, transparent 100%);
}

/* Outer atmospheric sun glow */
.hero-portrait .sun-glow {
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  background:
    radial-gradient(closest-side,
      rgba(255, 246, 223, 0.5) 0%,
      rgba(240, 195, 90, 0.35) 22%,
      rgba(217, 139, 28, 0.18) 45%,
      rgba(122, 31, 45, 0.08) 65%,
      transparent 80%);
  filter: blur(40px);
  z-index: 0;
  animation: glow-pulse 7s ease-in-out infinite;
  pointer-events: none;
}

/* Inner concentrated aura — sits just behind Hanuman */
.hero-portrait .sun-aura {
  position: absolute;
  width: 78%;
  height: 78%;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(closest-side,
      rgba(255, 246, 223, 0.55) 0%,
      rgba(245, 210, 122, 0.4) 28%,
      rgba(217, 139, 28, 0.15) 55%,
      transparent 78%);
  filter: blur(18px);
  z-index: 1;
  animation: aura-breathe 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes aura-breathe {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* Sparkles */
.hero-portrait .sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, var(--gold-bright) 0%, rgba(240, 195, 90, 0.6) 40%, transparent 70%);
  border-radius: 50%;
  animation: sparkle-pulse 2.4s ease-in-out infinite;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(240, 195, 90, 0.8));
}
.hero-portrait .sparkle.s1 { top: 8%; right: 4%; animation-delay: 0s; }
.hero-portrait .sparkle.s2 { top: 28%; right: -2%; animation-delay: 0.6s; width: 6px; height: 6px; }
.hero-portrait .sparkle.s3 { bottom: 18%; right: 2%; animation-delay: 1.3s; width: 10px; height: 10px; }
.hero-portrait .sparkle.s4 { top: 16%; left: 2%; animation-delay: 0.9s; }
.hero-portrait .sparkle.s5 { bottom: 32%; left: -2%; animation-delay: 1.7s; width: 6px; height: 6px; }

@keyframes sparkle-pulse {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  50% { opacity: 1; transform: scale(1.3); }
}

@media (max-width: 540px) {
  .hero-portrait { width: min(320px, 86%); }
}

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

@keyframes hanuman-video-pan {
  0% { transform: translate3d(0, -4px, 0) scale(1.03); }
  45% { transform: translate3d(-18px, 8px, 0) scale(1.07); }
  100% { transform: translate3d(-34px, -2px, 0) scale(1.04); }
}

@keyframes aura-orbit {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .55; }
  50% { transform: translate3d(-18px, 14px, 0) scale(1.1); opacity: .82; }
}

@keyframes ray-sweep {
  0%, 100% { opacity: 0; transform: translateX(30px) rotate(0deg) scaleX(.55); }
  35% { opacity: .7; }
  70% { opacity: 0; transform: translateX(-120px) rotate(-6deg) scaleX(1.35); }
}

/* ---------------- Hero blooming lotus (centerpiece) ---------------- */
.hero-lotus-bloom {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(220px, 28vw, 340px);
  height: clamp(220px, 28vw, 340px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 3;
  display: grid;
  place-items: center;
}

.hero-lotus-bloom .lotus-halo {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(closest-side,
    rgba(255, 246, 223, 0.55) 0%,
    rgba(240, 195, 90, 0.28) 30%,
    rgba(217, 139, 28, 0.12) 55%,
    transparent 78%);
  filter: blur(22px);
  animation: lotus-halo-pulse 7s ease-in-out infinite;
}

.hero-lotus-bloom .lotus-svg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 6px 22px rgba(217, 139, 28, 0.35));
}

.hero-lotus-bloom .petal {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  fill: rgba(255, 220, 160, 0.72);
  stroke: rgba(217, 139, 28, 0.55);
  stroke-width: 0.8;
  stroke-linejoin: round;
  opacity: 0;
  scale: 0;
  rotate: 0deg;
  animation-name: petal-bloom, petal-wind;
  animation-duration: 1.6s, 7s;
  animation-timing-function: cubic-bezier(.5, 1.4, .4, 1), ease-in-out;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
}

.hero-lotus-bloom .lotus-petals-back .petal {
  fill: rgba(245, 196, 110, 0.55);
  stroke: rgba(166, 78, 32, 0.45);
}

.hero-lotus-bloom .lotus-petals-front .petal {
  fill: rgba(255, 232, 188, 0.85);
  stroke: rgba(217, 139, 28, 0.6);
}

.hero-lotus-bloom .lotus-core {
  fill: rgba(240, 195, 90, 0.95);
  filter: drop-shadow(0 0 6px rgba(255, 222, 133, 0.9));
  transform-box: fill-box;
  transform-origin: center;
  scale: 0;
  opacity: 0;
  animation: lotus-core-bloom 1s ease-out 1s forwards,
             lotus-core-pulse 5s ease-in-out 2s infinite;
}

.hero-lotus-bloom .lotus-bindu {
  fill: var(--maroon);
  transform-box: fill-box;
  transform-origin: center;
  scale: 0;
  opacity: 0;
  animation: lotus-core-bloom 0.9s ease-out 1.4s forwards;
}

/* Bloom delay (one-shot), wind delay (negative = phase offset so petals sway out of sync). */
.hero-lotus-bloom .pb-1 { animation-delay: 0s,    -0.2s; }
.hero-lotus-bloom .pb-2 { animation-delay: 0.08s, -1.0s; }
.hero-lotus-bloom .pb-3 { animation-delay: 0.16s, -2.4s; }
.hero-lotus-bloom .pb-4 { animation-delay: 0.24s, -3.1s; }
.hero-lotus-bloom .pb-5 { animation-delay: 0.32s, -4.0s; }
.hero-lotus-bloom .pb-6 { animation-delay: 0.40s, -4.8s; }
.hero-lotus-bloom .pb-7 { animation-delay: 0.48s, -5.6s; }
.hero-lotus-bloom .pb-8 { animation-delay: 0.56s, -6.3s; }

.hero-lotus-bloom .pf-1 { animation-delay: 0.6s,  -0.6s; }
.hero-lotus-bloom .pf-2 { animation-delay: 0.68s, -1.4s; }
.hero-lotus-bloom .pf-3 { animation-delay: 0.76s, -2.0s; }
.hero-lotus-bloom .pf-4 { animation-delay: 0.84s, -2.8s; }
.hero-lotus-bloom .pf-5 { animation-delay: 0.92s, -3.5s; }
.hero-lotus-bloom .pf-6 { animation-delay: 1.00s, -4.4s; }
.hero-lotus-bloom .pf-7 { animation-delay: 1.08s, -5.1s; }
.hero-lotus-bloom .pf-8 { animation-delay: 1.16s, -5.9s; }

/* One-shot bloom — petal unfurls from base and stays open. */
@keyframes petal-bloom {
  0%   { opacity: 0; scale: 0; }
  60%  { opacity: 1; scale: 1.06; }
  100% { opacity: 1; scale: 1; }
}

/* Continuous wind — gentle sway around the petal's base; uses `rotate`
   (not `transform`) so it composes with the bloom's `scale` without conflict. */
@keyframes petal-wind {
  0%   { rotate: -4deg; }
  50%  { rotate: 4deg; }
  100% { rotate: -4deg; }
}

@keyframes lotus-core-bloom {
  0%   { scale: 0; opacity: 0; }
  100% { scale: 1; opacity: 1; }
}

@keyframes lotus-core-pulse {
  0%, 100% { scale: 1; }
  50%      { scale: 1.18; }
}

@keyframes lotus-halo-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.08); }
}

@media (max-width: 980px) {
  .hero-lotus-bloom {
    width: clamp(160px, 38vw, 220px);
    height: clamp(160px, 38vw, 220px);
    top: 38%;
    opacity: 0.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-lotus-bloom .petal,
  .hero-lotus-bloom .lotus-core,
  .hero-lotus-bloom .lotus-bindu,
  .hero-lotus-bloom .lotus-halo {
    animation: none;
    opacity: 1;
    scale: 1;
    rotate: 0deg;
  }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 32px;
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: "●"; color: var(--saffron); font-size: 0.6rem; }

/* ---------------- Bands & intro split ---------------- */
.band { padding: clamp(48px, 7vw, 100px) 0; }
.band.intro { background: linear-gradient(180deg, transparent, rgba(240, 195, 90, 0.07)); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 16px; }
.split p { color: var(--muted); }

/* Eyebrow → heading gap. Eyebrow is inline-flex so its margin-bottom
   doesn't reliably push the next block sibling; using margin-top on the
   heading is the cross-browser-safe fix. Scoped away from .hero so the
   hero keeps its own explicit eyebrow spacing. */
.split .eyebrow + h2,
.poster-layout .eyebrow + h2,
.cta-banner .eyebrow + h2,
.cert-head .eyebrow + h2,
.contact-panel .eyebrow + h1,
.feature-panel .eyebrow + h2,
.two-column .eyebrow + h2,
.page-hero .eyebrow + h1,
.section-head .eyebrow + h2 {
  margin-top: 14px;
}

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.stats article {
  padding: 26px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--t);
}

.stats article:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(217, 139, 28, 0.35); }

.stats strong { display: block; font-family: var(--font-display); font-size: 2.1rem; color: var(--maroon); line-height: 1; }
.stats span { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 6px; letter-spacing: 0.4px; }

/* ---------------- Section heads ---------------- */
.section-head { text-align: center; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); margin-top: 16px; }
.section-head p { max-width: 60ch; margin: 16px auto 0; color: var(--muted); font-size: 1rem; }

/* ---------------- Featured services (home) ---------------- */
.services { padding: clamp(60px, 8vw, 120px) 0; }

.service-media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 980px) { .service-media-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .service-media-grid { grid-template-columns: 1fr; } }

.service-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  border: 1px solid var(--border);
  transition: all var(--t);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.service-tile .tile-body { padding: 38px 22px 24px; flex: 1; display: flex; flex-direction: column; gap: 4px; }

.service-tile .tile-count {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 12px;
  background: rgba(34, 10, 38, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 999px;
  z-index: 2;
  border: 1px solid rgba(240, 195, 90, 0.3);
}

.service-tile .num {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--saffron);
  letter-spacing: 1.8px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* CTA tile (last card — links to all services) */
.service-tile.cta-tile {
  background: var(--grad-deep);
  border-color: transparent;
  color: var(--ivory);
  overflow: hidden;
  position: relative;
}
.service-tile.cta-tile::after {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(240, 195, 90, 0.45), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.service-tile.cta-tile .cta-inner {
  position: relative;
  z-index: 1;
  padding: 32px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.service-tile.cta-tile .om-mark {
  font-family: "Noto Sans Devanagari", Georgia, serif;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold-bright);
  margin-bottom: 12px;
  filter: drop-shadow(0 0 18px rgba(240, 195, 90, 0.6));
  animation: om-pulse 6s ease-in-out infinite;
}
.service-tile.cta-tile .num { color: var(--gold-bright); }
.service-tile.cta-tile h3 { color: var(--ivory); font-size: 1.35rem; }
.service-tile.cta-tile p { color: rgba(255, 246, 223, 0.82); }
.service-tile.cta-tile .card-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
}
.service-tile.cta-tile .card-link::after { content: "→"; transition: transform var(--t); }
.service-tile.cta-tile:hover .card-link::after { transform: translateX(5px); }
.service-tile.cta-tile::before {
  background: linear-gradient(135deg, transparent 30%, var(--gold-bright) 50%, transparent 70%);
}
.service-tile.cta-tile:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(122, 31, 45, 0.4); }
.service-tile.cta-tile:hover .om-mark { transform: scale(1.08); filter: drop-shadow(0 0 28px rgba(240, 195, 90, 0.9)); }

/* Floating category-number badge — overlaps image/body boundary */
.service-tile .tile-badge {
  position: absolute;
  top: -26px;
  left: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-warm);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 22px rgba(122, 31, 45, 0.4), inset 0 0 0 1.5px rgba(240, 195, 90, 0.55);
  z-index: 4;
  transition: transform var(--t), box-shadow var(--t);
}
.service-tile .tile-body { position: relative; }
.service-tile:hover .tile-badge {
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 14px 28px rgba(122, 31, 45, 0.5), 0 0 18px rgba(240, 195, 90, 0.4), inset 0 0 0 1.5px rgba(240, 195, 90, 0.75);
}

/* Explore CTA at bottom of card */
.service-tile .tile-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--maroon);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  align-self: flex-start;
  border-top: 1px solid rgba(122, 31, 45, 0.12);
  padding-top: 12px;
  width: 100%;
  justify-content: space-between;
}
.service-tile .tile-cta .arrow {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(240, 195, 90, 0.2);
  color: var(--maroon);
  font-size: 0.95rem;
  transition: transform var(--t), background var(--t), color var(--t);
}
.service-tile:hover .tile-cta .arrow {
  transform: translateX(4px);
  background: var(--grad-warm);
  color: var(--gold-bright);
}
.service-tile:hover .tile-cta { color: var(--plum); }

/* Devanagari Om watermark — appears stronger on hover */
.service-tile .tile-watermark {
  position: absolute;
  bottom: -22px;
  right: -10px;
  font-family: "Noto Sans Devanagari", Georgia, serif;
  font-weight: 900;
  font-size: 6rem;
  color: rgba(122, 31, 45, 0.05);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 0.9;
  transition: all var(--t-slow);
}
.service-tile:hover .tile-watermark {
  color: rgba(217, 139, 28, 0.15);
  transform: rotate(-8deg) scale(1.12);
}
.service-tile > *:not(.tile-watermark) { position: relative; z-index: 1; }

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, transparent 30%, var(--saffron) 50%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--t);
}

.service-tile:hover::before { opacity: 1; }

.service-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-tile .img-wrap { position: relative; overflow: hidden; }
.service-tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.8s var(--ease); }
.service-tile:hover img { transform: scale(1.06); }

.service-tile > div, .service-tile > a > div {
  padding: 22px 22px 26px;
}

.service-tile span.num {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--saffron);
  margin-bottom: 4px;
  letter-spacing: 1.8px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-tile h3 { font-size: 1.18rem; margin-bottom: 8px; color: var(--ink); }
.service-tile p { font-size: 0.92rem; color: var(--muted); line-height: 1.55; }

/* ---------------- Page hero ---------------- */
.page-hero {
  position: relative;
  padding: clamp(80px, 10vw, 150px) clamp(20px, 4vw, 60px) clamp(48px, 6vw, 90px);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(240, 195, 90, 0.22), transparent 70%),
    radial-gradient(80% 100% at 50% 100%, rgba(122, 31, 45, 0.10), transparent 70%);
  z-index: -1;
}

.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin: 16px 0 20px; }
.page-hero h1 .accent { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { max-width: 64ch; margin: 0 auto; color: var(--muted); font-size: 1.05rem; }

.page-hero.image-backed { padding: 0; min-height: 70vh; display: grid; place-items: center; position: relative; }
.page-hero.image-backed > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero.image-backed::before {
  background:
    linear-gradient(180deg, rgba(26, 15, 31, 0.65), rgba(26, 15, 31, 0.78)),
    radial-gradient(50% 70% at 50% 50%, rgba(217, 139, 28, 0.2), transparent 70%);
  z-index: -1;
}
.page-hero.image-backed h1, .page-hero.image-backed p { color: var(--ivory); }
.page-hero.image-backed .eyebrow { background: rgba(240, 195, 90, 0.25); color: var(--gold-bright); }
.page-hero.compact { padding-block: clamp(64px, 8vw, 110px) clamp(36px, 5vw, 60px); }

/* ---------------- Category navigation (services page) ---------------- */
.category-nav {
  position: sticky;
  top: 80px;
  z-index: 40;
  margin: 28px auto 56px;
  padding: 10px;
  width: min(1200px, 92%);
  background: rgba(255, 253, 246, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar { display: none; }

.category-nav ul {
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
  width: max-content;
  margin: 0 auto;
  padding: 0;
}

.category-nav a {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #5f3345;
  white-space: nowrap;
  transition: all var(--t);
}

.category-nav a:hover { background: rgba(240, 195, 90, 0.18); color: var(--maroon); }
.category-nav a.active {
  background: var(--grad-warm);
  color: var(--ivory);
  box-shadow: 0 8px 20px rgba(122, 31, 45, 0.3);
}

/* ---------------- Service categories ---------------- */
.service-category {
  padding: clamp(40px, 5vw, 72px) 0;
  scroll-margin-top: 170px;
  overflow: hidden;
}

.category-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}

.category-head .index {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.85;
  color: rgba(122, 31, 45, 0.14);
  font-weight: 700;
}

.category-head .label .eyebrow { margin-bottom: 12px; }
.category-head h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); margin-bottom: 8px; }
.category-head p { color: var(--muted); max-width: 56ch; }

@media (max-width: 640px) {
  .category-head { grid-template-columns: 1fr; gap: 12px; }
  .category-head .index { font-size: 2.8rem; }
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 246, 223, 0.55));
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  transition: all var(--t);
  overflow: hidden;
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(240, 195, 90, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity var(--t);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 139, 28, 0.4);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--grad-gold);
  color: var(--plum-deep);
  box-shadow: 0 10px 22px rgba(217, 139, 28, 0.28), inset 0 0 0 1px rgba(255, 246, 223, 0.4);
}

.service-icon svg { width: 28px; height: 28px; }

.service-card h3 { font-size: 1.15rem; color: var(--ink); }
.service-card .desc { font-size: 0.93rem; color: var(--muted); line-height: 1.6; flex: 1; }

.pill-list { display: flex; flex-wrap: wrap; gap: 6px; }
.pill-list li {
  padding: 5px 11px;
  font-size: 0.74rem;
  border-radius: 999px;
  background: rgba(240, 195, 90, 0.18);
  color: var(--maroon);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.card-cta {
  margin-top: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--maroon);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t);
}
.card-cta::after { content: "→"; transition: transform var(--t); }
.service-card:hover .card-cta::after { transform: translateX(5px); }

/* ---------------- Poster band ---------------- */
.poster-band {
  margin: clamp(56px, 7vw, 100px) 0;
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--grad-deep);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.poster-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 70% at 80% 20%, rgba(240, 195, 90, 0.28), transparent 70%),
    radial-gradient(50% 60% at 20% 80%, rgba(228, 117, 143, 0.14), transparent 70%);
  z-index: 0;
}

.poster-band::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px dashed rgba(240, 195, 90, 0.3);
  animation: spin 80s linear infinite;
  pointer-events: none;
}

.poster-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.poster-band h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 14px; color: var(--ivory); }
.poster-band p { opacity: 0.82; max-width: 52ch; }
.poster-band .eyebrow { background: rgba(240, 195, 90, 0.2); color: var(--gold-bright); margin-bottom: 18px; }

.mini-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-list span {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 246, 223, 0.18);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--t);
}
.mini-list span:hover { background: rgba(240, 195, 90, 0.16); border-color: rgba(240, 195, 90, 0.4); }

/* ---------------- Image feature ---------------- */
.image-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  width: min(1200px, 92%);
  margin: clamp(56px, 7vw, 100px) auto;
  align-items: center;
}

.image-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.feature-panel .eyebrow { margin-bottom: 16px; }
.feature-panel h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 22px; }

.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  position: relative;
  padding-left: 40px;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.6;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--plum-deep);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(217, 139, 28, 0.25);
}

/* ---------------- CTA banner ---------------- */
.cta-banner {
  position: relative;
  margin: clamp(56px, 7vw, 100px) auto;
  width: min(1200px, 92%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--grad-deep);
  color: var(--ivory);
  min-height: 340px;
}

.cta-banner img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.cta-banner > div { padding: clamp(32px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.cta-banner .eyebrow { background: rgba(240, 195, 90, 0.2); color: var(--gold-bright); }
.cta-banner h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--ivory); }
.cta-banner p { opacity: 0.85; max-width: 48ch; margin-bottom: 6px; }
.cta-banner .btn { width: fit-content; }

/* ---------------- Contact ---------------- */
.contact-hero {
  position: relative;
  margin: clamp(28px, 4vw, 56px) auto 0;
  width: min(1200px, 92%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--grad-deep);
  color: var(--ivory);
  box-shadow: var(--shadow-lg);
}

.contact-hero img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.contact-panel { padding: clamp(28px, 5vw, 56px); display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.contact-panel h1 { font-size: clamp(2rem, 3.6vw, 3rem); color: var(--ivory); }
.contact-panel p { opacity: 0.85; }
.contact-panel .eyebrow { background: rgba(240, 195, 90, 0.2); color: var(--gold-bright); }

.phone-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gold-bright);
  font-weight: 600;
  margin: 6px 0;
  letter-spacing: 1px;
}

.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.contact-actions .btn.secondary { background: transparent; color: var(--ivory); box-shadow: inset 0 0 0 1.5px rgba(255, 246, 223, 0.6); }
.contact-actions .btn.secondary:hover { background: var(--ivory); color: var(--maroon); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: clamp(56px, 7vw, 100px) auto;
}

.contact-grid article {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  border: 1px solid var(--border);
  transition: all var(--t);
}

.contact-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 139, 28, 0.4);
}

.contact-grid h2 { font-size: 1.3rem; margin-bottom: 10px; }
.contact-grid p { color: var(--muted); }

/* ---------------- Events ---------------- */
.event-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
  margin: clamp(32px, 5vw, 64px) auto;
}

.event-list article {
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  border: 1px solid var(--border);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.event-list article::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--grad-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--t-slow);
}
.event-list article:hover::before { transform: scaleY(1); }
.event-list article:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(217, 139, 28, 0.4); }

.event-list article > div { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.event-date {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--grad-warm);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.event-list h2 { font-size: 1.2rem; }
.event-list p { color: var(--muted); font-size: 0.95rem; }

/* ---------------- About story & values ---------------- */
.story { margin: clamp(56px, 7vw, 100px) auto; }
.story h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.story p { color: var(--muted); margin-bottom: 14px; font-size: 1rem; }

.quote-panel {
  padding: clamp(36px, 5vw, 60px);
  border-radius: var(--radius-xl);
  background: var(--grad-deep);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.quote-panel::before {
  content: "“";
  position: absolute;
  top: -40px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 13rem;
  color: rgba(240, 195, 90, 0.22);
  line-height: 1;
}

.quote-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px dashed rgba(240, 195, 90, 0.25);
  animation: spin 60s linear infinite;
}

.quote-panel p { position: relative; font-family: var(--font-display); font-size: clamp(1.2rem, 1.8vw, 1.5rem); line-height: 1.5; margin-bottom: 18px; color: var(--ivory); }
.quote-panel span { display: inline-block; font-size: 0.78rem; letter-spacing: 2.4px; text-transform: uppercase; color: var(--gold-bright); font-weight: 600; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.values article {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--t);
  position: relative;
}

.values article::before { display: none; }

.values .value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: var(--grad-gold);
  display: grid;
  place-items: center;
  color: var(--plum-deep);
  box-shadow: 0 12px 24px rgba(217, 139, 28, 0.32), inset 0 0 0 1px rgba(255, 246, 223, 0.45);
  transition: transform var(--t);
  position: relative;
}

.values .value-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  border: 1px dashed rgba(217, 139, 28, 0.35);
  opacity: 0;
  transition: opacity var(--t);
  animation: spin 14s linear infinite;
}

.values article:hover .value-icon { transform: scale(1.08) rotate(-3deg); }
.values article:hover .value-icon::after { opacity: 1; }

.values .value-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.values .value-icon .om-text {
  font-family: "Noto Sans Devanagari", "Noto Sans", Georgia, serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--plum-deep);
}

.values article:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(217, 139, 28, 0.4); }
.values h3 { font-size: 1.2rem; margin-bottom: 8px; }
.values p { color: var(--muted); font-size: 0.95rem; }

/* ---------------- Program (meditation page) ---------------- */
.program {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: clamp(36px, 5vw, 68px) auto;
}

.program article {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  border: 1px solid var(--border);
  transition: all var(--t);
  position: relative;
}

.program article:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(217, 139, 28, 0.4); }

.program span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--saffron);
  margin-bottom: 8px;
  line-height: 1;
  font-weight: 600;
}

.program h2 { font-size: 1.2rem; margin-bottom: 8px; }
.program p { color: var(--muted); font-size: 0.95rem; }

/* ---------------- Two column (meditation page) ---------------- */
.two-column {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  margin: clamp(56px, 7vw, 100px) auto;
  align-items: start;
}

.two-column h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: 22px; }

.booking-card {
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  background: var(--grad-deep);
  color: var(--ivory);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(240, 195, 90, 0.35), transparent 70%);
}

.booking-card h2 { color: var(--ivory); margin-bottom: 14px; }
.booking-card p { opacity: 0.85; margin-bottom: 22px; }
.booking-card .btn.gold { width: fit-content; }

/* ---------------- Footer ---------------- */
.site-footer {
  margin-top: clamp(56px, 7vw, 100px);
  padding: clamp(40px, 5vw, 56px) clamp(20px, 4vw, 60px);
  background: var(--grad-deep);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 80% at 90% 0%, rgba(240, 195, 90, 0.16), transparent 70%);
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  width: min(1200px, 96%);
  margin-inline: auto;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 340px; }
.footer-brand .brand-mark { background: var(--grad-gold); color: var(--plum-deep); box-shadow: 0 10px 26px rgba(240, 195, 90, 0.3); }
.footer-brand strong { font-family: var(--font-display); font-size: 1.4rem; }
.footer-brand p { opacity: 0.78; font-size: 0.92rem; line-height: 1.6; }

.footer-col h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 14px; color: var(--gold-bright); letter-spacing: 0.5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.9rem; opacity: 0.78; transition: all var(--t); }
.footer-col a:hover { opacity: 1; color: var(--gold-bright); padding-left: 4px; }

.footer-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; text-align: right; }
.footer-cta a.tel {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-bright);
  font-weight: 600;
}
.footer-cta a.tel:hover { padding-left: 0; }

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: clamp(28px, 4vw, 40px);
  padding-top: 20px;
  border-top: 1px solid rgba(240, 195, 90, 0.18);
  width: min(1200px, 96%);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.82rem;
  opacity: 0.7;
}

/* ---------------- Reveal animation ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

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

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero picture { order: -1; }
  .hero-content { margin-inline: auto; }
  .hero-content p { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
  .split { grid-template-columns: 1fr; }
  .poster-layout { grid-template-columns: 1fr; }
  .image-feature { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; }
  .contact-hero { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-column { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-cta { align-items: flex-start; text-align: left; grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .stats { grid-template-columns: 1fr; }
  .mini-list { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
}

::selection { background: var(--saffron); color: var(--plum-deep); }

/* ============================================================
   CERTIFICATION BAND — Become a Certified Healer
   ============================================================ */
.cert-band {
  position: relative;
  scroll-margin-top: 100px;
  padding: clamp(64px, 9vw, 120px) 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0) 0%, rgba(240, 195, 90, 0.08) 50%, rgba(255, 253, 246, 0) 100%);
  overflow: hidden;
}

.cert-band .cert-mandala {
  position: absolute;
  top: 40px;
  right: -120px;
  width: 360px;
  height: 360px;
  color: var(--maroon);
  opacity: 0.06;
  animation: spin 90s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.cert-band > .container { position: relative; z-index: 1; }

.cert-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.cert-head .eyebrow { margin-bottom: 16px; }
.cert-head h2 { font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 16px; }
.cert-head h2 .accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cert-head p { color: var(--muted); font-size: 1.02rem; max-width: 64ch; margin: 0 auto; }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

@media (max-width: 1080px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cert-grid { grid-template-columns: 1fr; } }

.cert-card {
  position: relative;
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--t);
  isolation: isolate;
  overflow: hidden;
}

.cert-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}

.cert-card::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(240, 195, 90, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity var(--t);
  z-index: -1;
}

.cert-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 139, 28, 0.4);
  box-shadow: var(--shadow-md);
}
.cert-card:hover::before { transform: scaleX(1); }
.cert-card:hover::after { opacity: 1; }

.cert-card.featured {
  background: var(--grad-deep);
  color: var(--ivory);
  border-color: transparent;
  box-shadow: 0 30px 60px rgba(53, 22, 29, 0.22);
}
.cert-card.featured h3,
.cert-card.featured .cert-meta { color: var(--ivory); }
.cert-card.featured p { color: rgba(255, 246, 223, 0.82); }
.cert-card.featured .cert-list li { color: rgba(255, 246, 223, 0.9); }
.cert-card.featured .cert-list li::before { background: var(--grad-gold); color: var(--plum-deep); }
.cert-card.featured .card-link { color: var(--gold-bright); }
.cert-card.featured .cert-icon { background: rgba(240, 195, 90, 0.18); color: var(--gold-bright); box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2); }
.cert-card.featured::before { background: var(--grad-gold); transform: scaleX(1); }

.cert-flag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 12px;
  background: var(--grad-gold);
  color: var(--plum-deep);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(217, 139, 28, 0.3);
}

.cert-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad-gold);
  color: var(--plum-deep);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(217, 139, 28, 0.28), inset 0 0 0 1px rgba(255, 246, 223, 0.45);
  margin-bottom: 4px;
}
.cert-icon svg { width: 26px; height: 26px; }

.cert-meta {
  font-size: 0.74rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 700;
}

.cert-card h3 { font-size: 1.2rem; color: var(--ink); line-height: 1.25; }
.cert-card > p { color: var(--muted); font-size: 0.93rem; line-height: 1.55; }

.cert-list { display: flex; flex-direction: column; gap: 8px; padding-top: 6px; }
.cert-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.5;
}
.cert-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(240, 195, 90, 0.25);
  color: var(--maroon);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.cert-card .card-link {
  margin-top: auto;
  padding-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--maroon);
  border-top: 1px solid rgba(122, 31, 45, 0.12);
}
.cert-card.featured .card-link { border-top-color: rgba(240, 195, 90, 0.2); }
.cert-card .card-link .arrow {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(240, 195, 90, 0.22);
  color: var(--maroon);
  transition: all var(--t);
}
.cert-card.featured .card-link .arrow { background: rgba(240, 195, 90, 0.25); color: var(--gold-bright); }
.cert-card:hover .card-link .arrow {
  background: var(--grad-warm);
  color: var(--gold-bright);
  transform: translateX(4px);
}

.cert-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 40px) clamp(28px, 5vw, 48px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(240, 195, 90, 0.12));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(240, 195, 90, 0.35);
}
.cert-footer > div { display: flex; flex-direction: column; gap: 4px; }
.cert-footer strong { font-family: var(--font-display); font-size: clamp(1.1rem, 1.8vw, 1.4rem); color: var(--ink); }
.cert-footer span { color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   SACRED DEVOTIONAL ELEMENTS & ANIMATIONS
   ============================================================ */

/* SVG sprite container */
.sacred-sprite { width: 0; height: 0; position: absolute; }

/* --- Decorative wrappers --- */
.sacred-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

main > section { position: relative; }
.hero, .page-hero, .poster-band, .cta-banner, .service-category,
.contact-hero, .quote-panel, .booking-card, .site-footer, .image-feature { position: relative; }

/* --- Mandala backdrops --- */
.mandala {
  position: absolute;
  pointer-events: none;
  color: var(--maroon);
  animation: spin 80s linear infinite;
  opacity: 0.08;
}
.mandala.reverse { animation-duration: 110s; animation-direction: reverse; }
.mandala.slow { animation-duration: 140s; }
.mandala.gold { color: var(--saffron); opacity: 0.1; }
.mandala.light { color: var(--gold-bright); opacity: 0.14; }
.mandala.dark-bg { color: var(--gold-bright); opacity: 0.12; }

/* --- Sri Yantra (sprite version, used in dark sections — keeps rotating) --- */
.yantra {
  position: absolute;
  pointer-events: none;
  color: var(--maroon);
  animation: spin 120s linear infinite;
  opacity: 0.07;
}
.yantra.light { color: var(--gold-bright); opacity: 0.16; }

/* --- Static Hex Star (Shatkona) with line-drawing animation --- */
.hex-star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 36vw, 420px);
  height: clamp(280px, 36vw, 420px);
  z-index: -1;
  pointer-events: none;
  fill: none;
  stroke: rgba(217, 139, 28, 0.45);
  stroke-width: 0.4;
  opacity: 0.55;
  overflow: visible;
}

.hex-star > * {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: hex-draw 4.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hex-star > *:nth-child(1) { animation-delay: 0.2s; }
.hex-star > *:nth-child(2) { animation-delay: 0.9s; }
.hex-star > *:nth-child(3) { animation-delay: 1.6s; }
.hex-star > *:nth-child(4) { animation-delay: 2.2s; }
.hex-star > *:nth-child(5) { animation-delay: 2.8s; }
.hex-star > *:nth-child(6) { animation-delay: 3.2s; }
.hex-star > *:nth-child(7) { animation-delay: 3.5s; }
.hex-star > .bindu {
  animation: hex-draw 0.6s ease-out forwards, bindu-fill 0.8s ease-out forwards;
  animation-delay: 3.8s, 3.8s;
}

@keyframes hex-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes bindu-fill {
  to { fill: rgba(217, 139, 28, 0.7); }
}

.page-hero.image-backed .hex-star {
  stroke: var(--gold-bright);
  opacity: 0.55;
  z-index: 0;
}
.page-hero.image-backed .hex-star > .bindu {
  animation: hex-draw 0.6s ease-out forwards, bindu-fill-light 0.8s ease-out forwards;
  animation-delay: 3.8s, 3.8s;
}

@keyframes bindu-fill-light {
  to { fill: var(--gold-bright); }
}

@media (prefers-reduced-motion: reduce) {
  .hex-star > * { animation: none !important; stroke-dashoffset: 0 !important; }
}

/* --- Lotus --- */
.lotus {
  color: var(--saffron);
  animation: breathe 5s ease-in-out infinite;
}

/* --- Dharma chakra --- */
.dharma {
  color: var(--maroon);
  animation: spin 24s linear infinite;
  opacity: 0.55;
}

/* --- Om Sanskrit glyph --- */
.om {
  font-family: var(--font-display);
  font-weight: 700;
  user-select: none;
  display: inline-block;
  line-height: 1;
}

.om-watermark {
  position: absolute;
  font-family: "Noto Sans", "Noto Sans Devanagari", Georgia, serif;
  font-weight: 900;
  color: rgba(122, 31, 45, 0.05);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: om-pulse 7s ease-in-out infinite;
  line-height: 0.9;
}
.om-watermark.light { color: rgba(240, 195, 90, 0.14); }

/* --- Floating Diya flame --- */
.diya {
  position: absolute;
  width: 32px;
  pointer-events: none;
  filter: drop-shadow(0 0 14px rgba(240, 195, 90, 0.75)) drop-shadow(0 0 28px rgba(217, 139, 28, 0.5));
  z-index: 0;
  transform-origin: center bottom;
  animation: flicker 2.6s ease-in-out infinite, drift 14s ease-in-out infinite;
}
.diya .flame { transform-origin: center bottom; animation: flame-pulse 1.6s ease-in-out infinite; }

/* --- Floating golden particles --- */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bright) 0%, rgba(240, 195, 90, 0.6) 40%, transparent 70%);
  opacity: 0;
  animation: sparkle-rise 9s ease-in-out infinite;
}
.particle:nth-child(2) { width: 4px; height: 4px; animation-duration: 11s; }
.particle:nth-child(3) { width: 8px; height: 8px; animation-duration: 13s; }
.particle:nth-child(4) { width: 5px; height: 5px; animation-duration: 8s; }
.particle:nth-child(5) { width: 7px; height: 7px; animation-duration: 10s; }
.particle:nth-child(6) { width: 4px; height: 4px; animation-duration: 12s; }
.particle:nth-child(7) { width: 6px; height: 6px; animation-duration: 14s; }
.particle:nth-child(8) { width: 5px; height: 5px; animation-duration: 9s; }
.particle:nth-child(9) { width: 7px; height: 7px; animation-duration: 11s; }

/* --- Sacred divider row --- */
.sacred-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: clamp(36px, 5vw, 64px) auto;
  width: min(640px, 90%);
  opacity: 0.85;
}
.sacred-divider .rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  opacity: 0.7;
}
.sacred-divider .center {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.sacred-divider svg { width: 22px; height: 22px; }
.sacred-divider .sd-lotus { color: var(--saffron); opacity: 0.7; animation: breathe 4s ease-in-out infinite; }
.sacred-divider .sd-om {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--maroon);
  animation: om-pulse 5s ease-in-out infinite;
}
.sacred-divider .sd-mandala { color: var(--saffron); animation: spin 18s linear infinite; }

/* --- Sanskrit / mantra marquee --- */
.mantra-marquee {
  overflow: hidden;
  padding: 18px 0;
  background: linear-gradient(90deg, transparent, rgba(240, 195, 90, 0.10), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: clamp(40px, 6vw, 72px) 0;
  position: relative;
}
.mantra-marquee::before,
.mantra-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.mantra-marquee::before { left: 0; background: linear-gradient(90deg, var(--ivory), transparent); }
.mantra-marquee::after { right: 0; background: linear-gradient(-90deg, var(--ivory), transparent); }
.mantra-marquee .track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
}
.mantra-marquee .item {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  color: var(--maroon);
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 56px;
  font-weight: 500;
}
.mantra-marquee .item::after { content: "✦"; color: var(--saffron); font-size: 0.9rem; }

/* --- Hero sacred decorations --- */
.hero .mandala-bg-1 { top: -160px; right: -120px; width: 480px; height: 480px; }
.hero .mandala-bg-2 { bottom: -120px; left: -90px; width: 320px; height: 320px; opacity: 0.05; }
.hero .om-bg {
  position: absolute;
  top: 6%; left: 3%;
  font-size: clamp(6rem, 12vw, 11rem);
  color: rgba(217, 139, 28, 0.10);
  font-weight: 900;
  font-family: "Noto Sans Devanagari", serif;
  animation: om-pulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.hero .diya-1 { top: 6%; right: 3%; animation-delay: 0s; }
.hero .diya-2 { top: 6%; left: 3%; animation-delay: 1.4s; }
.hero .diya-3 { bottom: 4%; right: 4%; animation-delay: 0.7s; }
.hero .diya-4 { bottom: 4%; left: 4%; animation-delay: 2.1s; }

.hero-content { position: relative; z-index: 5; }

/* --- Page hero sacred backdrop --- */
.page-hero .yantra-bg {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 540px; height: 540px;
  z-index: -1;
}
.page-hero.image-backed .yantra-bg { color: var(--gold-bright); opacity: 0.22; z-index: 0; }
.page-hero .corner-lotus-1 { position: absolute; bottom: 30px; left: 5%; width: 60px; height: 60px; color: var(--saffron); opacity: 0.55; animation: breathe 5s ease-in-out infinite; }
.page-hero .corner-lotus-2 { position: absolute; bottom: 30px; right: 5%; width: 60px; height: 60px; color: var(--saffron); opacity: 0.55; animation: breathe 5s ease-in-out infinite 1s; transform: scaleX(-1); }

/* --- Service category accents --- */
.service-category .corner-mandala {
  position: absolute;
  width: 240px; height: 240px;
  pointer-events: none;
  color: var(--maroon);
  opacity: 0.06;
}
.service-category .corner-mandala.tl { top: 20px; left: -100px; animation: spin 70s linear infinite; }
.service-category .corner-mandala.br { bottom: 20px; right: -100px; animation: spin 90s linear infinite reverse; }

/* --- Service card sacred touches --- */
.service-card { position: relative; overflow: hidden; }
.service-card .card-om {
  position: absolute;
  bottom: -16px;
  right: -8px;
  font-family: "Noto Sans Devanagari", Georgia, serif;
  font-weight: 900;
  font-size: 5.5rem;
  color: rgba(122, 31, 45, 0.05);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 0.9;
  transition: all var(--t-slow);
}
.service-card:hover .card-om {
  color: rgba(217, 139, 28, 0.14);
  transform: rotate(-6deg) scale(1.1);
}
.service-card > * { position: relative; z-index: 1; }
.service-icon { position: relative; }
.service-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  border: 1px dashed rgba(240, 195, 90, 0.4);
  opacity: 0;
  transition: opacity var(--t);
  animation: spin 14s linear infinite;
}
.service-card:hover .service-icon::after { opacity: 1; }

/* --- Footer sacred element --- */
.site-footer .footer-mandala {
  position: absolute;
  bottom: -180px; left: -120px;
  width: 420px; height: 420px;
  color: var(--gold-bright);
  opacity: 0.09;
  animation: spin 110s linear infinite;
  pointer-events: none;
}
.site-footer .footer-om {
  position: absolute;
  top: 20px; right: 5%;
  font-family: "Noto Sans Devanagari", serif;
  font-weight: 900;
  font-size: 9rem;
  color: rgba(240, 195, 90, 0.08);
  pointer-events: none;
  user-select: none;
  animation: om-pulse 8s ease-in-out infinite;
  line-height: 0.85;
}

/* --- Quote panel lotus --- */
.quote-panel .quote-lotus {
  position: absolute;
  bottom: 24px; right: 30px;
  width: 80px; height: 80px;
  color: var(--gold-bright);
  opacity: 0.3;
  animation: breathe 5s ease-in-out infinite;
  pointer-events: none;
}

/* --- Poster band yantra --- */
.poster-band .poster-yantra {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 720px; height: 720px;
  color: var(--gold-bright);
  opacity: 0.1;
  animation: spin 140s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* --- CTA banner sacred touch --- */
.cta-banner .cta-mandala {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 320px; height: 320px;
  color: var(--gold-bright);
  opacity: 0.14;
  animation: spin 90s linear infinite;
  pointer-events: none;
  z-index: 1;
}

/* --- Booking card mandala --- */
.booking-card .booking-mandala {
  position: absolute;
  bottom: -80px; right: -60px;
  width: 240px; height: 240px;
  color: var(--gold-bright);
  opacity: 0.18;
  animation: spin 80s linear infinite;
  pointer-events: none;
}

/* --- Brand mark sacred pulse (enhance existing) --- */
.brand-mark { animation: brand-glow 5s ease-in-out infinite; }

/* --- Floating Om quick-call (always visible) --- */
.float-om {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-warm);
  color: var(--ivory);
  display: grid;
  place-items: center;
  font-family: "Noto Sans Devanagari", Georgia, serif;
  font-weight: 700;
  font-size: 1.7rem;
  box-shadow: 0 14px 36px rgba(122, 31, 45, 0.4);
  z-index: 45;
  text-decoration: none;
  transition: transform var(--t);
  animation: brand-glow 4s ease-in-out infinite;
}
.float-om:hover { transform: scale(1.1) rotate(10deg); }
.float-om::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px dashed rgba(240, 195, 90, 0.6);
  animation: spin 18s linear infinite;
}
.float-om::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(240, 195, 90, 0.18);
  animation: ripple 2.6s ease-out infinite;
}

/* --- Keyframes --- */
@keyframes flicker {
  0%, 100% { opacity: 1; transform: scaleY(1) rotate(-0.5deg); }
  20% { opacity: 0.95; transform: scaleY(1.06) rotate(1deg); }
  40% { opacity: 0.88; transform: scaleY(0.96) rotate(-1.5deg); }
  60% { opacity: 1; transform: scaleY(1.08) rotate(1deg); }
  80% { opacity: 0.92; transform: scaleY(1.02) rotate(-0.5deg); }
}

@keyframes flame-pulse {
  0%, 100% { transform: scaleY(1) scaleX(1); }
  50% { transform: scaleY(1.12) scaleX(0.94); }
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(12px, -8px); }
  50% { transform: translate(-10px, -18px); }
  75% { transform: translate(8px, -10px); }
}

@keyframes sparkle-rise {
  0% { opacity: 0; transform: translateY(0) scale(0.4); }
  10% { opacity: 1; }
  90% { opacity: 0.9; }
  100% { opacity: 0; transform: translateY(-220px) scale(1.4); }
}

@keyframes om-pulse {
  0%, 100% { opacity: var(--om-base, 0.6); transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.16); opacity: 1; }
}

@keyframes brand-glow {
  0%, 100% { box-shadow: 0 10px 26px rgba(122, 31, 45, 0.35), inset 0 0 0 1px rgba(240, 195, 90, 0.45); }
  50% { box-shadow: 0 10px 36px rgba(122, 31, 45, 0.5), 0 0 28px rgba(240, 195, 90, 0.5), inset 0 0 0 1px rgba(240, 195, 90, 0.75); }
}

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

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .mandala, .yantra, .lotus, .dharma, .diya, .om-watermark, .brand-mark,
  .float-om, .float-om::before, .float-om::after, .mantra-marquee .track,
  .service-icon::after, .sacred-divider .sd-mandala, .sacred-divider .sd-om,
  .sacred-divider .sd-lotus, .quote-panel .quote-lotus, .particle {
    animation: none !important;
  }
}

@media (max-width: 720px) {
  .float-om { bottom: 18px; right: 18px; width: 52px; height: 52px; font-size: 1.4rem; }
  .hero .om-bg { font-size: 5rem; }
  .hero .diya-4 { display: none; }
  .site-footer .footer-om { font-size: 5rem; }
  .service-category .corner-mandala { width: 160px; height: 160px; }
}

/* ============================================================
   CONTACT FORM MODAL
   ============================================================ */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.contact-modal.open {
  display: flex;
  opacity: 1;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 15, 31, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-modal__card {
  position: relative;
  width: min(520px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: var(--radius-xl);
  background: var(--ivory);
  padding: clamp(28px, 5vw, 44px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
  isolation: isolate;
  overflow-x: hidden;
}
.contact-modal.open .contact-modal__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.contact-modal__card::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(240, 195, 90, 0.4), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact-modal__card > * { position: relative; z-index: 1; }

.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(122, 31, 45, 0.08);
  color: var(--maroon);
  border: none;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--t);
  z-index: 2;
}
.contact-modal__close:hover {
  background: var(--maroon);
  color: var(--ivory);
  transform: rotate(90deg);
}

.contact-modal__om {
  font-family: "Noto Sans Devanagari", Georgia, serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 12px rgba(240, 195, 90, 0.3));
}

.contact-modal__card h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  margin-bottom: 6px;
}
.contact-modal__card > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--maroon);
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(122, 31, 45, 0.18);
  background: var(--ivory);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--t);
  resize: vertical;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(240, 195, 90, 0.2);
}
.contact-form__field textarea { min-height: 80px; }
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) { .contact-form__row { grid-template-columns: 1fr; } }

.contact-form__submit {
  margin-top: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--grad-warm);
  color: var(--ivory);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--t);
  box-shadow: 0 14px 34px rgba(122, 31, 45, 0.3);
}
.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(122, 31, 45, 0.4);
}

.contact-modal__alt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(122, 31, 45, 0.12);
  font-size: 0.88rem;
  color: var(--muted);
}
.contact-modal__alt a {
  color: var(--maroon);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
}

.contact-modal__success {
  text-align: center;
  padding: 20px 0;
}
.contact-modal__success .check-circle {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--plum-deep);
  font-size: 2rem;
  margin: 0 auto 18px;
  box-shadow: 0 14px 30px rgba(217, 139, 28, 0.32);
}
.contact-modal__success h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-modal__success p { color: var(--muted); margin-bottom: 18px; }

body.modal-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .contact-modal, .contact-modal__card { transition: none; }
}

/* ============================================================
   MOBILE RESPONSIVE — END-TO-END
   Overrides come last so they win against earlier rules of
   equal specificity. Breakpoints:
     ≤ 980px — tablet / large phone (hero stacks here)
     ≤ 720px — small tablet / phone landscape
     ≤ 540px — phone portrait
     ≤ 400px — small phone
   Plus: touch-only hover suppression and short-viewport landscape.
   ============================================================ */

/* --- ≤ 980px — narrow tablet & large phone landscape
       (aligns with where the hero grid already stacks above) --- */
@media (max-width: 980px) {
  /* Hero: stack and let content drive height. */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
    padding-top: clamp(40px, 12vw, 80px);
    padding-bottom: clamp(48px, 10vw, 90px);
  }
  .hero-content { margin-inline: auto; max-width: 620px; }
  .hero-content p { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }

  /* Hanuman image hidden on mobile — text-only hero is cleaner on small
     viewports and avoids the image bleeding through stacked content. */
  .hero-motion-bg .motion-image { display: none; }
  /* Wash reverts to a soft top-to-bottom warm tint (no image to fade out from). */
  .hero-motion-bg .motion-wash {
    background:
      radial-gradient(70% 90% at 50% 0%, rgba(240, 195, 90, 0.18), transparent 70%),
      linear-gradient(180deg, rgba(255, 253, 246, 0.6) 0%, rgba(255, 253, 246, 0.95) 60%, var(--ivory) 100%);
  }

  /* Auras hidden — keyframed translateY would fight any mobile repositioning. */
  .aura-one, .aura-two { display: none; }

  /* Lotus: top of the hero (decorative banner), text content sits below. */
  .hero-lotus-bloom {
    top: clamp(30px, 7vw, 70px);
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(200px, 48vw, 300px);
    height: clamp(200px, 48vw, 300px);
    opacity: 0.75;
    z-index: 1;
  }

  /* Push the hero text below the lotus area. */
  .hero-content {
    padding-top: calc(clamp(200px, 48vw, 300px) + clamp(30px, 7vw, 70px) + 20px);
  }

  /* Page hero decorations tightened. */
  .page-hero .hex-star { width: clamp(220px, 50vw, 320px); height: clamp(220px, 50vw, 320px); }
  .page-hero .corner-lotus-1,
  .page-hero .corner-lotus-2 { width: 44px; height: 44px; bottom: 18px; }

  /* Intermediate grid tiers. */
  .values { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .program { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Stacked split/poster/feature/two-column layouts: center the text so
     the eyebrow + heading + paragraph + button column matches the
     centered hero and stats above/below. */
  .split, .poster-layout, .feature-panel, .two-column,
  .contact-panel, .cta-banner > div {
    text-align: center;
  }
  .split p, .poster-layout p, .feature-panel p, .two-column p,
  .contact-panel p { margin-inline: auto; max-width: 56ch; }

  /* But: lists inside those panels stay left-aligned. Their items use an
     absolute-positioned bullet/check at left:0 + padding-left, so
     center-aligning the text detaches it from the bullets visually. */
  .feature-panel .check-list,
  .feature-panel .check-list li,
  .booking-card ul,
  .booking-card li { text-align: left; }

  /* Guard rails: prevent any descendant from forcing horizontal overflow
     (long unbroken strings, wide images, etc.). */
  main, main section, .container { max-width: 100%; overflow-wrap: anywhere; }
  main img, main svg { max-width: 100%; }

  /* Service tile body padding eased. */
  .service-tile .tile-body { padding: 32px 18px 22px; }
}

/* --- ≤ 720px — small tablet / phone landscape --- */
@media (max-width: 720px) {
  /* Header & brand tighter, drawer items bigger to tap. */
  .site-header { padding: 12px 16px; gap: 12px; }
  .brand-mark { width: 42px; height: 42px; font-size: 0.95rem; }
  .brand strong { font-size: 0.98rem; }
  .brand small { font-size: 0.66rem; letter-spacing: 1px; }
  .site-nav a { padding: 14px 18px; font-size: 0.98rem; }
  .nav-toggle { padding: 9px 16px; font-size: 0.84rem; }

  /* Hero decorations pruned. */
  .hero .mandala-bg-1 { width: 320px; height: 320px; top: -120px; right: -90px; }
  .hero .mandala-bg-2 { display: none; }
  .hero .diya-3 { display: none; }

  /* Page hero typography & padding. */
  .page-hero { padding: clamp(56px, 12vw, 90px) clamp(16px, 4vw, 40px) clamp(36px, 6vw, 60px); }
  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }

  /* Sections — pull in side gutters. */
  .container { width: min(1200px, 94%); }

  /* Bands & poster padding. */
  .poster-band { padding: clamp(48px, 8vw, 80px) 0; }
  .poster-band::after { width: 240px; height: 240px; right: -80px; top: -80px; }
  .poster-band .poster-yantra { width: 460px; height: 460px; opacity: 0.07; }

  /* Service card padding tighter. */
  .service-card { padding: 22px 20px; gap: 14px; }
  .service-card .card-om { font-size: 4.5rem; bottom: -10px; right: -4px; }

  /* Service tile watermark scaled. */
  .service-tile .tile-watermark { font-size: 4.5rem; }

  /* Booking card pad. */
  .booking-card { padding: 30px 22px; }

  /* CTA banner & contact hero — when stacked, shrink top image. */
  .cta-banner img { min-height: 220px; aspect-ratio: 16 / 10; }
  .contact-hero img { min-height: 260px; aspect-ratio: 4 / 3; }
  .contact-hero .cta-mandala { width: 220px; height: 220px; bottom: -60px; right: -60px; }

  /* Phone link doesn't need to be huge. */
  .phone-link { font-size: clamp(1.5rem, 6vw, 2.1rem); }

  /* Quote panel huge curly quote tamed. */
  .quote-panel::before { font-size: 8rem; top: -28px; left: 14px; }
  .quote-panel::after { width: 160px; height: 160px; right: -50px; bottom: -50px; }

  /* Image-feature spacing on stacked layout. */
  .image-feature img { aspect-ratio: 5 / 4; }
  .check-list li { font-size: 0.94rem; padding-left: 34px; }
  .check-list li::before { width: 22px; height: 22px; font-size: 0.75rem; }

  /* Mantra marquee items closer together (and fewer feeling). */
  .mantra-marquee { padding: 14px 0; margin: clamp(28px, 6vw, 48px) 0; }
  .mantra-marquee .track { gap: 36px; }
  .mantra-marquee .item { gap: 36px; font-size: clamp(0.92rem, 3.4vw, 1.05rem); }

  /* Cert footer stacks neatly. */
  .cert-footer { flex-direction: column; align-items: flex-start; gap: 14px; padding: 24px 22px; text-align: left; }
  .cert-footer .btn { width: 100%; justify-content: center; }
  .cert-card { padding: 28px 22px; }
  .cert-flag { top: 12px; right: 12px; padding: 4px 10px; font-size: 0.62rem; }

  /* Category nav — keep pills tappable. */
  .category-nav a { padding: 12px 16px; font-size: 0.86rem; }

  /* Footer — denser. */
  .site-footer .footer-om { font-size: 4.5rem; right: 4%; top: 14px; }
  .site-footer .footer-mandala { width: 260px; height: 260px; bottom: -120px; left: -80px; }
}

/* --- ≤ 540px — phone portrait --- */
@media (max-width: 540px) {
  /* Typography: tone down extra-large headings. */
  body { line-height: 1.6; }
  h1 { letter-spacing: -0.005em; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .section-head h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero-content p { font-size: 0.98rem; }
  .hero-meta { font-size: 0.82rem; gap: 10px 18px; }

  /* Single column grids. */
  .values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .program { grid-template-columns: 1fr; }

  /* Hero shrinkage. */
  .hero { padding-left: 16px; padding-right: 16px; }
  .hero-lotus-bloom {
    top: clamp(20px, 4vw, 40px);
    width: clamp(170px, 55vw, 240px);
    height: clamp(170px, 55vw, 240px);
    opacity: 0.7;
  }
  .hero-content {
    padding-top: calc(clamp(170px, 55vw, 240px) + clamp(20px, 4vw, 40px) + 14px);
  }
  .hero .diya-1, .hero .diya-2 { width: 24px; }

  /* Page hero — quieter hex-star. */
  .page-hero .hex-star { width: 200px; height: 200px; opacity: 0.32; }
  .page-hero .corner-lotus-1, .page-hero .corner-lotus-2 { display: none; }
  .page-hero p { font-size: 0.96rem; }

  /* Buttons full width (already partly handled, extended here). */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-actions .btn { width: 100%; justify-content: center; }
  .btn { padding: 13px 22px; font-size: 0.92rem; }
  .inline-cta { width: 100%; margin: 36px auto 0; }

  /* Service tile & card. */
  .service-tile .tile-body { padding: 28px 16px 20px; }
  .service-tile h3 { font-size: 1.08rem; }
  .service-tile .tile-cta { font-size: 0.86rem; }
  .service-tile.cta-tile .cta-inner { padding: 26px 20px; }
  .service-tile.cta-tile .om-mark { font-size: 2.8rem; }
  .service-card { padding: 20px 18px; border-radius: var(--radius-md); }
  .service-card h3 { font-size: 1.06rem; }
  .service-card .desc { font-size: 0.9rem; }
  .pill-list li { font-size: 0.7rem; padding: 4px 10px; }

  /* Category head: number above label, already collapses at 640px. */
  .category-head { gap: 8px; margin-bottom: 28px; }
  .category-head .index { font-size: 2.2rem; }
  .category-head h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }

  /* Cert section. */
  .cert-card { padding: 24px 18px; }
  .cert-card h3 { font-size: 1.08rem; }
  .cert-band .cert-mandala { width: 220px; height: 220px; }

  /* Poster band single column already; tighten the mini-list. */
  .mini-list { grid-template-columns: 1fr; gap: 10px; }
  .mini-list span { padding: 12px 14px; font-size: 0.9rem; }

  /* Stats: keep 3-wide on phone — they're small badges. Override the 1-col rule for portrait phones with enough room. */
  .stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stats article { padding: 18px 8px; }
  .stats strong { font-size: 1.6rem; }
  .stats span { font-size: 0.7rem; }

  /* CTA banner and contact hero: image first, content below — image less tall. */
  .cta-banner img { min-height: 180px; }
  .contact-hero img { min-height: 220px; }
  .cta-banner > div, .contact-panel { padding: 26px 20px; gap: 10px; }
  .cta-banner h2 { font-size: clamp(1.5rem, 6.5vw, 2rem); }

  /* Image-feature gap. */
  .image-feature { gap: 24px; }

  /* Booking card. */
  .booking-card { padding: 28px 20px; border-radius: var(--radius-lg); }
  .booking-card h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }

  /* Footer — center align everything cleanly. */
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { align-items: center; max-width: none; }
  .footer-brand div { justify-content: center; }
  .footer-col h4 { margin-top: 8px; }
  .footer-col ul { align-items: center; }
  .footer-cta { align-items: center; text-align: center; }
  .footer-cta .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
  .site-footer .footer-om { font-size: 3.6rem; opacity: 0.06; }

  /* Floating Om button — already at 720px, but lift higher so it never blocks bottom CTAs. */
  .float-om { bottom: 16px; right: 16px; width: 50px; height: 50px; font-size: 1.3rem; }

  /* Sticky category nav: more breathing room. */
  .category-nav { top: 72px; margin: 18px auto 40px; }

  /* Modal: edge-to-edge padding so card fills phone width. */
  .contact-modal { padding: 12px; align-items: flex-start; padding-top: clamp(16px, 6vh, 60px); }
  .contact-modal__card { padding: 24px 20px; max-height: calc(100vh - 32px); border-radius: var(--radius-lg); }
  .contact-modal__close { top: 10px; right: 10px; width: 34px; height: 34px; }
  .contact-modal__om { font-size: 2rem; }
  .contact-modal__card h2 { font-size: 1.3rem; }
  .contact-form__field input, .contact-form__field select, .contact-form__field textarea { font-size: 16px; /* prevent iOS zoom on focus */ }

  /* Hide the deity meditation huge category number / decorations that aren't pulling weight. */
  .service-category .corner-mandala { width: 140px; height: 140px; opacity: 0.05; }
}

/* --- ≤ 400px — very small phones --- */
@media (max-width: 400px) {
  .site-header { padding: 10px 12px; }
  .brand { gap: 10px; }
  .brand-mark { width: 38px; height: 38px; font-size: 0.88rem; }
  .brand strong { font-size: 0.92rem; }
  .brand small { font-size: 0.6rem; letter-spacing: 0.6px; }
  .nav-toggle { padding: 8px 14px; font-size: 0.8rem; }

  .hero { padding-left: 14px; padding-right: 14px; }
  .hero h1 { font-size: clamp(1.7rem, 9vw, 2.1rem); }
  .hero-content p { font-size: 0.94rem; }
  .hero-content .eyebrow { font-size: 0.66rem; padding: 5px 11px; }

  .container { width: min(1200px, 100% - 24px); }
  .section-head h2 { font-size: clamp(1.4rem, 8vw, 1.8rem); }
  .btn { padding: 12px 18px; font-size: 0.9rem; }

  .stats strong { font-size: 1.4rem; }
  .stats article { padding: 14px 6px; }

  .service-tile.cta-tile .om-mark { font-size: 2.4rem; }
  .float-om { bottom: 14px; right: 14px; width: 46px; height: 46px; font-size: 1.2rem; }

  .phone-link { font-size: clamp(1.3rem, 7vw, 1.8rem); }
}

/* --- Touch-device tweaks: disable hover-only transforms that
       feel laggy on tap. --- */
@media (hover: none) and (pointer: coarse) {
  .service-tile:hover, .service-card:hover, .cert-card:hover,
  .stats article:hover, .values article:hover, .program article:hover,
  .event-list article:hover, .contact-grid article:hover {
    transform: none;
  }
}

/* --- Landscape-orientation phones (short viewport): trim hero. --- */
@media (max-width: 980px) and (max-height: 520px) and (orientation: landscape) {
  .hero { padding-top: clamp(20px, 4vh, 40px); padding-bottom: clamp(28px, 5vh, 50px); }
  .hero-motion-bg .motion-image { height: 55vh; }
  .hero-content { padding-top: 55vh; }
  .hero-lotus-bloom { display: none; }
}
