:root {
  --ink: #f8f8f8;
  --dark: #07080a;
  --panel: #111317;
  --panel-strong: #171a20;
  --muted: #b8bdc7;
  --paper: #07080a;
  --sand: #e01821;
  --clay: #ff333d;
  --cactus: #0b0c0f;
  --blue: #e01821;
  --white: #f8f8f8;
  --line: rgba(255, 255, 255, 0.14);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 18%, rgba(224, 24, 33, 0.12), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(255, 255, 255, 0.05), transparent 26%),
    linear-gradient(90deg, rgba(7, 8, 10, 0.88), rgba(7, 8, 10, 0.98));
  opacity: 1;
  pointer-events: none;
}

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

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

.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(224, 24, 33, 0.18), transparent 34%),
    #030304;
  pointer-events: none;
  animation: splash-exit 1.85s ease forwards;
}

.splash-core {
  position: relative;
  width: clamp(118px, 20vw, 220px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: splash-mark 1.45s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.splash-core::before {
  content: "";
  position: absolute;
  inset: 48% -42%;
  height: 4px;
  background: var(--sand);
  box-shadow: 0 0 24px rgba(224, 24, 33, 0.9);
  transform: translateX(-120%) rotate(-12deg);
  animation: splash-sweep 0.95s ease 0.26s forwards;
}

.splash-core img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.75));
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

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

.brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.58);
  padding: 10px 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 84px) 72px;
  color: var(--white);
}

.hero-picture,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(7, 8, 10, 0.88), rgba(7, 8, 10, 0.08) 54%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

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

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

h1 {
  margin-bottom: 22px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(4.6rem, 13vw, 11.2rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 2px solid transparent;
  font-weight: 800;
  text-transform: uppercase;
}

.button.primary {
  background: var(--sand);
  color: var(--white);
}

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

.button.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

.contact-note a {
  color: var(--white);
  font-weight: 800;
}

.quick-card {
  position: absolute;
  right: clamp(20px, 6vw, 84px);
  bottom: 44px;
  z-index: 3;
  width: min(320px, calc(100% - 40px));
  padding: 22px;
  border-left: 5px solid var(--sand);
  background: rgba(7, 8, 10, 0.8);
  backdrop-filter: blur(12px);
}

.quick-card span,
.quick-card small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
}

.quick-card strong {
  display: block;
  margin: 8px 0;
  font-size: 1.28rem;
}

.intro,
.coach-section,
.training-grid,
.feature-band,
.first-class-section,
.program-section,
.schedule-section,
.location-section {
  padding-inline: clamp(20px, 6vw, 84px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  padding-top: clamp(54px, 8vw, 102px);
  padding-bottom: clamp(44px, 7vw, 84px);
  align-items: end;
  background: var(--dark);
}

.intro p:last-child,
.feature-copy p,
.schedule-card p,
.location-copy address {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.training-grid article {
  min-height: 290px;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(224, 24, 33, 0.08), rgba(224, 24, 33, 0));
}

.training-grid article:last-child {
  border-right: 0;
}

.number {
  display: block;
  margin-bottom: 46px;
  color: var(--clay);
  font-weight: 900;
}

.training-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.coach-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(340px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  padding-top: clamp(58px, 8vw, 108px);
  padding-bottom: clamp(58px, 8vw, 108px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(224, 24, 33, 0.12), rgba(224, 24, 33, 0) 42%),
    var(--panel);
}

.coach-copy {
  max-width: 640px;
}

.coach-copy h2 {
  margin-bottom: 24px;
}

.coach-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.coach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.coach-tags span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 12px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(7, 8, 10, 0.48);
}

.coach-visual {
  position: relative;
  min-height: 520px;
}

.coach-gear {
  width: 88%;
  margin-left: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 18px 18px 0 var(--sand);
}

.coach-headshot {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: min(300px, 48%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.58));
}

.first-class-section {
  position: relative;
  display: block;
  padding-top: clamp(58px, 8vw, 112px);
  padding-bottom: clamp(58px, 8vw, 112px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.98), rgba(7, 8, 10, 0.86) 48%, rgba(7, 8, 10, 0.2)),
    url("assets/first-class-gi-belt-bg.jpg") center right / cover no-repeat;
}

.first-class-copy h2,
.program-section h2 {
  margin-bottom: 24px;
}

.first-class-copy {
  width: min(980px, 100%);
}

.first-class-copy p,
.program-section p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
  border: 1px solid var(--line);
}

.expect-grid div {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 20px;
  background: rgba(7, 8, 10, 0.86);
}

.expect-grid strong {
  color: var(--white);
  font-size: 1.02rem;
}

.expect-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding-top: clamp(58px, 8vw, 110px);
  padding-bottom: clamp(58px, 8vw, 110px);
  align-items: center;
  background: var(--dark);
}

.feature-copy {
  max-width: 560px;
}

.feature-copy h2 {
  margin-bottom: 26px;
}

.feature-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background:
    linear-gradient(135deg, rgba(224, 24, 33, 0.22), rgba(224, 24, 33, 0)),
    #0b0c0f;
  box-shadow: 18px 18px 0 var(--blue);
}

.feature-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.52), transparent 26%, transparent 76%, rgba(7, 8, 10, 0.72)),
    linear-gradient(0deg, rgba(7, 8, 10, 0.64), transparent 30%, transparent 72%, rgba(7, 8, 10, 0.26));
  pointer-events: none;
}

.feature-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.1);
}

.gallery-section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 84px);
  background: var(--panel);
}

.section-heading.compact {
  max-width: 920px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.photo-grid figure {
  display: grid;
  grid-template-rows: auto 1fr;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--dark);
}

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

.photo-grid figcaption {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px 24px;
  color: var(--white);
}

.photo-grid figcaption strong {
  font-size: 1.28rem;
}

.photo-grid figcaption span {
  color: var(--muted);
  line-height: 1.6;
}

.program-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  padding-top: 1px;
  padding-bottom: 1px;
}

.program-section article {
  min-height: 350px;
  padding: clamp(34px, 6vw, 70px);
  background:
    linear-gradient(135deg, rgba(224, 24, 33, 0.12), rgba(224, 24, 33, 0)),
    var(--dark);
}

.schedule-section {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
  background:
    linear-gradient(135deg, rgba(224, 24, 33, 0.22), rgba(224, 24, 33, 0) 42%),
    var(--cactus);
  color: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.schedule-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.schedule-card > div {
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.schedule-card > div:last-child {
  border-right: 0;
}

.schedule-card p,
.class-list {
  color: rgba(255, 255, 255, 0.72);
}

.class-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.03rem;
  line-height: 1.6;
}

.class-list li {
  padding-left: 18px;
  border-left: 3px solid var(--sand);
}

.tag {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) minmax(300px, 1fr);
  gap: clamp(28px, 7vw, 92px);
  padding-top: clamp(58px, 8vw, 104px);
  padding-bottom: clamp(58px, 8vw, 104px);
  align-items: center;
  background: var(--dark);
}

address {
  margin-top: 24px;
  font-style: normal;
}

.contact-note {
  max-width: 460px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.map-panel {
  min-height: 430px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--panel);
}

.map-panel iframe {
  width: 100%;
  height: 430px;
  border: 0;
  filter: grayscale(1) contrast(1.05) invert(0.92) hue-rotate(180deg);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 84px);
  background: #030304;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 94vh;
    padding-top: 118px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.14)),
      linear-gradient(0deg, rgba(7, 8, 10, 0.95), rgba(7, 8, 10, 0.54) 47%, rgba(7, 8, 10, 0.05) 72%);
  }

  .quick-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 40px;
  }

  .intro,
  .coach-section,
  .feature-band,
  .first-class-section,
  .program-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .training-grid,
  .schedule-card,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .training-grid article,
  .schedule-card > div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .schedule-card > div {
    border-bottom-color: rgba(255, 255, 255, 0.22);
  }

  .training-grid article:last-child,
  .schedule-card > div:last-child {
    border-bottom: 0;
  }

  .feature-art {
    box-shadow: 10px 10px 0 var(--blue);
  }

  .coach-visual {
    min-height: auto;
    padding-bottom: 84px;
  }

  .coach-gear {
    width: 100%;
  }

  .coach-headshot {
    width: min(250px, 54%);
  }

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

  .section-heading {
    display: block;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

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

  .nav-cta {
    padding: 9px 13px;
  }

  .hero {
    min-height: 98vh;
    padding: clamp(330px, 53vh, 430px) 18px 118px;
    align-items: start;
  }

  .hero-picture {
    height: 54%;
  }

  .hero-image {
    object-position: center center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 8, 10, 0.04), rgba(7, 8, 10, 0.12) 42%, rgba(7, 8, 10, 0.96) 100%),
      linear-gradient(90deg, rgba(7, 8, 10, 0.34), rgba(7, 8, 10, 0));
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 52% 0 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7, 8, 10, 0), var(--dark) 20%);
  }

  h1 {
    font-size: clamp(3.55rem, 18vw, 5rem);
  }

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

  .hero-actions {
    margin-top: 28px;
  }

  .hero-actions .button.secondary {
    display: none;
  }

  .button {
    width: 100%;
  }

  .intro,
  .coach-section,
  .training-grid,
  .feature-band,
  .first-class-section,
  .program-section,
  .schedule-section,
  .location-section {
    padding-inline: 18px;
  }

  .map-panel {
    min-height: 320px;
  }

  .map-panel iframe {
    height: 320px;
  }

  footer {
    display: block;
    padding-bottom: 92px;
  }

  footer span {
    display: block;
    margin-bottom: 8px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(7, 8, 10, 0.9);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  }

  .mobile-cta a {
    display: grid;
    min-height: 54px;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-cta a:first-child {
    background: var(--sand);
  }

  .mobile-cta a:last-child {
    border-right: 0;
  }
}

@keyframes splash-sweep {
  0% {
    transform: translateX(-120%) rotate(-12deg);
    opacity: 0;
  }

  20%,
  80% {
    opacity: 1;
  }

  100% {
    transform: translateX(120%) rotate(-12deg);
    opacity: 0;
  }
}

@keyframes splash-mark {
  0% {
    opacity: 0;
    transform: scale(0.82) rotate(-8deg);
  }

  36%,
  72% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }

  100% {
    opacity: 0;
    transform: scale(1.18) rotate(2deg);
  }
}

@keyframes splash-exit {
  0%,
  72% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash {
    display: none;
  }
}
