: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;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

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

.ember-canvas {
  z-index: 6;
  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));
}

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

.brand-sigil {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(216, 169, 71, 0.66);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 0.9rem;
  box-shadow: inset 0 0 24px rgba(216, 169, 71, 0.14), 0 0 24px rgba(216, 169, 71, 0.1);
}

.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);
}

.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;
}

.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 {
  color: rgba(238, 225, 196, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

.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;
}

.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);
}

.style-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background:
    radial-gradient(circle at var(--focus-x, 55%) 34%, rgba(238, 225, 196, 0.18), transparent 7rem),
    linear-gradient(145deg, rgba(216, 169, 71, 0.16), transparent 35% 70%, rgba(199, 92, 27, 0.13));
  transition: transform 500ms ease, opacity 500ms ease;
}

.style-card::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  top: 17%;
  bottom: 28%;
  border-radius: 50% 50% 8px 8px;
  background:
    radial-gradient(circle at 50% 14%, rgba(238, 225, 196, 0.78) 0 6px, transparent 7px),
    linear-gradient(150deg, transparent 0 39%, rgba(238, 225, 196, 0.65) 40% 42%, transparent 43%),
    linear-gradient(35deg, transparent 0 42%, rgba(216, 169, 71, 0.65) 43% 46%, transparent 47%),
    radial-gradient(ellipse at 50% 52%, rgba(25, 20, 15, 0.92) 0 24%, transparent 25%),
    radial-gradient(ellipse at 50% 74%, rgba(216, 169, 71, 0.32), transparent 48%);
  filter: drop-shadow(0 0 28px rgba(216, 169, 71, 0.24));
}

.style-card:hover::before {
  transform: scale(1.08);
  opacity: 1;
}

.style-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 12px 28px;
}

.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%;
}

.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;
}

.gallery-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-strip figure {
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  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 50% 24%, rgba(238, 225, 196, 0.18), transparent 10rem),
    radial-gradient(circle at 48% 48%, rgba(199, 92, 27, 0.28), transparent 13rem),
    linear-gradient(135deg, #17120c, #060504);
}

.gallery-strip figure:nth-child(2) {
  transform: translateY(42px);
  background:
    linear-gradient(180deg, transparent, rgba(5, 4, 3, 0.9)),
    radial-gradient(circle at 58% 20%, rgba(216, 169, 71, 0.26), transparent 10rem),
    linear-gradient(135deg, #20160d, #070504);
}

.gallery-strip figure:nth-child(3) {
  background:
    linear-gradient(180deg, transparent, rgba(5, 4, 3, 0.88)),
    radial-gradient(circle at 40% 32%, rgba(238, 225, 196, 0.15), transparent 9rem),
    radial-gradient(circle at 76% 72%, rgba(199, 92, 27, 0.2), transparent 13rem),
    linear-gradient(135deg, #130f0a, #050403);
}

.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;
}

@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;
  }

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

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

  .essence-grid,
  .style-row,
  .batch-grid {
    grid-template-columns: repeat(2, minmax(0, 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;
  }

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

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

  .header-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.68rem;
  }

  .social-rail,
  .scroll-rail {
    display: none;
  }

  .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;
  }

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

  .showreel {
    margin-top: 34px;
  }

  .scroll-cue {
    display: none;
  }

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

  .essence-grid,
  .style-row,
  .batch-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip figure:nth-child(2) {
    transform: none;
  }

  .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;
  }
}
