:root {
  --navy: #061326;
  --navy-soft: #0b1f3a;
  --ink: #f8fbff;
  --muted: #b9c5d6;
  --cyan: #25d8ff;
  --rose: #ff4f9a;
  --gold: #ffca57;
  --green: #3ee6a2;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(18px, calc((100vw - 1120px) / 2));
  background: rgba(6, 19, 38, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 210px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  color: #061326;
  background: linear-gradient(135deg, var(--gold), #fff, var(--cyan), var(--rose));
}
.brand strong { display: block; font-family: "Playfair Display", serif; font-size: 1.15rem; }
.brand small { display: block; color: var(--muted); font-size: .72rem; }

.site-nav { display: flex; align-items: center; gap: 16px; font-size: .9rem; }
.site-nav a { color: var(--muted); font-weight: 600; }
.site-nav a.active, .site-nav a:hover { color: #fff; }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
}
.nav-cta, .btn-primary { background: linear-gradient(135deg, var(--rose), var(--gold)); color: #061326 !important; }
.btn-ghost { border: 1px solid rgba(255,255,255,.2); color: #fff; }

.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; }
.menu-toggle span { display: block; height: 2px; margin: 6px 8px; background: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 79, 154, .24), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(37, 216, 255, .22), transparent 26%),
    linear-gradient(135deg, #061326 0%, #0b1f3a 58%, #07172d 100%);
}

.hero-inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: 54px; align-items: center; padding: 92px 0 70px; }
.kicker { color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 800; }
h1, h2, h3 { margin: 0; line-height: 1.04; }
h1, h2 { font-family: "Playfair Display", serif; }
h1 { max-width: 760px; font-size: clamp(3rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: 1.25rem; }
.hero p, .lead-copy, .content-panel p { color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.brush { position: absolute; width: 330px; height: 38px; border-radius: 999px; filter: blur(.2px); transform: rotate(-14deg); opacity: .9; }
.brush-one { left: 7%; top: 18%; background: linear-gradient(90deg, var(--rose), var(--gold), var(--green)); }
.brush-two { right: 8%; bottom: 18%; background: linear-gradient(90deg, var(--cyan), #fff, var(--rose)); transform: rotate(10deg); }

.hero-art { position: relative; min-height: 430px; }
.performer-card {
  position: absolute;
  inset: 64px 0 auto auto;
  width: min(390px, 100%);
  min-height: 330px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.04));
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.art-icon { font-size: 7rem; color: var(--gold); line-height: 1; }
.performer-card strong { font-size: 1.45rem; margin-top: auto; }
.performer-card small { color: var(--muted); margin-top: 10px; }
.stage-orbit { position: absolute; inset: 0; border: 1px dashed rgba(255,255,255,.18); border-radius: 50%; animation: spin 16s linear infinite; }
.stage-orbit span { position: absolute; font-size: 2rem; color: var(--cyan); }
.stage-orbit span:nth-child(1) { top: 20px; left: 48%; }
.stage-orbit span:nth-child(2) { right: 20px; top: 48%; color: var(--rose); }
.stage-orbit span:nth-child(3) { bottom: 35px; left: 22%; color: var(--gold); }

.section-band { padding: 86px 0; background: #08182e; }
.section-deep { background: #061326; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.feature-grid, .class-grid, .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card, .class-card, .pricing-card, .content-panel, .contact-form {
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  padding: 26px;
}
.feature-card p, .class-card span, .pricing-card li { color: var(--muted); line-height: 1.7; }
.icon-badge { width: 46px; height: 46px; border-radius: 8px; display: grid; place-items: center; margin-bottom: 18px; background: linear-gradient(135deg, var(--cyan), var(--rose)); color: #061326; font-weight: 900; }
.split-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 42px; align-items: start; }
.course-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.class-card { min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; transition: transform .25s ease, border-color .25s ease; }
.class-card:hover { transform: translateY(-5px); border-color: rgba(255, 202, 87, .55); }
.class-card em { color: var(--gold); font-style: normal; font-weight: 800; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li::before { content: "✦"; color: var(--gold); margin-right: 10px; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-tile { aspect-ratio: 4 / 3; border-radius: 8px; display: grid; place-items: end start; padding: 18px; background: linear-gradient(135deg, rgba(255,79,154,.5), rgba(37,216,255,.28)), #0b1f3a; font-weight: 800; }
.pricing-card strong { display: block; margin: 18px 0; font-size: 2rem; color: var(--gold); }
.pricing-card ul { padding-left: 18px; min-height: 116px; }
.contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: #fff; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(0,0,0,.22);
  color: #fff;
}

.cta-section { padding: 76px 0; background: linear-gradient(135deg, rgba(255,79,154,.22), rgba(37,216,255,.18)), #07172d; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-inner h2 { max-width: 740px; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #24d366;
  box-shadow: 0 18px 38px rgba(0,0,0,.35);
}
.whatsapp-float img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.site-footer { padding: 34px 0; background: #030b16; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 28px; }
.footer-contact {
  display: grid;
  gap: 8px;
  max-width: 430px;
  font-size: .9rem;
  line-height: 1.45;
}
.footer-contact p {
  margin: 0;
}
.footer-contact strong {
  color: #fff;
  margin-right: 6px;
}
.footer-contact a {
  color: inherit;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 700;
  color: #fff;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.footer-social-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .2);
  transition: transform .2s ease, border-color .2s ease, filter .2s ease;
}
.footer-social-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .45);
  filter: brightness(1.08);
}
.footer-social-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-social-btn.youtube { background: #ff0033; }
.footer-social-btn.instagram {
  color: #071326;
  background: linear-gradient(135deg, #ff4f9a, #ffca57);
}
.footer-social-btn.facebook { background: #1877f2; }
.footer-social-btn.whatsapp { background: #24d366; }
.footer-social-btn.youtube svg,
.footer-social-btn.whatsapp svg {
  fill: rgba(255, 255, 255, .08);
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes spin { to { transform: rotate(360deg); } }

/* Home page */
.home-page {
  background:
    radial-gradient(circle at 15% 18%, rgba(0, 132, 255, .16), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(255, 79, 154, .18), transparent 28%),
    #020b19;
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(90deg, rgba(2, 11, 25, .98) 0%, rgba(3, 15, 35, .92) 44%, rgba(4, 20, 45, .5) 100%),
    radial-gradient(circle at 68% 45%, rgba(255, 73, 138, .25), transparent 18%),
    radial-gradient(circle at 83% 22%, rgba(255, 145, 34, .25), transparent 24%),
    #020b19;
}

.home-hero::after,
.home-about::after,
.home-final-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background:
    linear-gradient(95deg, transparent 0 15%, rgba(236, 20, 115, .95) 16% 18%, transparent 19% 27%, rgba(255, 119, 31, .95) 28% 30%, transparent 31% 39%, rgba(45, 198, 255, .95) 40% 42%, transparent 43%),
    linear-gradient(100deg, transparent 0 20%, rgba(133, 69, 255, .85) 21% 23%, transparent 24% 38%, rgba(68, 214, 99, .8) 39% 41%, transparent 42%);
  width: 560px;
  height: 190px;
  filter: blur(.2px);
  transform: rotate(-15deg);
}

.home-hero::after {
  right: -70px;
  bottom: 38px;
}

.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 620px;
  padding: 42px 0 34px;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  max-width: 650px;
  font-size: clamp(2.9rem, 4.45vw, 4.85rem);
  text-wrap: balance;
}

.home-hero p {
  max-width: 610px;
  color: #d5dfec;
  line-height: 1.7;
}

.hero-lead {
  margin: 16px 0 14px;
  color: var(--gold) !important;
  font-size: 1.35rem;
  font-weight: 700;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
  background: rgba(255, 255, 255, .04);
}

.btn-blue {
  background: linear-gradient(135deg, #106de2, #22b8ff);
  color: #fff;
}

.home-hero-stage {
  position: relative;
  min-height: 500px;
  z-index: 1;
}

.color-ribbon {
  position: absolute;
  inset: 68px 0 auto 20px;
  height: 360px;
  border-radius: 50%;
  border: 18px solid rgba(255, 78, 140, .7);
  border-left-color: rgba(107, 74, 255, .65);
  border-bottom-color: rgba(255, 140, 40, .75);
  transform: rotate(-22deg);
  filter: drop-shadow(0 0 26px rgba(255, 67, 132, .3));
}

.ribbon-two {
  inset: 116px 42px auto 80px;
  height: 260px;
  border-width: 10px;
  border-color: rgba(45, 216, 255, .6) rgba(255, 202, 87, .72) rgba(62, 230, 162, .7) rgba(255, 79, 154, .65);
  transform: rotate(-8deg);
}

.hero-performer {
  position: absolute;
  left: 130px;
  top: 22px;
  width: 310px;
  height: 450px;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 12px;
  padding: 30px;
  text-align: center;
  border-radius: 160px 160px 14px 14px;
  background:
    radial-gradient(circle at 50% 22%, #ffd7aa 0 36px, transparent 37px),
    linear-gradient(145deg, rgba(255, 118, 41, .95), rgba(153, 22, 72, .92) 44%, rgba(13, 65, 92, .92));
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

.performer-face {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin-bottom: auto;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe1ba, #c76c41);
  color: #071326;
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 800;
}

.hero-performer strong {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}

.mini-scene {
  position: absolute;
  display: grid;
  place-items: end start;
  width: 190px;
  height: 132px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .36);
}

.scene-art { right: 0; top: 45px; background: linear-gradient(140deg, rgba(255, 202, 87, .9), rgba(37, 216, 255, .18)), #233354; }
.scene-music { right: 110px; top: 220px; background: linear-gradient(140deg, rgba(255, 79, 154, .8), rgba(255, 202, 87, .15)), #101c3b; }
.scene-theatre { right: 0; bottom: 54px; background: linear-gradient(140deg, rgba(133, 69, 255, .8), rgba(37, 216, 255, .2)), #151a34; }

.home-about {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(90deg, rgba(3, 11, 24, .15), #061326 48%, #020b19);
}

.home-about::after {
  right: -220px;
  bottom: -22px;
  width: 520px;
  transform: rotate(-18deg);
}

.home-about-inner {
  display: grid;
  grid-template-columns: .77fr 1fr;
  gap: 56px;
  min-height: 292px;
  align-items: center;
}

.home-about-art {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(46vw, 640px);
  background:
    linear-gradient(90deg, rgba(2, 11, 25, .1), rgba(2, 11, 25, .85)),
    radial-gradient(circle at 32% 48%, rgba(255, 202, 87, .45), transparent 18%),
    linear-gradient(135deg, rgba(255, 79, 154, .9), rgba(56, 26, 117, .85));
}

.home-about-art span {
  position: absolute;
  bottom: 0;
  width: 120px;
  height: 220px;
  border-radius: 90px 90px 0 0;
  background: linear-gradient(180deg, #ffa64e, #77266b);
  transform-origin: bottom center;
}

.home-about-art span:nth-child(1) { left: 80px; height: 190px; transform: rotate(-18deg); }
.home-about-art span:nth-child(2) { left: 210px; height: 240px; background: linear-gradient(180deg, #ffe188, #ca3f62); }
.home-about-art span:nth-child(3) { left: 340px; height: 205px; transform: rotate(16deg); }

.home-about-copy {
  position: relative;
  z-index: 2;
  padding: 44px 0;
}

.home-about-copy h2,
.home-section-title h2,
.home-love h2,
.story-panel h2,
.home-final-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.home-about-copy h2::after {
  content: "";
  display: block;
  width: 98px;
  height: 3px;
  margin: 14px 0 18px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
}

.home-about-copy p,
.home-forms p,
.story-panel p,
.home-final-cta p {
  color: #d3ddea;
  line-height: 1.65;
}

.home-classes,
.home-love,
.home-forms,
.home-stories {
  padding: 28px 0 22px;
  background: #020b19;
}

.home-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 16px;
  text-align: center;
}

.home-section-title span {
  width: 78px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.home-section-title span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.home-class-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  align-items: stretch;
}

.home-class-card {
  position: relative;
  flex: 0 1 calc((100% - 66px) / 4);
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(5, 20, 46, .82);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
}

.class-photo {
  height: 126px;
  background: linear-gradient(135deg, rgba(255, 79, 154, .65), rgba(37, 216, 255, .18)), #10203d;
}

.class-photo::after,
.form-tile div::after,
.mini-gallery span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 22% 30%, rgba(255, 255, 255, .88) 0 8px, transparent 9px),
    linear-gradient(58deg, transparent 0 38%, rgba(255, 202, 87, .72) 39% 44%, transparent 45%),
    linear-gradient(118deg, transparent 0 42%, rgba(255, 79, 154, .7) 43% 48%, transparent 49%);
  opacity: .9;
}

.photo-folk { background: linear-gradient(135deg, rgba(255, 129, 31, .78), rgba(255, 202, 87, .22)), #202345; }
.photo-western { background: linear-gradient(135deg, rgba(37, 216, 255, .55), rgba(130, 74, 255, .65)), #0b1737; }
.photo-music { background: linear-gradient(135deg, rgba(62, 230, 162, .65), rgba(255, 202, 87, .28)), #122214; }
.photo-arts { background: linear-gradient(135deg, rgba(37, 154, 255, .7), rgba(255, 202, 87, .26)), #0a2545; }
.photo-theatre { background: linear-gradient(135deg, rgba(161, 79, 255, .75), rgba(255, 79, 154, .28)), #1b1233; }
.photo-choreo { background: linear-gradient(135deg, rgba(255, 79, 154, .78), rgba(255, 124, 31, .32)), #2a1030; }

.class-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin: -29px 0 10px 18px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .86);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #ff7b20);
  color: #fff;
  font-weight: 900;
}

.tone-violet .class-icon,
.tone-purple .class-icon { background: linear-gradient(135deg, #874dff, #cf56ff); }
.tone-green .class-icon { background: linear-gradient(135deg, #64cc31, #3ee6a2); }
.tone-blue .class-icon { background: linear-gradient(135deg, #229dff, #25d8ff); }

.home-class-card h3 {
  padding: 0 18px;
  text-align: center;
  font-family: "Playfair Display", serif;
}

.home-class-card p {
  min-height: 58px;
  margin: 8px 18px 14px;
  color: #d4ddec;
  line-height: 1.35;
  text-align: center;
}

.home-class-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin: 0 14px 14px;
  border: 1px solid currentColor;
  border-radius: 7px;
  color: var(--rose);
  font-weight: 800;
  font-size: .86rem;
}

.tone-orange a { color: #ff7b20; }
.tone-violet a, .tone-purple a { color: #b36aff; }
.tone-green a { color: #7ede3c; }
.tone-blue a { color: #28aaff; }
.tone-gold .class-icon { background: linear-gradient(135deg, #ffca57, #ff8a20); }
.tone-gold a { color: var(--gold); }

.home-love {
  padding-top: 6px;
}

.home-love h2 {
  margin-bottom: 18px;
  text-align: center;
}

.love-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.love-card {
  min-height: 120px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 14px 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  text-align: center;
}

.love-card strong {
  font-size: 2rem;
  line-height: 1;
}

.love-card span {
  color: #d7e2ef;
  font-size: .84rem;
  line-height: 1.25;
}

.home-forms {
  text-align: center;
}

.home-forms p {
  margin: -4px 0 12px;
}

.forms-strip {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
}

.form-tile {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}

.form-tile div {
  height: 78px;
  background: linear-gradient(135deg, rgba(255, 79, 154, .68), rgba(37, 216, 255, .22)), #0c1b35;
}

.form-tile:nth-child(2n) div { background: linear-gradient(135deg, rgba(255, 202, 87, .64), rgba(255, 79, 154, .28)), #121b38; }
.form-tile:nth-child(3n) div { background: linear-gradient(135deg, rgba(37, 216, 255, .58), rgba(133, 69, 255, .38)), #071a36; }

.form-tile strong {
  display: block;
  padding: 8px 6px;
  font-family: "Playfair Display", serif;
}

.stories-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
}

.story-panel {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, .035);
}

.story-panel h2 {
  text-align: center;
  margin-bottom: 10px;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.mini-gallery span {
  min-height: 72px;
  overflow: hidden;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(255, 79, 154, .74), rgba(255, 202, 87, .25)), #0d1c38;
}

.mini-gallery span:nth-child(2n) { background: linear-gradient(135deg, rgba(37, 216, 255, .68), rgba(133, 69, 255, .28)), #0e1933; }
.mini-gallery span:nth-child(3n) { background: linear-gradient(135deg, rgba(62, 230, 162, .52), rgba(255, 202, 87, .32)), #14203a; }

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.testimonial-row blockquote {
  margin: 0;
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}

.testimonial-row blockquote::before {
  content: "“";
  display: block;
  color: var(--rose);
  font-size: 3rem;
  line-height: .7;
}

.testimonial-row p {
  font-size: .94rem;
}

.testimonial-row strong {
  display: block;
  margin-top: 14px;
  color: #fff;
}

.home-final-cta {
  position: relative;
  overflow: hidden;
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 79, 154, .38), transparent 20%),
    radial-gradient(circle at 88% 44%, rgba(255, 202, 87, .22), transparent 18%),
    #030d1d;
  text-align: center;
}

.home-final-cta::after {
  right: -110px;
  bottom: 12px;
  width: 450px;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 26px;
  align-items: center;
}

.final-art {
  min-height: 150px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(133, 69, 255, .78), rgba(255, 79, 154, .3)), #1b1237;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}

.final-art-right {
  background: linear-gradient(135deg, rgba(255, 202, 87, .62), rgba(37, 216, 255, .28)), #0b1f3a;
}

.image-home-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-home-page .home-hero-stage {
  overflow: visible;
}

.home-hero-main-img {
  position: absolute;
  left: 110px;
  top: 10px;
  width: 330px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 170px 170px 8px 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

.home-hero-small-img {
  position: absolute;
  width: 184px;
  height: 122px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .36);
}

.home-hero-art-img { right: 0; top: 44px; }
.home-hero-music-img { right: 110px; top: 218px; }
.home-hero-theatre-img { right: 0; bottom: 58px; }

.image-home-about .home-about-image {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(46vw, 640px);
  opacity: .9;
}

.image-home-about .home-about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 11, 25, .05), rgba(2, 11, 25, .88));
}

.image-home-page .class-photo {
  width: 100%;
  height: 126px;
}

.image-home-page .form-tile img {
  height: 78px;
}

.image-home-page .mini-gallery img {
  min-height: 72px;
  overflow: hidden;
  border-radius: 7px;
}

.image-home-page .testimonial-row img {
  width: 46px;
  height: 46px;
  margin: 12px 0 8px;
  border: 2px solid rgba(255, 202, 87, .7);
  border-radius: 50%;
}

.image-home-page .final-art {
  min-height: 150px;
  overflow: hidden;
  border-radius: 8px;
}

.mouse-hero {
  --hero-pos-x: 50%;
  --hero-pos-y: 50%;
  min-height: 570px;
  isolation: isolate;
  background: #020b19;
}

.mouse-hero::after {
  display: none;
}

.home-hero-bg-img {
  position: absolute;
  inset: 0 0 0 40%;
  z-index: 0;
  width: 60% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: right center;
  transform: none;
  transition: object-position .18s ease-out;
  will-change: object-position;
}

.mouse-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 11, 25, .94) 0%, rgba(2, 11, 25, .84) 36%, rgba(2, 11, 25, .18) 45%, rgba(2, 11, 25, 0) 58%),
    linear-gradient(180deg, rgba(2, 11, 25, .08), rgba(2, 11, 25, 0) 72%, rgba(2, 11, 25, .12));
}

.mouse-hero .home-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 570px;
  padding: 56px 0 48px;
}

.mouse-hero .home-hero-copy {
  max-width: 640px;
}

.mouse-hero .home-hero h1,
.mouse-hero h1 {
  max-width: 650px;
  font-size: clamp(3.25rem, 5vw, 5.6rem);
  text-shadow: 0 4px 18px rgba(0, 0, 0, .35);
}

.mouse-hero .hero-lead {
  max-width: 650px;
  color: var(--gold) !important;
  font-size: 1.28rem;
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.mouse-hero .home-hero-copy > p:not(.hero-lead) {
  max-width: 590px;
  color: #edf4ff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
}

.mouse-hero .hero-actions {
  gap: 18px;
}

.mouse-hero .btn {
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.mouse-hero .btn-ghost,
.mouse-hero .btn-outline {
  background: rgba(6, 19, 38, .68);
  border-color: rgba(255, 255, 255, .6);
  backdrop-filter: blur(8px);
}

/* About page */
.about-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 24%, rgba(133, 69, 255, .18), transparent 26%),
    radial-gradient(circle at 10% 8%, rgba(255, 119, 31, .14), transparent 25%),
    #020b19;
}

.about-hero {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background:
    linear-gradient(90deg, rgba(2, 11, 25, .34), rgba(2, 11, 25, .92) 38%, rgba(2, 11, 25, .78)),
    radial-gradient(circle at 82% 36%, rgba(255, 79, 154, .22), transparent 18%),
    #051326;
}

.about-hero::after,
.culture-band::after,
.about-join::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 620px;
  height: 170px;
  background:
    linear-gradient(96deg, transparent 0 13%, rgba(255, 79, 154, .95) 14% 16%, transparent 17% 28%, rgba(255, 119, 31, .95) 29% 31%, transparent 32% 44%, rgba(37, 216, 255, .85) 45% 47%, transparent 48%),
    linear-gradient(102deg, transparent 0 22%, rgba(133, 69, 255, .88) 23% 25%, transparent 26% 39%, rgba(62, 230, 162, .78) 40% 42%, transparent 43%);
  transform: rotate(-8deg);
}

.about-hero::after {
  right: -70px;
  bottom: -8px;
}

.about-hero-art {
  position: absolute;
  inset: 0 auto 0 0;
  width: 48%;
  background:
    linear-gradient(90deg, rgba(2, 11, 25, .05), rgba(2, 11, 25, .92)),
    radial-gradient(circle at 28% 50%, rgba(255, 202, 87, .48), transparent 18%),
    linear-gradient(135deg, rgba(255, 79, 154, .68), rgba(37, 216, 255, .18)),
    #0b1f3a;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 310px;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.about-hero p {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.about-notes {
  position: absolute;
  right: 14%;
  bottom: 56px;
  display: flex;
  gap: 36px;
  color: var(--rose);
  font-size: 2.1rem;
}

.about-notes span:nth-child(2) { color: var(--green); transform: translateY(-38px); }
.about-notes span:nth-child(3) { color: var(--gold); transform: translateY(18px); }

.about-story,
.about-values,
.about-different {
  background: #020b19;
}

.about-story {
  position: relative;
  padding: 28px 0 20px;
}

.about-story::after {
  content: "";
  position: absolute;
  right: -140px;
  top: 50px;
  width: 340px;
  height: 520px;
  border: 2px solid rgba(255, 79, 154, .45);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.about-story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}

.about-story-photo {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 2px solid rgba(255, 144, 39, .55);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 202, 87, .36), transparent 22%),
    linear-gradient(135deg, rgba(255, 79, 154, .54), rgba(37, 216, 255, .14)),
    #09182d;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
}

.story-dancer,
.story-artist,
.story-musician {
  position: absolute;
  bottom: 0;
  width: 145px;
  height: 250px;
  border-radius: 80px 80px 8px 8px;
  background:
    radial-gradient(circle at 50% 24%, #ffddb8 0 24px, transparent 25px),
    linear-gradient(180deg, #ffb15a, #bc215c 55%, #3d1d68);
}

.story-dancer { left: 58px; height: 300px; transform: rotate(-9deg); }
.story-artist { right: 78px; width: 130px; background: radial-gradient(circle at 50% 22%, #ffddb8 0 22px, transparent 23px), linear-gradient(180deg, #fff1b0, #d38a47 52%, #5b3268); }
.story-musician { left: 210px; width: 118px; height: 210px; background: radial-gradient(circle at 50% 24%, #ffddb8 0 20px, transparent 21px), linear-gradient(180deg, #5fc6ff, #263a78); }

.about-story-photo::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 96px;
  height: 154px;
  border: 10px solid rgba(255, 236, 185, .85);
  border-radius: 4px;
  transform: rotate(7deg);
  background: linear-gradient(135deg, rgba(255, 79, 154, .75), rgba(37, 216, 255, .45), rgba(255, 202, 87, .65));
}

.about-story-copy {
  position: relative;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-kicker::after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--gold);
}

.about-story-copy h2 {
  margin: 16px 0;
  max-width: 560px;
  font-size: clamp(2.3rem, 4vw, 3.65rem);
}

.about-story-copy p,
.value-card p,
.different-card p,
.culture-inner p,
.join-copy p {
  color: #d4dfed;
  line-height: 1.68;
}

.about-values {
  padding: 8px 0 26px;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.value-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 230px;
  padding: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 79, 154, .78);
  background:
    radial-gradient(circle at 88% 88%, rgba(255, 119, 31, .23), transparent 22%),
    rgba(255, 255, 255, .035);
}

.value-vision {
  border-color: rgba(126, 222, 60, .68);
}

.value-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--rose);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-vision .value-icon {
  color: var(--green);
}

.value-card h2 {
  margin-bottom: 16px;
}

.value-card h2::after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--rose), transparent);
}

.value-vision h2::after {
  background: linear-gradient(90deg, var(--green), transparent);
}

.about-different {
  padding: 0 0 28px;
}

.about-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 18px;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-section-title span {
  width: 88px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.about-section-title span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.different-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.different-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(255, 79, 154, .7);
  border-radius: 8px;
  background: rgba(255, 255, 255, .028);
}

.different-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
}

.different-card p {
  margin: 10px 0 0;
}

.different-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--rose);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.different-card.tone-orange { border-color: rgba(255, 119, 31, .76); }
.different-card.tone-orange .different-icon { color: #ff7b20; }
.different-card.tone-purple { border-color: rgba(187, 93, 255, .72); }
.different-card.tone-purple .different-icon { color: #bb5dff; }
.different-card.tone-green { border-color: rgba(126, 222, 60, .72); }
.different-card.tone-green .different-icon { color: #7ede3c; }
.different-card.tone-blue { border-color: rgba(37, 169, 255, .72); }
.different-card.tone-blue .different-icon { color: #25a9ff; }

.culture-band {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  display: grid;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(90deg, rgba(2, 11, 25, .46), #061326 30%, #061326 70%, rgba(2, 11, 25, .46)),
    #071326;
}

.culture-band::after {
  left: -80px;
  bottom: 10px;
}

.culture-art {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34%;
  background:
    radial-gradient(circle at 34% 35%, rgba(255, 202, 87, .32), transparent 18%),
    linear-gradient(135deg, rgba(255, 119, 31, .58), rgba(255, 79, 154, .24), rgba(37, 216, 255, .13)),
    #0b1f3a;
}

.culture-left { left: 0; }
.culture-right {
  right: 0;
  transform: scaleX(-1);
}

.culture-art::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 34%;
  width: 130px;
  height: 235px;
  border-radius: 90px 90px 0 0;
  background:
    radial-gradient(circle at 50% 20%, #ffddb8 0 24px, transparent 25px),
    linear-gradient(180deg, #ffb15a, #bc215c 55%, #3d1d68);
}

.culture-inner {
  position: relative;
  z-index: 2;
  max-width: 650px;
  text-align: center;
}

.culture-inner h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.culture-inner h2::after {
  content: "";
  display: block;
  width: 210px;
  height: 3px;
  margin: 18px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.culture-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}

.culture-points span {
  padding: 0 18px;
  color: #fff;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, .3);
}

.culture-points span:last-child {
  border-right: 0;
}

.about-join {
  position: relative;
  overflow: hidden;
  padding: 36px 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 79, 154, .24), transparent 20%),
    radial-gradient(circle at 90% 50%, rgba(255, 202, 87, .16), transparent 19%),
    #020b19;
}

.about-join::after {
  right: -100px;
  bottom: 4px;
}

.join-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 230px 1fr 230px;
  gap: 30px;
  align-items: center;
}

.join-copy {
  text-align: center;
}

.join-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.join-copy strong {
  display: block;
  margin: 10px 0 14px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}

.join-copy .hero-actions {
  justify-content: center;
}

.whatsapp-link {
  display: inline-flex;
  margin-top: 16px;
  color: #d4dfed;
  font-weight: 700;
}

.join-art {
  min-height: 245px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 22%, #ffddb8 0 28px, transparent 29px),
    linear-gradient(145deg, rgba(255, 79, 154, .78), rgba(133, 69, 255, .26), rgba(37, 216, 255, .16)),
    #0a1c38;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
}

.join-art-right {
  background:
    radial-gradient(circle at 50% 22%, #ffddb8 0 28px, transparent 29px),
    linear-gradient(145deg, rgba(255, 202, 87, .62), rgba(37, 216, 255, .2), rgba(133, 69, 255, .26)),
    #0a1c38;
}

/* Dance classes page */
.dance-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 79, 154, .17), transparent 24%),
    radial-gradient(circle at 16% 16%, rgba(37, 216, 255, .12), transparent 24%),
    #020b19;
}

.dance-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dance-hero {
  position: relative;
  overflow: hidden;
  min-height: 675px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(90deg, rgba(2, 11, 25, .98) 0%, rgba(3, 15, 35, .96) 48%, rgba(5, 17, 38, .72) 100%),
    radial-gradient(circle at 72% 42%, rgba(255, 79, 154, .22), transparent 19%),
    #020b19;
}

.dance-hero::after,
.dance-final-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 620px;
  height: 190px;
  background:
    linear-gradient(96deg, transparent 0 13%, rgba(255, 79, 154, .95) 14% 16%, transparent 17% 28%, rgba(255, 119, 31, .95) 29% 31%, transparent 32% 44%, rgba(37, 216, 255, .85) 45% 47%, transparent 48%),
    linear-gradient(102deg, transparent 0 22%, rgba(133, 69, 255, .88) 23% 25%, transparent 26% 39%, rgba(62, 230, 162, .78) 40% 42%, transparent 43%);
  transform: rotate(-20deg);
  filter: drop-shadow(0 0 18px rgba(255, 79, 154, .28));
}

.dance-hero::after {
  right: 318px;
  top: 86px;
}

.dance-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 455px) minmax(560px, 1fr);
  gap: 48px;
  align-items: center;
  min-height: 675px;
  padding: 64px 0 58px;
}

.dance-hero-copy h1 {
  max-width: 470px;
  font-size: clamp(4rem, 4.8vw, 5.05rem);
  line-height: .94;
  letter-spacing: 0;
}

.dance-hero-copy {
  position: relative;
  z-index: 4;
}

.dance-hero-copy p {
  max-width: 470px;
  margin: 26px 0 28px;
  color: #ecf6ff;
  font-size: 1.05rem;
  line-height: 1.68;
}

.dance-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 24px;
  color: #d9e4f1;
  font-size: .9rem;
  font-weight: 700;
}

.dance-hero-points span {
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, .25);
}

.dance-hero-points span:first-child { padding-left: 0; }
.dance-hero-points span:last-child { border-right: 0; }

.dance-hero-art {
  position: relative;
  min-height: 430px;
  z-index: 1;
}

.hero-img {
  position: absolute;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
}

.hero-img-main {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.hero-img-top {
  right: 62px;
  top: 14px;
  width: 250px;
  height: 210px;
}

.hero-img-right {
  right: 0;
  top: 142px;
  width: 230px;
  height: 260px;
}

.hero-img-low {
  right: 210px;
  bottom: -12px;
  width: 250px;
  height: 210px;
}

.dance-programs,
.dance-styles,
.dance-join,
.dance-benefits {
  background: #020b19;
}

.dance-programs {
  padding: 26px 0 24px;
}

.dance-section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 0 0 22px;
  text-align: center;
}

.dance-section-title span {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.dance-section-title span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.dance-section-title h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.dance-section-title p {
  margin: 6px 0 0;
  color: #d4dfed;
}

.dance-section-title.compact {
  margin-top: 4px;
}

.dance-program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dance-program-card {
  position: relative;
  overflow: hidden;
  min-height: 372px;
  padding-bottom: 16px;
  border: 1px solid rgba(255, 79, 154, .8);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.dance-program-card img {
  height: 158px;
}

.dance-card-icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: -32px 0 12px 24px;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #ff7b20);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dance-program-card h3 {
  padding: 0 26px;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
}

.dance-program-card ul {
  min-height: 102px;
  margin: 12px 26px 20px;
  padding-left: 18px;
  color: #d6e2ef;
  line-height: 1.55;
}

.dance-program-card li::marker {
  color: currentColor;
}

.dance-program-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  margin: 0 26px;
  border: 1px solid currentColor;
  border-radius: 7px;
  color: var(--rose);
  font-weight: 800;
}

.dance-program-card.tone-orange,
.join-card.tone-orange,
.benefit-card.tone-orange { border-color: rgba(255, 119, 31, .78); }
.dance-program-card.tone-orange .dance-card-icon,
.join-card.tone-orange div,
.benefit-card.tone-orange div { background: linear-gradient(135deg, #ff7b20, #ffca57); }
.dance-program-card.tone-orange a { color: #ff7b20; }

.dance-program-card.tone-purple,
.join-card.tone-purple,
.benefit-card.tone-purple { border-color: rgba(187, 93, 255, .78); }
.dance-program-card.tone-purple .dance-card-icon,
.join-card.tone-purple div,
.benefit-card.tone-purple div { background: linear-gradient(135deg, #7c48ff, #d457ff); }
.dance-program-card.tone-purple a { color: #bb5dff; }

.dance-program-card.tone-green,
.join-card.tone-green,
.benefit-card.tone-green { border-color: rgba(126, 222, 60, .78); }
.dance-program-card.tone-green .dance-card-icon,
.join-card.tone-green div,
.benefit-card.tone-green div { background: linear-gradient(135deg, #6fd132, #3ee6a2); }
.dance-program-card.tone-green a { color: #7ede3c; }

.join-card.tone-blue,
.benefit-card.tone-blue { border-color: rgba(37, 169, 255, .76); }
.join-card.tone-blue div,
.benefit-card.tone-blue div { background: linear-gradient(135deg, #219dff, #25d8ff); }

.dance-styles,
.dance-join,
.dance-benefits {
  padding: 8px 0 24px;
}

.style-strip {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
}

.style-tile {
  overflow: hidden;
  border: 1px solid rgba(255, 79, 154, .65);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}

.style-tile:nth-child(3n) { border-color: rgba(255, 119, 31, .65); }
.style-tile:nth-child(4n) { border-color: rgba(37, 169, 255, .65); }
.style-tile:nth-child(5n) { border-color: rgba(187, 93, 255, .65); }

.style-tile img {
  height: 88px;
}

.style-tile strong {
  display: block;
  padding: 8px 4px;
  font-size: .84rem;
  text-align: center;
}

.join-card-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.join-card,
.benefit-card {
  min-height: 120px;
  padding: 18px;
  border: 1px solid rgba(255, 79, 154, .7);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.join-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
}

.join-card div,
.benefit-card div {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #ff7b20);
  color: #fff;
  font-weight: 900;
}

.join-card h3,
.benefit-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.join-card p,
.benefit-card p {
  margin: 4px 0 0;
  color: #d4dfed;
  line-height: 1.35;
}

.benefit-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 178px;
  text-align: center;
}

.dance-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, .6fr) minmax(320px, 1fr) minmax(180px, .6fr);
  gap: 24px;
  align-items: center;
  padding: 28px max(18px, calc((100vw - 1120px) / 2));
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 12% 48%, rgba(255, 79, 154, .32), transparent 18%),
    radial-gradient(circle at 88% 52%, rgba(255, 119, 31, .22), transparent 18%),
    #041126;
  text-align: center;
}

.dance-final-cta::after {
  right: -110px;
  bottom: -18px;
}

.dance-final-cta > img {
  position: relative;
  z-index: 2;
  height: 190px;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}

.dance-final-inner {
  position: relative;
  z-index: 2;
}

.dance-final-inner h2 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.dance-final-inner p {
  max-width: 620px;
  margin: 14px auto 22px;
  color: #d4dfed;
  line-height: 1.6;
}

/* Choreography page */
.choreo-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 79, 154, .16), transparent 24%),
    radial-gradient(circle at 12% 18%, rgba(37, 216, 255, .12), transparent 24%),
    #020b19;
}

.choreo-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choreo-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(90deg, rgba(2, 11, 25, .98) 0%, rgba(3, 15, 35, .94) 43%, rgba(5, 17, 38, .5) 100%),
    radial-gradient(circle at 66% 40%, rgba(255, 79, 154, .22), transparent 20%),
    #020b19;
}

.choreo-hero::after,
.choreo-final::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 650px;
  height: 190px;
  background:
    linear-gradient(96deg, transparent 0 13%, rgba(255, 79, 154, .95) 14% 16%, transparent 17% 28%, rgba(255, 119, 31, .95) 29% 31%, transparent 32% 44%, rgba(37, 216, 255, .85) 45% 47%, transparent 48%),
    linear-gradient(102deg, transparent 0 22%, rgba(133, 69, 255, .88) 23% 25%, transparent 26% 39%, rgba(62, 230, 162, .78) 40% 42%, transparent 43%);
  transform: rotate(-18deg);
  filter: drop-shadow(0 0 18px rgba(255, 79, 154, .28));
}

.choreo-hero::after {
  left: 43%;
  top: 86px;
}

.choreo-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: 28px;
  align-items: center;
  min-height: 430px;
  padding: 38px 0 18px;
}

.choreo-hero-copy {
  position: relative;
  z-index: 4;
}

.choreo-hero-copy h1 {
  max-width: 610px;
  font-size: clamp(3.1rem, 5.2vw, 5.6rem);
}

.choreo-hero-copy p {
  max-width: 610px;
  margin: 20px 0 24px;
  color: #d7e2ef;
  line-height: 1.72;
}

.choreo-hero-art {
  position: relative;
  z-index: 1;
  min-height: 400px;
}

.choreo-hero-art img {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .4);
}

.choreo-hero-main {
  left: 0;
  top: 8px;
  width: 390px;
  height: 380px;
  border-radius: 190px 190px 8px 8px;
}

.choreo-hero-top {
  right: 0;
  top: 0;
  width: 300px;
  height: 150px;
}

.choreo-hero-mid {
  right: 0;
  top: 160px;
  width: 300px;
  height: 136px;
}

.choreo-hero-low {
  right: 0;
  bottom: 0;
  width: 360px;
  height: 112px;
}

.choreo-hero-points {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 16px 0 22px;
  color: #dce7f3;
  font-weight: 700;
}

.choreo-hero-points span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.choreo-hero-points span:last-child {
  border-right: 0;
}

.choreo-services,
.choreo-work,
.choreo-why,
.choreo-occasions,
.choreo-performances,
.choreo-love {
  background: #020b19;
}

.choreo-services {
  padding: 26px 0 18px;
}

.choreo-section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 0 0 20px;
  text-align: center;
}

.choreo-section-title span {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.choreo-section-title span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.choreo-section-title h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.choreo-section-title.compact {
  margin-top: 2px;
}

.choreo-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.choreo-service-card {
  overflow: hidden;
  min-height: 380px;
  padding-bottom: 16px;
  border: 1px solid rgba(255, 79, 154, .8);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.choreo-service-card img {
  height: 150px;
}

.choreo-service-card > div {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: -31px 0 10px 20px;
  border: 2px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #ff7b20);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.choreo-service-card h3 {
  padding: 0 22px;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
}

.choreo-service-card p {
  min-height: 92px;
  margin: 12px 22px 18px;
  color: #d5e0ed;
  line-height: 1.5;
}

.choreo-service-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  margin: 0 22px;
  border: 1px solid currentColor;
  border-radius: 7px;
  color: var(--rose);
  font-weight: 800;
}

.choreo-service-card.tone-orange,
.reason-card.tone-orange { border-color: rgba(255, 119, 31, .78); }
.choreo-service-card.tone-orange > div { background: linear-gradient(135deg, #ff7b20, #ffca57); }
.choreo-service-card.tone-orange a { color: #ff7b20; }
.choreo-service-card.tone-purple,
.reason-card.tone-purple { border-color: rgba(187, 93, 255, .78); }
.choreo-service-card.tone-purple > div { background: linear-gradient(135deg, #7c48ff, #d457ff); }
.choreo-service-card.tone-purple a { color: #bb5dff; }
.choreo-service-card.tone-green,
.reason-card.tone-green { border-color: rgba(126, 222, 60, .78); }
.choreo-service-card.tone-green > div { background: linear-gradient(135deg, #6fd132, #3ee6a2); }
.choreo-service-card.tone-green a { color: #7ede3c; }
.reason-card.tone-blue { border-color: rgba(37, 169, 255, .76); }

.choreo-work,
.choreo-why,
.choreo-occasions,
.choreo-performances,
.choreo-love {
  padding: 8px 0 22px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.work-card,
.reason-card,
.occasion-card,
.choreo-testimonial-grid blockquote {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.work-card {
  min-height: 178px;
  padding: 20px;
  text-align: center;
}

.work-top {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.work-top strong {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #ff7b20);
}

.work-card h3,
.reason-card h3,
.occasion-card strong {
  font-family: "Playfair Display", serif;
}

.work-card p,
.reason-card p,
.choreo-testimonial-grid p,
.choreo-final-copy p {
  color: #d5e0ed;
  line-height: 1.48;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.reason-card {
  min-height: 150px;
  padding: 20px;
  text-align: center;
  border-color: rgba(255, 79, 154, .78);
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.occasion-card {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-color: rgba(255, 79, 154, .72);
  text-align: center;
}

.occasion-card:nth-child(2n) { border-color: rgba(255, 119, 31, .72); }
.occasion-card:nth-child(3n) { border-color: rgba(187, 93, 255, .72); }
.occasion-card:nth-child(4n) { border-color: rgba(126, 222, 60, .72); }
.occasion-card:nth-child(5n) { border-color: rgba(37, 169, 255, .72); }

.performance-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.performance-strip img {
  height: 118px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
}

.choreo-love h2 {
  margin-bottom: 14px;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.choreo-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.choreo-testimonial-grid blockquote {
  margin: 0;
  min-height: 172px;
  padding: 20px;
}

.choreo-testimonial-grid blockquote::before {
  content: "“";
  display: block;
  color: var(--rose);
  font-size: 3rem;
  line-height: .7;
}

.choreo-testimonial-grid strong,
.choreo-testimonial-grid span,
.choreo-testimonial-grid em {
  display: block;
}

.choreo-testimonial-grid span {
  color: #b9c5d6;
  font-size: .85rem;
}

.choreo-testimonial-grid em {
  margin-top: 10px;
  color: var(--gold);
  font-style: normal;
  letter-spacing: .12em;
}

.choreo-final {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, .6fr) minmax(320px, 1fr) minmax(180px, .6fr);
  gap: 24px;
  align-items: center;
  padding: 28px max(18px, calc((100vw - 1120px) / 2));
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 12% 48%, rgba(255, 79, 154, .32), transparent 18%),
    radial-gradient(circle at 88% 52%, rgba(255, 119, 31, .22), transparent 18%),
    #041126;
  text-align: center;
}

.choreo-final::after {
  right: -110px;
  bottom: -18px;
}

.choreo-final > img {
  position: relative;
  z-index: 2;
  height: 190px;
  border-radius: 8px;
}

.choreo-final-copy {
  position: relative;
  z-index: 2;
}

.choreo-final-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.choreo-final-copy p {
  max-width: 620px;
  margin: 12px auto 18px;
}

.choreo-final-copy .hero-actions {
  justify-content: center;
}

/* Gallery page */
.gallery-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 79, 154, .14), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(37, 216, 255, .15), transparent 24%),
    #071426;
}

.gallery-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-hero {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background:
    linear-gradient(90deg, rgba(2, 11, 25, .84), rgba(2, 11, 25, .62) 35%, rgba(2, 11, 25, .66) 65%, rgba(2, 11, 25, .88)),
    #071426;
}

.gallery-hero::before,
.gallery-hero::after {
  content: "";
  position: absolute;
  bottom: -36px;
  width: 380px;
  height: 150px;
  pointer-events: none;
  background:
    linear-gradient(150deg, transparent 0 18%, rgba(255, 79, 154, .92) 19% 25%, transparent 26% 34%, rgba(255, 119, 31, .9) 35% 41%, transparent 42% 52%, rgba(255, 202, 87, .9) 53% 59%, transparent 60%),
    linear-gradient(160deg, transparent 0 28%, rgba(37, 216, 255, .85) 29% 35%, transparent 36% 48%, rgba(133, 69, 255, .9) 49% 55%, transparent 56%);
}

.gallery-hero::before {
  left: -70px;
  transform: rotate(-12deg);
}

.gallery-hero::after {
  right: -70px;
  transform: scaleX(-1) rotate(-12deg);
}

.gallery-hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  opacity: .5;
}

.gallery-hero-left {
  left: 0;
  mask-image: linear-gradient(90deg, #000 45%, transparent);
}

.gallery-hero-right {
  right: 0;
  mask-image: linear-gradient(270deg, #000 45%, transparent);
}

.gallery-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.gallery-hero h1 {
  font-size: clamp(4rem, 7vw, 6.5rem);
}

.gallery-title-mark {
  width: 260px;
  height: 16px;
  margin: 12px 0 18px;
  background:
    linear-gradient(90deg, transparent, var(--rose) 12% 42%, transparent 43% 55%, #c8de5a 56% 78%, var(--gold), transparent);
  border-radius: 999px;
}

.gallery-hero p {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: 1.17rem;
  line-height: 1.6;
}

.gallery-board {
  padding: 30px 0 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), transparent 18%),
    #071426;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.gallery-filters button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: default;
}

.gallery-filters button.active {
  border-color: rgba(255, 255, 255, .75);
  background: linear-gradient(135deg, var(--rose), #b85dff);
}

.gallery-filters button span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
}

.gallery-filters button.active span {
  color: #fff;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.gallery-photo {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  margin: 0;
  border: 1px solid rgba(255, 202, 87, .68);
  border-radius: 8px;
  background: #0b1f3a;
}

.gallery-photo:nth-child(3n) {
  border-color: rgba(255, 79, 154, .7);
}

.gallery-photo:nth-child(4n) {
  border-color: rgba(37, 169, 255, .68);
}

.gallery-photo:nth-child(5n) {
  border-color: rgba(187, 93, 255, .7);
}

.gallery-photo:nth-child(1),
.gallery-photo:nth-child(2),
.gallery-photo:nth-child(3),
.gallery-photo:nth-child(4),
.gallery-photo:nth-child(5),
.gallery-photo:nth-child(6),
.gallery-photo:nth-child(7) {
  min-height: 170px;
}

.gallery-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 2px;
  padding: 28px 12px 10px;
  background: linear-gradient(180deg, transparent, rgba(2, 11, 25, .86));
  transform: translateY(100%);
  transition: transform .25s ease;
}

.gallery-photo:hover figcaption {
  transform: none;
}

.gallery-photo strong {
  font-family: "Playfair Display", serif;
}

.gallery-photo span {
  color: #d4dfed;
  font-size: .82rem;
}

.gallery-load {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.gallery-load button {
  min-width: 190px;
  min-height: 48px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: #fff;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
}

/* Blogs page */
.blog-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 79, 154, .13), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(37, 216, 255, .14), transparent 24%),
    #071426;
}

.blog-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background:
    linear-gradient(90deg, rgba(2, 11, 25, .82), rgba(2, 11, 25, .58) 36%, rgba(2, 11, 25, .64) 64%, rgba(2, 11, 25, .9)),
    #071426;
}

.blog-hero::before,
.blog-hero::after {
  content: "";
  position: absolute;
  bottom: -36px;
  width: 380px;
  height: 150px;
  pointer-events: none;
  background:
    linear-gradient(150deg, transparent 0 18%, rgba(255, 79, 154, .92) 19% 25%, transparent 26% 34%, rgba(255, 119, 31, .9) 35% 41%, transparent 42% 52%, rgba(255, 202, 87, .9) 53% 59%, transparent 60%),
    linear-gradient(160deg, transparent 0 28%, rgba(37, 216, 255, .85) 29% 35%, transparent 36% 48%, rgba(133, 69, 255, .9) 49% 55%, transparent 56%);
}

.blog-hero::before {
  left: -70px;
  transform: rotate(-12deg);
}

.blog-hero::after {
  right: -70px;
  transform: scaleX(-1) rotate(-12deg);
}

.blog-hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42%;
  opacity: .55;
}

.blog-left {
  left: 0;
  mask-image: linear-gradient(90deg, #000 46%, transparent);
}

.blog-right {
  right: 0;
  mask-image: linear-gradient(270deg, #000 46%, transparent);
}

.blog-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.blog-hero h1 {
  font-size: clamp(4rem, 7vw, 6.1rem);
}

.blog-title-mark {
  width: 210px;
  height: 14px;
  margin: 10px 0 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--rose) 12% 46%, transparent 47% 55%, #c8de5a 56% 78%, var(--gold), transparent);
}

.blog-hero p {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.6;
}

.blog-board {
  padding: 24px 0 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), transparent 18%),
    #071426;
}

.blog-toolbar {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 18px;
}

.blog-search,
.sidebar-search {
  display: flex;
  overflow: hidden;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
}

.blog-search input,
.sidebar-search input,
.sidebar-panel input {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 18px;
  font: inherit;
}

.blog-search input::placeholder,
.sidebar-search input::placeholder,
.sidebar-panel input::placeholder {
  color: #c7d3e2;
}

.blog-search button,
.sidebar-search button {
  width: 58px;
  border: 0;
  background: transparent;
  color: transparent;
  position: relative;
}

.blog-search button::after,
.sidebar-search button::after {
  content: "⌕";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.6rem;
}

.sidebar-search button {
  background: linear-gradient(135deg, var(--rose), #d7268d);
}

.blog-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.blog-category-row strong {
  margin-right: 6px;
}

.blog-category-row button {
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  color: #fff;
  font: inherit;
  font-weight: 800;
}

.blog-category-row button.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--rose), #d7268d);
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 285px;
  gap: 24px;
  align-items: start;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.blog-card {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.blog-image {
  position: relative;
  height: 145px;
}

.blog-image span {
  position: absolute;
  left: 14px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #d7268d);
  color: #fff;
  font-weight: 900;
}

.blog-card-body {
  padding: 16px;
}

.blog-card em {
  display: block;
  margin-bottom: 8px;
  color: var(--rose);
  font-style: normal;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h2 {
  font-size: 1.25rem;
}

.blog-card p,
.sidebar-panel p {
  color: #d4dfed;
  line-height: 1.48;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: #c4d0df;
  font-size: .84rem;
}

.blog-meta a {
  color: var(--rose);
  font-weight: 900;
  white-space: nowrap;
}

.blog-sidebar {
  display: grid;
  gap: 14px;
}

.sidebar-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.sidebar-panel h3 {
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.sidebar-list {
  display: grid;
}

.sidebar-list a {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #e2ebf5;
  font-size: .9rem;
}

.sidebar-list a:last-child {
  border-bottom: 0;
}

.sidebar-list span {
  color: var(--rose);
  font-weight: 900;
}

.popular-list {
  display: grid;
  gap: 12px;
}

.popular-list a {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
}

.popular-list img {
  height: 54px;
  border-radius: 6px;
}

.popular-list span {
  color: #fff;
  line-height: 1.3;
  font-size: .9rem;
}

.sidebar-panel label:not(.sidebar-search) {
  display: block;
  min-height: 46px;
  margin: 14px 0 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 7px;
  background: rgba(255, 255, 255, .08);
}

.sidebar-panel > button {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--rose), #d7268d);
  color: #fff;
  font: inherit;
  font-weight: 900;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin: 22px auto 0;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
}

.blog-pagination a,
.blog-pagination span {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  color: #fff;
  font-weight: 900;
}

.blog-pagination a.active {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), #d7268d);
}

/* Fee structure page */
.fee-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 79, 154, .14), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(37, 216, 255, .16), transparent 24%),
    #071426;
}

.fee-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fee-hero {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background:
    linear-gradient(90deg, rgba(2, 11, 25, .8), rgba(2, 11, 25, .64) 36%, rgba(2, 11, 25, .68) 64%, rgba(2, 11, 25, .88)),
    #071426;
}

.fee-hero::before,
.fee-hero::after {
  content: "";
  position: absolute;
  bottom: -38px;
  width: 360px;
  height: 150px;
  pointer-events: none;
  background:
    linear-gradient(150deg, transparent 0 18%, rgba(255, 119, 31, .92) 19% 25%, transparent 26% 34%, rgba(255, 202, 87, .9) 35% 41%, transparent 42% 52%, rgba(255, 79, 154, .9) 53% 59%, transparent 60%),
    linear-gradient(160deg, transparent 0 28%, rgba(37, 216, 255, .85) 29% 35%, transparent 36% 48%, rgba(133, 69, 255, .9) 49% 55%, transparent 56%);
}

.fee-hero::before {
  left: -70px;
  transform: rotate(-12deg);
}

.fee-hero::after {
  right: -70px;
  transform: scaleX(-1) rotate(-12deg);
}

.fee-hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  opacity: .54;
}

.fee-left {
  left: 0;
  mask-image: linear-gradient(90deg, #000 46%, transparent);
}

.fee-right {
  right: 0;
  mask-image: linear-gradient(270deg, #000 46%, transparent);
}

.fee-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.fee-hero h1 {
  font-size: clamp(4rem, 7vw, 6.2rem);
}

.fee-title-mark {
  width: 230px;
  height: 14px;
  margin: 12px 0 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--rose) 12% 46%, transparent 47% 55%, #c8de5a 56% 78%, var(--gold), transparent);
}

.fee-hero p {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.72;
}

.fee-board {
  padding: 0 0 40px;
  background:
    radial-gradient(circle at 50% 18%, rgba(37, 216, 255, .08), transparent 28%),
    #071426;
}

.fee-benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -10px;
  padding: 20px 26px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(12px);
}

.fee-benefit-strip article {
  display: grid;
  gap: 6px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.fee-benefit-strip article:last-child {
  border-right: 0;
}

.fee-benefit-strip strong {
  color: #fff;
}

.fee-benefit-strip span {
  color: #d4dfed;
}

.fee-section-title {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 26px 0 22px;
  text-align: center;
}

.fee-section-title h2 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

.fee-section-title div {
  width: 230px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent 48%, #c8de5a 54%, var(--gold), transparent);
}

.fee-program-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  align-items: stretch;
}

.fee-program-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding-bottom: 18px;
  border: 1px solid rgba(255, 79, 154, .65);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  flex: 0 1 calc((100% - 54px) / 4);
}

.fee-program-card img {
  height: 170px;
}

.fee-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: -32px auto 12px;
  border: 2px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #d7268d);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fee-program-card h3 {
  padding: 0 24px;
  color: var(--rose);
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  text-align: center;
}

.fee-program-card > strong {
  display: block;
  margin: 14px 0;
  color: var(--rose);
  text-align: center;
  font-size: 1.05rem;
}

.fee-program-card ul {
  min-height: 90px;
  margin: 0 26px 18px;
  padding-left: 18px;
  color: #e1ebf5;
  line-height: 1.55;
}

.fee-program-card li::marker {
  color: currentColor;
}

.fee-program-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0 36px;
  border: 1px solid currentColor;
  border-radius: 7px;
  color: var(--rose);
  font-weight: 900;
}

.fee-program-card.tone-gold,
.fee-feature-card.tone-gold { border-color: rgba(255, 202, 87, .72); }
.fee-program-card.tone-gold .fee-icon,
.fee-feature-card.tone-gold div { background: linear-gradient(135deg, #ffca57, #ff9b20); }
.fee-program-card.tone-gold h3,
.fee-program-card.tone-gold > strong,
.fee-program-card.tone-gold a { color: var(--gold); }

.fee-program-card.tone-purple { border-color: rgba(187, 93, 255, .72); }
.fee-program-card.tone-purple .fee-icon { background: linear-gradient(135deg, #7c48ff, #d457ff); }
.fee-program-card.tone-purple h3,
.fee-program-card.tone-purple > strong,
.fee-program-card.tone-purple a { color: #bb5dff; }

.fee-program-card.tone-blue,
.fee-feature-card.tone-blue { border-color: rgba(37, 169, 255, .72); }
.fee-program-card.tone-blue .fee-icon,
.fee-feature-card.tone-blue div { background: linear-gradient(135deg, #219dff, #25d8ff); }
.fee-program-card.tone-blue h3,
.fee-program-card.tone-blue > strong,
.fee-program-card.tone-blue a { color: #3d91ff; }

.fee-program-card.tone-green,
.fee-feature-card.tone-green { border-color: rgba(126, 222, 60, .72); }
.fee-program-card.tone-green .fee-icon,
.fee-feature-card.tone-green div { background: linear-gradient(135deg, #6fd132, #3ee6a2); }
.fee-program-card.tone-green h3,
.fee-program-card.tone-green > strong,
.fee-program-card.tone-green a { color: #7ede3c; }

.fee-program-card.tone-orange { border-color: rgba(255, 156, 31, .72); }
.fee-program-card.tone-orange .fee-icon { background: linear-gradient(135deg, #ff7b20, #ffca57); }
.fee-program-card.tone-orange h3,
.fee-program-card.tone-orange > strong,
.fee-program-card.tone-orange a { color: #ffb229; }

.fee-note {
  display: grid;
  grid-template-columns: 56px 1fr 80px;
  gap: 20px;
  align-items: center;
  margin: 24px 0 18px;
  padding: 22px 30px;
  border: 1px solid rgba(255, 202, 87, .45);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.fee-note div {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

.fee-note p {
  margin: 0;
  color: #e0ebf5;
  line-height: 1.55;
}

.fee-note p strong {
  display: block;
  color: var(--gold);
  font-size: 1.1rem;
}

.fee-note span {
  color: rgba(255, 255, 255, .18);
  font-size: 4rem;
  text-align: right;
}

.fee-enquiry {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 36px;
  align-items: center;
  padding: 28px 38px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 40%, rgba(133, 69, 255, .35), transparent 28%),
    linear-gradient(135deg, rgba(255, 79, 154, .74), rgba(145, 18, 90, .88));
}

.fee-enquiry h2 {
  color: var(--gold);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.fee-enquiry p {
  margin: 12px 0 0;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.55;
}

.fee-call {
  display: grid;
  gap: 6px;
  min-width: 270px;
  padding: 0 36px;
  border-left: 1px solid rgba(255, 255, 255, .25);
  border-right: 1px solid rgba(255, 255, 255, .25);
}

.fee-call span {
  color: #fff;
}

.fee-call strong {
  color: #fff;
  font-size: 2rem;
}

.fee-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.fee-feature-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 100px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.fee-feature-card div {
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #d7268d);
  color: #fff;
  font-weight: 900;
}

.fee-feature-card h3 {
  font-size: 1rem;
}

.fee-feature-card p {
  grid-column: 2;
  margin: 4px 0 0;
  color: #d4dfed;
  line-height: 1.35;
}

.fee-closing {
  margin-top: 22px;
  text-align: center;
}

.fee-closing strong {
  color: var(--rose);
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-style: italic;
}

.fee-closing p {
  margin: 8px 0 0;
  color: #fff;
  font-size: 1.1rem;
}

/* Contact page */
.contact-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 79, 154, .14), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(37, 216, 255, .15), transparent 24%),
    #071426;
}

.contact-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background:
    linear-gradient(90deg, rgba(2, 11, 25, .82), rgba(2, 11, 25, .6) 36%, rgba(2, 11, 25, .66) 64%, rgba(2, 11, 25, .9)),
    #071426;
}

.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  bottom: -38px;
  width: 380px;
  height: 150px;
  pointer-events: none;
  background:
    linear-gradient(150deg, transparent 0 18%, rgba(255, 79, 154, .92) 19% 25%, transparent 26% 34%, rgba(255, 119, 31, .9) 35% 41%, transparent 42% 52%, rgba(255, 202, 87, .9) 53% 59%, transparent 60%),
    linear-gradient(160deg, transparent 0 28%, rgba(37, 216, 255, .85) 29% 35%, transparent 36% 48%, rgba(133, 69, 255, .9) 49% 55%, transparent 56%);
}

.contact-hero::before {
  left: -70px;
  transform: rotate(-12deg);
}

.contact-hero::after {
  right: -70px;
  transform: scaleX(-1) rotate(-12deg);
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42%;
  opacity: .55;
}

.contact-left {
  left: 0;
  mask-image: linear-gradient(90deg, #000 46%, transparent);
}

.contact-right {
  right: 0;
  mask-image: linear-gradient(270deg, #000 46%, transparent);
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(3rem, 4.6vw, 5rem);
}

.contact-title-mark,
.contact-heading-mark {
  width: 230px;
  height: 14px;
  margin: 12px 0 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--rose) 12% 46%, transparent 47% 55%, #c8de5a 56% 78%, var(--gold), transparent);
}

.contact-hero p {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.75;
}

.contact-board {
  padding: 28px 0 44px;
  background: #071426;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 34px;
  align-items: start;
}

.contact-info h2,
.contact-message-form h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.contact-info-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
  align-items: center;
}

.contact-detail-list {
  display: grid;
  gap: 22px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.contact-detail div {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #d7268d);
  color: #fff;
  font-weight: 900;
}

.contact-detail p {
  margin: 0;
  color: #fff;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-detail strong {
  display: block;
  margin-bottom: 2px;
}

.contact-studio-img {
  min-height: 300px;
  border: 1px solid rgba(255, 79, 154, .72);
  border-radius: 8px;
}

.contact-reasons {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(255, 202, 87, .38);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.contact-reasons h3 {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}

.contact-reasons > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 34px;
}

.contact-reasons span {
  color: #fff;
  line-height: 1.35;
}

.contact-message-form {
  display: grid;
  gap: 12px;
  padding: 34px 46px 38px;
  border: 1px solid rgba(255, 79, 154, .72);
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 79, 154, .08), transparent 30%),
    rgba(255, 255, 255, .035);
}

.contact-message-form h2,
.contact-message-form .contact-heading-mark {
  justify-self: center;
  text-align: center;
}

.form-alert {
  margin: 0;
  padding: 12px 14px;
  border-radius: 7px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.form-alert-success {
  border: 1px solid rgba(100, 221, 143, .5);
  background: rgba(100, 221, 143, .14);
  color: #d9ffe4;
}

.form-alert-error {
  border: 1px solid rgba(255, 101, 101, .55);
  background: rgba(255, 101, 101, .14);
  color: #ffe1e1;
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-message-form input,
.contact-message-form select,
.contact-message-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 7px;
  padding: 0 18px;
  background: rgba(255, 255, 255, .035);
  color: #fff;
  font: inherit;
}

.contact-message-form textarea {
  min-height: 116px;
  padding-top: 16px;
  resize: vertical;
}

.contact-message-form input::placeholder,
.contact-message-form textarea::placeholder {
  color: #c9d4e2;
}

.contact-message-form select {
  color: #c9d4e2;
}

.contact-message-form option {
  color: #061326;
}

.class-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 42px;
  padding: 18px 26px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 7px;
  background: rgba(255, 255, 255, .025);
}

.class-picker span {
  color: #fff;
  line-height: 1.3;
}

.contact-message-form button {
  justify-self: center;
  min-width: min(420px, 100%);
  margin-top: 4px;
  color: #fff !important;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 8px;
    background: #07172d;
    border: 1px solid rgba(255,255,255,.12);
  }
  .site-nav.is-open { display: flex; }
  .hero-inner, .split-layout, .contact-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-art { min-height: 330px; }
  .feature-grid, .class-grid, .pricing-grid, .gallery-grid, .course-strip { grid-template-columns: 1fr; }
  .cta-inner, .footer-inner { align-items: flex-start; flex-direction: column; }
  .home-hero-inner,
  .home-about-inner,
  .stories-grid,
  .final-cta-inner,
  .about-story-grid,
  .value-grid,
  .different-grid,
  .join-inner,
  .dance-hero-inner,
  .dance-program-grid,
  .join-card-grid,
  .benefit-grid,
  .dance-final-cta,
  .choreo-hero-inner,
  .choreo-hero-points,
  .choreo-service-grid,
  .work-grid,
  .reason-grid,
  .occasion-grid,
  .choreo-testimonial-grid,
  .choreo-final,
  .gallery-masonry,
  .blog-toolbar,
  .blog-layout,
  .blog-card-grid,
  .fee-benefit-strip,
  .fee-program-grid,
  .fee-note,
  .fee-enquiry,
  .fee-feature-grid,
  .contact-main-grid,
  .contact-info-layout,
  .form-two,
  .class-picker,
  .contact-reasons > div {
    grid-template-columns: 1fr;
  }
  .home-hero-inner {
    min-height: auto;
    padding-top: 48px;
  }
  .home-hero-stage {
    min-height: 420px;
    overflow: hidden;
  }
  .color-ribbon {
    inset: 70px 34px auto 34px;
    height: 300px;
    border-width: 12px;
    transform: rotate(-10deg) scale(.86);
  }
  .ribbon-two {
    inset: 118px 58px auto 58px;
    height: 220px;
    border-width: 8px;
    transform: rotate(-4deg) scale(.86);
  }
  .hero-performer {
    left: 50%;
    width: min(300px, 82vw);
    transform: translateX(-50%);
  }
  .mini-scene {
    width: 142px;
    height: 94px;
  }
  .scene-art { right: 0; }
  .scene-music { left: 0; right: auto; }
  .scene-theatre { right: 0; bottom: 24px; }
  .home-about-art {
    position: relative;
    width: 100%;
    min-height: 220px;
    overflow: hidden;
  }
  .home-about-art span:nth-child(1) { left: 38px; }
  .home-about-art span:nth-child(2) { left: 134px; }
  .home-about-art span:nth-child(3) { left: 226px; }
  .home-about-art span {
    width: 96px;
    transform: none !important;
  }
  .home-about-inner {
    gap: 0;
  }
  .home-class-grid,
  .love-grid,
  .forms-strip,
  .testimonial-row {
    grid-template-columns: 1fr;
  }
  .home-class-card:nth-child(n) {
    grid-column: auto;
  }
  .home-class-card {
    flex-basis: 100%;
  }
  .final-art {
    display: none;
  }
  .about-hero-art {
    width: 100%;
    opacity: .55;
  }
  .about-hero-inner {
    min-height: 290px;
    padding: 42px 0;
  }
  .about-notes {
    right: 22px;
    bottom: 20px;
    font-size: 1.5rem;
  }
  .about-story-grid {
    gap: 24px;
  }
  .about-story-photo {
    min-height: 310px;
  }
  .story-dancer { left: 24px; }
  .story-musician { left: 138px; }
  .story-artist { right: 28px; }
  .value-card,
  .different-card {
    grid-template-columns: 1fr;
  }
  .different-grid {
    gap: 14px;
  }
  .culture-art {
    display: none;
  }
  .culture-band {
    min-height: auto;
    padding: 52px 0;
  }
  .culture-points {
    display: grid;
  }
  .culture-points span {
    border-right: 0;
  }
  .join-art {
    display: none;
  }
  .dance-hero {
    min-height: auto;
  }
  .dance-hero-inner {
    min-height: auto;
    padding-top: 42px;
  }
  .dance-hero-copy h1 {
    font-size: clamp(2.9rem, 14vw, 4.3rem);
  }
  .dance-hero-art {
    min-height: 430px;
    overflow: hidden;
  }
  .hero-img-main {
    left: 50%;
    width: 260px;
    height: 370px;
    transform: translateX(-50%);
  }
  .hero-img-top {
    right: 0;
    top: 14px;
    width: 142px;
    height: 118px;
  }
  .hero-img-right {
    right: 0;
    top: 178px;
    width: 138px;
    height: 150px;
  }
  .hero-img-low {
    left: 0;
    right: auto;
    bottom: 26px;
    width: 150px;
    height: 130px;
  }
  .dance-hero-points {
    display: grid;
    gap: 10px;
  }
  .dance-hero-points span {
    padding: 0;
    border-right: 0;
  }
  .dance-section-title {
    grid-template-columns: 1fr;
  }
  .dance-section-title span {
    display: none;
  }
  .style-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .join-card {
    grid-template-columns: 58px 1fr;
  }
  .dance-final-cta > img {
    height: 170px;
  }
  .choreo-hero {
    min-height: auto;
  }
  .choreo-hero-inner {
    min-height: auto;
    padding-top: 42px;
  }
  .choreo-hero-copy h1 {
    font-size: clamp(2.9rem, 13vw, 4.3rem);
  }
  .choreo-hero-art {
    min-height: 410px;
    overflow: hidden;
  }
  .choreo-hero-main {
    left: 50%;
    width: 255px;
    height: 350px;
    transform: translateX(-50%);
  }
  .choreo-hero-top {
    right: 0;
    width: 142px;
    height: 104px;
  }
  .choreo-hero-mid {
    right: 0;
    top: 142px;
    width: 142px;
    height: 104px;
  }
  .choreo-hero-low {
    left: 0;
    right: auto;
    bottom: 28px;
    width: 154px;
    height: 112px;
  }
  .choreo-hero-points span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }
  .choreo-section-title {
    grid-template-columns: 1fr;
  }
  .choreo-section-title span {
    display: none;
  }
  .performance-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .choreo-final > img {
    height: 170px;
  }
  .gallery-hero {
    min-height: 330px;
  }
  .gallery-hero-bg {
    width: 100%;
    opacity: .28;
  }
  .gallery-hero-left {
    mask-image: linear-gradient(180deg, #000, transparent);
  }
  .gallery-hero-right {
    display: none;
  }
  .gallery-hero p {
    font-size: 1rem;
  }
  .gallery-title-mark {
    width: 190px;
  }
  .gallery-filters {
    display: grid;
    grid-template-columns: 1fr;
  }
  .gallery-filters button {
    justify-content: flex-start;
    width: 100%;
  }
  .gallery-photo,
  .gallery-photo:nth-child(n) {
    min-height: 210px;
  }
  .gallery-photo figcaption {
    transform: none;
  }
  .blog-hero {
    min-height: 320px;
  }
  .blog-hero-bg {
    width: 100%;
    opacity: .26;
  }
  .blog-left {
    mask-image: linear-gradient(180deg, #000, transparent);
  }
  .blog-right {
    display: none;
  }
  .blog-hero p {
    font-size: 1rem;
  }
  .blog-toolbar {
    gap: 16px;
  }
  .blog-search {
    border-radius: 8px;
  }
  .blog-category-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-category-row strong {
    grid-column: 1 / -1;
  }
  .blog-card {
    min-height: auto;
  }
  .blog-image {
    height: 210px;
  }
  .blog-meta {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-pagination {
    gap: 8px;
    max-width: 100%;
  }
  .fee-hero {
    min-height: 330px;
  }
  .fee-hero-bg {
    width: 100%;
    opacity: .28;
  }
  .fee-left {
    mask-image: linear-gradient(180deg, #000, transparent);
  }
  .fee-right {
    display: none;
  }
  .fee-hero p {
    font-size: 1rem;
  }
  .fee-benefit-strip {
    margin-top: 18px;
    padding: 20px;
  }
  .fee-benefit-strip article {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }
  .fee-benefit-strip article:last-child {
    border-bottom: 0;
  }
  .fee-program-card:nth-child(n) {
    grid-column: auto;
  }
  .fee-note span {
    display: none;
  }
  .fee-enquiry {
    gap: 20px;
    padding: 26px;
  }
  .fee-call {
    min-width: 0;
    padding: 18px 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, .25);
    border-bottom: 1px solid rgba(255, 255, 255, .25);
  }
  .contact-hero {
    min-height: 330px;
  }
  .contact-hero-bg {
    width: 100%;
    opacity: .26;
  }
  .contact-left {
    mask-image: linear-gradient(180deg, #000, transparent);
  }
  .contact-right {
    display: none;
  }
  .contact-hero p {
    font-size: 1rem;
  }
  .contact-main-grid {
    gap: 30px;
  }
  .contact-studio-img {
    min-height: 220px;
  }
  .contact-message-form {
    padding: 26px 18px;
    border-radius: 14px;
  }
  .class-picker {
    gap: 12px;
    padding: 16px;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .home-class-grid {
    display: flex;
  }
  .home-class-card:nth-child(n) {
    grid-column: auto;
  }
  .home-class-card {
    flex-basis: calc((100% - 22px) / 2);
  }
  .love-grid,
  .forms-strip {
    grid-template-columns: repeat(4, 1fr);
  }
  .dance-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
  .dance-program-grid,
  .style-strip {
    grid-template-columns: repeat(4, 1fr);
  }
  .join-card-grid,
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .choreo-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
  .choreo-service-grid,
  .performance-strip {
    grid-template-columns: repeat(4, 1fr);
  }
  .work-grid,
  .reason-grid,
  .occasion-grid,
  .choreo-testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-toolbar,
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .fee-benefit-strip,
  .fee-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fee-program-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .fee-program-card:nth-child(n) {
    grid-column: auto;
  }
  .fee-enquiry {
    grid-template-columns: 1fr;
  }
  .fee-call {
    padding: 18px 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, .25);
    border-bottom: 1px solid rgba(255, 255, 255, .25);
  }
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-layout {
    grid-template-columns: 1fr 1fr;
  }
}

/* Final home hero banner override */
.image-home-page .mouse-hero {
  min-height: 570px;
}

.image-home-page .mouse-hero .home-hero-inner {
  display: flex;
  grid-template-columns: none;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(28px, 5vw, 72px);
  padding-right: clamp(28px, 5vw, 72px);
  min-height: 570px;
}

.image-home-page .mouse-hero .home-hero-copy {
  flex: 0 0 40%;
  max-width: 40%;
}

.image-home-page .mouse-hero h1 {
  max-width: 100%;
  font-size: clamp(2.65rem, 3.85vw, 4.55rem);
}

.image-home-page .mouse-hero .hero-lead,
.image-home-page .mouse-hero .home-hero-copy > p:not(.hero-lead) {
  max-width: 100%;
}

.image-home-page .home-hero-bg-img {
  left: 40%;
  width: 60% !important;
  object-fit: contain;
  object-position: right center;
}

.image-home-page .mouse-hero::before {
  background:
    linear-gradient(90deg, rgba(2, 11, 25, .96) 0%, rgba(2, 11, 25, .88) 38%, rgba(2, 11, 25, .2) 45%, rgba(2, 11, 25, 0) 58%),
    linear-gradient(180deg, rgba(2, 11, 25, .08), rgba(2, 11, 25, 0) 72%, rgba(2, 11, 25, .12));
}

.home-instagram {
  padding: 58px 0 64px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 14% 30%, rgba(255, 79, 154, .14), transparent 22%),
    radial-gradient(circle at 82% 58%, rgba(37, 216, 255, .1), transparent 24%),
    #020b19;
}

.instagram-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.instagram-head span {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.instagram-head h2 {
  max-width: 680px;
  margin-top: 8px;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}

.instagram-reel-grid,
.instagram-preview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.instagram-reel-card,
.instagram-preview-card {
  overflow: hidden;
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.instagram-reel-card {
  aspect-ratio: 9 / 16;
  min-height: 0;
}

.instagram-reel-card iframe {
  display: block;
  width: 100% !important;
  height: calc(100% + 154px);
  margin-top: -54px;
  border: 0;
  background: #000;
}

.instagram-preview-card {
  position: relative;
  aspect-ratio: 9 / 13;
  min-height: 0;
}

.instagram-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 11, 25, .88));
}

.instagram-preview-card::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--rose), var(--gold));
  box-shadow: 0 16px 32px rgba(0, 0, 0, .28);
}

.instagram-preview-card span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .image-home-page .mouse-hero {
    min-height: auto;
  }

  .image-home-page .mouse-hero .home-hero-inner {
    min-height: auto;
    padding: 40px 0 360px;
  }

  .image-home-page .home-hero-bg-img {
    inset: auto 0 0 0;
    width: 100% !important;
    height: 340px !important;
    object-fit: contain;
    object-position: center;
    opacity: 1;
  }

  .image-home-page .mouse-hero .home-hero-copy {
    flex-basis: 100%;
    max-width: 100%;
    position: relative;
    z-index: 3;
  }

  .image-home-page .mouse-hero::before {
    background:
      linear-gradient(180deg, rgba(2, 11, 25, .98) 0%, rgba(2, 11, 25, .9) 52%, rgba(2, 11, 25, .18) 72%, rgba(2, 11, 25, .62) 100%);
  }

  .image-home-page .mouse-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .image-home-page .mouse-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .instagram-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .instagram-reel-grid,
  .instagram-preview-grid {
    grid-template-columns: 1fr;
  }

  .instagram-reel-card {
    min-height: 560px;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .image-home-page .mouse-hero h1 {
    font-size: clamp(2.8rem, 4vw, 3.7rem);
  }

  .image-home-page .mouse-hero .hero-lead {
    font-size: 1.08rem;
  }

  .image-home-page .mouse-hero .home-hero-copy {
    flex-basis: 42%;
    max-width: 42%;
  }

  .image-home-page .home-hero-bg-img {
    left: 42%;
    width: 58% !important;
  }

  .instagram-reel-grid,
  .instagram-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .image-home-page .mouse-hero .home-hero-inner {
    padding: 32px 0 300px;
  }

  .image-home-page .home-hero-bg-img {
    height: 280px !important;
  }

  .image-home-page .mouse-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .image-home-page .mouse-hero .hero-lead {
    font-size: 1.02rem;
  }
}

/* Premium home about section polish */
.image-home-about {
  min-height: 330px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 82% 68%, rgba(255, 79, 154, .08), transparent 24%),
    linear-gradient(90deg, #020b19 0%, #061326 50%, #020b19 100%);
}

.image-home-about .home-about-image {
  width: 42%;
  filter: saturate(1.12) contrast(1.06);
}

.image-home-about .home-about-image::after {
  background:
    linear-gradient(90deg, rgba(2, 11, 25, .04) 0%, rgba(2, 11, 25, .22) 48%, rgba(2, 11, 25, .9) 100%);
}

.image-home-about .home-about-inner {
  min-height: 330px;
  grid-template-columns: 42% 58%;
  gap: 0;
}

.image-home-about .home-about-copy {
  max-width: 650px;
  margin: 0 auto;
  padding: 44px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.image-home-about .home-about-copy::before {
  display: none;
}

.image-home-about .home-about-copy h2 {
  max-width: 560px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.image-home-about .home-about-copy h2::after {
  width: 150px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--gold), transparent);
}

.image-home-about .home-about-copy p {
  max-width: 650px;
  color: #e5edf8;
  font-size: 1rem;
}

.image-home-about .home-about-copy .btn {
  min-height: 46px;
  margin-top: 8px;
  box-shadow: 0 18px 36px rgba(255, 79, 154, .18);
}

.image-home-about::before {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 18px;
  width: 220px;
  height: 72px;
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent 0 12%, rgba(255, 79, 154, .95) 13% 17%, transparent 18% 32%, rgba(133, 69, 255, .9) 33% 37%, transparent 38% 52%, rgba(255, 119, 31, .95) 53% 57%, transparent 58% 72%, rgba(37, 216, 255, .9) 73% 77%, transparent 78%);
  transform: rotate(-10deg);
  opacity: .8;
  filter: drop-shadow(0 0 18px rgba(255, 79, 154, .16));
}

@media (max-width: 900px) {
  .image-home-about .home-about-image {
    position: relative;
    width: 100%;
    min-height: 260px;
  }

  .image-home-about .home-about-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .image-home-about .home-about-inner > div:first-child {
    display: none;
  }

  .image-home-about .home-about-copy {
    margin: 0;
    padding: 28px 20px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .image-home-about::before {
    right: -40px;
    bottom: 18px;
    width: 220px;
  }
}

/* Home hero responsive cleanup */
.image-home-page .mouse-hero .home-hero-inner {
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(44px, 5vw, 72px);
}

@media (min-width: 1200px) {
  .image-home-page .mouse-hero .home-hero-copy {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .image-home-page .home-hero-bg-img {
    left: 40%;
    width: 60% !important;
  }
}

@media (min-width: 901px) and (max-width: 1199px) {
  .image-home-page .mouse-hero {
    min-height: 540px;
  }

  .image-home-page .mouse-hero .home-hero-inner {
    min-height: 540px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .image-home-page .mouse-hero .home-hero-copy {
    flex: 0 0 44%;
    max-width: 44%;
  }

  .image-home-page .home-hero-bg-img {
    left: 44%;
    width: 56% !important;
    object-fit: contain;
    object-position: right center;
  }

  .image-home-page .mouse-hero h1 {
    font-size: clamp(2.7rem, 4.2vw, 3.8rem);
  }

  .image-home-page .mouse-hero .hero-lead {
    font-size: 1.05rem;
  }
}

@media (max-width: 900px) {
  .image-home-page .mouse-hero {
    min-height: auto;
  }

  .image-home-page .mouse-hero .home-hero-inner {
    display: block;
    min-height: auto;
    padding: 34px 18px 310px;
  }

  .image-home-page .mouse-hero .home-hero-copy {
    max-width: 680px;
  }

  .image-home-page .home-hero-bg-img {
    inset: auto 0 0 0;
    width: 100% !important;
    height: 300px !important;
    object-fit: contain;
    object-position: center;
  }

  .image-home-page .mouse-hero h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 9vw, 4rem);
  }

  .image-home-page .mouse-hero .hero-actions {
    align-items: flex-start;
    flex-direction: row;
  }

  .image-home-about {
    min-height: auto;
  }

  .image-home-about .home-about-image {
    position: relative;
    width: 100%;
    height: 280px;
    min-height: 0;
  }

  .image-home-about .home-about-inner {
    display: block;
    min-height: auto;
  }

  .image-home-about .home-about-copy {
    max-width: none;
    padding: 30px 18px 40px;
  }
}

@media (max-width: 560px) {
  .image-home-page .mouse-hero .home-hero-inner {
    padding: 28px 16px 260px;
  }

  .image-home-page .home-hero-bg-img {
    height: 250px !important;
  }

  .image-home-page .mouse-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .image-home-page .mouse-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .image-home-about .home-about-image {
    height: 230px;
  }

  .image-home-about .home-about-copy h2 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }
}

/* Premium homepage hero redesign */
.image-home-page .mouse-hero {
  overflow: hidden;
  min-height: clamp(560px, 62vw, 680px);
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 202, 87, .18), transparent 26%),
    radial-gradient(circle at 44% 86%, rgba(255, 79, 154, .12), transparent 30%),
    linear-gradient(115deg, #020b19 0%, #061326 34%, #12030a 100%);
}

.image-home-page .mouse-hero::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 9%;
  z-index: 1;
  display: block;
  width: min(42vw, 640px);
  height: min(16vw, 220px);
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(255, 202, 87, .22), transparent 68%);
  filter: blur(8px);
}

.image-home-page .mouse-hero .home-hero-inner {
  min-height: clamp(560px, 62vw, 680px);
  padding: clamp(50px, 6vw, 82px) clamp(28px, 5vw, 76px);
}

.image-home-page .mouse-hero .home-hero-copy {
  flex: 0 0 37%;
  max-width: 37%;
}

.image-home-page .mouse-hero h1 {
  max-width: 560px;
  font-size: clamp(2.9rem, 4.35vw, 5.1rem);
  line-height: .97;
}

.image-home-page .mouse-hero h1::after {
  content: "";
  display: block;
  width: 154px;
  height: 4px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--gold), transparent);
}

.image-home-page .mouse-hero .hero-lead {
  max-width: 580px;
  margin-top: 22px;
  font-size: clamp(1.06rem, 1.42vw, 1.34rem);
}

.image-home-page .mouse-hero .home-hero-copy > p:not(.hero-lead) {
  max-width: 570px;
  font-size: 1.02rem;
}

.image-home-page .mouse-hero .hero-actions {
  gap: 14px;
  margin-top: 30px;
}

.image-home-page .mouse-hero .btn {
  min-height: 48px;
  border-radius: 8px;
}

.image-home-page .home-hero-bg-img {
  inset: auto -1% auto 36%;
  top: 50%;
  width: 65% !important;
  height: auto !important;
  object-fit: contain;
  object-position: right center;
  transform: translateY(-50%);
  filter: saturate(1.12) contrast(1.05) drop-shadow(0 24px 46px rgba(0, 0, 0, .36));
  -webkit-mask-image: radial-gradient(ellipse at 62% 52%, #000 0%, #000 58%, transparent 78%);
  mask-image: radial-gradient(ellipse at 62% 52%, #000 0%, #000 58%, transparent 78%);
}

.image-home-page .mouse-hero::before {
  background:
    linear-gradient(90deg, rgba(2, 11, 25, .98) 0%, rgba(2, 11, 25, .9) 34%, rgba(2, 11, 25, .2) 47%, rgba(2, 11, 25, 0) 68%),
    linear-gradient(180deg, rgba(2, 11, 25, .68) 0%, rgba(2, 11, 25, .42) 26%, rgba(2, 11, 25, 0) 48%, rgba(2, 11, 25, .18) 100%);
}

@media (min-width: 901px) and (max-width: 1199px) {
  .image-home-page .mouse-hero .home-hero-copy {
    flex-basis: 42%;
    max-width: 42%;
  }

  .image-home-page .home-hero-bg-img {
    inset: auto -3% auto 39%;
    top: 50%;
    width: 65% !important;
    height: auto !important;
  }

  .image-home-page .mouse-hero h1 {
    font-size: clamp(2.7rem, 4.5vw, 4rem);
  }
}

@media (max-width: 900px) {
  .image-home-page .mouse-hero {
    min-height: auto;
  }

  .image-home-page .mouse-hero .home-hero-inner {
    display: block;
    min-height: auto;
    padding: 382px 18px 42px;
  }

  .image-home-page .mouse-hero .home-hero-copy {
    max-width: 680px;
  }

  .image-home-page .home-hero-bg-img {
    inset: 20px -8% auto -8%;
    top: 20px;
    transform: none;
    width: 116% !important;
    height: 330px !important;
    object-position: center;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  }

  .image-home-page .mouse-hero::before {
    background:
      linear-gradient(180deg, rgba(2, 11, 25, .18) 0%, rgba(2, 11, 25, .1) 24%, rgba(2, 11, 25, .88) 42%, rgba(2, 11, 25, .98) 100%);
  }

  .image-home-page .mouse-hero::after {
    right: 8%;
    top: 186px;
    bottom: auto;
    width: 84vw;
    height: 150px;
  }
}

@media (max-width: 560px) {
  .image-home-page .mouse-hero .home-hero-inner {
    padding: 302px 16px 36px;
  }

  .image-home-page .home-hero-bg-img {
    top: 18px;
    height: 258px !important;
  }

  .image-home-page .mouse-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .image-home-page .mouse-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Home love section creative icon cards */
.image-home-page .home-love {
  padding: 18px 0 30px;
  background:
    radial-gradient(circle at 50% 0, rgba(37, 216, 255, .07), transparent 34%),
    #020b19;
}

.image-home-page .home-love h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.1;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

.image-home-page .home-love .site-container {
  width: min(1520px, calc(100% - 36px));
}

.image-home-page .love-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}

.image-home-page .love-card {
  --love-color: #ff4f9a;
  position: relative;
  min-height: 148px;
  padding: 17px 12px 15px;
  border: 1px solid color-mix(in srgb, var(--love-color) 72%, #ffffff 10%);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02)),
    rgba(3, 17, 38, .82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .035),
    0 16px 36px rgba(0, 0, 0, .24);
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.image-home-page .love-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0, color-mix(in srgb, var(--love-color) 28%, transparent), transparent 46%);
  opacity: .45;
  pointer-events: none;
  transition: opacity .25s ease;
}

.image-home-page .love-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 8px;
  color: var(--love-color);
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--love-color) 55%, transparent));
  transition: transform .25s ease, filter .25s ease;
}

.image-home-page .love-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.image-home-page .love-card span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 145px;
  margin: 0 auto;
  color: #f0f5ff;
  font-size: .92rem;
  font-weight: 650;
  line-height: 1.2;
  text-wrap: balance;
}

.image-home-page .love-card:hover {
  border-color: var(--love-color);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .028)),
    rgba(5, 22, 48, .94);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--love-color) 34%, transparent),
    0 0 22px color-mix(in srgb, var(--love-color) 45%, transparent),
    0 22px 48px rgba(0, 0, 0, .32);
  transform: translateY(-6px) scale(1.035);
}

.image-home-page .love-card:hover::before {
  opacity: .82;
}

.image-home-page .love-card:hover .love-icon {
  transform: scale(1.09);
  filter:
    drop-shadow(0 0 10px color-mix(in srgb, var(--love-color) 78%, transparent))
    drop-shadow(0 0 22px color-mix(in srgb, var(--love-color) 55%, transparent));
}

.image-home-page .love-pink { --love-color: #ff4f9a; }
.image-home-page .love-orange { --love-color: #ff8a20; }
.image-home-page .love-green { --love-color: #86d733; }
.image-home-page .love-cyan { --love-color: #25d8ff; }
.image-home-page .love-rose { --love-color: #ff526f; }
.image-home-page .love-blue { --love-color: #35c7ff; }
.image-home-page .love-purple { --love-color: #bd5cff; }
.image-home-page .love-coral { --love-color: #ff6d32; }

@media (max-width: 1200px) {
  .image-home-page .love-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .image-home-page .home-love .site-container {
    width: min(1120px, calc(100% - 32px));
  }
}

@media (max-width: 700px) {
  .image-home-page .love-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .image-home-page .love-card {
    min-height: 138px;
  }
}

@media (max-width: 420px) {
  .image-home-page .love-grid {
    grid-template-columns: 1fr;
  }
}

/* About page real image placement */
.about-hero-art img,
.about-story-photo img,
.culture-art img,
.join-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-art {
  background: none;
}

.about-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 11, 25, .08), rgba(2, 11, 25, .88));
}

.about-story-photo {
  background: #09182d;
}

.about-story-photo::after,
.story-dancer,
.story-artist,
.story-musician,
.culture-art::after {
  display: none;
}

.culture-art {
  background: #0b1f3a;
}

.culture-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 11, 25, .2), rgba(2, 11, 25, .82));
  z-index: 1;
}

.culture-right {
  transform: none;
}

.culture-right::before {
  background: linear-gradient(270deg, rgba(2, 11, 25, .2), rgba(2, 11, 25, .82));
}

.join-art {
  overflow: hidden;
  background: #0a1c38;
}

.join-art img {
  transition: transform .35s ease;
}

.join-art:hover img,
.about-story-photo:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .about-hero-art img,
  .about-hero-art::after {
    opacity: .78;
  }
}

/* Final about story photo correction */
.about-page .about-story-photo {
  min-height: 430px;
  background: #071326 !important;
}

.about-page .about-story-photo img {
  object-fit: cover;
  object-position: 42% center;
}

.about-page .about-story-photo::after,
.about-page .about-story-photo::before,
.about-page .story-dancer,
.about-page .story-artist,
.about-page .story-musician {
  content: none !important;
  display: none !important;
}

@media (max-width: 900px) {
  .about-page .about-story-photo {
    min-height: 330px;
  }

  .about-page .about-story-photo img {
    object-position: center;
  }
}

/* Dance page real image correction */
.dance-page .dance-hero-art {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: #071326;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
}

.dance-page .hero-img-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.02);
}

.dance-page .dance-program-card img,
.dance-page .style-tile img,
.dance-page .dance-final-cta > img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.dance-page .dance-program-card img {
  height: 178px;
}

.dance-page .style-tile img {
  height: 96px;
}

.dance-page .dance-final-cta > img {
  object-position: center;
}

@media (max-width: 900px) {
  .dance-page .dance-hero-art {
    min-height: 310px;
  }

  .dance-page .hero-img-main {
    left: 0;
    bottom: auto;
    width: 100%;
    height: 100%;
    transform: none;
  }
}

/* Dance classes hero banner refinement */
.dance-page .dance-hero {
  min-height: 650px;
}

.dance-page .dance-hero-inner {
  grid-template-columns: minmax(0, 455px) minmax(560px, 1fr);
  gap: 48px;
  min-height: 650px;
  padding: 46px 0 38px;
}

.dance-page .dance-hero-copy h1 {
  max-width: 470px;
  font-size: clamp(4rem, 4.8vw, 5.05rem);
  line-height: .94;
  letter-spacing: 0;
}

.dance-page .dance-hero-copy p {
  max-width: 470px;
}

.dance-page .dance-hero-art {
  aspect-ratio: 1.45 / 1;
  min-height: 0;
  align-self: start;
  margin-top: 42px;
}

.dance-page .hero-img-main {
  position: absolute;
  inset: 0;
  transform: none;
}

@media (max-width: 900px) {
  .dance-page .dance-hero {
    min-height: auto;
  }

  .dance-page .dance-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 48px 0 42px;
  }

  .dance-page .dance-hero-copy h1 {
    max-width: 680px;
    font-size: clamp(3.2rem, 13vw, 4.6rem);
  }

  .dance-page .dance-hero-copy p {
    max-width: 680px;
  }

  .dance-page .dance-hero-art {
    aspect-ratio: 1.55 / 1;
    min-height: 0;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .dance-page .dance-hero-inner {
    padding-top: 38px;
  }

  .dance-page .dance-hero-copy h1 {
    font-size: clamp(2.95rem, 16vw, 4rem);
  }

  .dance-page .dance-hero-art {
    aspect-ratio: 1 / .78;
  }
}

/* Choreography page real image correction */
.choreo-page .choreo-hero-art img,
.choreo-page .choreo-service-card img,
.choreo-page .performance-strip img,
.choreo-page .choreo-final > img {
  object-fit: cover;
  object-position: center;
}

.choreo-page .choreo-hero-art img {
  background: #071326;
}

.choreo-page .choreo-hero-main {
  object-position: center;
}

.choreo-page .choreo-hero-top,
.choreo-page .choreo-hero-mid,
.choreo-page .choreo-hero-low {
  object-position: center;
}

.choreo-page .choreo-service-card img {
  width: 100%;
  height: 170px;
}

.choreo-page .performance-strip img {
  width: 100%;
  height: 128px;
}

.choreo-page .choreo-final > img {
  width: 100%;
}

@media (max-width: 900px) {
.choreo-page .choreo-hero-art img {
    object-position: center;
  }
}

/* Gallery page real image correction */
.gallery-page .gallery-hero-bg img,
.gallery-page .gallery-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-page .gallery-photo img {
  position: absolute;
  inset: 0;
  transition: transform .3s ease, filter .3s ease;
}

.gallery-page .gallery-photo:hover img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.04);
}

/* Contact page real image correction */
.contact-page .contact-hero-bg img,
.contact-page .contact-studio-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-page .contact-hero-bg {
  overflow: hidden;
}

.contact-page .contact-studio-img {
  min-height: 300px;
  background: #071326;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  transition: transform .3s ease, filter .3s ease;
}

.contact-page .contact-studio-img:hover {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.03);
}

@media (max-width: 900px) {
.contact-page .contact-studio-img {
    min-height: 240px;
  }
}

/* Blog page real image correction */
.blog-page .blog-hero-bg img,
.blog-page .blog-image img,
.blog-page .popular-list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-page .blog-hero-bg {
  overflow: hidden;
}

.blog-page .blog-image {
  overflow: hidden;
}

.blog-page .blog-image img {
  transition: transform .3s ease, filter .3s ease;
}

.blog-page .blog-card:hover .blog-image img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.04);
}

.blog-page .popular-list img {
  width: 64px;
  min-width: 64px;
  object-position: center;
}
