:root {
  --ink: #050505;
  --charcoal: #151515;
  --paper: #f6f3ee;
  --white: #ffffff;
  --muted: #6f6a62;
  --line: rgba(5, 5, 5, 0.14);
  --line-light: rgba(255, 255, 255, 0.22);
  --red: #d71920;
  --gold: #b99456;
  --steel: #315a66;
  --radius: 8px;
  --pad: 20px;
  --max: 1480px;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.16);
  color-scheme: light;
}

@media (min-width: 760px) {
  :root {
    --pad: 36px;
  }
}

@media (min-width: 1180px) {
  :root {
    --pad: 52px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: var(--pad);
  top: 12px;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.utility-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 9px var(--pad);
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  scrollbar-width: none;
}

.utility-bar::-webkit-scrollbar {
  display: none;
}

.utility-bar a {
  opacity: 0.88;
}

.utility-bar a:hover {
  opacity: 1;
}

.main-nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--pad);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.72rem;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.nav-panel {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-menu {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu li {
  display: contents;
}

.nav-panel a {
  position: relative;
  padding: 8px 0;
}

.nav-panel a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-panel a:hover::after,
.nav-panel a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  color: var(--white);
  background: var(--ink);
  padding: 12px 18px !important;
  border-radius: 999px;
}

.nav-toggle {
  position: relative;
  display: none;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  place-items: center;
  padding: 0;
}

.nav-toggle span {
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span + span {
  margin-top: 0;
  transform: translateY(4px);
}

.hero {
  position: relative;
  min-height: 650px;
  height: calc(100svh - 140px);
  max-height: 860px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 43% center;
  z-index: -2;
  transform: translateY(0);
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.55)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.04) 44%);
}

.hero-content {
  min-height: inherit;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 104px var(--pad) 52px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-section .eyebrow {
  color: var(--gold);
}

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

h1 {
  margin-bottom: 18px;
  font-size: 4.6rem;
  line-height: 0.9;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 2.55rem;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-copy {
  width: min(680px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  font-weight: 650;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

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

.btn-ghost-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
}

.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.btn-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  color: var(--ink);
  background: transparent;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-band div {
  min-height: 120px;
  padding: 22px var(--pad);
  background: var(--paper);
}

.signal-band span {
  display: block;
  margin-bottom: 8px;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 1000;
}

.signal-band p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 88px var(--pad);
}

section[id] {
  scroll-margin-top: 132px;
}

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

.section-kicker {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 750;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.rail-controls {
  display: flex;
  gap: 10px;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  transform: translateY(-2px);
  color: var(--white);
  background: var(--ink);
}

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(282px, 360px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.rail::-webkit-scrollbar {
  display: none;
}

.program-card,
.coach-card {
  position: relative;
  min-height: 430px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--charcoal);
  scroll-snap-align: start;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.program-card img,
.coach-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 500ms ease, filter 500ms ease;
  z-index: -2;
}

.program-card::after,
.coach-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.1) 58%, rgba(0, 0, 0, 0.18));
}

.program-card:hover img,
.program-card:focus-within img,
.coach-card:hover img,
.coach-card:focus-within img {
  transform: scale(1.07);
  filter: contrast(1.08);
}

.program-card-content,
.coach-card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 22px;
}

.program-card h3,
.coach-card h3 {
  margin-bottom: 0;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.program-card p,
.coach-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.program-card a,
.coach-card a {
  width: max-content;
  margin-top: 4px;
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 850;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  min-height: 760px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-media {
  min-height: 520px;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px var(--pad);
}

.story-copy h2,
.editorial-copy h2,
.contact-copy h2 {
  max-width: 720px;
}

.story-copy > p:not(.eyebrow),
.editorial-copy > p,
.contact-copy > p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 620;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 18px;
}

.segment-btn,
.location-tab {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
}

.segment-btn[aria-selected="true"],
.location-tab[aria-pressed="true"] {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.lane-panel {
  max-width: 620px;
  min-height: 172px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.lane-panel h3 {
  margin-bottom: 10px;
}

.lane-panel p {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 650;
}

.lane-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lane-list li {
  padding: 9px 11px;
  border-radius: var(--radius);
  background: var(--paper);
  font-weight: 850;
}

.paths-section {
  padding-top: 96px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.path-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--charcoal);
  isolation: isolate;
}

.path-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.24) 74%),
    linear-gradient(135deg, rgba(215, 25, 32, 0.36), transparent 42%);
}

.path-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12);
  transform: scale(1.02);
  transition: transform 500ms ease, filter 500ms ease;
}

.path-card:hover img,
.path-card:focus-within img {
  filter: grayscale(0.35) contrast(1.12);
  transform: scale(1.08);
}

.path-card-inner {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 24px;
}

.path-card p {
  margin-bottom: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.path-card h3 {
  margin-bottom: 0;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.path-copy {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 690;
}

.path-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-card li {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 760;
}

.path-card a {
  width: fit-content;
  max-width: 100%;
  margin-top: 8px;
  font-weight: 950;
  line-height: 1.2;
  border-bottom: 2px solid currentColor;
}

.ignite-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(5, 5, 5, 0.96), rgba(92, 23, 27, 0.94)),
    var(--ink);
}

.ignite-band::before {
  content: "START TODAY";
  position: absolute;
  left: -2vw;
  bottom: -2.4rem;
  color: rgba(255, 255, 255, 0.05);
  font-size: 13vw;
  line-height: 0.8;
  font-weight: 1000;
  white-space: nowrap;
}

.ignite-inner {
  position: relative;
  width: min(100%, var(--max));
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  padding: 96px var(--pad);
}

.ignite-inner h2 {
  max-width: 1000px;
  font-size: 4.8rem;
}

.ignite-inner > p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  font-weight: 720;
}

.details-section {
  padding-top: 96px;
}

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

.detail-card,
.roster-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.detail-card h3,
.roster-card h3 {
  margin-bottom: 0;
  text-transform: uppercase;
}

.detail-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 680;
}

.detail-card ul,
.roster-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-card li {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--charcoal);
  font-weight: 720;
}

.gear-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.gear-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
}

.locations-section {
  padding-bottom: 96px;
}

.text-link {
  font-weight: 950;
  border-bottom: 2px solid currentColor;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 24px;
}

.location-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-tab {
  justify-content: flex-start;
  width: 100%;
  border-radius: var(--radius);
}

.location-stage {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.location-panel {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  min-height: 460px;
}

.location-panel[hidden] {
  display: none;
}

.location-stage img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.location-info h3 {
  margin-bottom: 8px;
  font-size: 2rem;
  text-transform: uppercase;
}

.location-info address {
  margin-bottom: 22px;
  color: var(--muted);
  font-style: normal;
  font-weight: 720;
}

.location-highlights {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.location-highlights li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-weight: 820;
}

.dark-section {
  width: 100%;
  max-width: none;
  padding-inline: var(--pad);
  color: var(--white);
  background: var(--ink);
}

.dark-section > .section-heading,
.dark-section > .schedule-grid {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

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

.schedule-item {
  min-height: 300px;
  padding: 28px;
  background: var(--charcoal);
}

.schedule-item span {
  display: block;
  margin-bottom: 86px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 950;
}

.schedule-item h3 {
  margin-bottom: 12px;
  text-transform: uppercase;
}

.schedule-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.schedule-downloads {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px auto 0;
}

.schedule-download {
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: 20px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.schedule-download span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.schedule-download strong {
  font-size: 1.1rem;
}

.coach-card {
  min-height: 490px;
}

.coach-card img {
  object-position: center top;
}

.proof-section {
  padding-top: 0;
}

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

.proof-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.proof-card:nth-child(2n) {
  background: var(--steel);
}

.proof-card:nth-child(3n) {
  background: #5c171b;
}

.proof-card > span {
  width: max-content;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.proof-card blockquote {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.12;
  font-weight: 900;
}

.proof-card p {
  display: grid;
  gap: 4px;
  margin-bottom: 0;
}

.proof-card strong {
  font-weight: 950;
}

.proof-card small {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 760;
}

.roster-section {
  padding-top: 0;
}

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

.roster-card li {
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.roster-card strong {
  font-weight: 950;
}

.roster-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  min-height: 680px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 78px var(--pad);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-section {
  padding-top: 96px;
}

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

.event-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--charcoal);
}

.event-card:nth-child(2) {
  background: var(--steel);
}

.event-card:nth-child(3) {
  background: #5c171b;
}

.event-card:nth-child(4) {
  background: #232323;
}

.event-card:nth-child(5) {
  background: #71302b;
}

.event-card p {
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-transform: uppercase;
}

.event-card h3 {
  max-width: 330px;
  margin-bottom: 18px;
  font-size: 1.75rem;
  text-transform: uppercase;
}

.event-meta {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.event-meta span,
.event-card small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.event-card small {
  display: block;
  margin-top: 16px;
  line-height: 1.45;
}

.event-card a {
  width: max-content;
  margin-top: 18px;
  color: var(--white);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  gap: 48px;
  padding: 96px var(--pad);
  color: var(--white);
  background: var(--ink);
}

.contact-section > * {
  width: 100%;
}

.contact-copy {
  align-self: center;
}

.contact-copy .eyebrow {
  color: var(--gold);
}

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

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 900;
}

.contact-direct a {
  width: max-content;
  border-bottom: 2px solid currentColor;
}

.booking-panel {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.booking-panel span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.booking-panel h3 {
  margin-bottom: 0;
  font-size: 2.4rem;
  text-transform: uppercase;
}

.booking-panel p {
  max-width: 540px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 720;
}

.booking-panel .btn-dark {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.booking-embed {
  min-height: 680px;
  display: block;
  padding: 0;
  overflow: hidden;
  background: var(--white);
}

.booking-embed iframe {
  width: 100%;
  height: 680px;
  border: 0;
}

.trial-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.trial-form label {
  display: grid;
  gap: 8px;
}

.trial-form span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 900;
}

.trial-form input,
.trial-form select,
.trial-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.trial-form textarea {
  resize: vertical;
}

.trial-form select option {
  color: var(--ink);
}

.trial-form input:focus,
.trial-form select:focus,
.trial-form textarea:focus {
  border-color: var(--gold);
}

.trial-form input:disabled,
.trial-form select:disabled,
.trial-form textarea:disabled,
.trial-form button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-full {
  grid-column: 1 / -1;
}

.trial-form .btn-dark {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 750;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  padding: 44px var(--pad);
  color: var(--white);
  background: #070707;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 900;
}

.site-footer .nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.85rem;
}

.site-credit {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: -18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.site-credit a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 4px;
}

.sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 90;
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.sticky-cta a {
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 950;
}

.sticky-cta a + a {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.post-list-section {
  min-height: 70vh;
  background: var(--paper);
}

.post-list-section h1 {
  color: var(--ink);
  font-size: 3.4rem;
}

.page-content {
  max-width: 980px;
}

.page-content h1 {
  margin-bottom: 28px;
}

.entry-content {
  color: var(--charcoal);
  font-size: 1.05rem;
  font-weight: 560;
}

.entry-content a {
  border-bottom: 2px solid currentColor;
  font-weight: 850;
}

.entry-content img {
  height: auto;
}

.entry-content > * {
  margin-bottom: 1.25rem;
}

.single-hero-image {
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: var(--radius);
}

.single-hero-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.admin-empty {
  min-height: 220px;
  padding: 24px;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.admin-empty h3 {
  margin-bottom: 10px;
}

.admin-empty p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

@media (min-width: 760px) {
  h1 {
    font-size: 7rem;
  }

  h2 {
    font-size: 3.45rem;
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 9.5rem;
  }

  h2 {
    font-size: 4.25rem;
  }
}

@media (max-width: 980px) {
  .utility-bar {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .nav-panel {
    position: fixed;
    inset: 110px var(--pad) auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel a {
    padding: 16px !important;
    border-radius: var(--radius);
  }

  .nav-panel a:hover,
  .nav-panel a:focus-visible {
    background: var(--paper);
  }

  .nav-panel a::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

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

  .story-band,
  .location-grid,
  .location-panel,
  .editorial-split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .story-band,
  .editorial-split {
    min-height: 0;
  }

  .location-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .location-tab {
    width: auto;
    white-space: nowrap;
  }

  .location-stage img {
    min-height: 340px;
  }

  .schedule-grid,
  .event-grid,
  .detail-grid,
  .roster-grid,
  .schedule-downloads,
  .path-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .schedule-item {
    min-height: 240px;
  }

  .schedule-item span {
    margin-bottom: 56px;
  }

  .ignite-inner h2 {
    font-size: 3.35rem;
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 16px;
  }

  .utility-bar {
    display: none;
  }

  .main-nav {
    min-height: 64px;
  }

  .nav-panel {
    inset: 76px var(--pad) auto;
  }

  .brand-name {
    display: none;
  }

  .hero {
    min-height: 610px;
    height: auto;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 36px;
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.3rem;
  }

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

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .rail {
    grid-auto-columns: minmax(265px, 82vw);
  }

  .program-card,
  .coach-card {
    min-height: 390px;
  }

  .story-copy,
  .editorial-copy {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .location-info {
    padding: 24px;
  }

  .trial-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .booking-panel {
    min-height: 360px;
    padding: 20px;
  }

  .booking-panel h3 {
    font-size: 1.9rem;
  }

  .booking-embed,
  .booking-embed iframe {
    min-height: 620px;
    height: 620px;
  }

  .form-full {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer .nav-menu {
    justify-content: flex-start;
  }

  .sticky-cta {
    display: grid;
  }

  body {
    padding-bottom: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
