/*
Theme Name: HiveBoom Theme
Author: HiveBoom
Version: 1.0
*/

:root {
  --red: #f31624;
  --red-deep: #b70715;
  --ink: #07070a;
  --soft-ink: #24242c;
  --plum: #22091f;
  --purple: #4a123f;
  --paper: #ffffff;
  --surface: #f7f7fa;
  --surface-strong: #efeff4;
  --muted: #696b76;
  --line: rgba(7, 7, 10, 0.1);
  --line-strong: rgba(7, 7, 10, 0.16);
  --shadow: 0 24px 70px rgba(18, 18, 24, 0.12);
  --shadow-strong: 0 30px 90px rgba(18, 18, 24, 0.2);
  --radius: 8px;
  --container: 1180px;
  --section-space: 112px;
  --gap: 24px;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

::selection {
  background: var(--red);
  color: var(--paper);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 32px), 1220px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  padding: 10px 12px;
  border: 1px solid rgba(7, 7, 10, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 55px rgba(7, 7, 10, 0.1);
  backdrop-filter: blur(20px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(243, 22, 36, 0.22);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 60px rgba(7, 7, 10, 0.14);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.logo-plate,
.footer-logo,
.cta-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 7, 10, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(7, 7, 10, 0.08);
  overflow: hidden;
}

.logo-plate::after,
.footer-logo::after,
.cta-logo::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -72%;
  width: 54%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.78) 48%, transparent 100%);
  transform: skewX(-18deg);
  animation: logoSheen 7.5s var(--ease-premium) infinite;
  pointer-events: none;
}

.logo-plate {
  width: 214px;
  min-height: 52px;
  padding: 9px 14px;
}

.logo-plate img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: var(--radius);
  color: var(--soft-ink);
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--red);
  background: rgba(243, 22, 36, 0.07);
  outline: none;
}

.main-nav .nav-cta {
  margin-left: 6px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 14px 28px rgba(243, 22, 36, 0.28);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  color: var(--paper);
  background: linear-gradient(135deg, #ff2632, var(--red-deep));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 20px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.hero {
  position: relative;
  --spot-x: 58%;
  --spot-y: 52%;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  --scroll-shift: 0px;
  min-height: 84svh;
  display: flex;
  align-items: center;
  padding: 108px max(24px, calc((100vw - var(--container)) / 2)) 32px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0.72) 100%),
    radial-gradient(ellipse at 76% 28%, rgba(243, 22, 36, 0.18), transparent 38%),
    radial-gradient(ellipse at 16% 84%, rgba(74, 18, 63, 0.13), transparent 42%),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 48% 105%, rgba(7, 7, 10, 0.08), transparent 52%),
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(243, 22, 36, 0.16), rgba(243, 22, 36, 0.05) 24%, transparent 44%);
  transition: background 240ms ease;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 19vw;
  min-width: 170px;
  background: linear-gradient(180deg, var(--ink), var(--plum));
  clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.96;
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  margin: 0 auto;
}

.dance-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(calc(var(--hero-shift-x) * -0.24), calc(var(--scroll-shift) + var(--hero-shift-y) * -0.2), 0);
  transition: transform 700ms var(--ease-premium);
  will-change: transform;
}

.dance-trail {
  position: absolute;
  display: block;
  height: 150px;
  border-radius: 50%;
  opacity: 0.72;
  filter: drop-shadow(0 18px 34px rgba(243, 22, 36, 0.12));
  transform-origin: center;
  mix-blend-mode: multiply;
}

.dance-trail::before,
.dance-trail::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: rotate(-7deg);
}

.dance-trail::before {
  border-top: 3px solid rgba(243, 22, 36, 0.28);
  border-bottom: 1px solid rgba(74, 18, 63, 0.16);
}

.dance-trail::after {
  inset: 28px 18px;
  border-top: 1px solid rgba(243, 22, 36, 0.16);
}

.trail-one {
  left: -9vw;
  top: 52%;
  width: min(620px, 54vw);
  transform: rotate(-18deg);
  animation: danceFloat 8s ease-in-out infinite;
}

.trail-two {
  right: 9vw;
  top: 7%;
  width: min(520px, 42vw);
  transform: rotate(15deg) scaleX(-1);
  opacity: 0.54;
  animation: danceFloat 9s ease-in-out infinite reverse;
}

.trail-three {
  right: -12vw;
  bottom: 4%;
  width: min(760px, 56vw);
  transform: rotate(-9deg);
  opacity: 0.48;
  animation: danceFloat 10s ease-in-out infinite;
}

.step-print {
  position: absolute;
  width: 34px;
  height: 58px;
  opacity: 0.16;
  transform: rotate(var(--step-angle));
  animation: stepPulse 4.8s ease-in-out infinite;
}

.step-print::before,
.step-print::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
}

.step-print::before {
  top: 0;
  width: 18px;
  height: 26px;
  border-radius: 50% 50% 46% 46%;
}

.step-print::after {
  bottom: 0;
  width: 24px;
  height: 28px;
  border-radius: 56% 56% 44% 44%;
}

.step-one {
  --step-angle: -24deg;
  left: 42%;
  top: 21%;
}

.step-two {
  --step-angle: 18deg;
  left: 49%;
  top: 32%;
  animation-delay: 0.5s;
}

.step-three {
  --step-angle: -18deg;
  left: 54%;
  top: 45%;
  animation-delay: 1s;
}

.step-four {
  --step-angle: 20deg;
  left: 60%;
  top: 56%;
  animation-delay: 1.5s;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 6.6vw, 6.8rem);
  line-height: 0.92;
  font-weight: 700;
  text-wrap: balance;
}

.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--soft-ink);
  font-size: clamp(1.24rem, 2vw, 1.55rem);
  line-height: 1.45;
  font-weight: 850;
}

.hero-text {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  overflow: hidden;
  transition: transform 260ms var(--ease-premium), box-shadow 260ms var(--ease-premium), background 260ms ease, color 260ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -120% auto -120% -70%;
  width: 58%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.44) 50%, transparent 100%);
  transform: skewX(-18deg);
  opacity: 0;
  transition: opacity 220ms ease;
}

.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  animation: buttonSheen 900ms var(--ease-premium);
}

.button-primary {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--paper);
  box-shadow: 0 18px 34px rgba(243, 22, 36, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 44px rgba(243, 22, 36, 0.38);
}

.button-light {
  border-color: rgba(7, 7, 10, 0.12);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(7, 7, 10, 0.08);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: rgba(243, 22, 36, 0.28);
  color: var(--red);
}

.hero-visual {
  position: relative;
  min-width: 0;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0);
  transition: transform 700ms var(--ease-premium);
  will-change: transform;
}

.hero-photo-frame {
  position: relative;
  height: min(58svh, 580px);
  min-height: 452px;
  padding: 10px;
  border: 1px solid rgba(7, 7, 10, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  transform: perspective(1200px) rotateX(var(--hero-tilt-y)) rotateY(var(--hero-tilt-x));
  transform-style: preserve-3d;
  transition: transform 700ms var(--ease-premium), box-shadow 700ms var(--ease-premium);
  will-change: transform;
}

.hero-photo-frame:hover {
  box-shadow: 0 38px 110px rgba(18, 18, 24, 0.26);
}

.hero-photo-frame::before,
.hero-photo-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 118px;
  height: 118px;
  border-color: var(--red);
  opacity: 0.9;
  pointer-events: none;
}

.hero-photo-frame::before {
  top: 22px;
  left: 22px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.hero-photo-frame::after {
  right: 22px;
  bottom: 22px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  animation: heroBreath 9s ease-in-out infinite;
}

.hero-note {
  position: absolute;
  z-index: 4;
  width: 204px;
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 16px 18px;
  border: 1px solid rgba(7, 7, 10, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(7, 7, 10, 0.16);
  backdrop-filter: blur(14px);
  animation: noteFloat 6s ease-in-out infinite;
}

.hero-note span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-note strong {
  color: var(--ink);
  font-size: 1rem;
}

.hero-note-top {
  top: 34px;
  right: -18px;
}

.hero-note-bottom {
  left: -18px;
  bottom: 34px;
  animation-delay: -2.4s;
}

.stats-section {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 32px), var(--container));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -22px auto 0;
  overflow: hidden;
  border: 1px solid rgba(7, 7, 10, 0.08);
  border-radius: var(--radius);
  background: rgba(7, 7, 10, 0.08);
  box-shadow: var(--shadow);
}

.stat {
  position: relative;
  --glow-x: 50%;
  --glow-y: 50%;
  min-height: 126px;
  display: grid;
  align-content: center;
  padding: 26px;
  background: var(--paper);
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(243, 22, 36, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.stat:hover::before {
  opacity: 1;
}

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

.stat strong {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--ink);
  font-size: 2.25rem;
  line-height: 1;
}

.stat strong .suffix {
  color: var(--red);
}

.stat > span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.section,
.signature,
.process,
.testimonials,
.cta-strip,
.contact {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 46px;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -20px;
}

.section-head h2,
.signature-copy h2,
.process h2,
.testimonials h2,
.cta-strip h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  line-height: 1.02;
  font-weight: 700;
  text-wrap: balance;
}

.section-head p:not(.eyebrow),
.signature-copy p,
.contact-info > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.services {
  padding-top: 92px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
}

.service-card,
.benefit,
.testimonial,
.step {
  border-radius: var(--radius);
}

.service-card {
  position: relative;
  --glow-x: 50%;
  --glow-y: 50%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(7, 7, 10, 0.08);
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(7, 7, 10, 0.08);
  transition: transform 320ms var(--ease-premium), box-shadow 320ms var(--ease-premium), border-color 320ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(243, 22, 36, 0.13), transparent 38%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

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

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(243, 22, 36, 0.24);
  box-shadow: 0 28px 70px rgba(7, 7, 10, 0.13);
}

.service-media {
  position: relative;
  z-index: 1;
  height: 218px;
  overflow: hidden;
  background: var(--surface-strong);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.045);
}

.service-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.service-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-mark {
  color: var(--red);
  font-weight: 950;
  font-size: 0.95rem;
}

.service-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(7, 7, 10, 0.08));
}

.service-card h3 {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 1.32rem;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.service-card a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--ink);
  font-weight: 900;
}

.service-card a::after {
  content: " ->";
  color: var(--red);
}

.signature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 52px;
  padding: 56px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 7, 10, 0.98), rgba(34, 9, 31, 0.97)),
    var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.signature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 80%, rgba(243, 22, 36, 0.28), transparent 38%),
    radial-gradient(ellipse at 82% 22%, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(125deg, transparent 0 48%, rgba(243, 22, 36, 0.12) 48% 68%, transparent 68% 100%);
}

.signature-media,
.signature-copy {
  position: relative;
  z-index: 1;
}

.signature-media {
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
}

.signature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.signature-copy h2 {
  color: var(--paper);
}

.signature-copy p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.74);
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.style-grid span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  font-weight: 900;
}

.benefits {
  padding-top: var(--section-space);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
}

.benefit {
  position: relative;
  --glow-x: 50%;
  --glow-y: 50%;
  min-height: 252px;
  padding: 28px;
  border: 1px solid rgba(7, 7, 10, 0.08);
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(7, 7, 10, 0.07);
  overflow: hidden;
  transition: transform 300ms var(--ease-premium), box-shadow 300ms var(--ease-premium), border-color 300ms ease;
}

.benefit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(243, 22, 36, 0.11), transparent 40%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.benefit:hover::before {
  opacity: 1;
}

.benefit:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 22, 36, 0.2);
  box-shadow: 0 26px 60px rgba(7, 7, 10, 0.11);
}

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

.icon-box {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(243, 22, 36, 0.08);
  color: var(--red);
  transition: transform 300ms var(--ease-premium), background 300ms ease;
}

.benefit:hover .icon-box {
  transform: rotate(-5deg) scale(1.08);
  background: rgba(243, 22, 36, 0.12);
}

.benefit svg,
.contact-list svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit h3 {
  margin: 26px 0 0;
  color: var(--ink);
  font-size: 1.13rem;
}

.benefit p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.process {
  padding: 0 0 var(--section-space);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
  margin-top: 46px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 22, 36, 0), var(--red), rgba(7, 7, 10, 0.12));
}

.step {
  position: relative;
  min-height: 222px;
  padding: 0 20px 28px;
  text-align: center;
}

.step span {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(243, 22, 36, 0.18);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--red);
  font-size: 1.55rem;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(7, 7, 10, 0.08);
  transition: transform 300ms var(--ease-premium), box-shadow 300ms ease, background 300ms ease, color 300ms ease;
}

.step:hover span {
  transform: translateY(-5px) rotate(-2deg);
  background: linear-gradient(135deg, var(--red), var(--purple));
  color: var(--paper);
  box-shadow: 0 20px 44px rgba(243, 22, 36, 0.24);
}

.step h3 {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 1.1rem;
}

.step p {
  margin: 12px auto 0;
  max-width: 230px;
  color: var(--muted);
  line-height: 1.65;
}

.testimonials {
  padding: 82px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.testimonial {
  position: relative;
  --glow-x: 50%;
  --glow-y: 50%;
  min-height: 288px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid rgba(7, 7, 10, 0.08);
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(7, 7, 10, 0.07);
  overflow: hidden;
  transition: transform 300ms var(--ease-premium), box-shadow 300ms var(--ease-premium), border-color 300ms ease;
}

.testimonial::before {
  content: "\"";
  position: absolute;
  right: 28px;
  top: -26px;
  color: rgba(243, 22, 36, 0.14);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8rem;
  line-height: 1;
}

.testimonial::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(243, 22, 36, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 22, 36, 0.18);
  box-shadow: 0 26px 60px rgba(7, 7, 10, 0.1);
}

.testimonial:hover::after {
  opacity: 1;
}

.testimonial p {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
  color: var(--soft-ink);
  font-size: 1rem;
  line-height: 1.8;
}

.testimonial strong {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--ink);
  font-size: 1.02rem;
}

.testimonial span {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 7px;
  color: var(--muted);
}

.cta-strip {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 72px;
  padding: 30px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(243, 22, 36, 0.96), rgba(74, 18, 63, 0.98)),
    var(--red);
  color: var(--paper);
  box-shadow: var(--shadow-strong);
}

.cta-logo {
  width: 220px;
  min-height: 72px;
  padding: 12px 16px;
}

.cta-logo img {
  width: 100%;
  height: auto;
}

.cta-strip .eyebrow {
  margin-bottom: 10px;
  color: var(--paper);
}

.cta-strip h2 {
  max-width: 720px;
  color: var(--paper);
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
}

.faq {
  padding-top: var(--section-space);
}

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

.faq-list details {
  position: relative;
  --glow-x: 50%;
  --glow-y: 50%;
  border: 1px solid rgba(7, 7, 10, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(7, 7, 10, 0.06);
  overflow: hidden;
  transition: transform 280ms var(--ease-premium), box-shadow 280ms var(--ease-premium), border-color 280ms ease;
}

.faq-list details::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(243, 22, 36, 0.1), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.faq-list details:hover {
  transform: translateY(-3px);
  border-color: rgba(243, 22, 36, 0.22);
  box-shadow: 0 20px 46px rgba(7, 7, 10, 0.08);
}

.faq-list details:hover::before {
  opacity: 1;
}

.faq-list summary {
  position: relative;
  z-index: 1;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.faq-list details[open] summary {
  background: var(--ink);
  color: var(--paper);
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--paper);
  color: var(--red);
}

.faq-list p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.68fr);
  gap: 48px;
  padding: var(--section-space) 0;
}

.contact-info {
  align-self: center;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-list a,
.contact-list > span {
  position: relative;
  --glow-x: 50%;
  --glow-y: 50%;
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(7, 7, 10, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--soft-ink);
  box-shadow: 0 12px 30px rgba(7, 7, 10, 0.05);
  overflow: hidden;
  transition: border-color 240ms ease, transform 280ms var(--ease-premium), box-shadow 280ms var(--ease-premium);
}

.contact-list a::before,
.contact-list > span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(243, 22, 36, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.contact-list a:hover::before,
.contact-list > span:hover::before {
  opacity: 1;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  border-color: rgba(243, 22, 36, 0.34);
  transform: translateX(4px);
  box-shadow: 0 18px 42px rgba(7, 7, 10, 0.09);
  outline: none;
}

.contact-list svg {
  position: relative;
  z-index: 1;
  color: var(--red);
  flex: 0 0 auto;
}

.contact-list span span,
.contact-list a span {
  position: relative;
  z-index: 1;
}

.contact-form {
  position: relative;
  --glow-x: 50%;
  --glow-y: 50%;
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(7, 7, 10, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(243, 22, 36, 0.11), transparent 42%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.contact-form:hover::before {
  opacity: 1;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--soft-ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 7, 10, 0.13);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(243, 22, 36, 0.12);
}

.contact-form .button {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.courses-hero {
  position: relative;
  min-height: 84svh;
  display: flex;
  align-items: center;
  padding: 118px max(24px, calc((100vw - var(--container)) / 2)) 62px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0.7) 100%),
    radial-gradient(ellipse at 74% 22%, rgba(243, 22, 36, 0.2), transparent 40%),
    radial-gradient(ellipse at 12% 88%, rgba(74, 18, 63, 0.15), transparent 42%),
    var(--paper);
  isolation: isolate;
}

.courses-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 22vw;
  min-width: 180px;
  background: linear-gradient(180deg, var(--ink), var(--plum));
  clip-path: polygon(42% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.95;
}

.courses-hero-grid {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: clamp(38px, 5vw, 76px);
  margin: 0 auto;
}

.courses-hero-copy {
  max-width: 680px;
}

.courses-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 6.1vw, 6.4rem);
  line-height: 0.94;
  font-weight: 700;
  text-wrap: balance;
}

.courses-hero-visual {
  position: relative;
  min-width: 0;
}

.course-photo-stack {
  position: relative;
  min-height: 620px;
}

.course-photo-main,
.course-photo-accent {
  position: absolute;
  border: 10px solid var(--paper);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-strong);
}

.course-photo-main {
  right: 0;
  top: 0;
  width: min(520px, 100%);
  height: 480px;
  object-position: center;
  animation: heroBreath 10s ease-in-out infinite;
}

.course-photo-accent {
  left: 0;
  bottom: 0;
  width: min(310px, 56%);
  height: 245px;
  object-position: center;
}

.course-floating-note {
  position: absolute;
  right: 24px;
  bottom: 54px;
  width: 235px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(7, 7, 10, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(7, 7, 10, 0.16);
  backdrop-filter: blur(14px);
  animation: noteFloat 6s ease-in-out infinite;
}

.course-floating-note span,
.course-program span,
.course-fit-card span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.course-floating-note strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.course-intro-strip {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 32px), var(--container));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -26px auto 0;
  overflow: hidden;
  border: 1px solid rgba(7, 7, 10, 0.08);
  border-radius: var(--radius);
  background: rgba(7, 7, 10, 0.08);
  box-shadow: var(--shadow);
}

.course-metric {
  min-height: 124px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 26px;
  background: var(--paper);
}

.course-metric strong {
  color: var(--red);
  font-size: 1.95rem;
  line-height: 1;
}

.course-metric span {
  color: var(--ink);
  font-weight: 900;
}

.course-program-grid {
  display: grid;
  gap: 24px;
}

.course-program {
  position: relative;
  --glow-x: 50%;
  --glow-y: 50%;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 7, 10, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(7, 7, 10, 0.08);
  transition: transform 320ms var(--ease-premium), box-shadow 320ms var(--ease-premium), border-color 320ms ease;
}

.course-program::before,
.course-style::before,
.course-fit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(243, 22, 36, 0.13), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.course-program:hover,
.course-style:hover,
.course-fit-card:hover {
  transform: translateY(-7px);
  border-color: rgba(243, 22, 36, 0.22);
  box-shadow: 0 28px 70px rgba(7, 7, 10, 0.13);
}

.course-program:hover::before,
.course-style:hover::before,
.course-fit-card:hover::before {
  opacity: 1;
}

.course-program img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.course-program > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 46px);
}

.course-program h3,
.course-fit-card h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.course-program p,
.course-fit-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.course-program ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.course-program li {
  position: relative;
  padding-left: 26px;
  color: var(--soft-ink);
  font-weight: 800;
}

.course-program li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--purple));
}

.course-program a {
  margin-top: auto;
  padding-top: 28px;
  color: var(--ink);
  font-weight: 950;
}

.course-program a::after {
  content: " ->";
  color: var(--red);
}

.course-styles {
  position: relative;
  width: min(calc(100% - 32px), var(--container));
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  align-items: center;
  gap: 52px;
  margin: 0 auto;
  padding: 58px;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 18% 80%, rgba(243, 22, 36, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(7, 7, 10, 0.98), rgba(34, 9, 31, 0.98));
  color: var(--paper);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.course-styles-copy h2 {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  line-height: 1.02;
}

.course-styles-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.75;
}

.course-style-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.course-style {
  position: relative;
  --glow-x: 50%;
  --glow-y: 50%;
  min-height: 122px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 320ms var(--ease-premium), box-shadow 320ms var(--ease-premium), border-color 320ms ease;
}

.course-style strong,
.course-style span {
  position: relative;
  z-index: 1;
}

.course-style strong {
  color: var(--paper);
  font-size: 1.15rem;
}

.course-style span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

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

.course-fit-card {
  position: relative;
  --glow-x: 50%;
  --glow-y: 50%;
  min-height: 285px;
  padding: 32px;
  border: 1px solid rgba(7, 7, 10, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(7, 7, 10, 0.08);
  overflow: hidden;
  transition: transform 320ms var(--ease-premium), box-shadow 320ms var(--ease-premium), border-color 320ms ease;
}

.course-fit-card > * {
  position: relative;
  z-index: 1;
}

.course-fit-card h3 {
  font-size: 2rem;
}

.course-process {
  padding-top: var(--section-space);
}

.course-contact {
  padding-top: var(--section-space);
}

.site-footer {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto 22px;
  padding: 36px 0 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.footer-logo {
  width: 238px;
  min-height: 72px;
  padding: 12px 18px;
  margin: 0 auto 18px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.site-footer p {
  margin: 0 auto;
  max-width: 560px;
  line-height: 1.65;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.socials a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(7, 7, 10, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 850;
}

.site-footer small {
  color: rgba(7, 7, 10, 0.5);
}

.reveal {
  opacity: 0;
  translate: 0 26px;
  transition: opacity 700ms var(--ease-premium), translate 700ms var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

.hero-visual.reveal {
  transition:
    opacity 700ms var(--ease-premium),
    translate 700ms var(--ease-premium),
    transform 700ms var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms;
}

.service-card.reveal,
.benefit.reveal,
.testimonial.reveal {
  transition:
    opacity 700ms var(--ease-premium),
    translate 700ms var(--ease-premium),
    transform 320ms var(--ease-premium),
    box-shadow 320ms var(--ease-premium),
    border-color 320ms ease;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms, 0ms;
}

.stat.reveal {
  transition:
    opacity 700ms var(--ease-premium),
    translate 700ms var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms);
}

@keyframes danceFloat {
  0%,
  100% {
    translate: 0 0;
    opacity: 0.62;
  }

  50% {
    translate: 0 -14px;
    opacity: 0.82;
  }
}

@keyframes logoSheen {
  0%,
  62% {
    left: -72%;
  }

  78%,
  100% {
    left: 124%;
  }
}

@keyframes buttonSheen {
  0% {
    left: -70%;
  }

  100% {
    left: 128%;
  }
}

@keyframes heroBreath {
  0%,
  100% {
    transform: scale(1.025);
    filter: saturate(1) contrast(1);
  }

  50% {
    transform: scale(1.055);
    filter: saturate(1.08) contrast(1.04);
  }
}

@keyframes noteFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes stepPulse {
  0%,
  100% {
    opacity: 0.08;
    transform: rotate(var(--step-angle)) translateY(0);
  }

  45%,
  55% {
    opacity: 0.18;
    transform: rotate(var(--step-angle)) translateY(-4px);
  }
}

@media (max-width: 1120px) {
  .courses-hero-grid,
  .course-styles {
    grid-template-columns: 1fr;
  }

  .courses-hero::after {
    width: 30vw;
    opacity: 0.08;
  }

  .courses-hero-copy {
    max-width: 820px;
    padding-top: 30px;
  }

  .courses-hero-visual {
    max-width: 760px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero::after {
    width: 28vw;
    opacity: 0.08;
  }

  .hero-copy {
    max-width: 820px;
    padding-top: 42px;
  }

  .hero-visual {
    max-width: 720px;
  }

  .trail-one {
    width: 78vw;
    left: -24vw;
    top: 44%;
  }

  .trail-two {
    right: -18vw;
    width: 70vw;
  }

  .trail-three {
    right: -30vw;
    width: 86vw;
  }

  .service-grid,
  .benefit-grid,
  .course-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signature,
  .contact {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .cta-strip .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .courses-hero {
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 48px;
  }

  .courses-hero h1 {
    font-size: clamp(3rem, 12vw, 4.6rem);
  }

  .course-photo-stack {
    min-height: 500px;
  }

  .course-photo-main {
    height: 390px;
  }

  .course-photo-accent {
    width: 52%;
    height: 210px;
  }

  .course-floating-note {
    right: 12px;
    bottom: 32px;
  }

  .course-intro-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }

  .course-program {
    grid-template-columns: 1fr;
  }

  .course-program img {
    height: 320px;
    min-height: 320px;
  }

  .course-styles {
    padding: 38px 28px;
  }

  :root {
    --section-space: 86px;
    --gap: 18px;
  }

  .site-header {
    top: 12px;
    width: min(calc(100% - 22px), 1220px);
  }

  .logo-plate {
    width: 172px;
    min-height: 48px;
    padding: 8px 12px;
  }

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

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(7, 7, 10, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.menu-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    justify-content: flex-start;
    min-height: 44px;
  }

  .main-nav .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 44px;
  }

  .hero-shell {
    gap: 28px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-photo-frame {
    height: 420px;
    min-height: 420px;
  }

  .hero-note {
    display: none;
  }

  .step-print {
    opacity: 0.1;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-head .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .signature {
    padding: 34px;
  }

  .signature-media {
    height: 380px;
  }

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

  .timeline::before {
    display: none;
  }

  .cta-strip {
    grid-template-columns: 1fr;
  }

  .cta-strip .button {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .courses-hero {
    padding-inline: 16px;
    padding-top: 104px;
  }

  .courses-hero h1 {
    font-size: clamp(2.85rem, 14vw, 3.75rem);
  }

  .course-photo-stack {
    min-height: 380px;
  }

  .course-photo-main {
    width: 100%;
    height: 300px;
  }

  .course-photo-accent {
    display: none;
  }

  .course-floating-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
  }

  .course-intro-strip,
  .course-fit-grid,
  .course-style-grid {
    grid-template-columns: 1fr;
  }

  .course-metric {
    min-height: 104px;
  }

  .course-program img {
    height: 250px;
    min-height: 250px;
  }

  .course-program > div,
  .course-fit-card {
    padding: 24px;
  }

  .course-styles {
    width: min(calc(100% - 32px), var(--container));
    padding: 28px 22px;
  }

  .hero {
    padding-inline: 16px;
    padding-top: 104px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 3.9rem);
  }

  .dance-trail {
    opacity: 0.34;
  }

  .step-print {
    display: none;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 1.1rem;
  }

  .hero-text {
    margin-top: 12px;
    font-size: 0.98rem;
  }

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

  .hero-actions {
    display: grid;
  }

  .hero-photo-frame {
    height: 330px;
    min-height: 330px;
  }

  .stats-section,
  .service-grid,
  .benefit-grid,
  .timeline,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 112px;
  }

  .service-card {
    min-height: 0;
  }

  .service-media {
    height: 236px;
  }

  .signature {
    width: min(calc(100% - 32px), var(--container));
    padding: 24px;
  }

  .signature-media {
    height: 310px;
  }

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

  .contact {
    width: min(calc(100% - 32px), var(--container));
  }

  .contact-form {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    translate: 0 0;
  }
}
