:root {
  --color-bg: #ffffff;
  --color-surface: #f8f7fc;
  --color-surface-strong: #f0f5ff;
  --color-text: #171421;
  --color-muted: #5f5a6f;
  --color-border: #e6e1f2;
  --color-purple: #7c4fd8;
  --color-purple-soft: #ece4ff;
  --color-blue-soft: #e8f3ff;
  --color-accent: #d7336f;
  --color-accent-dark: #a8164c;
  --color-statement: #7a246f;
  --color-vision-blue: #6f8df4;
  --shadow-card: 0 18px 44px rgba(38, 25, 75, 0.13);
  --shadow-soft: 0 10px 26px rgba(36, 25, 66, 0.08);
  --radius: 8px;
  --radius-lg: 18px;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --space-section: clamp(4rem, 7vw, 6.5rem);
  --shell: min(1120px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid #1d77ff;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--color-text);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(230, 225, 242, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.nav-menu {
  display: none;
  position: absolute;
  inset: 74px 16px auto 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 0.75rem;
}

.nav-menu.is-open {
  display: grid;
}

.nav-menu a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-wrap: balance;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 180ms ease, color 180ms ease;
}

.nav-menu a:hover {
  color: var(--color-text);
  background: var(--color-purple-soft);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  margin-left: auto;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  content: "";
}

.nav-toggle__line::before {
  transform: translateY(-7px);
}

.nav-toggle__line::after {
  transform: translateY(5px);
}

.nav-cta {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0.82rem 1.25rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 14px 30px rgba(215, 51, 111, 0.34);
}

.button--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 16px 34px rgba(168, 22, 76, 0.36);
}

.button--secondary {
  background: #fff;
  color: var(--color-text);
  border-color: #b8acd6;
}

.button--secondary:hover {
  border-color: var(--color-purple);
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.8rem, 7vw, 6.5rem) 0 var(--space-section);
  background:
    linear-gradient(90deg, rgba(124, 79, 216, 0.08), transparent 34%),
    #fff;
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--color-purple), #8bc4ff, transparent);
  content: "";
  display: none;
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--color-purple);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
  word-break: normal;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.65rem, 8vw, 5rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.15rem;
}

.hero__subheading {
  margin: 0.8rem 0 0;
  color: var(--color-purple);
  font-size: clamp(1.2rem, 3.4vw, 1.9rem);
  font-weight: 800;
}

.hero__statement {
  max-width: 680px;
  margin: 1.45rem 0 0;
  color: var(--color-statement);
  font-size: clamp(1.75rem, 4.3vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
}

.hero__mission {
  max-width: 650px;
  margin: 0.9rem 0 0;
  color: var(--color-muted);
  font-size: 1.06rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.hero__media {
  position: relative;
}

.hero__media img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(54, 45, 84, 0.16);
}

.media-note {
  margin-top: 0.65rem;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.vision-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: #fff;
  background: linear-gradient(135deg, #748df2 0%, #6e7fe8 48%, #8d7be6 100%);
}

.vision-layout {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.vision-title {
  color: #070711;
  font-size: clamp(3rem, 9vw, 5.8rem);
  font-weight: 300;
  line-height: 0.86;
  text-transform: uppercase;
}

.vision-title span,
.vision-title strong {
  display: block;
}

.vision-title span {
  color: #fff;
  font-weight: 300;
}

.vision-title strong {
  color: #090915;
  font-weight: 300;
}

.vision-copy {
  max-width: min(760px, 100%);
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 4.2vw, 2.65rem);
  font-weight: 500;
  line-height: 1.42;
  text-align: left;
  overflow-wrap: normal;
  word-break: normal;
}

.vision-copy .text-highlight {
  white-space: normal;
}

.text-highlight {
  color: #6f174f;
  font-weight: 850;
}

.vision-copy .text-highlight {
  color: #ffe1a8;
  text-shadow:
    0 0 1px rgba(63, 18, 72, 0.86),
    0 0 10px rgba(255, 225, 168, 0.58),
    0 2px 14px rgba(84, 24, 90, 0.34);
}

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

.section + .section {
  border-top: 1px solid rgba(230, 225, 242, 0.7);
}

.section--soft {
  background:
    linear-gradient(135deg, rgba(236, 228, 255, 0.88), rgba(232, 243, 255, 0.55)),
    var(--color-surface);
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.section-heading--center {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.feature-grid,
.program-grid,
.award-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.feature-card,
.program-card,
.stream-card,
.quote-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.program-card:hover,
.stream-card:hover,
.award-badge:hover {
  transform: translateY(-3px);
  border-color: #d2c4f0;
  box-shadow: var(--shadow-card);
}

.feature-card {
  display: grid;
  align-content: start;
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-card__media-button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.feature-card__media-button img {
  display: block;
  transition: transform 220ms ease;
}

.feature-card__media-button:hover img {
  transform: scale(1.025);
}

.image-placeholder {
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  color: #5f39b4;
  background:
    linear-gradient(135deg, rgba(232, 243, 255, 0.92), rgba(236, 228, 255, 0.9)),
    #f8f7fc;
  border-bottom: 1px solid var(--color-border);
  font-weight: 800;
}

.image-placeholder span {
  max-width: 16rem;
}

.feature-card div,
.program-card,
.stream-card,
.quote-card {
  padding: clamp(1.15rem, 2vw, 1.45rem);
}

.feature-card h3,
.program-card h3,
.stream-card h3 {
  margin-bottom: 0.55rem;
  min-height: 2.5em;
}

.feature-card p,
.program-card dd,
.stream-card p,
.quote-card blockquote {
  margin: 0;
  color: var(--color-muted);
}

.endorsement {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.endorsement__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.quote-card blockquote {
  color: var(--color-text);
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
}

.quote-card figcaption {
  margin-top: 1rem;
  color: var(--color-purple);
  font-weight: 800;
}

.award-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  padding: clamp(1rem, 3vw, 1.5rem);
  background:
    linear-gradient(135deg, rgba(255, 246, 220, 0.72), rgba(236, 228, 255, 0.9)),
    #fff;
  border: 1px solid rgba(205, 177, 91, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.award-grid::after {
  position: absolute;
  left: clamp(1rem, 4vw, 2rem);
  right: clamp(1rem, 4vw, 2rem);
  bottom: -10px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(198, 154, 48, 0.72), rgba(244, 213, 123, 0.9), rgba(198, 154, 48, 0.72), transparent);
  border-radius: 999px;
  content: "";
}

.award-badge {
  position: relative;
  display: grid;
  gap: 0.65rem;
  min-height: 150px;
  place-items: center;
  padding: 1rem;
  text-align: center;
  color: var(--color-text);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 232, 160, 0.42), transparent 46%),
    linear-gradient(180deg, #fff, #fbf8ef);
  border: 1px solid rgba(198, 154, 48, 0.38);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  overflow: hidden;
}

.award-badge::before {
  position: absolute;
  inset: 0;
  border-top: 4px solid rgba(198, 154, 48, 0.7);
  content: "";
}

.award-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #5a3b00;
  background: linear-gradient(135deg, #f8dc82, #c69a30);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 8px 18px rgba(112, 75, 0, 0.18);
  font-size: 1.35rem;
}

.award-icon--2 {
  background: linear-gradient(135deg, #e6d7ff, #8b6ce8);
  color: #2f225e;
}

.award-icon--3 {
  background: linear-gradient(135deg, #fff0af, #d7336f);
  color: #44142d;
}

.award-icon--4 {
  background: linear-gradient(135deg, #f8dc82, #7c4fd8);
  color: #fff;
}

.award-icon--5 {
  background: linear-gradient(135deg, #fff3b6, #c69a30);
  color: #3d2b02;
}

.award-icon--6 {
  background: linear-gradient(135deg, #ffe9f2, #d7336f);
  color: #fff;
}

.award-icon--7 {
  background: linear-gradient(135deg, #e8f3ff, #7c4fd8);
  color: #fff;
}

.award-icon--8 {
  background: linear-gradient(135deg, #e8f3ff, #7c4fd8);
  color: #fff;
}

.program-card dl {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 0;
}

.program-card,
.stream-card {
  height: 100%;
}

.program-card {
  position: relative;
}

.program-card--smart {
  background: rgba(232, 243, 255, 0.68);
}

.program-card--private {
  background: rgba(246, 241, 255, 0.58);
}

.program-card--adult {
  background: rgba(247, 245, 241, 0.78);
}

.program-card--theory {
  background: rgba(236, 228, 255, 0.7);
}

.program-card h3 {
  color: #4a2b91;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.18;
}

.program-card--has-ndis h3 {
  padding-right: 5.25rem;
}

.program-card--smart h3 {
  color: #1769a6;
}

.program-card--private h3 {
  color: #5f39b4;
}

.program-card--adult h3 {
  color: #63513f;
}

.program-card--theory h3 {
  color: #6d42c5;
}

.ameb-intro-title {
  margin-top: 1.45rem;
}

.program-card dt {
  margin-bottom: 0.2rem;
  color: var(--color-purple);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.program-card dd {
  margin: 0;
}

.ndis-logo {
  position: absolute;
  right: clamp(1.15rem, 2vw, 1.45rem);
  top: clamp(1.15rem, 2vw, 1.45rem);
  display: block;
  width: 72px;
  height: auto;
  margin: 0;
}

.ameb-layout {
  display: grid;
  gap: 2rem;
}

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

.check-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1.35rem 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--color-text);
  font-weight: 700;
}

.check-list li::before {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--color-purple);
  border-radius: 50%;
  content: "✓";
  font-size: 0.8rem;
}

.stream-stack {
  display: grid;
  gap: 1rem;
}

.stream-card strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--color-text);
}

.ameb-signup {
  width: fit-content;
  margin-top: 0.35rem;
}

.at-home-support {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background: rgba(236, 228, 255, 0.74);
  border: 1px solid rgba(124, 79, 216, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.section-subtitle {
  margin: 0.6rem 0 0;
  color: var(--color-purple);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
}

.support-image-grid {
  display: grid;
  gap: 1rem;
}

.support-image-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.support-copy {
  max-width: 850px;
  margin: 1.35rem 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.support-callout {
  max-width: 850px;
  margin: 0.85rem 0 0;
  padding: 0;
  color: var(--color-text);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 700;
}

.achievements-subtitle {
  max-width: 680px;
}

.achievement-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 2vw, 1.15rem);
  align-items: stretch;
}

.achievement-item {
  aspect-ratio: 4 / 3;
  min-height: 0;
  min-width: 0;
  width: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.achievement-item:hover {
  transform: translateY(-3px);
  border-color: #d2c4f0;
  box-shadow: var(--shadow-card);
}

.achievement-item img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.achievement-item--document {
  background: linear-gradient(135deg, #fff, var(--color-purple-soft));
}

.achievement-item--document img {
  object-fit: contain;
  padding: 0.8rem;
}

.achievement-item--feature,
.achievement-item--performance-feature,
.achievement-item--concert-feature {
  aspect-ratio: 16 / 10;
}

.achievement-item--studio-small img {
  object-position: center top;
}

.is-lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
  background: rgba(18, 14, 30, 0.86);
  opacity: 1;
  transition: opacity 180ms ease;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__figure {
  width: min(1100px, 100%);
  max-height: 86vh;
  margin: 0;
  display: grid;
  place-items: center;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.lightbox__close,
.lightbox__nav {
  position: fixed;
  z-index: 1001;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.lightbox__close {
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 2.6rem;
  line-height: 1;
}

.lightbox__nav--prev {
  left: 1rem;
}

.lightbox__nav--next {
  right: 1rem;
}

.performance-section-list {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.performance-group {
  display: grid;
  gap: clamp(1rem, 2vw, 1.25rem);
}

.performance-group h3 {
  margin: 0;
  color: var(--color-purple);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.performance-video-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.performance-video-card {
  overflow: hidden;
  background: linear-gradient(135deg, #fff, var(--color-purple-soft));
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.performance-video-card video,
.performance-video-card iframe {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #120e1e;
  border: 0;
}

.performance-video-card video {
  object-fit: contain;
}

.faq-shell {
  max-width: 980px;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 2.4vw, 1.25rem);
  color: var(--color-text);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
  color: var(--color-purple);
  background: linear-gradient(135deg, rgba(236, 228, 255, 0.72), rgba(255, 255, 255, 0.95));
}

.faq-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--color-purple);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(111, 81, 199, 0.24);
}

.faq-icon::before {
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  content: "-";
}

.faq-answer {
  padding: 0 clamp(1rem, 2.4vw, 1.25rem) clamp(1rem, 2.4vw, 1.25rem);
  color: var(--color-muted);
  animation: faq-open 180ms ease;
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p {
  margin-top: 0.8rem;
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking {
  background:
    linear-gradient(135deg, rgba(236, 228, 255, 0.62), rgba(255, 255, 255, 0.85)),
    #fff;
}

.booking__grid,
.contact__grid,
.footer__grid {
  display: grid;
  gap: 2rem;
}

.booking__grid > div > p {
  max-width: 560px;
  color: var(--color-muted);
}

.trial-offer {
  display: grid;
  gap: 0.65rem;
  max-width: 600px;
  margin-top: 1.35rem;
  padding: clamp(1rem, 3vw, 1.3rem);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(215, 51, 111, 0.96), rgba(124, 79, 216, 0.96)),
    var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 38px rgba(124, 79, 216, 0.22);
}

.trial-offer span {
  width: fit-content;
  padding: 0.28rem 0.55rem;
  color: #351331;
  background: #ffe1a8;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trial-offer strong {
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  line-height: 1.16;
}

.trial-offer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.booking-form {
  display: grid;
  gap: 1.05rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  background: #fff;
  border: 2px solid rgba(124, 79, 216, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

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

label {
  display: grid;
  gap: 0.35rem;
  color: var(--color-text);
  font-weight: 800;
}

.label-text {
  display: inline-flex;
  gap: 0.25rem;
  align-items: baseline;
}

label span[aria-hidden="true"] {
  color: var(--color-accent);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  color: var(--color-text);
  background: #fff;
  border: 1px solid #cec8df;
  border-radius: var(--radius);
}

input:hover,
select:hover,
textarea:hover {
  border-color: #a994d8;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-purple);
  box-shadow: 0 0 0 4px rgba(124, 79, 216, 0.14);
  outline: none;
}

textarea {
  resize: vertical;
}

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

.form-success {
  margin: 0;
  color: #237a49;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact {
  background: var(--color-surface);
}

.other-locations {
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, var(--color-surface), #fff);
}

.other-locations__card {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
  padding: clamp(1.1rem, 3vw, 1.5rem);
  background:
    linear-gradient(135deg, rgba(236, 228, 255, 0.68), rgba(255, 255, 255, 0.94)),
    #fff;
  border: 1px solid rgba(124, 79, 216, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.other-locations__card--compact {
  gap: 0.8rem;
  max-width: 600px;
  margin-top: 1rem;
  padding: clamp(0.9rem, 2.4vw, 1.1rem);
  border-radius: var(--radius);
}

.other-locations__intro h2,
.other-locations__intro h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.other-locations__intro h3 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.other-locations__intro p,
.other-locations__regions p {
  margin: 0;
  color: var(--color-muted);
}

.other-locations__regions {
  display: grid;
  gap: 0.65rem;
  font-size: 0.96rem;
  line-height: 1.65;
}

.other-locations__card--compact .other-locations__regions {
  gap: 0.45rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.other-locations__regions strong {
  color: var(--color-purple);
}

.other-locations__button {
  justify-self: start;
}

address {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  font-style: normal;
}

address a {
  width: fit-content;
  color: var(--color-purple);
  font-weight: 800;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
}

.contact-stack {
  display: grid;
  gap: 0.55rem;
  justify-items: start;
}

.contact-link img,
.footer-social img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 6px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  font-size: 1.15rem;
  line-height: 1;
}

.contact-icon--phone {
  color: #8DC63F;
}

address a:hover {
  color: var(--color-purple-dark);
}

.directions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: #fff;
  border: 1px dashed #c8bddf;
  border-radius: var(--radius);
  color: var(--color-muted);
}

.directions h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
}

.directions p {
  margin: 0;
}

.map-frame {
  min-height: 320px;
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.map-fallback {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  color: #fff;
  background: rgba(23, 20, 33, 0.84);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.footer {
  padding: 2rem 0;
  color: #fff;
  background: #171421;
}

.footer__grid {
  align-items: center;
}

.footer p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer a:not(.button) {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
}

.footer-contact-stack {
  gap: 0.6rem;
}

.footer a:not(.button):hover {
  color: #d8ccff;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .achievement-item {
    grid-column: span 1;
  }

  .achievement-item--feature,
  .achievement-item--performance-feature,
  .achievement-item--concert-feature {
    grid-column: 1 / -1;
  }

  .achievement-item--document {
    grid-column: span 1;
  }

  .achievement-item:nth-child(14) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

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

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

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

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.2rem, 0.5vw, 0.45rem);
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-menu a {
    min-height: 46px;
    padding: 0.62rem clamp(0.45rem, 0.65vw, 0.65rem);
    font-size: 0.82rem;
    max-width: 8.4rem;
  }

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

  .hero__grid,
  .endorsement,
  .ameb-layout,
  .booking__grid,
  .contact__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  }

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

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

  .achievement-item {
    grid-column: span 1;
  }

  .achievement-item--feature {
    grid-column: span 2;
  }

  .achievement-item--document {
    grid-column: span 1;
  }

  .achievement-item--wide,
  .achievement-item--performance,
  .achievement-item--studio-wide {
    grid-column: span 1;
  }

  .achievement-item--award {
    grid-column: span 1;
  }

  .achievement-item--studio-small {
    grid-column: span 1;
  }

  .achievement-item--performance-feature,
  .achievement-item--concert-feature {
    grid-column: span 2;
  }

  .achievement-item:nth-child(14) {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr auto auto;
  }

  .vision-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .vision-copy {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .hero__actions .button,
  .booking-form .button {
    width: 100%;
  }

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

  .nav {
    min-height: 68px;
  }

  .brand {
    width: 150px;
  }

  .lightbox__nav {
    top: auto;
    bottom: 1rem;
  }
}

@media (min-width: 1080px) {
  .nav-menu a {
    padding: 0.68rem clamp(0.6rem, 0.8vw, 0.8rem);
    font-size: 0.9rem;
    max-width: 9.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
