:root {
  --black: #050505;
  --ink: #101010;
  --white: #ffffff;
  --off-white: #f7f4f2;
  --soft: #eee8e4;
  --pink: #f6d7ea;
  --wine: #270006;
  --magenta: #e0007a;
  --magenta-dark: #a9005c;
  --muted: #6b6464;
  --line: rgba(5, 5, 5, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow-soft: 0 24px 70px rgba(5, 5, 5, 0.08);
  --display: "Bebas Neue", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--magenta);
  color: var(--white);
}

.skip-link {
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 1000;
  background: var(--magenta);
  color: var(--white);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 76px;
  padding: 0 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name,
.footer-brand {
  color: var(--magenta);
  font-family: var(--display);
  font-size: 2.3rem;
  letter-spacing: 0;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 1.25rem;
}

.mobile-book-link {
  display: none;
}

.nav-links a,
.footer-links a {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  position: relative;
  text-transform: uppercase;
}

.nav-links a::after,
.footer-links a::after {
  background: var(--magenta);
  bottom: -0.35rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

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

.nav-cta,
.button {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 44px;
  padding: 0.85rem 1.25rem;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-cta {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--white);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 44px;
}

.menu-toggle span:not(.sr-only) {
  background: currentColor;
  height: 2px;
  position: absolute;
  transition: transform 180ms ease;
  width: 24px;
}

.menu-toggle span:nth-child(2) {
  transform: translateY(-5px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(5px);
}

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

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

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-soft {
  background: var(--soft);
}

.section-pink {
  background: var(--pink);
}

.section-pad {
  padding: clamp(3rem, 6vw, 5.5rem) 1rem;
}

.hero {
  --hero-progress: 0;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.5rem);
  position: relative;
}

.hero::before {
  background:
    radial-gradient(circle at 22% 14%, rgba(224, 0, 122, 0.38), transparent 28%),
    linear-gradient(180deg, #4b0007 0%, var(--wine) 44%, var(--black) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: scale(calc(1 + (var(--hero-progress) * 0.035)));
  transition: background 220ms ease;
}

.hero-poster {
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin: 0 auto;
  max-width: min(1480px, 100%);
  min-height: calc(100vh - 108px);
  overflow: hidden;
  padding: clamp(1rem, 3vw, 2rem);
  position: relative;
  transform: translateY(calc(var(--hero-progress) * -28px));
  z-index: 1;
}

.hero-poster::after {
  border: 1px solid rgba(255, 255, 255, 0.16);
  content: "";
  inset: clamp(0.75rem, 2vw, 1.5rem);
  pointer-events: none;
  position: absolute;
  z-index: 5;
}

.hero-kicker {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  position: relative;
  transform: translateY(calc(var(--hero-progress) * -18px));
  z-index: 6;
}

.hero-kicker span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--magenta);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.hero-title,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0;
  line-height: 0.88;
  margin: 0;
  text-transform: uppercase;
}

.hero-title {
  color: var(--white);
  font-size: clamp(11rem, 34vw, 34rem);
  inset: 50% auto auto 50%;
  line-height: 0.72;
  position: absolute;
  text-align: center;
  text-shadow: 0 0 42px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -55%) scaleX(1.04);
  scale: calc(1 + (var(--hero-progress) * 0.06));
  opacity: calc(1 - (var(--hero-progress) * 0.28));
  white-space: nowrap;
  width: 100%;
  z-index: 1;
}

.hero-title::after {
  color: var(--magenta);
  content: "MOVE WITH POWER";
  font-family: var(--body);
  font-size: clamp(0.7rem, 1.2vw, 1rem);
  font-weight: 900;
  left: 50%;
  letter-spacing: 0.16em;
  opacity: calc(var(--hero-progress) * 0.95);
  position: absolute;
  top: 100%;
  transform: translateX(-50%) translateY(calc(28px - (var(--hero-progress) * 18px)));
  white-space: nowrap;
}

h2 {
  font-size: clamp(3.6rem, 9vw, 8.5rem);
}

h3 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.hero-photo-placeholder {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.28));
  height: min(68vh, 650px);
  left: 58%;
  max-height: 720px;
  max-width: 980px;
  min-height: 430px;
  position: absolute;
  top: 52%;
  transform:
    translate(
      calc(-50% + (var(--hero-progress) * 34px)),
      calc(-47% + (var(--hero-progress) * -24px))
    )
    rotate(calc(-7deg + (var(--hero-progress) * 2deg)))
    scale(calc(1 + (var(--hero-progress) * 0.05)));
  width: min(58vw, 900px);
  z-index: 3;
}

.hero-photo-placeholder::before {
  background:
    linear-gradient(145deg, rgba(247, 244, 242, 0.13), rgba(5, 5, 5, 0.58) 55%),
    rgba(5, 5, 5, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.48);
  content: "";
  inset: 7% 5% 7% 9%;
  position: absolute;
  transform: skewX(-5deg);
}

.hero-photo-placeholder::after {
  background: var(--magenta);
  content: "";
  height: 110%;
  left: 50%;
  opacity: 0.82;
  position: absolute;
  top: -5%;
  transform: translateX(-50%) rotate(7deg);
  width: clamp(7px, 0.9vw, 13px);
}

.hero-photo-placeholder span {
  background: var(--off-white);
  bottom: auto;
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 900;
  left: auto;
  letter-spacing: 0.06em;
  max-width: 240px;
  padding: 0.65rem 0.8rem;
  position: absolute;
  right: 9%;
  text-transform: uppercase;
  transform: rotate(7deg);
  top: 63%;
  z-index: 6;
}

.hero-photo-placeholder.has-live-image,
.media-placeholder.has-live-image {
  padding: 0;
}

.hero-photo-placeholder.has-live-image img,
.media-placeholder.has-live-image img,
.portfolio-live-image,
.product-live-image,
.info-live-image,
.program-live-image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.portfolio-live-image {
  min-height: 100%;
}

.product-live-image {
  aspect-ratio: 4 / 5;
  background: var(--black);
}

.info-live-image,
.program-live-image {
  aspect-ratio: 4 / 5;
  background: var(--black);
  margin-bottom: 1rem;
}

.pose-shape {
  background: linear-gradient(180deg, #252525, #050505);
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: absolute;
  z-index: 4;
}

.pose-leg-one {
  border-radius: 999px 999px 90px 90px;
  height: 76%;
  left: 10%;
  top: 11%;
  transform: rotate(70deg);
  width: 19%;
}

.pose-leg-two {
  border-radius: 999px 999px 90px 90px;
  height: 70%;
  left: 31%;
  top: 23%;
  transform: rotate(24deg);
  width: 15%;
}

.pose-body {
  background: linear-gradient(145deg, #111, #050505 65%, rgba(224, 0, 122, 0.22));
  border-radius: 52% 48% 45% 55%;
  height: 36%;
  left: 48%;
  top: 38%;
  transform: rotate(12deg);
  width: 26%;
}

.pose-arm {
  height: 44%;
  left: 63%;
  top: 22%;
  transform: rotate(58deg);
  width: 7%;
}

.pose-head {
  background: radial-gradient(circle at 46% 38%, #efe5df 0 18%, #0a0a0a 19% 100%);
  border-radius: 50%;
  height: 18%;
  left: 72%;
  top: 26%;
  transform: rotate(7deg);
  width: 12%;
}

.hero-copy {
  align-items: end;
  bottom: clamp(1.3rem, 4vw, 3rem);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 0.48fr) auto;
  left: clamp(1.3rem, 4vw, 3rem);
  max-width: calc(100% - clamp(2.6rem, 8vw, 6rem));
  position: absolute;
  right: clamp(1.3rem, 4vw, 3rem);
  transform: translateY(calc(var(--hero-progress) * 30px));
  opacity: calc(1 - (var(--hero-progress) * 0.35));
  z-index: 6;
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2.6vw, 2.1rem);
  font-weight: 900;
  line-height: 1.08;
  margin: 0.4rem 0 0.7rem;
  max-width: 560px;
  text-transform: uppercase;
}

.style-line {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 2rem;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.button-primary {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.button-primary::after {
  background: rgba(255, 255, 255, 0.22);
  content: "";
  height: 160%;
  left: -60%;
  position: absolute;
  top: -30%;
  transform: rotate(18deg);
  transition: left 260ms ease;
  width: 24%;
}

.button-primary:hover::after {
  left: 118%;
}

.button-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.button-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.button-light:hover,
.button-dark:hover {
  background: transparent;
  color: currentColor;
}

.button-ghost {
  background: transparent;
  color: var(--white);
}

.button-ghost:hover {
  background: var(--white);
  color: var(--black);
}

.button-dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.rhythm-flow {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
}

.rhythm-flow span {
  border: 1px solid rgba(224, 0, 122, 0.35);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  position: absolute;
}

.rhythm-flow-hero {
  z-index: 1;
}

.rhythm-flow-hero span:nth-child(1) {
  height: 56vw;
  right: -18vw;
  top: 8%;
  transform: rotate(-26deg) translateY(calc(var(--hero-progress) * -22px));
  width: 56vw;
}

.rhythm-flow-hero span:nth-child(2) {
  border-color: rgba(255, 255, 255, 0.14);
  border-right-color: transparent;
  height: 34vw;
  left: -12vw;
  top: 18%;
  transform: rotate(18deg) translateX(calc(var(--hero-progress) * 26px));
  width: 48vw;
}

.rhythm-flow-hero span:nth-child(3) {
  border-color: rgba(224, 0, 122, 0.2);
  height: 18vw;
  left: 42%;
  top: 64%;
  transform: rotate(31deg);
  width: 30vw;
}

.rhythm-section,
.dance-moments,
.rhythm-cta {
  position: relative;
}

.media-placeholder {
  background:
    radial-gradient(circle at 72% 18%, rgba(224, 0, 122, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 35%),
    linear-gradient(180deg, #191919, #050505);
  border: 1px solid rgba(255, 255, 255, 0.34);
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.media-placeholder::before {
  background: rgba(247, 244, 242, 0.9);
  content: "";
  height: 56%;
  left: 50%;
  opacity: 0.18;
  position: absolute;
  top: 18%;
  transform: translateX(-50%) rotate(-8deg);
  width: 22%;
}

.media-placeholder::after {
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-left: 0;
  border-top: 0;
  content: "";
  height: 38%;
  left: 38%;
  opacity: 0.28;
  position: absolute;
  top: 30%;
  transform: rotate(33deg);
  width: 36%;
}

.media-placeholder span {
  background: var(--off-white);
  bottom: 1rem;
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 900;
  left: 1rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 0.7rem;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.section-soft .media-placeholder span,
.section-pink .media-placeholder span,
.dance-moments .media-placeholder span {
  box-shadow: var(--shadow-soft);
}

.hero-media {
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
  height: 100%;
}

.vertical-note {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  position: absolute;
  right: 2.1rem;
  text-transform: uppercase;
  top: 7rem;
  transform: rotate(90deg);
  transform-origin: left top;
  z-index: 6;
}

.marquee {
  background: var(--magenta);
  color: var(--white);
  overflow: hidden;
  padding: 0.7rem 0;
  white-space: nowrap;
}

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

.marquee span {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 0.85;
  padding-right: 1rem;
}

.section-grid,
.section-heading,
.portfolio-grid,
.filter-bar,
.shop-layout,
.journey-grid,
.credentials-grid,
.experience-list,
.booking-call-layout,
.reel-layout,
.style-selector-shell,
.faq-list,
.contact-layout,
.footer-inner,
.final-cta-inner {
  margin: 0 auto;
  max-width: var(--max);
}

.two-col,
.contact-layout,
.shop-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.portrait-media {
  aspect-ratio: 4 / 5;
}

.about-copy p,
.section-heading p,
.shop-intro p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  max-width: 640px;
}

.section-dark .section-heading p,
.section-dark .contact-copy p,
.section-dark .about-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.stats-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2rem 0 0;
}

.stats-strip div {
  padding: 1rem 0;
}

.stats-strip dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-strip dd {
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1;
  margin: 0;
}

.section-heading {
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.43fr);
}

.editorial-cards,
.info-grid,
.program-grid,
.testimonial-grid,
.product-grid,
.journey-grid,
.credentials-grid {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: var(--max);
}

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

.credential-card {
  background:
    linear-gradient(135deg, rgba(224, 0, 122, 0.08), transparent 38%),
    var(--white);
  border: 1px solid var(--line);
  min-height: 360px;
  padding: clamp(1rem, 2vw, 1.35rem);
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease;
}

.credential-card:hover {
  border-color: rgba(224, 0, 122, 0.45);
  transform: translateY(-5px);
}

.credential-meta {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.credential-card h3 {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 0.9;
  margin-bottom: 1rem;
}

.credential-card p {
  color: var(--muted);
  margin: 0;
}

.experience {
  background: var(--off-white);
}

.experience-list {
  border-top: 1px solid var(--line);
}

.experience-item {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: 82px minmax(0, 0.78fr) minmax(0, 1fr);
  padding: clamp(1.2rem, 3vw, 2rem) 0;
}

.experience-index {
  color: var(--magenta);
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.82;
}

.experience-main h3 {
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
}

.experience-date,
.experience-place,
.experience-copy span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.experience-date {
  color: var(--magenta);
  margin: 0 0 0.55rem;
}

.experience-place {
  color: var(--muted);
  margin: 0.65rem 0 0;
}

.experience-copy p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.experience-copy span {
  border-left: 3px solid var(--magenta);
  display: inline-block;
  padding-left: 0.8rem;
}

.journey {
  background: var(--off-white);
}

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

.journey-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  min-height: 340px;
  overflow: hidden;
  padding: 1.2rem;
  position: relative;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.journey-card::before {
  background: var(--magenta);
  content: "";
  height: 3px;
  left: 1.2rem;
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 220ms ease;
}

.journey-number {
  color: rgba(5, 5, 5, 0.2);
  font-family: var(--display);
  font-size: 5rem;
  line-height: 0.8;
}

.journey-card h3 {
  align-self: end;
  font-size: clamp(2.5rem, 4.8vw, 4.7rem);
}

.journey-card p {
  color: var(--muted);
}

.journey-cta {
  align-self: end;
  color: var(--magenta);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.journey-card:hover {
  background: var(--black);
  border-color: rgba(224, 0, 122, 0.55);
  color: var(--white);
  transform: translateY(-7px);
}

.journey-card:hover::before {
  transform: scaleX(1);
}

.journey-card:hover p,
.journey-card:hover .journey-number {
  color: rgba(255, 255, 255, 0.58);
}

.performance-reel {
  overflow: hidden;
  position: relative;
}

.performance-reel::before {
  background:
    radial-gradient(circle at 76% 34%, rgba(224, 0, 122, 0.32), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.reel-layout {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  position: relative;
  z-index: 1;
}

.reel-copy p:not(.eyebrow):not(.style-line) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  max-width: 540px;
}

.reel-frame {
  border: 1px solid var(--line-light);
  padding: clamp(0.8rem, 2vw, 1.2rem);
}

.video-placeholder {
  align-items: center;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(224, 0, 122, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(5, 5, 5, 0.95)),
    var(--black);
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.video-placeholder::before,
.video-placeholder::after {
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  position: absolute;
}

.video-placeholder::before {
  inset: 10%;
  transform: rotate(-4deg);
}

.video-placeholder::after {
  border-color: rgba(224, 0, 122, 0.44);
  height: 120%;
  left: 50%;
  top: -10%;
  transform: rotate(16deg);
  width: 1px;
}

.play-button {
  align-items: center;
  background: var(--magenta);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 1.25rem;
  height: clamp(74px, 10vw, 112px);
  justify-content: center;
  padding-left: 0.15rem;
  position: relative;
  width: clamp(74px, 10vw, 112px);
  z-index: 1;
}

.video-label {
  background: var(--off-white);
  bottom: 1.2rem;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  left: 1.2rem;
  letter-spacing: 0.06em;
  padding: 0.65rem 0.8rem;
  position: absolute;
  text-transform: uppercase;
}

.editorial-cards {
  grid-template-columns: repeat(3, 1fr);
}

.style-card,
.info-card,
.program-card,
.testimonial-card,
.product-card,
.service-item,
.portfolio-item {
  border: 1px solid var(--line);
  position: relative;
}

.style-card {
  background: var(--off-white);
  min-height: 300px;
  overflow: hidden;
  padding: 1.2rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.style-card::before {
  color: rgba(224, 0, 122, 0.16);
  content: attr(data-index);
  font-family: var(--display);
  font-size: 13rem;
  line-height: 0.8;
  position: absolute;
  right: -0.5rem;
  top: -0.3rem;
}

.style-card h3,
.style-card p,
.style-card a {
  position: relative;
  z-index: 1;
}

.style-card h3 {
  margin-top: 8rem;
}

.style-card p {
  color: var(--muted);
}

.style-card:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-6px);
}

.style-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.style-selector {
  overflow: hidden;
}

.style-selector-shell {
  border: 1px solid var(--line-light);
  display: grid;
  gap: 1rem;
  grid-template-columns: 260px minmax(0, 1fr);
  padding: 1rem;
}

.style-tabs {
  display: grid;
  gap: 0.55rem;
}

.style-tab {
  background: transparent;
  border: 1px solid var(--line-light);
  color: var(--white);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  min-height: 48px;
  padding: 0.8rem 1rem;
  text-align: left;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.style-tab[aria-selected="true"],
.style-tab:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--white);
}

.style-panel {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  min-height: 440px;
}

.style-panel-copy {
  align-content: center;
  display: grid;
  padding: clamp(1rem, 3vw, 2rem);
}

.style-panel-copy h3 {
  font-size: clamp(4rem, 12vw, 10rem);
}

.style-panel-copy p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}

.style-use-case {
  border-left: 3px solid var(--magenta);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 1.2rem 0;
  padding-left: 1rem;
  text-transform: uppercase;
}

.style-selector-media {
  min-height: 440px;
}

.service-list {
  border-top: 1px solid var(--line-light);
  margin: 0 auto;
  max-width: var(--max);
}

.service-item {
  align-items: center;
  border-color: var(--line-light);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 110px minmax(0, 0.5fr) minmax(0, 1fr);
  padding: 1.35rem 0;
}

.service-number {
  color: var(--magenta);
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1;
}

.service-item h3 {
  font-size: clamp(2rem, 4vw, 4.8rem);
}

.service-item p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.section-action {
  margin: 2rem auto 0;
  max-width: var(--max);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.filter-button {
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 0.7rem 0.85rem;
  text-transform: uppercase;
}

.filter-button[aria-pressed="true"],
.filter-button:hover {
  background: var(--black);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.dance-moments {
  background:
    linear-gradient(180deg, var(--off-white), #fff 46%, var(--off-white)),
    var(--off-white);
  overflow: hidden;
}

.rhythm-flow-gallery {
  opacity: 0.9;
}

.rhythm-flow-gallery span:nth-child(1) {
  border-color: rgba(224, 0, 122, 0.18);
  height: 520px;
  right: -180px;
  top: 120px;
  transform: rotate(-18deg);
  width: 720px;
}

.rhythm-flow-gallery span:nth-child(2) {
  border-color: rgba(5, 5, 5, 0.1);
  border-left-color: transparent;
  height: 420px;
  left: -240px;
  top: 520px;
  transform: rotate(24deg);
  width: 760px;
}

.portfolio-item {
  background: var(--black);
  color: var(--white);
  min-height: 320px;
  overflow: hidden;
  transform: translateY(0);
  transition: border-color 220ms ease, transform 220ms ease;
}

.portfolio-item:nth-child(3n + 1) {
  grid-row: span 2;
  min-height: 520px;
}

.portfolio-item:nth-child(4n + 2) {
  transform: translateY(34px);
}

.portfolio-item:hover {
  border-color: rgba(224, 0, 122, 0.68);
  transform: translateY(-8px) scale(1.012);
}

.portfolio-item:nth-child(4n + 2):hover {
  transform: translateY(24px) scale(1.012);
}

.moment-media-wrap {
  height: 100%;
  min-height: inherit;
  overflow: hidden;
}

.portfolio-thumb {
  height: 100%;
  min-height: inherit;
  transform: scale(1);
  transition: filter 280ms ease, transform 500ms ease;
}

.moment-video::before {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.07) 0,
      rgba(255, 255, 255, 0.07) 2px,
      transparent 2px,
      transparent 16px
    ),
    rgba(247, 244, 242, 0.9);
}

.portfolio-item:hover .portfolio-thumb {
  filter: contrast(1.08);
  transform: scale(1.055);
}

.portfolio-overlay {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
  bottom: 0;
  left: 0;
  padding: 4rem 1rem 1rem;
  position: absolute;
  right: 0;
  transform: translateY(8px);
  transition: background 220ms ease, transform 220ms ease;
}

.portfolio-item:hover .portfolio-overlay {
  background: linear-gradient(transparent, rgba(5, 5, 5, 0.92) 50%, rgba(224, 0, 122, 0.3));
  transform: translateY(0);
}

.portfolio-overlay h3 {
  font-size: 2.2rem;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}

.play-mark {
  align-items: center;
  background: var(--magenta);
  border-radius: 50%;
  display: flex;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  position: absolute;
  right: 1rem;
  top: 1rem;
  transition: transform 220ms ease;
  width: 48px;
}

.portfolio-item:hover .play-mark {
  transform: scale(1.12);
}

.shop-layout {
  align-items: start;
}

.shop-intro {
  position: sticky;
  top: 110px;
}

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

.product-card {
  background: var(--off-white);
  box-shadow: var(--shadow-soft);
  min-height: 430px;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-card:first-child {
  grid-column: 1 / -1;
}

.product-card:hover {
  border-color: rgba(224, 0, 122, 0.5);
  transform: translateY(-6px);
}

.product-card .media-placeholder {
  aspect-ratio: 4 / 3;
  min-height: auto;
}

.product-card:first-child .media-placeholder {
  aspect-ratio: 16 / 7;
}

.product-body {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.product-body h3 {
  font-size: 2.3rem;
}

.price {
  color: var(--magenta);
  font-weight: 900;
  margin: 0.3rem 0;
  text-transform: uppercase;
}

.product-body p,
.info-card p,
.program-card p,
.testimonial-card p {
  color: var(--muted);
}

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

.info-card,
.program-card,
.testimonial-card {
  background: var(--white);
  padding: clamp(1rem, 2vw, 1.25rem);
}

.info-card {
  min-height: 390px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.info-card:hover {
  border-color: rgba(224, 0, 122, 0.45);
  transform: translateY(-5px);
}

.info-card h3,
.program-card h3 {
  font-size: 2.45rem;
}

.meta-list {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.45rem;
  margin: 1.2rem 0;
  padding-top: 1rem;
}

.meta-list span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.program-card {
  background: transparent;
  border-color: var(--line-light);
  color: var(--white);
  min-height: 360px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.program-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(224, 0, 122, 0.55);
  transform: translateY(-5px);
}

.program-card p {
  color: rgba(255, 255, 255, 0.72);
}

.program-card .program-audience {
  border-left: 3px solid var(--magenta);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin: 1rem 0;
  padding-left: 0.8rem;
  text-transform: uppercase;
}

.program-card .meta-list {
  border-color: var(--line-light);
}

.mini-marquee {
  margin: calc(clamp(4rem, 8vw, 7.5rem) * -1) -1rem 4rem;
}

.faq {
  background: var(--off-white);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  list-style: none;
  padding: 1.25rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span:first-child {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.faq-icon {
  align-items: center;
  border: 1px solid var(--line);
  color: var(--magenta);
  display: flex;
  flex: 0 0 44px;
  font-size: 1.4rem;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.faq-item[open] .faq-icon {
  background: var(--magenta);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--muted);
  margin: 0;
  max-width: 760px;
  padding: 0 0 1.4rem;
}

.booking-call {
  background:
    linear-gradient(135deg, rgba(224, 0, 122, 0.08), transparent 34%),
    var(--soft);
  overflow: hidden;
}

.booking-call-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.booking-call-info {
  position: sticky;
  top: 110px;
}

.booking-call-info h2 {
  font-size: clamp(4rem, 9vw, 8rem);
  max-width: 620px;
}

.booking-call-info p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  max-width: 560px;
}

.booking-call-points {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.booking-call-points li {
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 0.85rem 0 0.85rem 1.15rem;
  position: relative;
  text-transform: uppercase;
}

.booking-call-points li:last-child {
  border-bottom: 0;
}

.booking-call-points li::before {
  background: var(--magenta);
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 1.35rem;
  width: 7px;
}

.joice-profile-card {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
  grid-template-columns: 84px 1fr;
  max-width: 480px;
  padding: 1rem;
}

.profile-avatar {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 34%, rgba(247, 244, 242, 0.92) 0 18%, transparent 19%),
    linear-gradient(145deg, rgba(224, 0, 122, 0.35), transparent 45%),
    linear-gradient(180deg, #202020, #050505);
  border: 2px solid var(--magenta);
  border-radius: 50%;
}

.joice-profile-card h3 {
  font-size: 2.35rem;
}

.joice-profile-card p {
  font-size: 0.82rem;
  font-weight: 800;
  margin: 0.2rem 0;
}

.joice-profile-card span {
  color: var(--magenta);
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-call-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(5, 5, 5, 0.12);
  overflow: hidden;
}

.booking-progress {
  background: var(--black);
  color: rgba(255, 255, 255, 0.56);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, 1fr);
}

.booking-progress span {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 0.85rem 0.75rem;
  text-align: center;
  text-transform: uppercase;
}

.booking-progress span:last-child {
  border-right: 0;
}

.booking-progress .is-active {
  background: rgba(224, 0, 122, 0.22);
  color: var(--white);
}

.booking-call-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
}

.scheduler-main,
.scheduler-side {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.scheduler-main {
  border-right: 1px solid var(--line);
}

.scheduler-block + .scheduler-block {
  margin-top: 1.4rem;
}

.enquiry-type-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.enquiry-type-button,
.calendar-nav,
.calendar-day,
.time-slot-button {
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.enquiry-type-button {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  min-height: 40px;
  padding: 0.65rem 0.85rem;
  text-transform: uppercase;
}

.enquiry-type-button[aria-pressed="true"],
.enquiry-type-button:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.calendar-header {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 44px 1fr 44px;
  margin-bottom: 1rem;
}

.calendar-header h3 {
  font-size: 2.4rem;
  text-align: center;
}

.calendar-header p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0.2rem 0 0;
  text-align: center;
  text-transform: uppercase;
}

.calendar-nav {
  align-items: center;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--magenta);
  display: flex;
  font-size: 1.6rem;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.calendar-nav:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--white);
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  gap: 0.4rem;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 0.45rem;
  text-align: center;
  text-transform: uppercase;
}

.calendar-empty {
  min-height: 42px;
}

.calendar-day {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  display: flex;
  font-weight: 900;
  justify-content: center;
  min-height: 42px;
}

.calendar-day.is-available {
  background: rgba(224, 0, 122, 0.09);
  border-color: rgba(224, 0, 122, 0.16);
}

.calendar-day.is-available:hover,
.calendar-day[aria-pressed="true"] {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--white);
  transform: translateY(-2px);
}

.calendar-day.is-unavailable {
  color: rgba(16, 16, 16, 0.26);
  cursor: not-allowed;
}

.timezone-note {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  margin: 1rem 0 0;
}

.timezone-note::before {
  color: var(--magenta);
  content: "Timezone: ";
}

.time-slot-grid {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.65rem;
}

.time-slot-button {
  background: var(--off-white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  min-height: 46px;
  padding: 0.75rem;
}

.time-slot-button:hover,
.time-slot-button[aria-pressed="true"] {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.time-slot-button:disabled {
  color: rgba(16, 16, 16, 0.35);
  cursor: not-allowed;
}

.call-details-form {
  display: grid;
  gap: 0.9rem;
}

.booking-summary {
  background: var(--off-white);
  border: 1px solid var(--line);
  padding: 1rem;
}

.summary-label {
  color: var(--magenta);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.booking-summary dl {
  display: grid;
  gap: 0.6rem;
  margin: 0;
}

.booking-summary div {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 82px 1fr;
}

.booking-summary dt,
.booking-summary dd {
  margin: 0;
}

.booking-summary dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-summary dd {
  font-weight: 800;
}

.summary-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  margin: 1rem 0 0;
  padding-top: 0.8rem;
}

.booking-error {
  color: var(--magenta-dark);
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.booking-error:empty {
  display: none;
}

.booking-success {
  background: var(--black);
  color: var(--white);
  margin-top: 1rem;
  padding: 1.25rem;
}

.booking-success h3 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 0.7rem;
}

.booking-success p {
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}

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

.testimonial-card {
  background:
    linear-gradient(135deg, rgba(224, 0, 122, 0.1), transparent 36%),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  min-height: 360px;
  overflow: hidden;
  padding: 1.2rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.testimonial-card {
  grid-column: span 2;
}

.testimonial-card:nth-child(4),
.testimonial-card:nth-child(5) {
  grid-column: span 3;
}

.testimonial-card:nth-child(2),
.testimonial-card:nth-child(4) {
  margin-top: 3rem;
}

.testimonial-card:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-6px);
}

.review-topline {
  align-items: start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.stars {
  color: var(--magenta);
  display: block;
  font-size: clamp(1.65rem, 2.6vw, 2.6rem);
  letter-spacing: 0;
  line-height: 1;
}

.review-number {
  color: rgba(5, 5, 5, 0.22);
  font-family: var(--display);
  font-size: 4rem;
  line-height: 0.8;
}

.testimonial-card blockquote {
  border-top: 1px solid var(--line);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 1.8rem 0;
  padding-top: 1.4rem;
}

.testimonial-card:hover blockquote {
  border-color: var(--line-light);
}

.testimonial-card cite {
  display: block;
  font-family: var(--display);
  font-size: 2.3rem;
  font-style: normal;
  line-height: 0.9;
  text-transform: uppercase;
}

.testimonial-card figcaption span {
  color: var(--magenta);
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-top: 0.6rem;
  text-transform: uppercase;
}

.testimonial-card:hover p,
.testimonial-card:hover .review-number {
  color: rgba(255, 255, 255, 0.55);
}

.final-cta {
  overflow: hidden;
  padding: clamp(4rem, 10vw, 9rem) 1rem;
  position: relative;
  text-align: center;
}

.rhythm-flow-cta span:nth-child(1) {
  border-color: rgba(224, 0, 122, 0.32);
  height: 520px;
  left: 50%;
  top: -280px;
  transform: translateX(-50%) rotate(16deg);
  width: 940px;
}

.rhythm-flow-cta span:nth-child(2) {
  border-color: rgba(255, 255, 255, 0.16);
  height: 360px;
  left: 18%;
  top: 40%;
  transform: rotate(-22deg);
  width: 680px;
}

.final-cta h2 {
  margin: 0 auto 2rem;
  max-width: 960px;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta .hero-actions {
  justify-content: center;
}

.contact-layout {
  align-items: start;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.contact-copy h2 {
  font-size: clamp(3.6rem, 8vw, 7rem);
  max-width: 560px;
}

.contact-list {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.contact-list li {
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0;
}

.booking-form {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  padding: clamp(1rem, 3vw, 2rem);
}

.smart-booking-form {
  box-shadow: var(--shadow-soft);
}

.smart-booking-form > .form-row:first-child {
  grid-column: 1 / -1;
}

.dynamic-fields {
  display: contents;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row-full,
.form-button,
.form-trust {
  grid-column: 1 / -1;
}

.form-trust {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}

label {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: var(--off-white);
  border: 1px solid var(--line);
  min-height: 48px;
  padding: 0.75rem;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.nav-cta:focus-visible,
.menu-toggle:focus-visible,
.filter-button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(224, 0, 122, 0.35);
  outline-offset: 3px;
}

.footer {
  padding: 2.5rem 1rem;
}

.footer-inner {
  align-items: center;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr auto;
}

.footer p {
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.copyright {
  grid-column: 1 / -1;
}

.footer-admin-link {
  color: rgba(255, 255, 255, 0.58);
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-left: 0.85rem;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-admin-link:hover,
.footer-admin-link:focus-visible {
  color: var(--magenta);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}

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

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

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto auto;
  }

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

  .nav-links {
    background: var(--black);
    bottom: 0;
    color: var(--white);
    display: grid;
    gap: 0;
    left: 0;
    opacity: 0;
    overflow-y: auto;
    padding: 1rem;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 76px;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-links a {
    border-bottom: 1px solid var(--line-light);
    font-size: 1.15rem;
    padding: 1rem 0;
  }

  .mobile-book-link {
    color: var(--magenta);
    display: block;
  }

  .two-col,
  .split-heading,
  .shop-layout,
  .reel-layout,
  .booking-call-layout,
  .booking-call-grid,
  .style-selector-shell,
  .style-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .booking-call-info {
    position: static;
  }

  .scheduler-main {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .hero-poster {
    min-height: 760px;
  }

  .hero-title {
    font-size: clamp(10rem, 32vw, 20rem);
    top: 42%;
  }

  .hero-photo-placeholder {
    height: 54vh;
    min-height: 430px;
    top: 47%;
    width: min(94vw, 740px);
  }

  .hero-copy {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .shop-intro {
    position: static;
    transform: none;
  }

  .editorial-cards,
  .info-grid,
  .program-grid,
  .testimonial-grid,
  .journey-grid,
  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-item {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .experience-copy {
    grid-column: 2;
  }

  .style-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
  }

  .style-tab {
    flex: 0 0 auto;
    min-width: 150px;
    text-align: center;
  }

  .testimonial-card,
  .testimonial-card:nth-child(4),
  .testimonial-card:nth-child(5) {
    grid-column: auto;
  }

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

  .portfolio-item:nth-child(4n + 2) {
    transform: translateY(0);
  }

  .portfolio-item:nth-child(4n + 2):hover {
    transform: translateY(-8px) scale(1.012);
  }

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

  .product-card:first-child {
    grid-column: auto;
  }

  .service-item {
    grid-template-columns: 74px 1fr;
  }

  .service-item p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 68px;
  }

  .brand-subtitle,
  .nav-cta {
    display: none;
  }

  .nav-links {
    top: 68px;
  }

  .hero {
    min-height: auto;
    padding: 0.8rem;
  }

  h2 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-poster {
    min-height: 780px;
    padding: 1rem;
  }

  .hero-kicker {
    align-items: flex-start;
    display: grid;
    gap: 0.1rem;
  }

  .hero-title {
    font-size: clamp(8rem, 39vw, 11.5rem);
    top: 32%;
    transform: translate(-50%, -50%) scaleX(1.14);
  }

  .hero-photo-placeholder {
    height: 390px;
    min-height: 390px;
    top: 47%;
    transform:
      translate(
        calc(-50% + (var(--hero-progress) * 14px)),
        calc(-45% + (var(--hero-progress) * -8px))
      )
      rotate(-9deg);
    width: 108vw;
  }

  .hero-photo-placeholder span {
    display: none;
  }

  .pose-leg-one {
    left: 7%;
    width: 27%;
  }

  .pose-leg-two {
    left: 28%;
    width: 22%;
  }

  .pose-body {
    left: 50%;
    width: 32%;
  }

  .pose-head {
    left: 76%;
    width: 15%;
  }

  .hero-copy {
    bottom: 1rem;
    left: 1rem;
    max-width: calc(100% - 2rem);
    right: 1rem;
  }

  .hero-subtitle {
    font-size: 1.35rem;
    max-width: 330px;
  }

  .vertical-note {
    display: none;
  }

  .hero-actions,
  .button,
  .nav-cta {
    width: 100%;
  }

  .video-label {
    display: none;
  }

  .style-selector-shell {
    padding: 0.75rem;
  }

  .style-panel {
    min-height: auto;
  }

  .style-selector-media {
    min-height: 320px;
  }

  .faq-item summary {
    align-items: flex-start;
  }

  .faq-icon {
    flex-basis: 40px;
    height: 40px;
  }

  .product-card:first-child .media-placeholder {
    aspect-ratio: 4 / 3;
  }

  .editorial-cards,
  .info-grid,
  .program-grid,
  .testimonial-grid,
  .portfolio-grid,
  .journey-grid,
  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .experience-item {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    grid-column: auto;
  }

  .journey-card {
    min-height: 260px;
  }

  .portfolio-item:nth-child(3n + 1) {
    min-height: 380px;
  }

  .rhythm-flow-gallery span,
  .rhythm-flow-cta span {
    opacity: 0.55;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-item p {
    grid-column: auto;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-progress {
    display: flex;
    overflow-x: auto;
  }

  .booking-progress span {
    flex: 0 0 auto;
    min-width: 112px;
  }

  .joice-profile-card {
    grid-template-columns: 68px 1fr;
  }

  .calendar-header {
    grid-template-columns: 40px 1fr 40px;
  }

  .calendar-nav {
    height: 40px;
    width: 40px;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 0.25rem;
  }

  .calendar-day,
  .calendar-empty {
    min-height: 40px;
  }

  .time-slot-grid {
    grid-template-columns: 1fr;
  }

  .booking-summary div {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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