:root {
  --bg: #f7f1ea;
  --bg-soft: #fbf6f1;
  --maroon: #4b1025;
  --maroon-soft: #6a1634;
  --gold: #d9b46a;
  --text: #2b1b19;
  --muted: #7b6460;
  --card-bg: #ffffff;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.09);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, #fbe9dd 0, #f7f1ea 40%, #f3ece5 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 20px 40px;
}

/* Top Nav */
.nav {
  border-radius: 10px;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(247, 241, 234, 0.98),
    rgba(247, 241, 234, 0.9)
  );
  border-bottom: 1px solid rgba(107, 33, 59, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 6px 10px 14px;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 1;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(217, 180, 106, 0.7);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.nav-title-main {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.nav-title-sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

@media (min-width: 1100px) {
  .nav-title-main,
  .nav-title-sub {
    max-width: none;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  flex-shrink: 0;
}

.nav-links a:not(.nav-cta)   {
  position: relative;
  padding-bottom: 3px;
  cursor: pointer;
}

.nav-cta:hover {
  cursor: pointer;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--maroon-soft));
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.nav-cta::after,
.nav-links a.nav-cta:hover::after {
  display: none;
}

.nav-cta {
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(217, 180, 106, 0.9);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #4b1025, #6a1634);
  color: #fdf6ec;
  box-shadow: 0 10px 25px rgba(75, 16, 37, 0.35);
  cursor: default;
  white-space: nowrap;
}

/* Hero – full-width hero image with animations */
.hero-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--maroon) center / cover no-repeat;
  background-color: #2d0f1a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: heroImageReveal 1.4s ease-out forwards;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-dancer img {
  position: relative;
  z-index: -1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(75, 16, 37, 0.92) 0%,
    rgba(75, 16, 37, 0.75) 35%,
    rgba(75, 16, 37, 0.4) 65%,
    transparent 100%
  );
  pointer-events: none;
}

/* Hero with dancer image: theme maroon left for text, reveal right */
.hero-bg-dancer::after {
  background: linear-gradient(
    95deg,
    rgba(75, 16, 37, 0.92) 0%,
    rgba(75, 16, 37, 0.72) 40%,
    rgba(75, 16, 37, 0.35) 70%,
    transparent 100%
  );
}

.hero-bg-dancer img,
.hero-bg-dancer video {
  /* Keep dancer's upper body in frame on large screens */
  object-position: 60% 20%;
}

.hero-tagline-poem {
  font-family: "Playfair Display", serif;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.hero-tagline-sub {
  font-size: 14px;
  opacity: 0.9;
  margin-top: -8px;
}

.hero-author {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(217, 180, 106, 0.9);
  margin-top: 6px;
  margin-bottom: 0;
  max-width: 520px;
  text-align: right;
  animation: heroFadeUp 0.8s ease-out 0.6s backwards;
}

@keyframes heroImageReveal {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-bg-dancer img {
  animation: heroImageReveal 1.4s ease-out forwards, heroDancerFloat 18s ease-in-out 2s infinite;
}
@keyframes heroDancerFloat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px 56px;
  width: 100%;
}

.hero-inner {
  max-width: 580px;
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(217, 180, 106, 0.95);
  margin-bottom: 12px;
  animation: heroFadeUp 0.8s ease-out 0.25s backwards;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.08;
  color: #fdf6ec;
  margin-bottom: 14px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
  animation: heroFadeUp 0.8s ease-out 0.4s backwards;
}

.hero-tagline {
  font-size: 16px;
  color: rgba(253, 246, 236, 0.9);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 22px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.15);
  animation: heroFadeUp 0.8s ease-out 0.55s backwards;
}

.highlight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chip {
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(217, 180, 106, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #fdf6ec;
  backdrop-filter: blur(8px);
  animation: chipFadeIn 0.6s ease-out backwards, chipBreath 4s ease-in-out 1.2s infinite;
}

.chip:nth-child(1) { animation-delay: 0.7s, 1.2s; }
.chip:nth-child(2) { animation-delay: 0.85s, 1.35s; }
.chip:nth-child(3) { animation-delay: 1s, 1.5s; }

@keyframes chipFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes chipBreath {
  0%, 100% {
    opacity: 1;
    border-color: rgba(217, 180, 106, 0.4);
    box-shadow: 0 0 0 transparent;
  }
  50% {
    opacity: 0.92;
    border-color: rgba(217, 180, 106, 0.55);
    box-shadow: 0 0 12px rgba(217, 180, 106, 0.08);
  }
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  animation: heroFadeUp 0.8s ease-out 0.85s backwards;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, #d9b46a, #e8c97d);
  border-color: rgba(255, 255, 255, 0.3);
  color: #2b1b19;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.btn-primary span.icon {
  font-size: 14px;
  line-height: 1;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(217, 180, 106, 0.5);
  color: #fdf6ec;
}

.hero-subnote {
  font-size: 12px;
  color: rgba(253, 246, 236, 0.85);
  animation: heroFadeUp 0.8s ease-out 1s backwards;
}

.hero-subnote strong {
  font-weight: 600;
  color: #fdf6ec;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(253, 246, 236, 0.8);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroFadeUp 0.8s ease-out 1.2s backwards;
}

.hero-scroll-hint a {
  color: inherit;
}

.hero-scroll-icon {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(217, 180, 106, 0.6);
  border-radius: 999px;
  position: relative;
  animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero-scroll-icon::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
}

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

/* Sections */
section {
  margin-top: 42px;
}

/* Scroll-triggered reveal: fade + slide up */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #method.scroll-reveal .method-banner__visual img,
  #method.scroll-reveal.method-banner-visual-in .method-banner__visual img {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #about.scroll-reveal .founder-card-visual img,
  #about.scroll-reveal.is-visible .founder-card-visual img {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* Extra breathing room above testimonial avatars so they don't appear cropped */
#testimonials {
  padding-top: 24px;
}

/* Keep anchor targets visible below the sticky header */
#about {
  scroll-margin-top: 92px;
}

#gallery,
#videos {
  scroll-margin-top: 92px;
}

#offerings {
  scroll-margin-top: 92px;
}

#contact {
  scroll-margin-top: 92px;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-bottom: 6px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--maroon);
  margin-bottom: 14px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
}

.about-intro { margin-bottom: 24px; }

/* Patanjali 1.3 — gold accent + soft scroll-in (with #about.scroll-reveal) */
.about-intro-sutra {
  margin-top: 22px;
  padding: 20px 20px 20px 22px;
  border-left: 2px solid rgba(217, 180, 106, 0.7);
  background: linear-gradient(
    90deg,
    rgba(217, 180, 106, 0.14) 0%,
    rgba(217, 180, 106, 0.05) 42%,
    rgba(247, 241, 234, 0.35) 100%
  );
  border-radius: 0 16px 16px 0;
  box-shadow: 0 12px 36px rgba(75, 16, 37, 0.06);
}

.about-intro-sutra__ref {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-intro-sutra__sanskrit {
  margin: 0 0 8px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(17px, 2.5vw, 22px);
  line-height: 1.45;
  font-weight: 600;
  color: #4b1025;
  text-shadow: 0 0 40px rgba(217, 180, 106, 0.25);
}

.about-intro-sutra__iast {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(139, 90, 48, 0.95);
}

.about-intro-sutra__meaning-label {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8c6c5b;
}

.about-intro-sutra__meaning {
  margin: 0 0 14px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  color: #5d2430;
}

.about-intro-sutra__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}

#about.scroll-reveal .about-intro-sutra,
#about.scroll-reveal .about-intro-sutra__ref,
#about.scroll-reveal .about-intro-sutra__sanskrit,
#about.scroll-reveal .about-intro-sutra__iast,
#about.scroll-reveal .about-intro-sutra__meaning-label,
#about.scroll-reveal .about-intro-sutra__meaning,
#about.scroll-reveal .about-intro-sutra__body {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

#about.scroll-reveal.is-visible .about-intro-sutra {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

#about.scroll-reveal.is-visible .about-intro-sutra__ref {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}

#about.scroll-reveal.is-visible .about-intro-sutra__sanskrit {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

#about.scroll-reveal.is-visible .about-intro-sutra__iast {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.36s;
}

#about.scroll-reveal.is-visible .about-intro-sutra__meaning-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.44s;
}

#about.scroll-reveal.is-visible .about-intro-sutra__meaning {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

#about.scroll-reveal.is-visible .about-intro-sutra__body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.58s;
}

@media (prefers-reduced-motion: reduce) {
  #about.scroll-reveal .about-intro-sutra,
  #about.scroll-reveal .about-intro-sutra__ref,
  #about.scroll-reveal .about-intro-sutra__sanskrit,
  #about.scroll-reveal .about-intro-sutra__iast,
  #about.scroll-reveal .about-intro-sutra__meaning-label,
  #about.scroll-reveal .about-intro-sutra__meaning,
  #about.scroll-reveal .about-intro-sutra__body,
  #about.scroll-reveal.is-visible .about-intro-sutra,
  #about.scroll-reveal.is-visible .about-intro-sutra__ref,
  #about.scroll-reveal.is-visible .about-intro-sutra__sanskrit,
  #about.scroll-reveal.is-visible .about-intro-sutra__iast,
  #about.scroll-reveal.is-visible .about-intro-sutra__meaning-label,
  #about.scroll-reveal.is-visible .about-intro-sutra__meaning,
  #about.scroll-reveal.is-visible .about-intro-sutra__body {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Founder – Rajadarshini Saravanan (card style to match About Us) */
.founder-card {
  margin-top: 20px;
}
.founder-card-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 28px;
  align-items: stretch;
}

/* Left stack: bio + credentials; portrait sits alone in the right column */
.founder-card-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.founder-card-text p {
  margin-bottom: 10px;
}
.founder-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 8px;
}
.founder-card-tags span {
  padding: 4px 9px;
  border-radius: 999px;
  background: #f5ebe0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5d2a32;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.founder-card-tags span:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  background: #f2e0cf;
}
.founder-card-meta {
  font-size: 12px;
  color: #6a4a3f;
}

.founder-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon-soft, #6b2d3d);
  text-decoration: none;
  border-bottom: 1px solid rgba(75, 16, 37, 0.35);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.founder-read-more::after {
  content: "→";
  font-size: 12px;
  transition: transform 0.25s ease;
}

.founder-read-more:hover {
  color: var(--maroon, #4b1025);
  border-bottom-color: rgba(217, 180, 106, 0.75);
}

.founder-read-more:hover::after {
  transform: translateX(4px);
}

.founder-card-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.founder-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.founder-pill {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(217, 180, 106, 0.5);
  background: #fdf7ea;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #704030;
}
.founder-pill .founder-counter {
  font-weight: 700;
  font-size: 14px;
  color: #b56730;
}
.founder-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(217, 180, 106, 0.28);
}
.founder-mini {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(250, 242, 232, 0.95);
  border: 1px solid rgba(217, 180, 106, 0.4);
}
.founder-mini-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8c6c5b;
  margin-bottom: 2px;
}
.founder-mini-value {
  font-size: 12px;
  color: #3c2020;
}

.founder-mini-value .founder-counter {
  font-weight: 700;
  font-size: 16px;
  color: #b56730;
  margin-right: 2px;
}

/* Founder portrait — right column; stretches with long bio so it aligns with full left column */
.founder-card-visual {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  align-self: stretch;
  width: 100%;
  max-width: 380px;
  justify-self: end;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 22px 50px rgba(45, 18, 28, 0.16),
    0 0 0 1px rgba(217, 180, 106, 0.4);
  background: linear-gradient(165deg, #2a1418 0%, #0f0608 100%);
}

.founder-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 248, 240, 0.07);
}

.founder-card-visual img {
  flex: 1;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #120812;
}

#about.scroll-reveal .founder-card-visual img {
  opacity: 0;
  transform: translateX(20px) scale(1.04);
  filter: blur(12px) brightness(0.88);
  transition:
    opacity 0.95s ease-out,
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease-out;
}

#about.scroll-reveal.is-visible .founder-card-visual img {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0) brightness(1);
  transition-delay: 0.22s, 0.18s, 0.16s;
}

@media (max-width: 880px) {
  .founder-card-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    align-items: start;
  }

  .founder-card-body {
    order: 1;
  }

  .founder-card-visual {
    order: 2;
    justify-self: center;
    align-self: center;
    max-width: min(320px, 88vw);
    aspect-ratio: 3 / 4;
    max-height: 520px;
    min-height: 0;
    flex: none;
    height: auto;
  }

  .founder-card-visual img {
    flex: none;
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: contain;
    object-position: center center;
  }

  #about.scroll-reveal.is-visible .founder-card-visual img {
    transition-delay: 0.14s, 0.12s, 0.1s;
  }
}

/* Mission & Vision banner – inspired by reference slide */
.mv-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: 26px;
}
.mv-banner {
  width: 100%;  
  overflow: hidden;
  background: #120812;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  min-height: 520px;
}
.mv-banner-image {
  background: url("assets/mission-vision-banner.jpg") left center / cover no-repeat;
}
.mv-banner-content {
  background: linear-gradient(135deg, rgba(247, 241, 234, 0.96) 0%, rgba(247, 241, 234, 0.96) 52%, #4b1025 52%, #2b0714 100%);
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(40px);
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
#about.scroll-reveal.is-visible .mv-banner-content {
  transform: translateX(0);
  opacity: 1;
}
.mv-eyebrow {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.mv-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #2b1b19;
  max-width: 420px;
  margin: 0 0 18px;
}
.mv-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.mv-panel {
  background: rgba(17, 6, 13, 0.96);
  border-radius: 18px;
  padding: 16px 16px 14px;
  color: #f9f4e8;
  border: 1px solid rgba(217, 180, 106, 0.35);
}
.mv-panel-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 8px;
}
.mv-panel p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.mv-list {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}
.mv-list li + li {
  margin-top: 4px;
}

@media (max-width: 900px) {
  .mv-banner {
    grid-template-columns: minmax(0, 1fr);
  }
  .mv-banner-image {
    min-height: 260px;
  }
  .mv-banner-content {
    background: linear-gradient(160deg, rgba(247, 241, 234, 0.98) 0%, rgba(247, 241, 234, 0.98) 48%, #4b1025 48%, #2b0714 100%);
  }
}

@media (max-width: 640px) {
  .mv-banner {
    border-radius: 0;
  }
  .mv-panels {
    grid-template-columns: minmax(0, 1fr);
  }
  .mv-banner-content {
    padding: 20px 16px 18px;
  }
}

/* Vision / Mission / Objectives – side menu + content */
.vm-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
}
.vm-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vm-sidebar-btn {
  display: block;
  width: 100%;
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
}
.vm-sidebar-btn:hover {
  color: var(--maroon-soft);
  background: rgba(75, 16, 37, 0.04);
}
.vm-sidebar-btn.active {
  color: var(--maroon);
  background: rgba(217, 180, 106, 0.12);
  border-color: rgba(217, 180, 106, 0.4);
  font-weight: 600;
}
.vm-content {
  min-height: 0;
}
.vm-panel {
  display: none;
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid rgba(75, 16, 37, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.03);
  animation: vmPanelIn 0.3s ease;
}
.vm-panel.active {
  display: block;
}
@keyframes vmPanelIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.vm-panel .card-title {
  margin-bottom: 12px;
}
.vm-note { font-size: 13px; color: var(--muted); margin-top: 12px; }
.two-col-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px 24px;
}
@media (max-width: 768px) {
  .vm-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .vm-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .vm-sidebar-btn {
    flex: 1 1 auto;
    min-width: 120px;
    text-align: center;
  }
}

.card {
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid rgba(75, 16, 37, 0.06);
  padding: 18px 18px 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.03);
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 8px;
}

.card-heading {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--maroon);
}

.card p {
  font-size: 14px;
  color: var(--text);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.pill {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f6eee6;
  color: #6b3c35;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  background: #f1e0d1;
}

/* Method section – full-bleed black band (like Vision · Objectives), page-beige type only */
.method-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: 8px;
}

.method-banner {
  width: 100%;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  min-height: min(520px, 70vh);
}

.method-banner__text {
  padding: clamp(24px, 4vw, 44px) clamp(20px, 4vw, 48px) clamp(28px, 4vw, 48px);
  color: var(--bg);
}

.method-banner__heading {
  margin-bottom: 18px;
}

.method-banner__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bg);
  font-family: inherit;
  font-weight: 400;
}

.method-banner__headline {
  margin: 0 0 4px;
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 4.2vw, 28px);
  line-height: 1.12;
  font-weight: 600;
  color: var(--bg);
}

.method-banner__text > p,
.method-banner__text .min-padding:not(.method-banner__quote) p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--bg);
}

/* Sanskrit, transliteration & English verse — gold tone + light highlight */
.method-banner__quote {
  padding: 14px 14px 14px 16px;
  margin-top: 12px;
  border-left: 2px solid rgba(217, 180, 106, 0.65);
  background: linear-gradient(90deg, rgba(217, 180, 106, 0.1) 0%, rgba(217, 180, 106, 0.02) 45%, transparent 72%);
  border-radius: 0 10px 10px 0;
}

.method-banner__quote p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(217, 180, 106, 0.95);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-shadow: 0 0 24px rgba(217, 180, 106, 0.2);
}

.method-banner__quote.method-banner__verse p {
  font-style: italic;
}

.method-banner__pills {
  margin-top: 18px;
}

.method-banner__pills .pill {
  background: rgba(247, 241, 234, 0.08);
  color: var(--bg);
  border: 1px solid rgba(247, 241, 234, 0.35);
}

.method-banner__pills .pill:hover {
  background: rgba(247, 241, 234, 0.16);
  color: var(--bg);
  border-color: rgba(247, 241, 234, 0.55);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.method-banner__visual {
  position: relative;
  background: #000;
  min-height: 280px;
  overflow: hidden;
}

.method-banner__visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: 56% 22%;
  display: block;
}

/*
 * Method hero image: slow slide-in from the right.
 * `method-banner-visual-in` is toggled by JS each time #method intersects the viewport
 * so the animation replays whenever you scroll back to this section.
 */
#method.scroll-reveal .method-banner__visual img {
  filter: none;
  transition:
    opacity 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.85s cubic-bezier(0.19, 1, 0.22, 1);
}

#method.scroll-reveal:not(.method-banner-visual-in) .method-banner__visual img {
  opacity: 0;
  transform: translate3d(14%, 0, 0);
}

#method.scroll-reveal.method-banner-visual-in .method-banner__visual img {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.4s, 0.32s;
}

@media (max-width: 900px) {
  .method-banner {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .method-banner__visual {
    min-height: 240px;
    order: -1;
  }

  .method-banner__visual img {
    min-height: 240px;
    object-position: 52% 20%;
  }

  #method.scroll-reveal.method-banner-visual-in .method-banner__visual img {
    transition-delay: 0.22s, 0.18s;
  }

  .method-banner__text {
    padding-top: 20px;
  }
}

@media (max-width: 640px) {
  .method-banner {
    border-radius: 0;
  }
}

.list {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  list-style: none;
  padding-left: 0;
}

.list li {
  margin-bottom: 10px;
  padding-left: 1.5em;
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.9;
}

.list li span {
  color: var(--text);
}

/* Offerings – horizontal scroll cards (pricing-style) */
.offerings-scroll {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 24px;
  margin: 0 -4px;
}
.offerings-scroll::-webkit-scrollbar { height: 8px; }
.offerings-scroll::-webkit-scrollbar-track { background: rgba(75, 16, 37, 0.06); border-radius: 999px; }
.offerings-scroll::-webkit-scrollbar-thumb { background: rgba(217, 180, 106, 0.5); border-radius: 999px; }
.offerings-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  padding: 4px 4px 4px 0;
}
.offering-card {
  flex: 0 0 300px;
  min-width: 280px;
  max-width: 90vw;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  background: #fffdf9;
  border: 1px solid rgba(75, 16, 37, 0.08);
  padding: 20px 18px 20px;
  font-size: 13px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.offering-card:hover {
  box-shadow: 0 16px 36px rgba(75, 16, 37, 0.08);
  transform: translateY(-4px);
}
.offering-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.offering-title {
  font-weight: 600;
  color: var(--maroon);
  font-size: 15px;
}
.offering-body {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.offering-cta {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.offering-cta a,
.offering-cta .offering-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(120deg, #4b1025, #6a1634);
  color: #fdf6ec;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.offering-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(75, 16, 37, 0.3);
}
.offering-cta .offering-cta-btn {
  cursor: pointer;
  opacity: 0.9;
}
.offering-cta a.offering-cta-btn::after {
  content: "↗";
  font-size: 1em;
  line-height: 1;
  opacity: 0.95;
}
.offering-cta-soon {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.95;
}

/* Gallery – tabbed collections + responsive grid */
.gallery-wrapper {
  margin-top: 18px;
}

.gallery-lead {
  max-width: 640px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 6px;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 22px 0 26px;
}

.gallery-tab {
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(107, 33, 59, 0.22);
  background: #fff;
  color: var(--maroon);
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

.gallery-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(75, 16, 37, 0.12);
  border-color: rgba(217, 180, 106, 0.55);
}

.gallery-tab.is-active {
  background: linear-gradient(120deg, #4b1025, #6a1634);
  color: #fdf6ec;
  border-color: rgba(217, 180, 106, 0.85);
  box-shadow: 0 12px 32px rgba(75, 16, 37, 0.32);
}

.gallery-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Only the active panel is in normal flow so height matches that tab (no extra gap from taller tabs). */
.gallery-panels {
  position: relative;
  width: 100%;
}

.gallery-panel {
  min-width: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.992);
  transition: opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.52s;
  pointer-events: none;
  z-index: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.gallery-panel.is-active {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

@keyframes galleryCardEnter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes galleryShimmer {
  0% {
    background-position: 130% 50%;
  }
  100% {
    background-position: -30% 50%;
  }
}

.gallery-panel.is-active .gallery-item {
  animation: galleryCardEnter 0.58s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.gallery-panel.is-active .gallery-item:nth-child(1) {
  animation-delay: 0.04s;
}
.gallery-panel.is-active .gallery-item:nth-child(2) {
  animation-delay: 0.09s;
}
.gallery-panel.is-active .gallery-item:nth-child(3) {
  animation-delay: 0.14s;
}
.gallery-panel.is-active .gallery-item:nth-child(4) {
  animation-delay: 0.19s;
}
.gallery-panel.is-active .gallery-item:nth-child(5) {
  animation-delay: 0.24s;
}
.gallery-panel.is-active .gallery-item:nth-child(6) {
  animation-delay: 0.29s;
}
.gallery-panel.is-active .gallery-item:nth-child(7) {
  animation-delay: 0.34s;
}
.gallery-panel.is-active .gallery-item:nth-child(8) {
  animation-delay: 0.39s;
}

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

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #1a0c10 0%, #2d1218 50%, #1a0c10 100%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  position: relative;
  cursor: pointer;
}

/* Shimmer placeholder until image has loaded */
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(45, 18, 28, 0.95) 0%,
    rgba(90, 40, 55, 0.55) 35%,
    rgba(217, 180, 106, 0.12) 50%,
    rgba(90, 40, 55, 0.55) 65%,
    rgba(45, 18, 28, 0.95) 100%
  );
  background-size: 220% 100%;
  animation: galleryShimmer 2.2s ease-in-out infinite;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.gallery-item.is-img-loaded::before {
  opacity: 0;
  visibility: hidden;
  animation: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 4 / 3;
  position: relative;
  z-index: 0;
  opacity: 0;
  transform: none;
  filter: none;
  transition: opacity 0.45s ease-out;
}

/*
 * Per-photo crop tuning (Performances gallery uses object-fit: cover).
 * Adjust percentages until the subject sits where you want in the frame.
 *   horizontal: lower % = show more left, higher % = more right
 *   vertical: lower % = more top, higher % = more bottom
 */
.gallery-item img.gallery-img--focus-down {
  object-position: center 30%;
}

.gallery-item img.gallery-img--focus-right {
  object-position: 72% center;
}

.gallery-item.is-img-loaded img {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (min-width: 901px) {
  .gallery-item--wide {
    grid-column: span 2;
  }
}

.gallery-item--mosaic {
  padding: 0;
  background: transparent;
  box-shadow: none;
  cursor: default;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.gallery-item--mosaic::before {
  display: none;
}

.gallery-item--mosaic > .gallery-mosaic {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  width: 100%;
  min-height: clamp(200px, 28vw, 360px);
}

.gallery-item--mosaic .gallery-mosaic__tile {
  margin: 0;
  min-height: 0;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.gallery-item--mosaic .gallery-mosaic__tile img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  /* aspect-ratio: 1; */
  object-fit: cover;
  object-position: center center;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-panel,
  .gallery-tab {
    transition: none !important;
  }
  .gallery-panel.is-active .gallery-item {
    animation: none !important;
  }
  .gallery-item::before {
    display: none !important;
  }
  .gallery-item img {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-tab {
    text-align: center;
  }
}

/* Gallery lightbox – full-size preview */
body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 20px 28px;
  box-sizing: border-box;
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 5, 8, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.gallery-lightbox__close {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 245, 230, 0.45);
  background: rgba(45, 15, 26, 0.75);
  color: #fdf6ec;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gallery-lightbox__close:hover {
  background: rgba(75, 16, 37, 0.92);
  border-color: rgba(217, 180, 106, 0.65);
  transform: scale(1.05);
}

.gallery-lightbox__close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-lightbox__frame {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: min(96vw, 1320px);
  max-height: min(88vh, 1200px);
  animation: galleryLightboxIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.gallery-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: min(88vh, 1200px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

@keyframes galleryLightboxIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-lightbox__frame {
    animation: none !important;
  }
}

/* Scrolling background strip – stage imagery */
.scroll-strip-wrap {
  margin: 48px -999px 0;
  padding: 0 999px;
  overflow: hidden;
  position: relative;
}
.scroll-strip-inner {
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}
.scroll-strip-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 241, 234, 0.92) 0%, transparent 18%, transparent 82%, rgba(247, 241, 234, 0.92) 100%);
  pointer-events: none;
}
.scroll-strip-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: scrollStrip 45s linear infinite;
}
.scroll-strip-track img {
  height: 100%;
  width: auto;
  min-width: 400px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
@keyframes scrollStrip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* Playlist – embed with autoplay (muted) + fallback CTA */
.playlist-intro {
  margin-bottom: 12px;
  max-width: 560px;
}
.playlist-why-note {
  font-size: 13px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 20px;
  line-height: 1.55;
}

.playlist-cta .playlist-cta-icon,
.playlist-cta .playlist-cta-text,
.playlist-cta .playlist-cta-hint {
  position: relative;
  z-index: 1;
}
.playlist-cta:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
  color: #fdf5ea;
  background-size: 106%;
}
.playlist-cta:hover .playlist-cta-icon {
  transform: scale(1.12);
  animation: playlistPulse 1.4s ease-out infinite;
}
.playlist-cta-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(217, 180, 106, 0.2);
  border: 2px solid rgba(217, 180, 106, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  padding-left: 6px;
}
@keyframes playlistPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 180, 106, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(217, 180, 106, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 180, 106, 0);
  }
}
.playlist-cta-text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.playlist-cta-hint {
  font-size: 11px;
  opacity: 0.85;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.playlist-fallback-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.playlist-fallback-note a {
  color: var(--maroon-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Testimonials – horizontal scroll with animations */
.testimonials-scroll {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 65px 0 24px;
  margin: 0 -4px;
}

.testimonials-scroll::-webkit-scrollbar {
  height: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
  background: rgba(75, 16, 37, 0.06);
  border-radius: 999px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
  background: rgba(217, 180, 106, 0.5);
  border-radius: 999px;
}

.testimonials-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

.testimonials-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  width: max-content;
  padding: 4px 4px 4px 0;
  margin-top: 0;
}

.testimonial-card {
  flex: 0 0 320px;
  min-width: 280px;
  max-width: 90vw;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid rgba(75, 16, 37, 0.06);
  padding: 64px 20px 24px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: testimonial-enter 0.6s ease backwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.05s; }
.testimonial-card:nth-child(2) { animation-delay: 0.12s; }
.testimonial-card:nth-child(3) { animation-delay: 0.19s; }
.testimonial-card:nth-child(4) { animation-delay: 0.26s; }
.testimonial-card:nth-child(5) { animation-delay: 0.33s; }

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(75, 16, 37, 0.1);
}

@keyframes testimonial-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Opening quote – top left */
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
}

/* Closing quote – bottom right */
.testimonial-card::after {
  content: "\201D";
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
}

/* Avatar – larger circle so photos are clearly visible */
.testimonial-avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  padding: 4px;
  overflow: hidden;
  flex-shrink: 0;
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
  animation: avatarFloat 4s ease-in-out infinite;
}

.testimonial-card:nth-child(1) .testimonial-avatar {
  background: linear-gradient(135deg, #d9b46a 0%, #6a1634 100%);
  animation: avatarFloat 4s ease-in-out infinite, avatarRingPulse 3s ease-in-out infinite;
}

.testimonial-card:nth-child(2) .testimonial-avatar {
  background: linear-gradient(135deg, #2d7a6e 0%, #1a4d45 100%);
  animation: avatarFloat 4s ease-in-out 0.5s infinite, avatarRingPulse 3s ease-in-out 0.3s infinite;
}

.testimonial-card:nth-child(3) .testimonial-avatar {
  background: linear-gradient(135deg, #c45c4a 0%, #8b3a2e 100%);
  animation: avatarFloat 4s ease-in-out 1s infinite, avatarRingPulse 3s ease-in-out 0.6s infinite;
}

.testimonial-card:nth-child(4) .testimonial-avatar {
  background: linear-gradient(135deg, #6b4d8a 0%, #4a3570 100%);
  animation: avatarFloat 4s ease-in-out 1.5s infinite, avatarRingPulse 3s ease-in-out 0.9s infinite;
}

.testimonial-card:nth-child(5) .testimonial-avatar {
  background: linear-gradient(135deg, #e8a84b 0%, #c47d2e 100%);
  animation: avatarFloat 4s ease-in-out 2s infinite, avatarRingPulse 3s ease-in-out 1.2s infinite;
}

.testimonial-card:hover .testimonial-avatar {
  animation: avatarFloat 4s ease-in-out infinite, avatarPop 0.35s ease forwards;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

@keyframes avatarFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

@keyframes avatarRingPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15); }
  50% { box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2); }
}

@keyframes avatarPop {
  to { transform: translateX(-50%) scale(1.08); }
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 50%;
  background: #f5f0ea;
}

.testimonial-avatar-initial {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar-icon {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.testimonial-quote-wrap {
  flex-grow: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-quote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  margin-top: 0;
  padding: 0 4px;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  transition: -webkit-line-clamp 0.25s ease, opacity 0.2s ease;
}

.testimonial-card.is-expanded .testimonial-quote {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.testimonial-read-more {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--maroon-soft);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.testimonial-read-more:hover {
  color: var(--maroon);
}

.testimonial-attribution {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(75, 16, 37, 0.08);
  text-align: center;
  width: 100%;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--maroon);
  letter-spacing: 0.02em;
}

.testimonial-role {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.testimonials-hint {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.playlist-link {
  margin-top: 8px;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #fdf6ec;
  display: inline-block;
}

/* Contact / footer */
.contact {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #4b1025, #6a1634);
  color: #fdf5ea;
  padding: 22px 20px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 24px;
  /* align-items: center; */
  box-shadow: 0 18px 50px rgba(75, 16, 37, 0.6);
}

.contact h2 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 6px;
}

.contact p {
  font-size: 14px;
  opacity: 0.9;
  max-width: 480px;
}

.contact-info {
  font-size: 13px;
}

.contact-info div {
  margin-bottom: 4px;
}

.contact-label {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.8;
}

.contact-value {
  font-weight: 500;
}

.contact-value a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  font-size: 12px;
  flex-wrap: wrap;
}

.social-pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(249, 238, 216, 0.4);
  font-size: 11px;
  display: inline-block;
}

footer {
  margin-top: 20px;
  padding-top: 12px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .two-col,
  .contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: 82vh;
  }

  /* Keep dancer (right side of image) in frame when cropped */
  .hero-bg-dancer img,
  .hero-bg-dancer video {
    object-position: 65% center;
  }

  .hero-content {
    padding: 40px 20px 48px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 16px 14px 28px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-bg-dancer img,
  .hero-bg-dancer video {
    /* Shift focus slightly down so more of the torso + face appear */
    object-position: 62% 40%;
  }

  /* Video source has centered subject: keep focal area centered on phones */
  .hero-bg-dancer video {
    object-position: center center;
  }

  .hero-content {
    padding: 32px 16px 40px;
  }

  /* Mobile: eyebrow + title as clear top block; quote smaller and aligned beside image */
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: none;
  }

  .eyebrow,
  .hero-title {
    text-align: center;
  }

  .hero-title {
    margin-bottom: 125px;
  }

  .hero-tagline {
    font-size: 13px;
    line-height: 1.45;
    /* max-width: 50%; */
    margin-bottom: 12px;
    /* margin-left: auto; */
  }

  .hero-tagline-poem {
    font-size: 12px;
    line-height: 1.5;
  }

  .hero-quote-meta {
    max-width: 50%;
    margin-bottom: 14px;
    /* margin-left: auto; */
  }
}

/* Very small screens: show full image, no crop (contain + dark fill) */
@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
  }

  .hero-bg-dancer img,
  .hero-bg-dancer video {
    /* object-fit: contain; */
    object-position: 85% center;
  }

  /* Keep hero video centered on very small screens */
  .hero-bg-dancer video {
    object-position: center center;
  }

  .hero-tagline {
    font-size: 12px;
    line-height: 1.45;
    /* max-width: 48%; */
    /* margin-left: auto; */
  }

  .hero-tagline-poem {
    font-size: 11px;
    line-height: 1.5;
  }

  /* .hero-quote-meta {
    max-width: 48%;
    margin-left: auto;
  } */
}

  .contact {
    padding: 18px 16px 16px;
  }



/* Parallax – W3Schools-style: background fixed, moves at different speed while scrolling */
.playlist-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 420px;
  border-radius: 20px;
  background-color: #1a0a0a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(217, 180, 106, 0.25);
  color: #fdf5ea;
  text-decoration: none;
  padding: 32px 32px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.playlist-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 10, 10, 0.08) 0%, rgba(26, 10, 10, 0.04) 50%, rgba(26, 10, 10, 0.1) 100%);
  border-radius: 20px;
  pointer-events: none;
}

/* Videos section – backdrop image + play button (below Testimonials) */
.videos-backdrop {
  display: block;
  min-height: 520px;
  border-radius: 20px;
  background-color: #1a0a0a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.videos-backdrop:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}
.videos-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 10, 10, 0.2) 0%, rgba(26, 10, 10, 0.08) 50%, rgba(26, 10, 10, 0.25) 100%);
  border-radius: 20px;
  pointer-events: none;
}
.videos-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(217, 180, 106, 0.9);
  color: #1a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  padding-left: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.25s ease;
  z-index: 1;
}
.videos-backdrop:hover .videos-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: rgba(237, 210, 140, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
  animation: videoPlayPulse 1.4s ease-out infinite;
}

@keyframes videoPlayPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.16);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.12);
  }
}

.hero-tagline-poem {
  font-style: italic;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.hero-quote-meta {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: rgba(249, 231, 204, 0.9);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  line-height: 1;
  transform: translateY(2px);
  opacity: 0.7;
}

.hero-quote-author {
  border-top: 1px solid rgba(217, 180, 106, 0.55);
  padding-top: 4px;
}

section.min-padding {
  margin-top: 10px;
}
.founder-card-text p {
  text-align: justify;
}