:root {
  color-scheme: light;
  --brand-pink: #fdcbd3;
  --pink-50: #fff5f7;
  --pink-100: #ffe9ed;
  --pink-200: #fdcbd3;
  --pink-300: #f6b7c4;
  --pink-500: #f18ea4;
  --ink-900: #24242a;
  --ink-700: #2b2b2f;
  --ink-500: #5b5b62;
  --ink-950: #24242a;
  --ink-900-alt: #2e2e36;
  --cream: #fffdfc;
  --white: #ffffff;
  --border: rgba(15, 15, 16, 0.08);
  --shadow-soft: 0 20px 40px rgba(31, 26, 29, 0.12);
  --shadow-card: 0 10px 20px rgba(31, 26, 29, 0.08);
  --shadow-strong: 0 28px 60px rgba(15, 15, 16, 0.12);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --font-sans: "IBM Plex Sans", sans-serif;
  --font-serif: "IBM Plex Serif", serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: hidden;
  height: 100%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-950);
  background: linear-gradient(180deg, #ffffff 0%, #fff7f9 35%, #ffffff 70%, #fff4f7 100%);
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(253, 203, 211, 0.25), transparent 55%),
    radial-gradient(circle at 88% 76%, rgba(253, 203, 211, 0.18), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

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

a {
  color: inherit;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink-900);
  border-bottom: none;
  padding-bottom: 0;
  width: fit-content;
}

.contact-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(36, 36, 42, 0.12);
  padding-bottom: 1px;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--ink-900);
  border-bottom-color: rgba(36, 36, 42, 0.26);
}

.phone-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.phone-separator {
  color: var(--ink-500);
  opacity: 0.35;
  font-weight: 400;
  padding: 0 8px;
  display: inline-block;
}

.footer-contact .phone-separator {
  padding: 0 4px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink-900);
  background: rgba(253, 203, 211, 0.25);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink-900);
  color: var(--white);
  text-decoration: none;
  z-index: 99;
}

.skip-link:focus {
  left: 12px;
}

.page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px 0;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px 0 12px;
  background: transparent;
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(15, 15, 16, 0.05);
  z-index: -1;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-mark {
  background: transparent;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: auto;
  height: 68px;
}


.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-700);
}


.nav-list a {
  text-decoration: none;
  position: relative;
  padding: 6px 12px;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: rgba(253, 203, 211, 0.35);
  color: var(--ink-900);
}

.nav-list a.is-active {
  background: rgba(253, 203, 211, 0.35);
  color: var(--ink-900);
}
.nav-toggle {
  display: none;
  background: rgba(253, 203, 211, 0.25);
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 8px 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-toggle-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
}

.nav-toggle-icon svg {
  width: 80%;
  height: 80%;
  /* stroke: currentColor; */
  /* background-color: #fff; */
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-cta {
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--white);
  background: var(--ink-950);
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--brand-pink);
  color: var(--ink-900);
  transform: translateY(-2px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.9rem;
  border: 1px solid rgba(15, 15, 16, 0.2);
  box-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button.primary {
  background: var(--ink-950);
  color: var(--white);
  border-color: transparent;
}

.button.primary:hover {
  background: var(--brand-pink);
  color: var(--ink-900);
}

.button.ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: rgba(15, 15, 16, 0.25);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 56px;
  padding: 120px 0 110px;
  min-height: 90vh;
  position: relative;
}


.marquee {
  margin: 40px 0 70px;
  background: transparent;
  color: var(--white);
  overflow: hidden;
  position: relative;
  z-index: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(120deg, var(--ink-950) 0%, var(--ink-900-alt) 60%, var(--ink-950) 100%);
  z-index: -1;
}

.marquee-track {
  display: flex;
  gap: 200px;
  padding: 24px 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3.2px;
  font-weight: 600;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}

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

.stats {
  margin: 60px 0 90px;
  position: relative;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  top: -160px;
  bottom: -160px;
  background: linear-gradient(180deg, rgba(253, 203, 211, 0) 0%, rgba(253, 203, 211, 0.18) 50%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding: 12px 0;
}

.stat-card {
  padding: 0;
  display: grid;
  gap: 6px;
  align-content: start;
  position: relative;
  padding-left: 28px;
  padding-top: 10px;
}

.stat-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(253, 203, 211, 0.7);
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
}

.stat-label {
  color: var(--ink-700);
  font-size: 0.95rem;
}

.stat-note {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-700);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brand-pink);
  border-radius: 50%;
}

.hero-text {
  position: relative;
  padding-left: 0;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  margin: 16px 0 8px;
  color: var(--ink-900);
  white-space: nowrap;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-700);
  margin: 0 0 18px;
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 10px;
  text-transform: none;
  background: rgba(253, 203, 211, 0.2);
}

.hero-subhead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 46px 0 0;
}


.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  max-width: 520px;
  margin-left: auto;
  overflow: hidden;
}

/* .hero-frame::before {
  content: "";
  position: absolute;
  inset: -10% -6% 14% 6%;
  background: rgba(253, 203, 211, 0.28);
  border-radius: 32px;
  transform: rotate(-3deg);
  z-index: 0;
} */

.hero-frame img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  /* box-shadow: var(--shadow-soft); */
  position: relative;
  z-index: 1;
}

.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(15, 15, 16, 0.65);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  font-size: 0.7rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--white);
}


.section-header {
  margin-bottom: 36px;
  position: relative;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ink-500);
  margin: 0 0 8px;
}

.section-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-pink);
  margin-right: 8px;
}


.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 8px 0 6px;
}

.section-subtitle {
  max-width: 640px;
  color: var(--ink-700);
  line-height: 1.6;
  font-size: 1rem;
}

.about {
  padding: 90px 0;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.7fr);
  gap: 28px;
  align-items: start;
}

.about-aside {
  display: grid;
  gap: 16px;
  align-content: start;
}

.about-photo {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: rgba(255, 255, 255, 0.9);
  width: min(100%, 280px);
  justify-self: end;
}

.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  max-height: 260px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-700);
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  color: var(--ink-700);
}

.about-list li {
  padding-left: 18px;
  position: relative;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-pink);
}

.quote-card {
  position: relative;
  background: rgba(253, 203, 211, 0.18);
  border-radius: 18px;
  padding: 22px 24px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink-700);
  box-shadow: var(--shadow-card);
}

.quote-card::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 14px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(253, 203, 211, 0.35);
}

.programs,
.schooling,
.concerts,
.locations,
.media,
.news,
.booking {
  padding: 90px 0;
}

.tone-neutral,
.tone-soft,
.tone-wash,
.tone-cream {
  position: relative;
  z-index: 0;
  --tone-mid: rgba(253, 203, 211, 0.16);
}

.tone-neutral::before,
.tone-soft::before,
.tone-wash::before,
.tone-cream::before {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  top: -200px;
  bottom: -200px;
  background: linear-gradient(
    180deg,
    rgba(253, 203, 211, 0) 0%,
    var(--tone-mid) 50%,
    rgba(253, 203, 211, 0) 100%
  );
  opacity: 0.9;
  z-index: -1;
}

.tone-soft {
  --tone-mid: rgba(253, 203, 211, 0.22);
}

.tone-neutral {
  --tone-mid: rgba(253, 203, 211, 0.12);
}

.tone-wash {
  --tone-mid: rgba(253, 203, 211, 0.2);
}

.tone-cream {
  --tone-mid: rgba(253, 203, 211, 0.24);
}

.program-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.programs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.6fr);
  gap: 36px;
  align-items: start;
}

.programs-media {
  display: grid;
  gap: 16px;
  align-content: start;
  width: min(100%, 320px);
  justify-self: end;
}

.media-card {
  margin: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: rgba(255, 255, 255, 0.9);
}

.media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.media-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-900);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.programs-media-card {
  aspect-ratio: 16 / 11;
  max-height: 220px;
}

.schooling-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.6fr);
  gap: 36px;
  align-items: start;
}

.schooling-media {
  display: grid;
  gap: 16px;
  align-content: start;
  width: min(100%, 320px);
  justify-self: end;
}

.schooling-media-card {
  aspect-ratio: 16 / 11;
  max-height: 220px;
}

.program-block h3 {
  margin: 0 0 12px;
}

.program-block {
  position: relative;
  padding-left: 20px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.program-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(253, 203, 211, 0.7);
}

.program-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: var(--ink-700);
}

.program-list li {
  padding: 0 0 0 18px;
  position: relative;
}

.program-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-pink);
  position: absolute;
  left: 0;
  top: 0.6rem;
}

.schooling-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  counter-reset: schooling;
}

.schooling-panel {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.schooling-panel::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(253, 203, 211, 0.28);
}

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

.schooling-card {
  position: relative;
  border: none;
  border-radius: 0;
  padding: 4px 0 0 64px;
  background: transparent;
  box-shadow: none;
  counter-increment: schooling;
}

.schooling-card::before {
  content: counter(schooling, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -6px;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: rgba(241, 142, 164, 0.9);
}

.schooling-card::after {
  content: "";
  position: absolute;
  left: -10px;
  top: -12px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(253, 203, 211, 0.2);
  z-index: -1;
}

.schooling-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.schooling-card p {
  margin: 0;
  color: var(--ink-700);
  max-width: 360px;
}

.schooling-card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
  color: var(--ink-700);
}

.schooling-card ul li {
  position: relative;
  padding-left: 16px;
}

.schooling-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-pink);
}

.schooling-note {
  margin-top: 10px;
  padding: 20px 22px;
  border-top: none;
  border-radius: 20px;
  background: rgba(253, 203, 211, 0.16);
  box-shadow: none;
  color: var(--ink-700);
  position: relative;
}

.schooling-note::before {
  content: "";
  position: absolute;
  right: 18px;
  top: -14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(253, 203, 211, 0.35);
}

.schooling-note h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
}

.schooling-note p {
  margin: 0 0 12px;
}

.schooling-note ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.schooling-note li {
  padding-left: 18px;
  position: relative;
}

.schooling-note li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-pink);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.concerts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.concerts {
  background: transparent;
  color: var(--white);
  border-radius: 0;
  padding: 100px 0;
  margin: 90px 0;
  width: 100%;
  position: relative;
  overflow: visible;
  border: none;
  box-shadow: none;
  z-index: 0;
}

.concerts::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background:
    radial-gradient(circle at 15% 20%, rgba(253, 203, 211, 0.16), transparent 60%),
    linear-gradient(120deg, #19191e 0%, #24242b 55%, #1e1e24 100%);
  z-index: -1;
}

.concerts::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 240px;
  height: 240px;
  background: rgba(253, 203, 211, 0.2);
  border-radius: 50%;
  opacity: 0.12;
  z-index: 0;
}

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

.concerts .section-header,
.concerts-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.concerts .section-subtitle,
.concerts .concerts-text p,
.concerts .concerts-list {
  color: rgba(255, 255, 255, 0.8);
}

.concerts .section-eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.concerts-text p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.78);
}

.concerts-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.concerts-list li {
  padding-left: 18px;
  position: relative;
}

.concerts-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-pink);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.concerts-dates {
  margin-top: 16px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-pink);
}

.concerts-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: none;
  display: block;
}

.location-panel {
  position: relative;
  padding: 6px 0;
}

.location-panel::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(253, 203, 211, 0.25);
}

.location-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
  counter-reset: location;
}

.location-item {
  padding: 30px 32px;
  border-radius: 20px;
  /* background: linear-gradient(120deg, #24242a 0%, #2e2e36 60%, #24242a 100%); */
  background: linear-gradient(120deg, rgb(68 51 54) 0%, #3c2e30 60%, #24242a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
  counter-increment: location;
}

.location-item::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(253, 203, 211, 0.18);
}

.location-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.location-details {
  display: grid;
  gap: 12px;
  position: relative;
  padding-left: 58px;
  z-index: 1;
}

.location-details::before {
  content: counter(location, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -6px;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: rgba(253, 203, 211, 0.95);
}

.location-details::after {
  content: "";
  position: absolute;
  left: -8px;
  top: -12px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  z-index: -1;
}

.location-head {
  display: grid;
  gap: 6px;
}

.location-head h3 {
  margin: 0;
  font-size: 1.1rem;
  position: relative;
  padding-left: 0;
  color: var(--white);
}

.location-head h3::before {
  content: none;
}

.location-address {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.location-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.location-meta {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.location-map {
  display: grid;
  gap: 8px;
  width: 220px;
  max-width: 100%;
  justify-items: start;
}

.meta-item {
  display: grid;
  gap: 4px;
}

.meta-item span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.6);
}

.meta-item strong {
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}

.location-map-embed {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  height: 150px;
  background: rgba(255, 255, 255, 0.9);
}

.location-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-map-link {
  text-decoration: none;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 0;
  text-align: center;
  display: block;
  width: 100%;
}

.location-meta p {
  margin: 4px 0;
}

.media-block {
  margin-bottom: 28px;
}

.media-block + .media-block {
  margin-top: 32px;
  padding-top: 28px;
  border-top: none;
}

.media-heading {
  font-family: var(--font-serif);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-family: var(--font-sans);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid:not(.is-expanded) .gallery-card:nth-child(n + 6) {
  display: none;
}

.gallery-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  grid-column: span 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.gallery-card:nth-child(1) {
  grid-column: span 7;
}

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

.gallery-card:nth-child(5n + 1):nth-child(n + 6) {
  grid-column: span 7;
}

.gallery-card:nth-child(5n + 2):nth-child(n + 6) {
  grid-column: span 5;
}

.gallery-grid.is-expanded .gallery-card:last-child {
  grid-column: 3 / span 8;
}

.gallery-grid.is-expanded .gallery-card:last-child img {
  height: clamp(120px, 14vw, 180px);
  aspect-ratio: auto;
  object-position: center 65%;
}

.gallery-card figcaption {
  padding: 10px 2px 0;
  color: var(--ink-700);
  background: transparent;
  border-top: none;
}

.gallery-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.gallery-actions .button {
  cursor: pointer;
}

.gallery-actions .gallery-toggle {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(36, 36, 42, 0.22);
  border-radius: 0;
  padding: 12px 12px 8px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink-500);
  box-shadow: none;
}

.gallery-actions .gallery-toggle:hover,
.gallery-actions .gallery-toggle:focus-visible {
  background: transparent;
  border-bottom-color: rgba(36, 36, 42, 0.4);
  color: var(--ink-700);
  transform: none;
  box-shadow: none;
}

.news-list {
  display: grid;
  gap: 24px;
}

.news-item {
  display: grid;
  gap: 8px;
  padding: 0;
  border-bottom: none;
  border-left: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.news-tag {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-500);
}

.news-meta {
  font-size: 0.85rem;
  color: var(--ink-500);
}

.booking {
  position: relative;
  z-index: 0;
}

.booking::before {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  top: -200px;
  bottom: -200px;
  background: linear-gradient(180deg, rgba(253, 203, 211, 0) 0%, rgba(253, 203, 211, 0.16) 55%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  position: relative;
  align-items: start;
  overflow: visible;
  box-shadow: none;
}

.booking-card::after {
  content: none;
}

.booking-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
  margin-bottom: 22px;
  padding-left: 22px;
  color: var(--ink-900);
}

.booking-method {
  display: grid;
  gap: 6px;
  position: relative;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.booking-method::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-pink);
  position: absolute;
  left: -20px;
  top: 6px;
}

.booking-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.6rem;
  color: var(--ink-500);
  padding-left: 0;
}

.booking-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-900);
  padding-left: 0;
}

.booking-actions {
  display: grid;
  gap: 14px;
  align-content: start;
  justify-items: stretch;
  background: linear-gradient(120deg, #24242a 0%, #2e2e36 60%, #24242a 100%);
  color: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
  align-self: center;
  margin-top: 0;
}

.booking-actions::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(253, 203, 211, 0.22);
}

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

.booking-actions .button {
  width: 100%;
  min-width: 0;
  border-radius: 12px;
  padding: 14px 20px;
  justify-content: center;
}

.booking-action-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
}

.booking-action-note {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.booking-actions .button.primary {
  background: var(--brand-pink);
  color: var(--ink-900);
  border-color: transparent;
}

.booking-actions .button.ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.site-footer {
  margin-top: 60px;
  padding: 40px 0 34px;
  border-top: none;
  display: grid;
  gap: 32px;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -16px;
  bottom: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(120deg, #24242a 0%, #2e2e36 60%, #24242a 100%);
  z-index: -1;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.footer-left {
  display: grid;
  gap: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.site-footer .logo {
  height: 44px;
}

.footer-note {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 360px;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}

.footer-contact p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact p::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(253, 203, 211, 0.7);
}

.footer-title {
  margin: 0 0 8px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-block,
.footer-social-block {
  display: grid;
  gap: 8px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.16);
}

.social-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 1.6;
}

.social-icon svg path {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-powered {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-powered a {
  color: inherit;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

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

@media (max-width: 1000px) {
  .site-header {
    padding: 8px 0 10px;
    top: 0;
  }

  .site-nav {
    justify-content: center;
  }

  .nav-list {
    gap: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text {
    padding-left: 0;
  }

  .hero h1 {
    white-space: normal;
  }

  .hero-text::before {
    display: none;
  }

  .hero-visual {
    order: -1;
  }

  .hero-frame {
    margin-right: auto;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-photo {
    justify-self: start;
    width: min(100%, 340px);
  }

  .programs-layout,
  .schooling-layout {
    grid-template-columns: 1fr;
  }

  .programs-media,
  .schooling-media {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    width: 100%;
    justify-self: stretch;
  }

  .concerts-layout {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: 0;
  }

  .location-body {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .location-details {
    padding-left: 52px;
  }

  .location-map {
    width: 100%;
  }

  .location-map-embed {
    height: 180px;
  }

  .location-list {
    grid-template-columns: 1fr;
  }

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

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

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

  .gallery-grid .gallery-card {
    grid-column: span 1;
  }

  .gallery-grid .gallery-card:nth-child(n) {
    grid-column: span 1;
  }

  .gallery-grid.is-expanded .gallery-card:last-child {
    grid-column: span 1;
  }

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

@media (max-width: 1100px) {
  .nav-list {
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .nav-list a {
    padding: 6px 8px;
  }

  .header-cta {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

@media (min-width: 901px) {
  .nav-list .nav-cta-item {
    display: none;
  }
}

@media (max-width: 940px) and (min-width: 901px) {
  .site-header {
    gap: 16px;
  }

  .nav-list {
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .nav-list a {
    padding: 6px 8px;
  }

  .header-cta {
    padding: 7px 12px;
    font-size: 0.78rem;
  }
}

@media (max-width: 1000px) and (min-width: 901px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 32px;
    padding: 90px 0 80px;
  }

  .hero-visual {
    order: 0;
  }

  .hero-frame {
    max-width: 440px;
    margin: 0 0 0 auto;
  }

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

  .booking-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 28px;
  }
}

@media (max-width: 1000px) and (min-width: 601px) {
  .gallery-grid:not(.is-expanded) .gallery-card:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 420px);
  }

  .gallery-grid:not(.is-expanded) .gallery-card:nth-child(5) img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 900px) {
  .page {
    max-width: 760px;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: start;
    row-gap: 12px;
    position: relative;
  }

  .site-header::before {
    background: #ffffff;
  }

  .logo-block {
    grid-column: 1;
    grid-row: 1;
  }

  .site-nav {
    display: contents;
  }

  .logo {
    height: 56px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    position: relative;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    background-color: var(--white);
    background-image: repeating-linear-gradient(
      1800deg,
      rgba(36, 36, 42, 0.1) 0,
      rgba(36, 36, 42, 0.1) 1px,
      transparent 1px,
      transparent 32.3px
    );
    background-origin: content-box;
    background-clip: content-box;
    background-repeat: repeat;
    padding: 25px 18px 25px 86px;
    border-radius: var(--radius-lg);
    margin-top: 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-self: center;
    grid-column: 1 / -1;
    grid-row: 2;
    border: none;
    box-shadow: 0 18px 32px rgba(31, 26, 29, 0.12);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    position: relative;
    overflow: hidden;
    gap: 10px;
    min-height: 42vh;
    min-height: 297px;
  }

  .nav-list .nav-keys {
    position: absolute;
    
    right: 18px;
    top: 8px;
    width: 40%;
    max-width: 30vw;
    height: 100%;
    max-height: 100%;
    padding: 0;
    margin: 0;
    background-image: linear-gradient(
      180deg,
      transparent 0 20%,
      var(--ink-700) 20% 27%,
      transparent 27% 31%,
      var(--ink-700) 31% 38%,
      transparent 38% 53%,
      var(--ink-700) 53% 60%,
      transparent 60% 63.5%,
      var(--ink-700) 63.5% 70.5%,
      transparent 70.5% 74.3%,
      var(--ink-700) 74.3% 81.5%,
      transparent 81.5% 100%
    );
    background-repeat: repeat-x;
    background-size: 160px 100%;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
  }

  .nav-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 64px;
    background: var(--pink-50);
    /* border-right: 1px solid rgba(253, 203, 211, 0.45); */
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    z-index: 0;
  }

  .nav-list::after {
    content: "Menu";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 64px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 0.24em;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--ink-500);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
  }

  .nav-list li {
    padding-right: 0;
    position: relative;
    z-index: 1;
  }

  .nav-list li::after {
    display: none;
  }

  .nav-list a.is-active {
    background: transparent;
    color: inherit;
  }

  .stat-card {
    border-left: none;
    padding-left: 0;
    text-align: center;
    padding-top: 36px;
  }

  .stat-card::before {
    left: 50%;
    transform: translateX(-50%);
    top: 0.75rem;
  }

  .stat-value {
    margin-top: 14px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list .nav-cta-item {
    margin-top: auto;
  }

  .header-actions {
    display: none;
  }

  .about,
  .about,
  .programs,
  .schooling,
  .concerts,
  .locations,
  .media,
  .news,
  .booking {
    padding: 46px 0;
  }

  .hero {
    padding: 0 0 12px;
    gap: 18px;
  }

  .hero-visual {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
  }

  .hero-frame {
    max-width: none;
    margin: 0;
  }

  .hero-frame img {
    border-radius: 0;
    box-shadow: none;
  }

  .hero-frame::before {
    display: none;
  }

  .about {
    padding-top: 16px;
  }

  .schooling {
    padding-bottom: 16px;
  }

  .locations {
    padding-top: 16px;
  }

  .concerts {
    padding-bottom: 24px;
    margin: 24px 0;
    overflow: visible;
  }

  .nav-list.open {
    box-shadow: 0 18px 36px rgba(31, 26, 29, 0.14);
    /* box-shadow: 0 18px 36px rgb(202 160 166 / 29%); */
  }

}

@media (max-width: 600px) {
  .page {
    padding: 0 18px 18px;
  }

  .programs,
  .schooling,
  .concerts,
  .locations,
  .media,
  .news,
  .booking {
    padding: 34px 0;
  }

  .site-header {
    padding: 8px 0 8px;
  }

  .logo {
    height: 50px;
  }

  .hero-frame {
    padding: 0;
  }

  .hero-frame::before {
    display: none;
  }

  .hero-badge {
    position: static;
    margin-top: 16px;
  }

  .hero {
    padding: 0 0 8px;
  }

  .about {
    padding-top: 16px;
  }

  .schooling {
    padding-bottom: 16px;
  }

  .locations {
    padding-top: 16px;
  }

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

  .gallery-grid .gallery-card {
    grid-column: span 1;
  }

  .gallery-grid .gallery-card:nth-child(n) {
    grid-column: span 1;
  }

  .gallery-grid.is-expanded .gallery-card:last-child {
    grid-column: span 1;
  }

  .booking-actions {
    justify-items: stretch;
  }

  .booking-actions .button {
    width: 100%;
  }

  .booking-methods {
    padding-left: 0;
  }

  .booking-method {
    padding-left: 18px;
  }

  .booking-method::before {
    left: 0;
  }

  .concerts {
    padding: 34px 0 24px;
    margin: 32px 0;
    border-radius: 0;
  }

  .concerts .section-header,
  .concerts-layout {
    padding: 0 18px;
  }

  .site-footer::before {
    bottom: -18px;
  }
}

.nav-open .site-header::before {
  /* background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.98) 70%,
    rgba(255, 245, 247, 0.96) 100%
  ); */
  /* background: var(--white); */
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }

  .button,
  .button.primary,
  .button.ghost {
    transition: none;
  }
}

:focus-visible {
  outline: 2px solid var(--brand-pink);
  outline-offset: 3px;
}
