:root {
  --black: #090909;
  --charcoal: #141414;
  --soft-black: #1d1d1b;
  --paper: #f3f3f0;
  --muted: #b9b6ad;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(0, 0, 0, 0.12);
  --gold: #c79a43;
  --gold-light: #f0cf83;
  --red: #b72025;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.icon-sprite {
  display: none;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(9, 9, 9, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.12rem;
  text-transform: uppercase;
  line-height: 1.05;
}

.brand small {
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(300px, 430px);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  justify-content: space-between;
  min-height: min(660px, 72svh);
  overflow: hidden;
  padding: clamp(48px, 7vh, 84px) clamp(20px, 5vw, 70px) clamp(28px, 4vw, 48px);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.76) 34%, rgba(0, 0, 0, 0.18) 78%),
    linear-gradient(0deg, rgba(9, 9, 9, 0.88), rgba(9, 9, 9, 0.04) 45%),
    url("../img/hero.jpg");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 140px;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0), var(--black));
  content: "";
}

.hero-content {
  grid-column: 1;
  width: min(680px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: 8.8rem;
  line-height: 0.84;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: 4rem;
  line-height: 0.95;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.15;
}

.hero-copy {
  width: min(620px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.28rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
}

.btn-primary {
  color: var(--black);
  background: var(--gold-light);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--white);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.38);
}

.hero-info {
  grid-column: 1;
  display: grid;
  gap: 10px;
  width: min(640px, 100%);
  margin: clamp(28px, 5vh, 54px) 0 0;
}

.hero-highlights {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.hero-highlights a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: clamp(14px, 2vw, 22px);
  background: rgba(15, 15, 15, 0.78);
}

.hero-highlights .icon {
  color: var(--gold-light);
}

.hero-highlights strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
}

.hero-highlights small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-map {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  margin-bottom: clamp(28px, 7vh, 72px);
  width: min(430px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.hero-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.hero-map-header span,
.hero-map-list button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-map-header span {
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-map-header small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-map-canvas {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #151515;
}

.location-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hero-map-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.hero-map-list button {
  min-height: 42px;
  padding: 0 11px;
  color: var(--white);
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-weight: 850;
  font-size: 0.88rem;
  cursor: pointer;
}

.hero-map-list button .icon {
  color: var(--gold-light);
}

.hero-map-list button:hover,
.hero-map-list button:focus-visible,
.hero-map-list button.is-active {
  color: var(--black);
  background: var(--gold-light);
}

.hero-map-list button:hover .icon,
.hero-map-list button:focus-visible .icon,
.hero-map-list button.is-active .icon {
  color: var(--black);
}

.video-section {
  padding: 78px 0 86px;
  background: linear-gradient(135deg, #090909 0%, #17120f 48%, #0a0a0a 100%);
}

.video-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.video-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.music-control {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
  display: grid;
  justify-items: end;
}

.music-toggle {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  padding: 8px 14px 8px 10px;
  color: var(--white);
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(240, 207, 131, 0.08), 0 18px 42px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.music-toggle:hover,
.music-toggle:focus-visible {
  border-color: rgba(240, 207, 131, 0.48);
}

.music-toggle-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--black);
  background: var(--gold-light);
  border-radius: 50%;
}

.music-toggle-icon .icon {
  grid-area: 1 / 1;
  width: 20px;
  height: 20px;
}

.icon-playing,
.music-toggle.is-playing .icon-muted {
  opacity: 0;
}

.music-toggle.is-playing .icon-playing {
  opacity: 1;
}

.sound-waves {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  width: 26px;
  height: 28px;
}

.sound-waves i {
  width: 4px;
  height: 9px;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 999px;
}

.music-toggle.is-playing .sound-waves i {
  background: var(--gold-light);
  animation: sound-wave 720ms ease-in-out infinite;
}

.music-toggle.is-playing .sound-waves i:nth-child(2) {
  animation-duration: 940ms;
  animation-delay: 120ms;
}

.music-toggle.is-playing .sound-waves i:nth-child(3) {
  animation-duration: 620ms;
  animation-delay: 240ms;
}

.music-toggle.is-playing .sound-waves i:nth-child(4) {
  animation-duration: 860ms;
  animation-delay: 90ms;
}

.music-toggle-copy {
  display: grid;
  gap: 1px;
  min-width: 92px;
  text-align: left;
}

.music-toggle-copy strong {
  font-size: 0.94rem;
  line-height: 1.1;
}

.music-toggle-copy small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 750;
}

@keyframes sound-wave {
  0%,
  100% {
    height: 8px;
  }

  50% {
    height: 24px;
  }
}

.music-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.video-showcase {
  display: grid;
  grid-template-columns: minmax(290px, 500px) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.video-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(240, 207, 131, 0.28);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.reel-video {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.video-stage-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.82));
}

.video-stage-overlay span {
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-controls {
  display: inline-flex;
  gap: 8px;
}

.video-controls button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.video-controls button:hover,
.video-controls button:focus-visible {
  color: var(--black);
  background: var(--gold-light);
}

.video-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(88px, 1fr));
  gap: 10px;
}

.video-thumb {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  cursor: pointer;
}

.video-thumb::after {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.video-thumb video {
  width: 100%;
  height: 100%;
  min-height: 210px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  opacity: 0.66;
  transition: opacity 180ms ease, transform 180ms ease;
}

.video-thumb span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  overflow: hidden;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.video-thumb:hover video,
.video-thumb:focus-visible video,
.video-thumb.is-active video {
  opacity: 1;
  transform: scale(1.03);
}

.video-thumb.is-active::after {
  border-color: var(--gold-light);
}

.section-band {
  background: var(--paper);
  color: var(--black);
}

.section-inner {
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 96px)));
  margin: 0 auto;
}

.intro,
.prices-section,
.locations-section {
  padding: clamp(70px, 10vw, 130px) 0;
}

.split,
.reviews-layout,
.contact-layout,
.prices-layout,
.student-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.intro .section-kicker,
.prices-section .section-kicker,
.locations-section .section-kicker {
  color: var(--red);
}

.intro h2,
.prices-section h2,
.locations-section h2 {
  color: var(--black);
}

.intro-copy {
  color: #363632;
  font-size: 1.12rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(40px, 6vw, 72px);
}

.service-card,
.location-card {
  border-radius: 8px;
  border: 1px solid var(--line-dark);
  background: var(--white);
}

.service-card {
  min-height: 210px;
  padding: 24px;
}

.service-number {
  display: block;
  margin-bottom: 36px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card p,
.location-card p {
  margin-bottom: 0;
  color: #56534e;
}

.student-section {
  padding: clamp(72px, 10vw, 128px) 0;
  background: linear-gradient(135deg, var(--charcoal), #0d0d0c 62%, #220c0e);
}

.student-layout {
  align-items: center;
}

.student-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.student-media img {
  width: 100%;
  aspect-ratio: 7 / 6;
  object-fit: cover;
}

.student-content p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.student-price {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  width: min(420px, 100%);
  margin: 28px 0;
  padding: 18px;
  border: 1px solid rgba(240, 207, 131, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.student-price span {
  color: var(--gold-light);
  font-size: 4.8rem;
  font-weight: 950;
  line-height: 0.9;
}

.student-price strong {
  font-size: 1.1rem;
  text-transform: uppercase;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 12px;
  height: 12px;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  content: "";
}

.gallery-section {
  padding: clamp(70px, 9vw, 120px) 0;
}

.section-heading {
  margin-bottom: clamp(30px, 4vw, 52px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(1440px, calc(100% - clamp(20px, 4vw, 58px)));
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 520px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.prices-layout {
  align-items: start;
}

.prices-intro {
  position: sticky;
  top: 104px;
}

.prices-intro p {
  color: #4c4944;
}

.price-board {
  width: min(350px, 100%);
  margin-top: 26px;
  border-radius: 8px;
  border: 1px solid var(--line-dark);
}

.price-table {
  display: grid;
  gap: 8px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 56px;
  padding: 14px 18px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.price-row span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 720;
}

.price-row strong {
  color: var(--red);
  font-size: 1.08rem;
  white-space: nowrap;
}

.price-row.featured {
  color: var(--white);
  background: var(--soft-black);
  border-color: var(--soft-black);
}

.price-row.featured strong {
  color: var(--gold-light);
}

.reviews-section,
.contact-section {
  padding: clamp(70px, 9vw, 120px) 0;
}

.reviews-section {
  background: var(--black);
}

.reviews-layout {
  align-items: center;
}

.reviews-layout p,
.contact-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.rating-box {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #171717, #0c0c0c);
}

.rating-box strong {
  color: var(--gold-light);
  font-size: 7rem;
  line-height: 0.9;
}

.rating-box span {
  color: var(--gold-light);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}

.rating-box small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

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

.location-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px;
}

.location-card h3 {
  font-size: 1.4rem;
}

.location-card small {
  display: block;
  margin-top: 14px;
  color: var(--red);
  font-weight: 850;
}

.location-card a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  color: var(--red);
  font-weight: 850;
}

.location-card a:hover,
.location-card a:focus-visible {
  color: var(--black);
}

.location-card-highlight {
  border-color: rgba(183, 32, 37, 0.35);
  box-shadow: inset 0 0 0 2px rgba(183, 32, 37, 0.08);
}

.contact-section {
  background: linear-gradient(120deg, #111, #090909 62%, #1c1110);
}

.hours-box {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.hours-box dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hours-box div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.hours-box div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hours-box dt {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.hours-box dd {
  margin: 0;
  color: var(--white);
  font-weight: 850;
  text-align: right;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.62);
  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-layout {
  font-size: 0.9rem;
  text-align: center;
}

.footer-layout p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px clamp(18px, 4vw, 34px) 24px;
    background: rgba(9, 9, 9, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    justify-content: start;
  }

  .hero-content,
  .hero-map,
  .hero-info {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-map {
    width: min(540px, 100%);
    margin-top: 10px;
    margin-bottom: 0;
  }

  .hero-info {
    width: min(640px, 100%);
  }

  .split,
  .reviews-layout,
  .contact-layout,
  .prices-layout,
  .student-layout {
    grid-template-columns: 1fr;
  }

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

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

  .video-heading,
  .video-showcase {
    grid-template-columns: 1fr;
  }

  .video-stage,
  .reel-video {
    min-height: 560px;
  }

  .video-strip {
    grid-template-columns: repeat(5, minmax(110px, 1fr));
  }

  .video-thumb video {
    min-height: 190px;
  }

  .prices-intro {
    position: static;
  }

  h1 {
    font-size: 6.4rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .rating-box strong {
    font-size: 5.5rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 8px 16px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand span {
    max-width: 150px;
  }

  .site-nav {
    inset: 70px 0 auto;
  }

  .hero {
    min-height: 78svh;
    padding: 88px 18px 28px;
  }

  .hero-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.68)),
      linear-gradient(0deg, rgba(9, 9, 9, 0.9), rgba(9, 9, 9, 0.04) 44%),
      url("../img/hero.jpg");
    background-position: 58% center;
  }

  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-highlights strong {
    font-size: 1.55rem;
  }

  .student-price span {
    font-size: 3.1rem;
  }

  .rating-box strong {
    font-size: 4rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-map-canvas {
    min-height: 380px;
  }

  .video-heading {
    margin-bottom: 22px;
  }

  .video-stage,
  .reel-video {
    min-height: 520px;
  }

  .video-stage-overlay {
    align-items: flex-end;
    padding: 14px;
  }

  .video-controls button {
    width: 38px;
    height: 38px;
  }

  .video-strip {
    display: flex;
    gap: 10px;
    margin-right: -16px;
    overflow-x: auto;
    padding: 0 16px 4px 0;
    scroll-snap-type: x mandatory;
  }

  .video-thumb {
    flex: 0 0 132px;
    scroll-snap-align: start;
  }

  .video-thumb video {
    min-height: 228px;
  }

  .section-inner {
    width: min(var(--max), calc(100% - 32px));
  }

  .intro,
  .video-section,
  .student-section,
  .gallery-section,
  .prices-section,
  .reviews-section,
  .locations-section,
  .contact-section {
    padding: 58px 0;
  }

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

  .service-card,
  .location-card {
    min-height: auto;
  }

  .gallery-grid {
    width: calc(100% - 32px);
  }

  .gallery-grid img {
    max-height: none;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hours-box div {
    align-items: flex-start;
    flex-direction: column;
  }

  .hours-box dd {
    text-align: left;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 3.35rem;
  }

  .brand strong {
    font-size: 1rem;
  }
}
