:root {
  --accent: #d53f77;
  --accent-strong: #b72d62;
  --accent-soft: #ffe4ef;
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-alt: #fdf9fc;
  --ink: #1d2433;
  --muted: #667085;
  --line: #e2e8f0;
  --shadow: 0 20px 45px rgba(17, 24, 39, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 10%, rgba(213, 63, 119, 0.18), transparent 36%),
    radial-gradient(circle at 86% 14%, rgba(29, 36, 51, 0.1), transparent 38%),
    var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  line-height: 1.1;
  font-family: "Playfair Display", serif;
  color: #151a24;
}

h1 {
  font-size: clamp(2.1rem, 5.6vw, 4.2rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
}

h3 {
  font-size: 1.36rem;
}

p {
  margin: 0;
}

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

.container {
  width: min(1280px, calc(100% - 2rem));
  margin-inline: auto;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(transparent 98%, rgba(29, 36, 51, 0.06) 100%);
  background-size: 100% 6px;
  opacity: 0.22;
  z-index: -1;
}

.site-header-top {
  border-bottom: 1px solid #9e2356;
  background: #221f23;
  backdrop-filter: blur(10px);
}

.site-nav-sticky {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(110deg, rgba(213, 63, 119, 0.96), rgba(168, 45, 96, 0.94)),
    #d53f77;
  backdrop-filter: blur(10px);
}

.header-top {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-row {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.index2-layout .centered-wrap-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid #9e2356;
}

.index2-layout .centered-wrap-row {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.9rem;
  position: relative;
}

.index2-layout .centered-main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.index2-layout .centered-main-nav-left {
  justify-content: flex-end;
}

.index2-layout .centered-main-nav-right {
  justify-content: flex-start;
}

.index2-layout .centered-main-nav a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.2rem;
  white-space: nowrap;
}

.index2-layout .centered-main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ffd4e6;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.index2-layout .centered-main-nav a:hover::after,
.index2-layout .centered-main-nav a.active::after {
  transform: scaleX(1);
}

.index2-layout .centered-logo {
  justify-self: center;
}

.index2-layout .centered-header-actions {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.index2-layout .centered-header-cta {
  display: flex;
  justify-content: center;
  padding-bottom: 0.7rem;
}

.index2-layout .centered-header-cta .nav-right {
  margin-left: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 0;
}

.logo img {
  display: block;
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.logo-title {
  color: #dd1c85;
  font-family: "Dancing Script", cursive;
  font-size: 2.85rem;
  font-weight: 400;
  letter-spacing: 0;
  text-shadow:
    -1px -1px 0 #fff8fb,
    1px -1px 0 #fff8fb,
    -1px 1px 0 #fff8fb,
    1px 1px 0 #fff8fb,
    2px 3px 0 rgba(246, 234, 240, 0.72);
}

.logo-subtitle {
  margin-top: 0.15rem;
  color: #e6e6e6;
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.9rem;
}

.social-link:hover {
  border-color: #ffd4e6;
  color: #ffd4e6;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.8rem;
  flex: 0 0 auto;
  width: auto;
}

.main-nav a {
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.2rem;
  white-space: nowrap;
}

.main-nav a:hover {
  color: #fff3f9;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ffd4e6;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: #fff3f9;
}

.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  font: inherit;
}

.nav-toggle i {
  font-size: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.18rem;
  font-weight: 700;
  font-size: 0.93rem;
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-strong);
}

.button-small {
  padding: 0.56rem 0.95rem;
}

.button-ghost {
  background: transparent;
  color: var(--ink);
  border-color: #c7d0db;
}

.button-ghost:hover {
  background: #fff;
  color: var(--accent-strong);
  border-color: var(--accent);
}

.button-ghost-light {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.button-ghost-light:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.nav-right .button:hover {
  border-color: #9e2356;
}

.mobile-nav-links {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.mobile-nav-links a {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 0.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  white-space: nowrap;
}

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

.mobile-nav-links a.active {
  color: #ffd4e6;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-actions {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.mobile-actions .button {
  justify-content: center;
  width: 100%;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.mission-band {
  position: relative;
  padding: 2.4rem 0 1.2rem;
  background: linear-gradient(115deg, #e86b9a 0%, #df5b8f 100%);
  border-bottom: 8px solid #c7487d;
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.2rem;
  align-items: start;
}

.mission-copy h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  font-family: "League Spartan", sans-serif;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.title-bullet {
  font-size: 0.33em;
  vertical-align: middle;
  margin: 0 0.34em;
}

.mission-copy p {
  margin-top: 0.8rem;
  color: #fff;
  font-size: 1.05rem;
  max-width: 100%;
  line-height: 1.45;
}

.mission-button {
  margin-top: 1.3rem;
  min-width: 220px;
  background: #1f1f24;
  border-color: #1f1f24;
}

.mission-button:hover {
  background: #141418;
  border-color: #141418;
}

.mission-photo {
  width: 86%;
  margin-left: auto;
  margin-bottom: 0;
}

.mission-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.why-banner {
  border-top: 4px solid #b63a6f;
  background:
    linear-gradient(180deg, rgba(223, 91, 143, 0.32) 0%, rgba(255, 255, 255, 0.96) 42%, #ffffff 100%);
  padding: 5rem 0 2.6rem;
}

.why-inner {
  text-align: center;
}

.why-inner h2 {
  display: inline-block;
  margin-bottom: 1rem;
  color: #d53f77;
  font-family: "League Spartan", sans-serif;
  border-bottom: 2px solid #d9c2cd;
  padding-bottom: 0.2rem;
}

.why-inner p {
  max-width: 1040px;
  margin: 0 auto;
  color: #5a5a5a;
  font-size: 1.08rem;
  line-height: 1.45;
}

.why-bold {
  margin-top: 0.8rem;
  font-weight: 800;
  color: #4e4e4e;
}

.programs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1.1rem 0 1.8rem;
  margin-top: 1.1rem;
  margin-bottom: 2rem;
}

.card {
  border: 1px solid #dde4ef;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

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

.programs .card h3 {
  font-family: "Dancing Script", cursive;
  text-align: center;
  font-size: 2rem;
}

.photo-strip {
  margin-top: 4.8rem;
  margin-bottom: 2rem;
}

.carousel-title {
  font-family: "League Spartan", sans-serif;
  text-align: center;
  margin-bottom: 0.7rem;
}

.gallery-carousel {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dde4ef;
  box-shadow: var(--shadow);
}

.carousel-trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.75rem;
  background: #fff;
}

.carousel-trio img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
  width: 52px;
}

.gallery-carousel .carousel-control-prev-icon,
.gallery-carousel .carousel-control-next-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.6);
  background-size: 52% 52%;
}

.schedule-section {
  margin: 2.2rem auto 2rem;
  padding: 1.8rem 1.2rem;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
}

.schedule-section h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-family: "League Spartan", sans-serif;
  color: #3a3a3a;
}

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

.day-card {
  text-align: center;
  color: #4a4a4a;
}

.day-card h3 {
  font-family: "League Spartan", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  color: #303030;
}

.day-card p {
  margin: 0.35rem 0;
  font-size: 0.98rem;
}

.day-card:nth-child(5),
.day-card:nth-child(6) {
  grid-column: span 2;
}

.split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 0 2.1rem;
}

.split p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.metrics {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.62rem;
}

.metrics div {
  border-left: 3px solid var(--accent);
  padding-left: 0.8rem;
}

.metrics strong {
  display: block;
  font-size: 0.95rem;
  color: #243041;
}

.metrics span {
  color: #5f6879;
  font-size: 0.93rem;
}

.resource-panel {
  border: 1px solid #dde4ef;
  border-radius: var(--radius);
  background: var(--surface-alt);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.resource-panel h3 {
  font-size: 1.44rem;
}

.resource-panel a {
  display: block;
  margin: 0.56rem 0;
  color: #243041;
  font-weight: 700;
}

.resource-panel a:hover {
  color: var(--accent-strong);
}

.season {
  border: 1px solid rgba(213, 63, 119, 0.35);
  border-radius: 24px;
  background:
    linear-gradient(126deg, rgba(213, 63, 119, 0.2), rgba(244, 196, 217, 0.35)),
    var(--surface);
  padding: 1.5rem;
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.season p {
  color: #545f73;
}

.season h2,
.contact h2 {
  font-family: "League Spartan", sans-serif;
}

.pink-title {
  color: #d53f77;
}

.contact {
  position: relative;
  padding: 0 0 6rem;
}

.contact::before {
  content: "";
  display: block;
  width: min(620px, 90%);
  height: 4px;
  margin: 0 auto 2rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(158, 35, 86, 0) 0%,
    rgba(158, 35, 86, 0.35) 18%,
    rgba(158, 35, 86, 0.95) 50%,
    rgba(158, 35, 86, 0.35) 82%,
    rgba(158, 35, 86, 0) 100%
  );
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

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

.contact-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #dde4ef;
  box-shadow: var(--shadow);
}

.owner-section {
  display: grid;
  grid-template-columns: 0.45fr 1.3fr;
  gap: 1rem;
  align-items: start;
  margin: 2rem auto 1.6rem;
  padding: 1rem;
  border: 1px solid #dde4ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.owner-photo-wrap img {
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.owner-details h2 {
  font-family: "League Spartan", sans-serif;
  margin-bottom: 0.5rem;
}

.owner-meta {
  display: grid;
  gap: 0.55rem;
}

.owner-meta p {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #edf1f7;
  padding-bottom: 0.35rem;
}

.owner-meta span {
  color: #697385;
  font-size: 0.95rem;
}

.owner-meta strong {
  font-size: 1rem;
  color: #2f3442;
}

.owner-details p {
  color: #4f5c72;
  margin: 0.4rem 0;
  font-size: 1.02rem;
}

.owner-bio {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.owner-bio p {
  margin: 0;
  color: #4f5c72;
  line-height: 1.55;
  font-size: 0.98rem;
}

.students-note {
  margin: 0 auto 3rem;
  text-align: center;
  padding: 1.5rem 1.2rem;
  border: 1px solid #dde4ef;
  border-radius: 12px;
  background: #fff;
}

.students-note h2 {
  font-family: "League Spartan", sans-serif;
  color: #d53f77;
  margin-bottom: 0.3rem;
  font-size: 1.65rem;
  display: inline-block;
  border-bottom: 1px solid #d9dde4;
  padding-bottom: 0.35rem;
}

.students-note blockquote {
  margin: 0.8rem auto 0;
  max-width: 860px;
  color: #2f3442;
  font-size: clamp(0.95rem, 1.9vw, 1.2rem);
  font-weight: 600;
  line-height: 1.35;
}

.instructors-intro {
  margin: 2rem auto 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instructors-intro h1 {
  font-family: "League Spartan", sans-serif;
  margin-bottom: 0.45rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

.instructors-intro p {
  max-width: 760px;
  margin: 0 auto;
  color: #5a6475;
}

.teacher-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1rem auto 3rem;
}

.teacher-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: start;
  gap: 1.35rem;
  border: 1px solid #dde4ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.07);
  padding: 0.95rem 1rem;
}

.teacher-card:not(:has(.teacher-media img)) {
  grid-template-columns: 1fr;
  padding: 0.85rem 1rem 0.95rem;
}

.teacher-card:not(:has(.teacher-media img)) .teacher-media {
  display: none;
}

.teacher-media {
  align-self: start;
}

.teacher-media img {
  display: block;
  width: 100%;
  aspect-ratio: 366 / 500;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
}

.teacher-profile {
  min-width: 0;
}

.teacher-card h2 {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1.65rem, 2.6vw, 2.1rem);
  line-height: 1;
  margin-bottom: 0.18rem;
}

.teacher-title {
  color: #d53f77;
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0;
}

.teacher-classes {
  margin-top: 0.5rem;
  color: #4f5c72;
  font-size: 0.95rem;
}

.teacher-desc {
  margin-top: 0.55rem;
  color: #566175;
  font-size: 0.95rem;
  line-height: 1.45;
}

.teacher-desc p + p {
  margin-top: 0.65rem;
}

.classes-intro {
  margin: 2rem auto 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
}

.classes-intro h1 {
  font-family: "League Spartan", sans-serif;
  margin: 0;
  text-align: center;
}

.team-page-title h1 {
  max-width: none;
  white-space: nowrap;
}

.class-types {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1rem auto 1.4rem;
}

.class-type-card {
  border: 1px solid #dde4ef;
  border-radius: 12px;
  padding: 0.8rem;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
}

.class-type-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 9px;
  margin-bottom: 0.6rem;
}

.class-type-card h2 {
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.55rem;
  color: #9e2356;
  border-bottom: 1px solid #deb8c8;
  padding-bottom: 0.28rem;
}

.class-type-card p {
  margin: 0;
  color: #566175;
  font-size: 0.95rem;
  text-align: center;
}

.summer-camps {
  margin: 3.8rem auto 2rem;
}

.event-section {
  margin: 3.8rem 0 2rem;
}

.event-section .section-title-block {
  margin-bottom: 1.15rem;
}

.event-banner {
  background: #fff;
  border: 1px solid #ead3de;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
  display: block;
  margin: 0 auto;
  overflow: hidden;
  padding: 1.15rem;
  position: relative;
}

.event-banner-static {
  padding: 0.9rem;
}

.event-banner::before {
  background: #111827;
  content: "";
  display: block;
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.event-banner-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-banner-static .event-banner-grid {
  gap: 0.9rem;
}

.event-count-1 .event-banner-grid {
  grid-template-columns: 1fr;
}

.event-banner-card {
  align-items: center;
  background: #fff7fb;
  border: 1px solid #efd0df;
  border-radius: 10px;
  display: flex;
  gap: 1.15rem;
  justify-content: flex-start;
  min-height: 154px;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
}

.event-banner-static .event-banner-card {
  min-height: 136px;
  padding: 1.05rem 1.15rem;
}

.event-banner-card::before {
  background: #111827;
  border-radius: 999px;
  content: "";
  flex: 0 0 5px;
  height: calc(100% - 1.7rem);
}

.event-banner-copy {
  display: grid;
  gap: 0.36rem;
  min-width: 0;
  place-content: center start;
}

.event-banner-copy span {
  color: #111827;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-banner-copy h2 {
  color: #111827;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.02;
  margin: 0;
}

.event-banner-copy p {
  color: #5f6879;
  font-weight: 650;
  line-height: 1.4;
  margin: 0;
  max-width: 46rem;
}

.event-banner .button {
  background: #111827;
  align-self: center;
  color: #fff;
  flex: 0 0 auto;
  margin-left: auto;
  box-shadow: none;
  max-width: 10rem;
  text-align: center;
}

.event-banner .button:hover {
  background: #d83b7d;
  color: #fff;
}

.event-carousel {
  padding: 0 3.6rem;
}

.event-carousel-mobile {
  display: none;
}

.event-carousel .carousel-control-prev,
.event-carousel .carousel-control-next {
  opacity: 1;
  width: 3.25rem;
}

.event-carousel .carousel-control-prev-icon,
.event-carousel .carousel-control-next-icon {
  background-color: #d83b7d;
  background-size: 55%;
  border: 1px solid #c52f6c;
  border-radius: 999px;
  height: 2.25rem;
  width: 2.25rem;
}

.section-title-block {
  max-width: 760px;
  margin: 0 auto 1.15rem;
  text-align: center;
}

.section-title-block h2 {
  font-family: "League Spartan", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 0.35rem;
}

.section-title-block p {
  color: #566175;
  font-size: 1.05rem;
}

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

.summer-camp-month {
  border: 1px solid #dde4ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
  overflow: hidden;
  padding: 1rem;
}

.summer-camp-month:nth-child(1) {
  border-top: 8px solid #67b7e9;
}

.summer-camp-month:nth-child(2) {
  border-top: 8px solid #f1c84b;
}

.summer-camp-month:nth-child(3) {
  border-top: 8px solid #df6faa;
}

.summer-camp-month h3 {
  color: #9e2356;
  font-family: "League Spartan", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.summer-camp-month ul {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.summer-camp-month li {
  border-top: 1px solid #eef2f8;
  display: grid;
  gap: 0.16rem;
  padding-top: 0.65rem;
}

.summer-camp-month li:first-child {
  border-top: 0;
  padding-top: 0;
}

.summer-camp-month strong {
  color: #1d2433;
  font-size: 0.96rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.summer-camp-month span,
.summer-camp-month em {
  color: #566175;
  font-size: 0.92rem;
  line-height: 1.35;
}

.summer-camp-month em {
  color: #9e2356;
  font-style: normal;
  font-weight: 700;
}

.weekly-schedule {
  margin: 3.8rem auto 2rem;
}

.weekly-schedule h2 {
  text-align: center;
  font-family: "League Spartan", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 0.35rem;
}

.schedule-note,
.schedule-footnote {
  color: #667085;
  font-weight: 700;
  text-align: center;
}

.schedule-note {
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.84rem;
}

.schedule-footnote {
  margin-top: 1rem;
  font-style: italic;
}

.week-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.today-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}

.schedule-cta {
  margin-top: 1rem;
  text-align: center;
}

.day-panel {
  background: #fff;
  border: 1px solid #dde4ef;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
  padding: 0.95rem;
}

.day-panel h3 {
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  color: #9e2356;
  border-bottom: 1px solid #deb8c8;
  padding-bottom: 0.28rem;
  margin-bottom: 0.65rem;
}

.day-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.day-panel li {
  display: grid;
  grid-template-columns: minmax(118px, max-content) minmax(0, 1fr);
  gap: 0.45rem;
  align-items: start;
  border-top: 1px solid #eef2f8;
  padding-top: 0.42rem;
}

.day-panel li:first-child {
  border-top: 0;
  padding-top: 0;
}

.time-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fde7f1;
  color: #b22d61;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.17rem 0.38rem;
  white-space: nowrap;
}

.day-panel li span:last-child {
  color: #4f5c72;
  font-size: 0.93rem;
  line-height: 1.35;
}

.policies-intro {
  margin: 2rem auto 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.policies-intro h1 {
  font-family: "League Spartan", sans-serif;
  margin-bottom: 0.4rem;
}

.policies-intro p {
  max-width: 760px;
  margin: 0 auto;
  color: #5a6475;
}

.policies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1rem auto 3rem;
  width: 100%;
  max-width: 1020px;
}

.policy-card {
  border: 1px solid #dde4ef;
  border-radius: 12px;
  padding: 1.1rem 1.15rem;
  background: #fff;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.05);
}

.policy-card h2 {
  font-family: "Dancing Script", cursive;
  margin-bottom: 0.55rem;
  font-size: 2rem;
  color: #9e2356;
  border-bottom: 1px solid #deb8c8;
  padding-bottom: 0.28rem;
}

.policy-card p,
.policy-card li {
  color: #4f5c72;
  font-size: 0.94rem;
  line-height: 1.5;
}

.policy-card ul {
  margin: 0.4rem 0 0.6rem 1rem;
  padding: 0;
}

.contact-page-hero {
  margin: 2rem auto 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-page-hero h1 {
  font-family: "League Spartan", sans-serif;
  margin-bottom: 0.45rem;
  width: 100%;
  text-align: center;
}

.contact-page-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #5a6475;
}

.contact-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  margin: 1rem auto 2rem;
}

.contact-info-panel,
.map-panel-alt {
  border: 1px solid #dde4ef;
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
}

.contact-info-panel h2,
.map-panel-alt h2 {
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  color: #9e2356;
  border-bottom: 1px solid #deb8c8;
  padding-bottom: 0.28rem;
  margin: 0 0 0.65rem;
}

.contact-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.contact-lines li {
  border-top: 1px solid #edf1f7;
  padding-top: 0.55rem;
}

.contact-lines li:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-lines span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #7a8597;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-lines span i {
  color: #9e2356;
}

.contact-lines strong {
  display: block;
  margin-top: 0.2rem;
  color: #2f3442;
  font-size: 1rem;
}

.contact-lines a {
  color: #000;
}

.map-panel-alt p {
  margin: 0 0 0.7rem;
  color: #5a6475;
  font-size: 0.94rem;
}

.map-panel-alt iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 10px;
}

.gallery-intro {
  margin: 2rem auto 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-intro h1 {
  font-family: "League Spartan", sans-serif;
  margin-bottom: 0.35rem;
}

.gallery-intro p {
  margin: 0;
  color: #5a6475;
}

.masonry-gallery {
  column-count: 3;
  column-gap: 0.85rem;
  margin: 1rem auto 3rem;
}

.gallery-item {
  break-inside: avoid;
  margin: 0 0 0.85rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dde4ef;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
  background: #fff;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

.register-band {
  border: 1px solid rgba(213, 63, 119, 0.35);
  border-radius: 20px;
  background:
    linear-gradient(126deg, rgba(213, 63, 119, 0.14), rgba(213, 63, 119, 0.06)),
    var(--surface);
  padding: 1.5rem;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.register-band h2 {
  font-family: "League Spartan", sans-serif;
  margin-bottom: 0.35rem;
}

.register-band p {
  margin: 0;
  color: #545f73;
}

.team-hero {
  margin: 2rem auto 1.2rem;
}

.team-hero-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  align-items: center;
  border: 1px solid #e3e8f1;
  border-left: 8px solid #9e2356;
  border-radius: 14px;
  padding: 1.1rem;
  background: #fff;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
}

.team-hero-copy h1 {
  font-family: "League Spartan", sans-serif;
  margin-bottom: 0.45rem;
  max-width: none;
}

.team-hero-copy p {
  color: #4f5c72;
  margin-bottom: 0.65rem;
}

.team-hero-copy ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #4f5c72;
  display: grid;
  gap: 0.25rem;
}

.team-hero-image img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #dde4ef;
}

.team-pillars {
  margin: 2.4rem auto 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.team-pillars > h2 {
  grid-column: 1 / -1;
  font-family: "League Spartan", sans-serif;
  text-align: center;
  margin-bottom: 0.1rem;
}

.team-pillars .card h2 {
  font-family: "Dancing Script", cursive;
  text-align: center;
  font-size: 1.9rem;
  color: #9e2356;
  border-bottom: 1px solid #deb8c8;
  padding-bottom: 0.25rem;
}

.team-pillars .card p {
  text-align: center;
}

.team-roadmap {
  margin: 2.4rem auto 1.8rem;
}

.team-roadmap h2 {
  font-family: "League Spartan", sans-serif;
  text-align: center;
  margin-bottom: 0.75rem;
}

.team-level-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.team-level {
  border: 1px solid #dde4ef;
  border-radius: 12px;
  background: #fff;
  padding: 0.95rem;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.team-level h3 {
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  color: #9e2356;
  border-bottom: 1px solid #deb8c8;
  padding-bottom: 0.25rem;
  margin-bottom: 0.45rem;
}

.team-level p {
  color: #566175;
  font-size: 0.95rem;
}

.team-level ul {
  margin: 0.45rem 0 0;
  padding-left: 1rem;
  color: #4f5c72;
  font-size: 0.92rem;
}

.team-audition {
  margin: 2.4rem auto 2rem;
  border: 1px solid #dde4ef;
  border-radius: 14px;
  background: #fff;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.team-audition h2 {
  font-family: "League Spartan", sans-serif;
  text-align: center;
  margin-bottom: 0.65rem;
}

.team-audition ol {
  margin: 0 auto;
  max-width: 900px;
  padding-left: 1.2rem;
  color: #4f5c72;
  display: grid;
  gap: 0.45rem;
}

.team-images {
  margin: 2.4rem auto 1.8rem;
}

.team-images h2 {
  font-family: "League Spartan", sans-serif;
  text-align: center;
  margin-bottom: 0.75rem;
}

.team-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.team-image-card {
  margin: 0;
  border: 1px solid #dde4ef;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
  background: #fff;
}

.team-image-card img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.competitions-section {
  margin: 2.4rem auto 1.8rem;
  position: relative;
  padding-bottom: 1.4rem;
}

.competitions-section::after {
  content: "";
  display: block;
  width: min(420px, 82%);
  height: 4px;
  margin: 3rem auto 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(158, 35, 86, 0) 0%,
    rgba(158, 35, 86, 0.35) 18%,
    rgba(158, 35, 86, 0.95) 50%,
    rgba(158, 35, 86, 0.35) 82%,
    rgba(158, 35, 86, 0) 100%
  );
}

.team-cta {
  margin-top: 1.8rem;
}

.competitions-section h2 {
  font-family: "League Spartan", sans-serif;
  text-align: center;
  margin-bottom: 0.75rem;
}

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

.competition-card {
  border: 1px solid #dde4ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
  padding: 0.85rem 0.9rem;
  text-align: center;
}

.competition-card h3 {
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  color: #9e2356;
  border-bottom: 1px solid #deb8c8;
  padding-bottom: 0.25rem;
  margin-bottom: 0.45rem;
}

.competition-card p {
  color: #4f5c72;
  font-size: 0.93rem;
  margin: 0.2rem 0;
}

.site-footer {
  border-top: 4px solid var(--accent-strong);
  background:
    linear-gradient(135deg, rgba(34, 31, 35, 0.98), rgba(28, 24, 29, 0.98)),
    #221f23;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.8fr) minmax(260px, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 3rem 0 2.3rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
}

.footer-logo img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  background: #221f23;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.footer-logo strong,
.footer-nav p,
.footer-contact p {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.footer-logo small {
  display: block;
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.footer-brand > p {
  max-width: 32rem;
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.footer-socials a,
.footer-contact i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-socials a:hover,
.footer-contact a:hover,
.footer-nav a:hover {
  color: #fff;
}

.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-nav p,
.footer-contact p {
  margin-bottom: 0.25rem;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-contact a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
}

.footer-contact i {
  font-size: 0.9rem;
}

.footer-contact .footer-register {
  display: inline-flex;
  grid-template-columns: none;
  justify-self: start;
  width: fit-content;
  margin-top: 0.7rem;
  color: #fff !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

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

@media (max-width: 940px) {
  .mission-inner,
  .class-types,
  .contact-showcase,
  .contact-wrap,
  .policies-grid,
  .week-board,
  .summer-camp-grid,
  .team-level-grid,
  .team-pillars,
  .team-image-grid,
  .competitions-grid,
  .team-hero-card,
  .owner-section,
  .teacher-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .mission-photo {
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
  }

  .mission-photo img {
    height: 220px;
  }

  .why-banner {
    padding-top: 2rem;
  }

  .programs {
    grid-template-columns: 1fr;
    margin-top: 1rem;
    margin-bottom: 1.4rem;
  }

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

  .day-card:nth-child(5),
  .day-card:nth-child(6) {
    grid-column: span 1;
  }

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

  .carousel-trio img {
    height: 220px;
  }

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

  .event-banner {
    padding: 0.75rem;
  }

  .event-banner-grid {
    grid-template-columns: 1fr;
  }

  .event-carousel-desktop,
  .event-banner-grid-desktop {
    display: none;
  }

  .event-carousel-mobile {
    display: block;
  }

  .event-banner-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 0;
  }

  .event-banner-card::before {
    flex: 0 0 8px;
    height: 5px;
    width: 48px;
  }

  .event-banner-copy {
    padding: 0;
  }

  .event-carousel {
    padding: 0 2.7rem;
  }

  .team-hero-image img {
    height: 240px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .index2-layout .centered-main-nav {
    display: none;
  }

  .index2-layout .centered-wrap-row {
    min-height: 82px;
    grid-template-columns: 1fr;
  }

  .index2-layout .centered-logo {
    justify-self: start;
  }

  .index2-layout .centered-header-actions {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .index2-layout .centered-header-cta {
    display: none;
  }

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

  .nav-right,
  .header-actions .social-link,
  .nav-left {
    display: none;
  }

  .nav-row {
    min-height: 0;
    border-top: 0;
  }

  .mission-band {
    padding: 1.6rem 0 1rem;
  }

  .mission-copy h1 {
    width: 100%;
    max-width: none;
    text-align: center;
    white-space: normal;
  }

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

  .mission-copy p {
    max-width: none;
    text-align: center;
  }

  .mission-button {
    min-width: 0;
    width: 100%;
  }

  .why-inner p {
    font-size: 1rem;
  }

  .register-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-banner .button {
    margin-left: 0;
    max-width: none;
    width: 100%;
  }

  .map-panel-alt iframe {
    height: 300px;
  }

  .masonry-gallery {
    column-count: 2;
  }

  .carousel-trio {
    grid-template-columns: 1fr;
  }

  .carousel-trio img {
    height: 210px;
  }

  .masonry-gallery {
    column-count: 1;
  }

  .logo img {
    width: 66px;
    height: 66px;
  }

  .logo-title {
    font-size: 2.1rem;
  }

  .logo-subtitle {
    font-size: 0.62rem;
  }

  .teacher-card {
    grid-template-columns: 1fr;
  }

  .teacher-media {
    justify-self: center;
    width: min(240px, 100%);
  }

  .teacher-media img {
    height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 2.2rem 0 1.6rem;
  }

  .footer-bottom {
    display: block;
  }
}
