:root {
  --bg: #08090b;
  --bg-raise: #12141a;
  --paper: #f3efe6;
  --paper-2: #e7e1d4;
  --ink: #14161b;
  --gold: #e2b45c;
  --gold-2: #c8963d;
  --text: #f6f3ec;
  --muted: #b7b1a6;
  --muted-ink: #5e594f;
  --line: rgba(246, 243, 236, 0.14);
  --line-ink: rgba(20, 22, 27, 0.12);
  --header: 78px;
  --max: 1180px;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.5rem 0.8rem;
  z-index: 80;
}

.skip:focus { top: 1rem; }

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.lede {
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 300;
  max-width: 42rem;
}

.paper { background: var(--paper); color: var(--ink); }
.paper .lede, .paper .muted { color: var(--muted-ink); }

.section { padding: 6.25rem 0; }
.section-tight { padding: 4.5rem 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0 1.25rem 0 1.1rem;
  background: #000;
  border-bottom: 1px solid rgba(226, 180, 92, 0.28);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand img {
  height: 52px;
  width: auto;
  max-width: min(240px, 58vw);
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.main-nav a {
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.98rem;
}

.main-nav a:hover,
.main-nav a.is-active { color: var(--gold); }

.nav-call {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.45rem 0.75rem;
  line-height: 1;
}

.nav-call:hover { background: var(--gold); color: #14120c; }

.nav-toggle {
  display: block;
  position: absolute;
  top: 16px;
  right: 12px;
  z-index: 70;
  min-height: 40px;
  padding: 0 0.75rem;
  border: 0;
  background: var(--gold);
  color: #16130c;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1rem;
}

@media (min-width: 861px) {
  .nav-toggle { display: none; }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: calc(100svh - var(--header));
  background: #000;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3.5rem 4vw 3rem;
}

.hero h1 {
  font-size: clamp(4.8rem, 8.4vw, 8.6rem);
  margin: 0 0 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero .lede { margin-bottom: 1.75rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.hero-facts span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #000;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 18%;
}

.hero-media::after {
  content: "Bellator 205";
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-family: var(--display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.55);
  padding: 0.35rem 0.55rem;
}

.ticker {
  overflow: hidden;
  max-width: 100%;
  border-block: 1px solid var(--line);
  background: var(--bg-raise);
  color: var(--gold);
}

.ticker-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding: 0.85rem 0;
  animation: ticker 36s linear infinite;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ticker-track span { white-space: nowrap; }

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.split-copy h2,
.block-head h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  margin: 0 0 1rem;
}

.frame {
  overflow: hidden;
  background: #111;
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-tall { aspect-ratio: 4 / 5; }
.frame-wide { aspect-ratio: 16 / 11; }

.paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.path {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--bg-raise);
  text-decoration: none;
  border: 1px solid var(--line);
}

.path-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.path-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.path:hover .path-photo img { transform: scale(1.05); }
.path:hover { border-color: rgba(226, 180, 92, 0.55); }

.path-body { padding: 1.25rem 1.25rem 1.4rem; }
.path-index {
  color: var(--gold);
  font-family: var(--display);
  letter-spacing: 0.16em;
  margin: 0 0 0.4rem;
}
.path h3 { font-size: 2.4rem; margin: 0 0 0.6rem; }
.path p { margin: 0; color: var(--muted); }

.quote-band {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.quote-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.35);
}

.quote-band blockquote {
  position: relative;
  width: min(860px, calc(100% - 2.5rem));
  margin: 0;
}

.quote-band p {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.quote-band footer {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--display);
  font-size: 1.05rem;
}

.week {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.days {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-ink);
}

.day {
  padding: 1.25rem 1rem 0.4rem 0;
  border-bottom: 1px solid var(--line-ink);
}

.day + .day { padding-left: 1rem; border-left: 1px solid var(--line-ink); }

.day h3 {
  font-size: 2.2rem;
  margin: 0;
}

.day p { margin: 0.35rem 0 0; color: var(--muted-ink); }

.rates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.rate {
  background: #fff;
  color: var(--ink);
  padding: 1.5rem 1.4rem 1.4rem;
  border: 1px solid var(--line-ink);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.rate-feature {
  background: var(--ink);
  color: var(--text);
  border-color: var(--gold);
}

.rate-kicker {
  margin: 0 0 1rem;
  min-height: 1.2em;
  color: var(--gold-2);
  font-family: var(--display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.rate-feature .rate-kicker { color: var(--gold); }

.rate-price {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 4.4rem;
  line-height: 0.85;
  letter-spacing: -0.03em;
}

.rate-unit {
  margin: 0.35rem 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--muted-ink);
}

.rate-feature .rate-unit { color: var(--muted); }

.rate h3 { font-size: 1.8rem; margin: 0 0 0.8rem; }

.rate ul {
  margin: 0 0 1.4rem;
  padding-left: 1.1rem;
  color: var(--muted-ink);
}

.rate-feature ul { color: var(--muted); }

.rate .btn { margin-top: auto; align-self: flex-start; }

.block-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.block-head p { margin: 0; max-width: 28rem; }

.mosaic {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 250px 230px;
  gap: 10px;
}

.shot {
  display: block;
  overflow: hidden;
  background: #111;
  position: relative;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.shot:hover img { transform: scale(1.045); }

.shot-a { grid-row: span 2; }
.shot-b { grid-column: span 2; }

.coach {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.coach h2 { font-size: clamp(3rem, 5vw, 4.6rem); margin: 0 0 1rem; }

.quotes {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
}

.quote-card {
  margin: 0;
  padding: 1.4rem;
  background: #fff;
  border-top: 3px solid var(--gold);
}

.quote-card p { margin: 0 0 1rem; font-size: 1.05rem; }

.quote-card footer {
  color: var(--muted-ink);
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.quote-card-lead { background: var(--ink); color: var(--text); }
.quote-card-lead footer { color: var(--gold); }

.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.visit h2 { font-size: clamp(3rem, 5vw, 4.8rem); margin: 0 0 0.8rem; }

.visit address {
  font-style: normal;
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #000;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42);
}

.page-hero .wrap { position: relative; padding-bottom: 2.5rem; }

.page-hero h1 {
  font-size: clamp(4rem, 8vw, 7.2rem);
  margin: 0;
  max-width: 14ch;
}

.discipline-grid,
.event-grid,
.recover-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.35rem 1.3rem 1.4rem;
  background: var(--bg-raise);
  border: 1px solid var(--line);
}

.paper .card {
  background: #fff;
  border-color: var(--line-ink);
}

.card h3 { font-size: 2rem; margin: 0 0 0.45rem; }
.card p { margin: 0; color: var(--muted); }
.paper .card p { color: var(--muted-ink); }

.event-list {
  columns: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-list li {
  break-inside: avoid;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 12px;
}

.gallery-grid figure {
  margin: 0 0 12px;
  break-inside: avoid;
  background: var(--bg-raise);
}

.gallery-grid img { width: 100%; height: auto; cursor: zoom-in; }

.gallery-grid figcaption {
  padding: 0.7rem 0.8rem 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
}

.contact-grid address {
  font-style: normal;
  margin: 0 0 1.25rem;
}

.contact-grid a { color: var(--gold-2); }

.form {
  display: grid;
  gap: 0.85rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(20, 22, 27, 0.2);
  padding: 0.75rem 0.8rem;
  border-radius: 0;
}

.form textarea { min-height: 150px; resize: vertical; }

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: transparent;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
}

.form-status {
  display: none;
  margin: 0;
  padding: 0.75rem 0.85rem;
  background: #fff;
  color: var(--ink);
}

.form-status.visible { display: block; }
.form-status.error { background: #f8e4e0; }
.form-status.info { background: #f6efd8; }

.map {
  margin-top: 2.5rem;
  border: 0;
  width: 100%;
  height: 360px;
  filter: grayscale(0.35) contrast(1.05);
}

.site-footer {
  background: #000;
  border-top: 1px solid rgba(226, 180, 92, 0.28);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.site-footer p { margin: 0 0 0.4rem; color: var(--muted); }
.site-footer a { color: var(--text); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }

.footer-brand img {
  height: 48px;
  width: auto;
  mix-blend-mode: screen;
  margin-bottom: 0.8rem;
}

.legal {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal a { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.15rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1rem;
}

.btn-gold { background: var(--gold); color: #16130c; }
.btn-gold:hover { background: #f0c56e; }
.btn-ghost { border-color: rgba(246, 243, 236, 0.45); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: #000; }
.btn[disabled] { opacity: 0.6; cursor: wait; }

.thanks {
  min-height: calc(100vh - 280px);
  display: grid;
  align-items: center;
}

.thanks h1 { font-size: clamp(4rem, 8vw, 7rem); margin: 0 0 1rem; }

dialog.lightbox {
  width: min(1040px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 0;
  border: 0;
  background: #000;
  color: var(--text);
}

dialog.lightbox::backdrop { background: rgba(0, 0, 0, 0.82); }

dialog.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; background: #000; }

dialog.lightbox p { margin: 0; padding: 0.8rem 1rem 1rem; color: var(--muted); }

.lightbox-close {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  background: #000;
  color: var(--text);
  border: 1px solid var(--line);
  min-height: 40px;
  padding: 0 0.7rem;
  cursor: pointer;
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .week,
  .coach,
  .visit,
  .contact-grid,
  .quotes { grid-template-columns: 1fr; }

  .paths,
  .rates,
  .discipline-grid,
  .event-grid,
  .recover-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .quotes { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 180px 220px; }
  .shot-a { grid-row: auto; grid-column: span 2; min-height: 240px; }
  .shot-b { grid-column: span 2; }
  .hero-facts { grid-template-columns: 1fr; }
  .block-head { flex-direction: column; align-items: start; }
  .event-list { columns: 1; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: var(--header) 0 0 0;
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.4rem;
    padding: 1.5rem 1.4rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .main-nav.open { transform: none; }
  .main-nav a { font-size: 1.8rem; }
  .hero-copy { padding: 2rem 1.25rem 2.2rem; min-width: 0; }
  .hero h1 { font-size: clamp(3.3rem, 18vw, 4.4rem); }
  .hero-media { min-height: 70vw; order: -1; }
  .section { padding: 4.2rem 0; }
  .days { grid-template-columns: 1fr; }
  .day + .day { border-left: 0; padding-left: 0; }
  .mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .shot-a, .shot-b { grid-column: auto; min-height: 220px; }
  .shot { min-height: 220px; }
  .page-hero { min-height: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .shot img, .path-photo img { transition: none; }
}
