:root {
  --ink: #111214;
  --muted: #62666f;
  --line: #e4e6ea;
  --white: #ffffff;
  --off-black: #07090c;
  --charcoal: #111820;
  --charcoal-2: #17202a;
  --blue: #0000FF;
  --red-dark: #a9161d;
  --gold: #c59b45;
  --shadow: 0 24px 70px rgba(7, 9, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.no-scroll {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: rgba(7, 9, 12, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-grid;
  gap: 1px;
  line-height: 1;
}

.brand span {
  font-size: 28px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.site-nav a,
.header-cta,
.button {
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 4px;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(820px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--off-black);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 9, 12, 0.95) 0%, rgba(7, 9, 12, 0.78) 35%, rgba(7, 9, 12, 0.22) 73%, rgba(7, 9, 12, 0.1) 100%),
    linear-gradient(180deg, rgba(7, 9, 12, 0.08) 0%, rgba(7, 9, 12, 0.28) 100%);
}

.hero__content {
  width: min(680px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 88px);
  padding-block: 80px;
}

.hero__location {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(58px, 9vw, 124px);
  font-weight: 950;
  text-wrap: balance;
}

.hero__copy {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(19px, 2vw, 25px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 900;
}

.button--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 36px rgba(215, 34, 42, 0.28);
}

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

.program-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--charcoal);
  color: var(--white);
}

.program-strip article {
  min-height: 184px;
  padding: clamp(26px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.program-strip article:last-child {
  border-right: 0;
}

.program-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--gold);
  border: 1px solid rgba(197, 155, 69, 0.44);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 950;
}

.program-strip h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 38px);
}

.program-strip p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 76px);
}

.section-label {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.section h2 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5.2vw, 72px);
}

.section p {
  color: var(--muted);
  font-size: 17px;
}

.section__intro {
  max-width: 860px;
  margin-bottom: 34px;
}

.section--about {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
}

.section__copy {
  max-width: 570px;
}

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

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

.section--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(215, 34, 42, 0.15), rgba(215, 34, 42, 0) 30%),
    linear-gradient(135deg, var(--off-black), var(--charcoal-2));
}

.section--dark .section-label,
.section--dark h2 {
  color: var(--white);
}

.section--dark .section-label {
  color: var(--gold);
}

.schedule-table {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.schedule-table > div {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 0.7fr;
  gap: 18px;
  min-height: 62px;
  align-items: center;
  padding: 0 clamp(16px, 3vw, 30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.schedule-table > div:last-child {
  border-bottom: 0;
}

.schedule-table__head {
  min-height: 48px;
  color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-table strong {
  color: var(--white);
  text-align: right;
}

.section--pricing {
  background: #f7f8fa;
}

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

.price-card {
  min-height: 270px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(7, 9, 12, 0.06);
}

.price-card--featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--red-dark));
  border-color: transparent;
}

.price-card h3 {
  margin-bottom: 34px;
  font-size: 22px;
}

.price {
  margin-bottom: 6px;
  color: inherit;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 950;
  line-height: 0.95;
}

.price-card .price {
  color: inherit;
}

.price-card span,
.price-card a {
  color: currentColor;
  opacity: 0.72;
}

.price-card a {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section--faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  width: 100%;
  padding: 24px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  display: block;
  position: relative;
  padding-right: 34px;
  font-weight: 900;
  font-size: 20px;
}

.faq-item span::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.faq-item[aria-expanded="true"] span::after {
  content: "-";
}

.faq-item strong {
  display: none;
  max-width: 680px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 500;
}

.faq-item[aria-expanded="true"] strong {
  display: block;
}

.section--contact {
  color: var(--white);
  background: var(--off-black);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(260px, 0.8fr);
  gap: 32px;
  margin-bottom: 36px;
}

.section--contact .section-label {
  color: var(--gold);
}

.section--contact h2 {
  color: var(--white);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hours {
  padding: 30px;
  align-self: start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.hours h3 {
  margin-bottom: 22px;
  font-size: 24px;
}

.hours p {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.hours strong {
  color: var(--white);
}

.location-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 140px;
  padding: 28px 32px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(215, 34, 42, 0.18), rgba(215, 34, 42, 0) 36%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.05);
  background-size: auto, 42px 42px, 42px 42px, auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.location-card span,
.location-card strong {
  display: block;
}

.location-card span {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.location-card strong {
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.1;
}

.location-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 4px;
  font-weight: 900;
  white-space: nowrap;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 108px;
  padding: 28px clamp(20px, 5vw, 76px);
  color: var(--white);
  background: var(--off-black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 720px;
  }

  .hero__image {
    object-position: 62% center;
  }

  .program-strip,
  .section--about,
  .section--faq,
  .contact-panel,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .program-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .program-strip article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
    gap: 14px;
  }

  .brand span {
    font-size: 24px;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 10px 14px;
    font-size: 12px;
    overflow: visible;
  }

  .site-nav a {
    min-width: 0;
    white-space: nowrap;
  }

  .hero {
    min-height: 680px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(7, 9, 12, 0.92) 0%, rgba(7, 9, 12, 0.74) 55%, rgba(7, 9, 12, 0.42) 100%),
      linear-gradient(180deg, rgba(7, 9, 12, 0.12) 0%, rgba(7, 9, 12, 0.32) 100%);
  }

  .hero__content {
    width: calc(100% - 36px);
    margin-left: 18px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 78px);
  }

  .button {
    width: 100%;
  }

  .schedule-table > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-block: 16px;
  }

  .schedule-table strong {
    text-align: left;
  }

  .schedule-table__head {
    display: none !important;
  }

  .price-card {
    min-height: 220px;
  }

  .location-card {
    display: grid;
    padding: 24px;
  }

  .site-footer {
    display: grid;
  }
}