:root {
  --black: #050403;
  --charcoal: #0b0907;
  --shadow: #120d08;
  --bronze: #9d6923;
  --gold: #d8a947;
  --gold-soft: #f0cf7b;
  --ember: #c75c1b;
  --ivory: #eee1c4;
  --muted: rgba(238, 225, 196, 0.68);
  --line: rgba(216, 169, 71, 0.22);
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 72% 5%, rgba(137, 87, 26, 0.2), transparent 28rem),
    radial-gradient(circle at 12% 28%, rgba(194, 92, 27, 0.1), transparent 24rem),
    linear-gradient(180deg, #030302, #090705 55%, #050403);
  font-family: var(--font-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(115deg, rgba(255, 235, 173, 0.035) 0 1px, transparent 1px 23px),
    radial-gradient(circle at 50% 100%, rgba(79, 47, 17, 0.36), transparent 34rem);
  opacity: 0.7;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(216, 169, 71, 0.1), transparent 18rem),
    #050403;
  opacity: 0;
  transition: opacity 420ms ease;
}

body.is-transitioning::after {
  opacity: 1;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

.ember-canvas,
.page-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ember-canvas {
  z-index: 6;
  opacity: 0.46;
  mix-blend-mode: screen;
}

.page-grain {
  z-index: 7;
  opacity: 0.17;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(238, 225, 196, 0.22) 0 0.7px, transparent 0.8px),
    radial-gradient(circle at 78% 68%, rgba(216, 169, 71, 0.2) 0 0.8px, transparent 0.9px);
  background-size: 31px 31px, 47px 47px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  padding: 22px clamp(22px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.86), rgba(5, 4, 3, 0));
  border-bottom: 1px solid transparent;
  transition: background 280ms ease, border-color 280ms ease, backdrop-filter 280ms ease;
}

.site-header.is-scrolled,
.inner-page .site-header {
  border-bottom-color: rgba(216, 169, 71, 0.18);
  background: rgba(5, 4, 3, 0.68);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(216, 169, 71, 0.66);
  border-radius: 50%;
  overflow: hidden;
  background: rgba(5, 4, 3, 0.74);
  box-shadow: inset 0 0 24px rgba(216, 169, 71, 0.14), 0 0 24px rgba(216, 169, 71, 0.1);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  filter: contrast(1.06) saturate(0.92);
}

.brand-wordmark {
  display: block;
  width: clamp(150px, 14vw, 230px);
  height: 66px;
  overflow: hidden;
  transform: translateY(-7px);
}

.brand-wordmark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: contrast(1.08) saturate(0.86) brightness(0.96);
}

.brand strong,
.brand small {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.brand strong {
  color: var(--gold-soft);
  font-size: 1.55rem;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: rgba(238, 225, 196, 0.72);
  font-size: 0.62rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 32px);
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: rgba(238, 225, 196, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 260ms ease;
}

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

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(216, 169, 71, 0.34);
  border-radius: 50%;
  background: rgba(5, 4, 3, 0.52);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1px;
  background: var(--gold-soft);
  transition: transform 240ms ease, opacity 240ms ease, top 240ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 78px;
  right: clamp(16px, 5vw, 38px);
  z-index: 19;
  display: none;
  width: min(300px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(216, 169, 71, 0.22);
  border-radius: 6px;
  background:
    radial-gradient(circle at 80% 0, rgba(216, 169, 71, 0.1), transparent 10rem),
    rgba(5, 4, 3, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.54);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  padding: 15px 14px;
  border-bottom: 1px solid rgba(216, 169, 71, 0.12);
  color: rgba(238, 225, 196, 0.84);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.header-cta,
.btn,
.batch-grid a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  overflow: hidden;
  border-radius: 3px;
  color: #100b04;
  background:
    linear-gradient(115deg, rgba(255, 245, 193, 0.48), transparent 26% 62%, rgba(255, 243, 187, 0.28)),
    linear-gradient(135deg, #b67824, #e1b757 48%, #a96b20);
  box-shadow: inset 0 1px 0 rgba(255, 242, 190, 0.44), 0 18px 44px rgba(0, 0, 0, 0.42);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta::after,
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-125%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 240, 180, 0.72), transparent);
  transition: transform 800ms ease;
}

.header-cta:hover::after,
.btn-primary:hover::after {
  transform: translateX(125%) skewX(-18deg);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 100vh;
  padding: 120px clamp(24px, 9vw, 150px) 70px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 3, 2, 0.92) 0 28%, rgba(4, 3, 2, 0.52) 44%, rgba(4, 3, 2, 0.05) 69%),
    radial-gradient(circle at 72% 41%, rgba(216, 169, 71, 0.23), transparent 28rem),
    #050403;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero::before {
  background:
    radial-gradient(ellipse at 66% 70%, rgba(196, 92, 27, 0.18), transparent 30rem),
    radial-gradient(ellipse at 10% 90%, rgba(216, 169, 71, 0.08), transparent 28rem);
}

.hero::after {
  background: linear-gradient(180deg, transparent 68%, #060504 96%);
}

.hero-atmosphere {
  position: absolute;
  inset: -12%;
  z-index: -1;
  background:
    radial-gradient(ellipse at 74% 42%, rgba(236, 192, 91, 0.2), transparent 27rem),
    radial-gradient(ellipse at 54% 52%, rgba(104, 68, 25, 0.18), transparent 34rem),
    linear-gradient(115deg, rgba(255, 255, 255, 0.025), transparent 40%),
    repeating-linear-gradient(100deg, rgba(238, 225, 196, 0.025) 0 1px, transparent 1px 10px);
  filter: blur(0.2px);
  opacity: 0.9;
  animation: breathe 8s ease-in-out infinite alternate;
}

.hero-image-wrap {
  position: absolute;
  inset: 0 -4vw 0 auto;
  width: min(78vw, 1420px);
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(var(--hero-scale, 1));
  opacity: var(--hero-opacity, 1);
  transition: opacity 160ms linear;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% 50%;
  filter: contrast(1.06) saturate(0.9) brightness(0.86);
}

.hero-image-wrap::before,
.hero-image-wrap::after,
.hero-smoke {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-image-wrap::before {
  background:
    linear-gradient(90deg, #050403 0 6%, rgba(5, 4, 3, 0.9) 17%, rgba(5, 4, 3, 0.25) 39%, transparent 58%),
    radial-gradient(ellipse at 65% 50%, transparent 0 36%, rgba(5, 4, 3, 0.36) 72%);
}

.hero-image-wrap::after {
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.5), transparent 22% 72%, #050403);
}

.hero-smoke {
  background:
    radial-gradient(ellipse at 58% 28%, rgba(238, 225, 196, 0.12), transparent 21rem),
    radial-gradient(ellipse at 78% 56%, rgba(5, 4, 3, 0.54), transparent 30rem);
  mix-blend-mode: screen;
  animation: smokeDrift 12s ease-in-out infinite alternate;
}

.soundwave {
  position: absolute;
  right: 38%;
  top: 34%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(216, 169, 71, 0.34);
  border-radius: 50%;
  opacity: 0;
  filter: blur(0.4px);
  animation: wavePulse 4.8s ease-out infinite;
}

.soundwave-two {
  animation-delay: 2.4s;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  transform: translateY(var(--copy-y, 0));
}

.sanskrit {
  margin: 0 0 22px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  letter-spacing: 0.16em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  line-height: 0.95;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 span {
  color: var(--ivory);
  font-size: clamp(2.6rem, 5.1vw, 5.9rem);
  letter-spacing: 0.01em;
  text-shadow: 0 0 34px rgba(0, 0, 0, 0.72);
}

.hero h1 strong {
  margin-top: 6px;
  color: transparent;
  background:
    linear-gradient(180deg, #f4d27a 0%, #c88d2d 42%, #f0c96c 62%, #8d5719 100%),
    repeating-linear-gradient(115deg, rgba(255, 244, 196, 0.38) 0 1px, transparent 1px 8px);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(5rem, 10.6vw, 11.8rem);
  font-weight: 500;
  letter-spacing: 0.035em;
  filter: drop-shadow(0 0 18px rgba(216, 169, 71, 0.22));
}

.hero-text {
  margin: 26px 0 34px;
  color: rgba(238, 225, 196, 0.8);
  font-size: clamp(0.95rem, 1vw, 1.06rem);
  line-height: 1.8;
}

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

.btn-secondary {
  border: 1px solid rgba(216, 169, 71, 0.48);
  color: var(--gold-soft);
  background: rgba(5, 4, 3, 0.42);
  box-shadow: inset 0 0 24px rgba(216, 169, 71, 0.06);
  backdrop-filter: blur(10px);
}

.showreel {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 58px;
  color: var(--gold-soft);
  text-decoration: none;
}

.showreel span {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 169, 71, 0.72);
  border-radius: 50%;
}

.showreel span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--gold-soft);
}

.showreel b,
.showreel small {
  display: block;
  font-style: normal;
  text-transform: uppercase;
}

.showreel b {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.showreel small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 530px;
  margin-top: 42px;
  border: 1px solid rgba(216, 169, 71, 0.18);
  background: rgba(216, 169, 71, 0.14);
  backdrop-filter: blur(12px);
}

.hero-stats article {
  padding: 18px 20px;
  background:
    radial-gradient(circle at 50% 0, rgba(216, 169, 71, 0.12), transparent 7rem),
    rgba(5, 4, 3, 0.62);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  font-weight: 500;
  line-height: 1;
}

.hero-stats span {
  margin-top: 8px;
  color: rgba(238, 225, 196, 0.68);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-rail,
.scroll-rail {
  position: fixed;
  z-index: 18;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-rail {
  left: 28px;
  top: 26vh;
  gap: 24px;
}

.social-rail a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(216, 169, 71, 0.28);
  border-radius: 50%;
  color: rgba(238, 225, 196, 0.76);
  background: rgba(5, 4, 3, 0.42);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.social-rail img {
  width: 17px;
  height: 17px;
  display: block;
}

.social-rail a:hover {
  border-color: rgba(216, 169, 71, 0.72);
  color: var(--gold-soft);
  background: rgba(216, 169, 71, 0.1);
}

.social-rail span {
  width: 1px;
  height: 42px;
  background: linear-gradient(transparent, var(--gold), transparent);
}

.social-rail p {
  margin: 0;
  writing-mode: vertical-rl;
  color: rgba(238, 225, 196, 0.68);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.scroll-rail {
  right: 36px;
  top: 34vh;
  gap: 13px;
  color: rgba(238, 225, 196, 0.8);
  font-family: var(--font-display);
  font-size: 0.76rem;
}

.scroll-rail i {
  width: 1px;
  height: 84px;
  background: rgba(216, 169, 71, 0.22);
}

.scroll-rail b {
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(216, 169, 71, 0.72);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(238, 225, 196, 0.68);
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue span {
  position: relative;
  width: 22px;
  height: 36px;
  border: 1px solid rgba(238, 225, 196, 0.72);
  border-radius: 999px;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-soft);
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}

.scroll-cue small {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

.section-band {
  position: relative;
  padding: clamp(68px, 8vw, 120px) clamp(24px, 6vw, 92px);
  overflow: hidden;
  border-top: 1px solid rgba(216, 169, 71, 0.16);
  background:
    radial-gradient(circle at 20% 0, rgba(216, 169, 71, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(14, 11, 8, 0.96), rgba(5, 4, 3, 0.98));
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 0 50%, rgba(216, 169, 71, 0.07), transparent 21rem),
    radial-gradient(circle at 100% 0, rgba(199, 92, 27, 0.07), transparent 24rem);
}

.section-title {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0 auto clamp(34px, 4vw, 62px);
  text-align: center;
}

.section-title span,
.final-band span {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-title h2,
.final-band h2 {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(1.9rem, 3vw, 3.8rem);
  letter-spacing: 0.18em;
}

.essence-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1280px;
  margin: 0 auto;
  border: 1px solid rgba(216, 169, 71, 0.13);
  background: rgba(5, 4, 3, 0.42);
}

.essence-grid article {
  min-height: 180px;
  padding: 28px 24px;
  border-right: 1px solid rgba(216, 169, 71, 0.12);
  text-align: center;
}

.essence-grid article:last-child {
  border-right: 0;
}

.essence-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 20px;
  border: 1px solid rgba(216, 169, 71, 0.45);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: var(--font-display);
}

.essence-grid h3,
.style-card h3 {
  margin-bottom: 12px;
  color: var(--ivory);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.essence-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.ritual-section {
  background:
    radial-gradient(circle at 72% 18%, rgba(199, 92, 27, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(8, 6, 4, 0.98), rgba(5, 4, 3, 0.98));
}

.ritual-grid,
.event-detail-grid,
.booking-grid,
.testimonial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.ritual-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: ritual;
}

.ritual-grid article,
.event-detail-grid article,
.booking-grid article,
.testimonial-grid article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(216, 169, 71, 0.18);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 244, 196, 0.035), transparent 34%),
    radial-gradient(circle at 70% 0, rgba(216, 169, 71, 0.14), transparent 13rem),
    rgba(7, 6, 4, 0.72);
  box-shadow: inset 0 0 34px rgba(216, 169, 71, 0.035);
}

.ritual-grid article::before,
.event-detail-grid article::before,
.booking-grid article::before,
.testimonial-grid article::before {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 169, 71, 0.52), transparent);
}

.ritual-grid span,
.event-detail-grid span,
.booking-grid span,
.testimonial-grid span,
.faq-layout span,
.drive-gallery-panel span,
.trainer-copy > span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ritual-grid h3,
.event-detail-grid h3,
.booking-grid h3 {
  margin-bottom: 18px;
  color: var(--ivory);
  font-size: clamp(1.2rem, 1.5vw, 1.7rem);
  letter-spacing: 0.08em;
}

.ritual-grid p,
.event-detail-grid p,
.booking-grid p,
.testimonial-grid p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.style-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 12px;
  max-width: 1380px;
  margin: 0 auto;
}

.style-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 265px;
  overflow: hidden;
  border: 1px solid rgba(216, 169, 71, 0.18);
  border-radius: 5px;
  background:
    linear-gradient(180deg, transparent, rgba(3, 3, 2, 0.88)),
    radial-gradient(circle at 50% 20%, rgba(216, 169, 71, 0.22), transparent 8rem),
    linear-gradient(135deg, #1b1711, #060504);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
  text-decoration: none;
}

.style-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.72;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.04), transparent 38%, rgba(5, 4, 3, 0.9)),
    radial-gradient(circle at var(--focus-x, 55%) 28%, rgba(238, 225, 196, 0.1), transparent 8rem);
  transition: transform 500ms ease, opacity 500ms ease;
}

.style-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 169, 71, 0.72), transparent);
}

.style-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.06) brightness(0.82);
  transition: transform 700ms ease, filter 700ms ease;
}

.style-card:hover::before {
  opacity: 1;
}

.style-card:hover img {
  transform: scale(1.06);
  filter: saturate(0.96) contrast(1.1) brightness(0.92);
}

.style-card h3 {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 0 12px 28px;
  text-align: center;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.86);
}

.style-western {
  --focus-x: 30%;
}

.style-bollywood {
  --focus-x: 62%;
}

.style-contemporary {
  --focus-x: 48%;
}

.style-hiphop {
  --focus-x: 40%;
}

.style-zumba {
  --focus-x: 72%;
}

.style-junior {
  --focus-x: 48%;
}

.style-senior {
  --focus-x: 56%;
}

.style-bharatanatyam {
  --focus-x: 50%;
}

.batch-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: -28px 0 34px;
}

.batch-tabs button {
  border: 0;
  color: rgba(238, 225, 196, 0.55);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.batch-tabs .is-selected {
  color: var(--gold);
}

.batch-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.batch-grid article {
  padding: 28px;
  border: 1px solid rgba(216, 169, 71, 0.2);
  border-radius: 5px;
  background:
    radial-gradient(circle at 30% 0, rgba(216, 169, 71, 0.11), transparent 12rem),
    rgba(10, 8, 6, 0.74);
}

.batch-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--ivory);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.batch-grid p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.batch-grid strong {
  display: block;
  margin: 18px 0 22px;
  color: var(--gold-soft);
  font-size: 0.9rem;
}

.batch-grid a {
  min-height: 42px;
  width: 100%;
}

.workshop-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(216, 169, 71, 0.18);
  border-radius: 5px;
  background:
    radial-gradient(circle at 82% 0, rgba(216, 169, 71, 0.14), transparent 18rem),
    rgba(7, 6, 4, 0.68);
}

.workshop-panel p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.8;
}

.event-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workshop-panel-lower {
  margin-top: 18px;
}

.event-booking {
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 169, 71, 0.08), transparent 24rem),
    radial-gradient(circle at 82% 72%, rgba(199, 92, 27, 0.11), transparent 25rem),
    linear-gradient(180deg, rgba(7, 6, 4, 0.98), rgba(5, 4, 3, 0.98));
}

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

.booking-grid article {
  display: flex;
  flex-direction: column;
}

.booking-grid p {
  flex: 1;
}

.booking-grid a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 28px;
  border: 1px solid rgba(216, 169, 71, 0.46);
  color: var(--gold-soft);
  background: rgba(5, 4, 3, 0.42);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.testimonials {
  background:
    radial-gradient(circle at 50% 8%, rgba(216, 169, 71, 0.1), transparent 27rem),
    linear-gradient(180deg, rgba(12, 9, 6, 0.98), rgba(5, 4, 3, 0.98));
}

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

.testimonial-grid article {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-grid p {
  color: rgba(238, 225, 196, 0.82);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.45vw, 1.55rem);
  line-height: 1.5;
}

.testimonial-grid strong {
  display: block;
  margin-top: 34px;
  color: var(--gold-soft);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-grid span {
  margin: 8px 0 0;
  color: rgba(238, 225, 196, 0.54);
  letter-spacing: 0.08em;
}

.gallery-carousel {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(216, 169, 71, 0.18);
  border-radius: 5px;
  background: rgba(5, 4, 3, 0.52);
}

.gallery-carousel::before,
.gallery-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(40px, 8vw, 120px);
  pointer-events: none;
}

.gallery-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #050403, transparent);
}

.gallery-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #050403, transparent);
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 16px;
  animation: galleryMarquee 34s linear infinite;
  will-change: transform;
}

.gallery-carousel:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-slide {
  position: relative;
  flex: 0 0 calc((min(1280px, 100vw - 48px) - 80px) / 4);
  min-width: 220px;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 169, 71, 0.18);
  border-radius: 5px;
  background: #090705;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.05) brightness(0.82);
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 4, 3, 0.76));
  pointer-events: none;
}

.gallery-slide:hover img {
  transform: scale(1.06);
  filter: saturate(0.96) contrast(1.09) brightness(0.92);
}

.gallery-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background:
    radial-gradient(circle at 70% 10%, rgba(216, 169, 71, 0.12), transparent 28rem),
    rgba(5, 4, 3, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.photo-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.photo-modal-panel {
  width: min(1320px, 100%);
  max-height: min(86vh, 920px);
  overflow: auto;
  border: 1px solid rgba(216, 169, 71, 0.22);
  border-radius: 5px;
  background:
    radial-gradient(circle at 20% 0, rgba(216, 169, 71, 0.1), transparent 22rem),
    #070504;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.72);
}

.photo-modal-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 4vw, 44px);
  border-bottom: 1px solid rgba(216, 169, 71, 0.16);
  background: rgba(7, 5, 4, 0.9);
  backdrop-filter: blur(18px);
}

.photo-modal-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.photo-modal-head h2 {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(1.45rem, 3vw, 3.2rem);
  letter-spacing: 0.08em;
}

.photo-modal-head button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(216, 169, 71, 0.42);
  color: var(--gold-soft);
  background: rgba(5, 4, 3, 0.52);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 4vw, 44px);
}

.photo-grid figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 169, 71, 0.16);
  border-radius: 5px;
  background: #0b0907;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04) brightness(0.86);
}

@keyframes galleryMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.drive-gallery-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 70px auto 0;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(216, 169, 71, 0.2);
  border-radius: 5px;
  background:
    radial-gradient(circle at 86% 0, rgba(216, 169, 71, 0.14), transparent 15rem),
    rgba(7, 6, 4, 0.74);
}

.drive-gallery-panel h3 {
  margin-bottom: 12px;
  color: var(--ivory);
  font-size: clamp(1.35rem, 2vw, 2.2rem);
}

.drive-gallery-panel p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.trainer-profile {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}

.trainer-portrait {
  min-height: 560px;
  border: 1px solid rgba(216, 169, 71, 0.2);
  border-radius: 5px;
  background:
    linear-gradient(180deg, transparent, rgba(5, 4, 3, 0.9)),
    radial-gradient(circle at 50% 20%, rgba(238, 225, 196, 0.08), transparent 10rem),
    url("assets/uditphoto.jpeg") center / cover no-repeat,
    linear-gradient(135deg, #17120c, #050403);
  box-shadow: inset 0 0 50px rgba(216, 169, 71, 0.04);
}

.trainer-copy {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(216, 169, 71, 0.18);
  border-radius: 5px;
  background:
    radial-gradient(circle at 90% 0, rgba(216, 169, 71, 0.12), transparent 16rem),
    rgba(7, 6, 4, 0.72);
}

.trainer-copy h3 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--ivory);
  font-size: clamp(1.9rem, 3.8vw, 4.5rem);
  line-height: 1.05;
}

.trainer-copy p {
  color: var(--muted);
  line-height: 1.85;
}

.trainer-points {
  display: grid;
  gap: 12px;
  margin: 34px 0;
}

.trainer-points article {
  padding: 18px 20px;
  border-left: 1px solid rgba(216, 169, 71, 0.42);
  background: rgba(5, 4, 3, 0.34);
}

.trainer-points strong,
.trainer-points small {
  display: block;
}

.trainer-points strong {
  color: var(--gold-soft);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trainer-points small {
  margin-top: 7px;
  color: rgba(238, 225, 196, 0.62);
  line-height: 1.6;
}

.final-band {
  display: grid;
  min-height: 54vh;
  place-items: center;
  text-align: center;
}

.final-band div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.final-band h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5vw, 6rem);
  letter-spacing: 0.05em;
}

.final-band p {
  margin: 0 auto;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.8;
}

.final-cta {
  margin-top: 30px;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 28px auto 0;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(216, 169, 71, 0.2);
  border-radius: 999px;
  color: rgba(238, 225, 196, 0.78);
  background: rgba(5, 4, 3, 0.38);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.studio-address {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(238, 225, 196, 0.68);
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-band {
  padding-top: clamp(56px, 6vw, 90px);
  padding-bottom: clamp(56px, 6vw, 90px);
}

.faq-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 86px);
  max-width: 1160px;
  margin: 0 auto;
}

.faq-layout h2 {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(216, 169, 71, 0.18);
  border-radius: 5px;
  background: rgba(7, 6, 4, 0.72);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--gold-soft);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-list p {
  padding: 0 24px 24px;
}

.screen-section {
  min-height: 100vh;
  display: grid;
  align-content: center;
}

.inner-page main {
  position: relative;
  z-index: 1;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100vh;
  padding: 150px clamp(24px, 9vw, 150px) 96px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.9) 0 32%, rgba(5, 4, 3, 0.42) 64%, rgba(5, 4, 3, 0.68)),
    radial-gradient(circle at 72% 34%, rgba(216, 169, 71, 0.24), transparent 30rem),
    radial-gradient(circle at 32% 68%, rgba(199, 92, 27, 0.13), transparent 24rem),
    linear-gradient(135deg, #050403, #120d08 48%, #070504);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero::before {
  background:
    radial-gradient(ellipse at 74% 30%, rgba(238, 225, 196, 0.12), transparent 21rem),
    repeating-linear-gradient(105deg, rgba(238, 225, 196, 0.022) 0 1px, transparent 1px 14px);
  animation: smokeDrift 12s ease-in-out infinite alternate;
}

.page-hero::after {
  background: linear-gradient(180deg, transparent 60%, #050403 100%);
}

.page-hero div {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.page-hero span,
.split-act span,
.style-act span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0 0 28px;
  max-width: 1040px;
  color: var(--ivory);
  font-size: clamp(3rem, 8vw, 8.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.page-hero p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.85;
}

.page-about .page-hero {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.93), rgba(5, 4, 3, 0.48) 64%, rgba(5, 4, 3, 0.72)),
    radial-gradient(ellipse at 70% 22%, rgba(238, 225, 196, 0.18), transparent 22rem),
    radial-gradient(ellipse at 74% 70%, rgba(216, 169, 71, 0.16), transparent 24rem),
    linear-gradient(135deg, #050403, #15100b);
}

.page-styles .page-hero {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.92), rgba(5, 4, 3, 0.36) 62%, rgba(5, 4, 3, 0.78)),
    radial-gradient(circle at 68% 28%, rgba(216, 169, 71, 0.22), transparent 26rem),
    radial-gradient(circle at 82% 70%, rgba(199, 92, 27, 0.16), transparent 25rem),
    linear-gradient(145deg, #050403, #18110a);
}

.page-events .page-hero {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.92), rgba(5, 4, 3, 0.42) 70%),
    radial-gradient(ellipse at 58% 16%, rgba(238, 225, 196, 0.22), transparent 17rem),
    radial-gradient(ellipse at 82% 72%, rgba(216, 169, 71, 0.24), transparent 28rem),
    linear-gradient(135deg, #050403, #130d08);
}

.page-gallery .page-hero,
.page-trainer .page-hero,
.page-contact .page-hero,
.page-batches .page-hero {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.92), rgba(5, 4, 3, 0.5) 68%, rgba(5, 4, 3, 0.82)),
    radial-gradient(circle at 70% 34%, rgba(216, 169, 71, 0.2), transparent 26rem),
    linear-gradient(135deg, #050403, #100c08);
}

.split-act {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 96px);
  min-height: 100vh;
}

.split-act h2,
.style-act h2 {
  margin: 0 0 24px;
  color: var(--ivory);
  font-size: clamp(2.2rem, 5vw, 6rem);
  line-height: 1;
}

.split-act p,
.style-act p {
  color: var(--muted);
  line-height: 1.8;
}

.timeline {
  display: grid;
  gap: 18px;
  border-left: 1px solid rgba(216, 169, 71, 0.42);
  padding-left: 30px;
}

.timeline p {
  position: relative;
  margin: 0;
  padding: 22px 24px;
  border: 1px solid rgba(216, 169, 71, 0.16);
  background: rgba(5, 4, 3, 0.42);
}

.timeline p::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(216, 169, 71, 0.72);
}

.quote-act {
  display: grid;
  min-height: 72vh;
  place-items: center;
  text-align: center;
}

.quote-act blockquote {
  max-width: 980px;
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 6.5rem);
  line-height: 1.05;
  text-transform: uppercase;
}

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

.event-grid,
.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chamber-grid article,
.contact-grid article {
  min-height: 300px;
  padding: 34px;
  border: 1px solid rgba(216, 169, 71, 0.18);
  border-radius: 5px;
  background:
    radial-gradient(circle at 50% 0, rgba(216, 169, 71, 0.14), transparent 14rem),
    rgba(7, 6, 4, 0.68);
}

.chamber-grid h3,
.contact-grid h3 {
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.chamber-grid p,
.contact-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.style-act {
  display: grid;
  min-height: 100vh;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.94), rgba(5, 4, 3, 0.5) 62%, rgba(5, 4, 3, 0.82)),
    radial-gradient(circle at 76% 36%, rgba(216, 169, 71, 0.18), transparent 24rem),
    linear-gradient(135deg, #050403, #100c08);
}

.style-act div {
  max-width: 720px;
}

.masonry-gallery {
  columns: 4 220px;
  column-gap: 18px;
}

.masonry-gallery figure {
  display: inline-block;
  width: 100%;
  min-height: 300px;
  margin: 0 0 18px;
  break-inside: avoid;
  border: 1px solid rgba(216, 169, 71, 0.18);
  border-radius: 5px;
  background:
    linear-gradient(180deg, transparent, rgba(5, 4, 3, 0.88)),
    radial-gradient(circle at 52% 26%, rgba(238, 225, 196, 0.18), transparent 9rem),
    radial-gradient(circle at 48% 70%, rgba(199, 92, 27, 0.22), transparent 12rem),
    linear-gradient(135deg, #17120c, #060504);
  transition: transform 420ms ease, box-shadow 420ms ease;
}

.masonry-gallery figure:nth-child(2n) {
  min-height: 420px;
}

.masonry-gallery figure:nth-child(3n) {
  min-height: 250px;
}

.masonry-gallery figure:hover {
  transform: scale(1.025);
  box-shadow: 0 0 42px rgba(216, 169, 71, 0.18);
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(24px, 6vw, 92px);
  border-top: 1px solid rgba(216, 169, 71, 0.2);
  background: #050403;
}

.site-footer strong {
  color: var(--gold-soft);
  font-family: var(--font-display);
  letter-spacing: 0.16em;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer a {
  color: rgba(238, 225, 196, 0.7);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

@keyframes breathe {
  from {
    transform: scale(1);
    opacity: 0.76;
  }
  to {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes smokeDrift {
  from {
    transform: translateX(-1.6%);
  }
  to {
    transform: translateX(1.8%);
  }
}

@keyframes wavePulse {
  0% {
    transform: scale(0.45);
    opacity: 0;
  }
  18% {
    opacity: 0.5;
  }
  100% {
    transform: scale(3.2);
    opacity: 0;
  }
}

@keyframes scrollDot {
  to {
    transform: translate(-50%, 14px);
    opacity: 0;
  }
}

@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .hero-image-wrap {
    width: 92vw;
    opacity: 0.76;
  }

  .essence-grid,
  .style-row,
  .batch-grid,
  .ritual-grid,
  .event-detail-grid,
  .booking-grid,
  .testimonial-grid,
  .chamber-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-act,
  .trainer-profile {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (orientation: portrait) and (min-width: 741px) and (max-width: 1180px) {
  .hero {
    min-height: 100svh;
    align-items: end;
    padding: 34svh clamp(34px, 7vw, 70px) 72px;
    background:
      linear-gradient(180deg, rgba(4, 3, 2, 0.2) 0 33%, rgba(4, 3, 2, 0.84) 74%, #050403 100%),
      linear-gradient(90deg, rgba(4, 3, 2, 0.74), rgba(4, 3, 2, 0.18) 58%, rgba(4, 3, 2, 0.38)),
      radial-gradient(circle at 72% 36%, rgba(216, 169, 71, 0.22), transparent 28rem),
      #050403;
  }

  .hero-image-wrap {
    inset: 0 auto 0 50%;
    width: 136vw;
    height: 100svh;
    opacity: 0.92;
    transform: translate3d(calc(-50% + var(--hero-x, 0px)), var(--hero-y, 0), 0) scale(var(--hero-scale, 1));
  }

  .hero-image {
    object-fit: cover;
    object-position: 66% 50%;
  }

  .hero-image-wrap::before {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.08), rgba(5, 4, 3, 0.06) 42%, rgba(5, 4, 3, 0.72) 81%, #050403 100%),
      linear-gradient(90deg, rgba(5, 4, 3, 0.72) 0 19%, rgba(5, 4, 3, 0.18) 50%, rgba(5, 4, 3, 0.12) 72%, rgba(5, 4, 3, 0.52));
  }

  .hero-image-wrap::after {
    background: linear-gradient(180deg, rgba(5, 4, 3, 0.2), transparent 48%, #050403 100%);
  }

  .hero-copy {
    max-width: 650px;
  }
}

@media (max-width: 740px) {
  .site-header {
    padding: 16px;
  }

  .mobile-menu {
    top: 72px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-wordmark {
    width: 146px;
    height: 42px;
    transform: translateY(-4px);
  }

  .brand strong {
    font-size: 1.1rem;
  }

  .header-cta {
    display: none;
  }

  .scroll-rail {
    display: none;
  }

  .social-rail {
    left: 50%;
    top: auto;
    bottom: 14px;
    z-index: 35;
    flex-direction: row;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(216, 169, 71, 0.2);
    border-radius: 999px;
    background: rgba(5, 4, 3, 0.76);
    backdrop-filter: blur(16px);
    transform: translateX(-50%);
  }

  .social-rail span,
  .social-rail p {
    display: none;
  }

  .social-rail a {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding: 30svh 20px 46px;
    background:
      linear-gradient(180deg, rgba(4, 3, 2, 0.04) 0 28%, rgba(4, 3, 2, 0.72) 66%, #050403 100%),
      linear-gradient(90deg, rgba(4, 3, 2, 0.74), rgba(4, 3, 2, 0.18) 62%, rgba(4, 3, 2, 0.34)),
      radial-gradient(circle at 70% 32%, rgba(216, 169, 71, 0.2), transparent 18rem),
      #050403;
  }

  .hero::before {
    background:
      radial-gradient(ellipse at 76% 38%, rgba(196, 92, 27, 0.13), transparent 18rem),
      rgba(5, 4, 3, 0.08);
  }

  .hero-image-wrap {
    inset: 0 auto 0 50%;
    width: 164vw;
    height: 100svh;
    opacity: 0.93;
    transform: translate3d(calc(-50% + var(--hero-x, 0px)), var(--hero-y, 0), 0) scale(var(--hero-scale, 1));
  }

  .hero-image {
    object-fit: cover;
    object-position: 67% 50%;
  }

  .hero-image-wrap::before {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.16), transparent 32%, rgba(5, 4, 3, 0.64) 72%, #050403 100%),
      linear-gradient(90deg, rgba(5, 4, 3, 0.78) 0 20%, rgba(5, 4, 3, 0.2) 56%, rgba(5, 4, 3, 0.2) 78%, rgba(5, 4, 3, 0.55));
  }

  .hero-image-wrap::after {
    background: linear-gradient(180deg, rgba(5, 4, 3, 0.18), transparent 47%, #050403 100%);
  }

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

  .hero h1 span {
    font-size: clamp(2.25rem, 10.6vw, 3.75rem);
  }

  .hero h1 strong {
    font-size: clamp(3.25rem, 16.4vw, 5.15rem);
    letter-spacing: 0.01em;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 260px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin-top: 28px;
  }

  .hero-stats article {
    padding: 14px 16px;
  }

  .workshop-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .drive-gallery-panel {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .showreel {
    margin-top: 34px;
  }

  .scroll-cue {
    display: none;
  }

  .section-title h2,
  .final-band h2 {
    letter-spacing: 0.08em;
  }

  .essence-grid,
  .style-row,
  .batch-grid,
  .ritual-grid,
  .event-detail-grid,
  .booking-grid,
  .testimonial-grid,
  .chamber-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .ritual-grid article,
  .event-detail-grid article,
  .booking-grid article,
  .testimonial-grid article {
    min-height: auto;
    padding: 28px;
  }

  .trainer-portrait {
    min-height: 360px;
  }

  .page-hero {
    min-height: 92svh;
    padding: 124px 20px 58px;
  }

  .page-hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.9rem);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-slide {
    flex-basis: min(76vw, 280px);
  }

  .photo-modal-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .essence-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 169, 71, 0.12);
  }

  .batch-tabs {
    flex-wrap: wrap;
    gap: 16px;
  }
}

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