:root {
  --bg: #090909;
  --ink: #f7f4ef;
  --muted: #c7c0b6;
  --panel: #151515;
  --panel-2: #202020;
  --line: rgba(255, 255, 255, 0.14);
  --red: #d71920;
  --red-dark: #7e0b10;
  --gold: #c6a15b;
  --steel: #b9c3c9;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 56px);
  background: rgba(9, 9, 9, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 9, 9, 0.94);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--red);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--red);
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: 19;
  top: 74px;
  left: 0;
  right: 0;
  display: none;
  padding: 14px 20px 22px;
  background: rgba(9, 9, 9, 0.97);
  border-bottom: 1px solid var(--line);
}

.mobile-menu a {
  display: block;
  padding: 13px 0;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-menu.is-open {
  display: block;
}

.hero {
  min-height: 96svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 144px clamp(20px, 5vw, 72px) 52px;
  overflow: hidden;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(
      90deg,
      rgba(9, 9, 9, 0.94) 0%,
      rgba(9, 9, 9, 0.6) 46%,
      rgba(9, 9, 9, 0.3) 100%
    ),
    linear-gradient(
      0deg,
      rgba(9, 9, 9, 0.96) 0%,
      rgba(9, 9, 9, 0.05) 42%,
      rgba(9, 9, 9, 0.45) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(4rem, 12vw, 9.5rem);
  font-weight: 950;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5.5vw, 5.4rem);
  font-weight: 950;
}

h3 {
  font-size: 1.25rem;
  font-weight: 950;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  font-weight: 950;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--red);
  color: white;
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-primary:hover {
  background: #f02129;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.36);
}

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 52px;
  z-index: 3;
  width: min(330px, calc(100% - 40px));
  padding: 24px;
  background: rgba(16, 16, 16, 0.86);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  backdrop-filter: blur(16px);
}

.hero-card strong,
.hero-card span {
  display: block;
  font-size: 1.35rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-card span {
  color: var(--red);
}

.hero-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.hero-card li {
  padding: 8px 0 8px 22px;
  position: relative;
}

.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 8px;
  background: var(--red);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: -24px auto 0;
  position: relative;
  z-index: 4;
  border: 1px solid var(--line);
  background: var(--panel);
}

.quick-info div {
  min-height: 126px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info span {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 950;
  text-transform: uppercase;
}

.quick-info p,
.small-note {
  margin: 0;
  color: var(--muted);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 116px) clamp(20px, 4vw, 30px);
}

.section.dark,
.reviews.dark {
  max-width: none;
  padding-left: max(
    clamp(20px, 4vw, 30px),
    calc((100vw - var(--max)) / 2 + 30px)
  );
  padding-right: max(
    clamp(20px, 4vw, 30px),
    calc((100vw - var(--max)) / 2 + 30px)
  );
  background: #111;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading.split > div {
  max-width: 790px;
}

.text-link {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
  gap: 28px;
}

.intro-copy {
  display: grid;
  align-content: end;
  gap: 18px;
  min-height: 410px;
  padding: 34px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-grid img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.class-card {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0)
  );
}

.class-card span {
  display: block;
  margin-bottom: 46px;
  color: var(--red);
  font-weight: 950;
}

.class-card p,
.review-grid p,
.contact-card p {
  color: var(--muted);
}

.photo-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
}

.photo-band img {
  width: 100%;
  height: clamp(270px, 36vw, 500px);
  object-fit: cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.photo-band img + img {
  border-left: 1px solid var(--line);
}

.timetable {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.timetable article {
  min-height: 228px;
  padding: 24px;
  background: #f3f0ea;
  color: #121212;
  border-top: 5px solid var(--red);
}

.timetable h3 {
  margin-bottom: 18px;
  color: #121212;
}

.timetable p {
  margin-bottom: 10px;
  color: #343434;
  font-size: 0.96rem;
}

.timetable strong {
  color: var(--red-dark);
  font-weight: 950;
}

.red-panel {
  max-width: none;
  background: linear-gradient(90deg, #100707 0%, #22090a 42%, #0d0d0d 100%);
  border-block: 1px solid rgba(215, 25, 32, 0.36);
}

.poster {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.poster h2 {
  color: white;
}

.poster p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.14rem;
}

.poster ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.poster li {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-weight: 950;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.team-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
}

.team-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.team-grid h3 {
  margin: 18px 18px 6px;
  font-size: 1.05rem;
}

.team-grid p {
  margin: 0 18px 20px;
  color: var(--gold);
  font-weight: 800;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 28px;
  background: var(--panel-2);
  border: 1px solid var(--line);
}

blockquote p {
  font-size: 1.06rem;
}

cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 950;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: clamp(28px, 5vw, 46px);
  background: var(--panel);
  border: 1px solid var(--line);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: var(--muted);
}

.contact-lines a {
  color: white;
  font-weight: 900;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #0d0d0d;
  color: white;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span {
  color: white;
  font-weight: 950;
  text-transform: uppercase;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: 920px;
    align-items: center;
  }

  .hero-card {
    left: clamp(20px, 5vw, 72px);
    right: auto;
  }

  .quick-info,
  .intro-grid,
  .poster,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info div:last-child {
    border-bottom: 0;
  }

  .class-grid,
  .timetable,
  .team-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-band {
    grid-template-columns: 1fr;
  }

  .photo-band img + img {
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 66px;
    padding-inline: 14px;
  }

  .brand span {
    max-width: 142px;
    line-height: 1.05;
    font-size: 0.92rem;
  }

  .mobile-menu {
    top: 66px;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding: 118px 20px 28px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 14.2vw, 3.55rem);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.5rem);
  }

  .hero-copy {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 24px;
    padding: 22px;
    background: rgba(18, 18, 18, 0.94);
  }

  .hero-card strong,
  .hero-card span {
    font-size: 1.16rem;
  }

  .hero-card ul {
    margin-top: 16px;
  }

  .quick-info {
    margin-top: 0;
  }

  .quick-info div {
    min-height: auto;
    padding: 22px 24px;
  }

  .quick-info span {
    font-size: 1.45rem;
  }

  .section-heading.split {
    display: block;
  }

  .class-grid,
  .timetable,
  .team-grid,
  .review-grid,
  .poster ul {
    grid-template-columns: 1fr;
  }

  .intro-copy,
  .class-card,
  blockquote {
    padding: 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
