:root {
  --bg: #101010;
  --bg-elevated: #171717;
  --panel: #1f1f1f;
  --panel-soft: #262626;
  --ink: #f4efe5;
  --muted: #c7bda8;
  --line: rgba(201, 162, 39, 0.22);
  --gold: #c9a227;
  --gold-strong: #e0b937;
  --gold-deep: #9f7d15;
  --success: #8bc34a;
  --warning: #f4c15d;
  --danger: #ff8f7a;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  --radius: 1.25rem;
  --radius-sm: 0.875rem;
  --container: 72rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(201, 162, 39, 0.08), transparent 30%),
    linear-gradient(180deg, #0f0f0f 0%, #141414 100%);
  color: var(--ink);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: var(--gold);
  color: #111;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(16, 16, 16, 0.84);
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.75rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-kicker,
.eyebrow,
.card-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}

.brand-name,
h1,
h2,
h3,
summary {
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: 0.02em;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-strong);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--ink);
  padding: 0.65rem;
  border-radius: 0.75rem;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  margin: 0.22rem 0;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 5rem 0 3rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.55)),
    url('/assets/images/austin_boxing_class.jpg') center/cover no-repeat;
  filter: saturate(0.75) contrast(1.05);
  transform: scale(1.04);
}

.hero-grid,
.band-grid,
.booking-grid,
.visit-grid,
.footer-grid {
  position: relative;
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(19rem, 0.9fr);
  align-items: start;
}

.hero-copy,
.hero-card {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  max-width: 9ch;
}

h2 {
  font-size: clamp(2.25rem, 4.4vw, 3.6rem);
}

h3,
summary {
  font-size: 1.8rem;
}

.lede {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  max-width: 35rem;
  color: #fff8ec;
}

.hero-body,
.section-heading p,
.booking-copy,
.content-card p,
.visit-grid p,
.hero-card-note {
  color: var(--muted);
}

.hero-actions,
.contact-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  color: #161616;
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-block {
  width: 100%;
}

.hero-pills,
.check-list,
.bullet-list,
.split-list,
.partner-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-pills {
  display: grid;
  gap: 0.75rem;
  max-width: 42rem;
}

.hero-pills li,
.check-list li,
.bullet-list li,
.split-list li,
.partner-links li {
  position: relative;
  padding-left: 1.2rem;
}

.hero-pills li::before,
.check-list li::before,
.bullet-list li::before,
.split-list li::before,
.partner-links li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.hero-card,
.content-card,
.booking-panel,
.booking-note,
.faq-stack details,
.map-frame,
.route-banner {
  background: rgba(23, 23, 23, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.booking-panel {
  padding: 2rem;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.hero-card > * {
  margin: 0;
}

.hero-card .btn-block {
  margin-top: 0.5rem;
}

.hero-card h2 {
  margin-top: 0;
}

.proof-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 12, 12, 0.7);
}

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

.proof-grid article {
  display: grid;
  gap: 0.35rem;
}

.proof-grid strong {
  color: var(--gold-strong);
}

.proof-grid span {
  color: var(--muted);
}

.section {
  padding: 4.5rem 0;
}

.section-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2rem;
  max-width: 48rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.content-card .text-link {
  display: block;
  margin-top: auto;
  padding-top: 1.5rem;
}

.featured-card {
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.18), rgba(23, 23, 23, 0.94));
}

.text-link {
  color: var(--gold-strong);
  font-weight: 700;
}

.bullet-list,
.check-list,
.split-list {
  display: grid;
  gap: 0.55rem;
}

.compact {
  font-size: 0.97rem;
}

.band-section {
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.07), rgba(201, 162, 39, 0.01));
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

.band-grid {
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: start;
}

.success-list li::before {
  background: var(--success);
}

.heritage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-card {
  display: grid;
  gap: 1rem;
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 0.35rem);
  filter: grayscale(100%) contrast(1.1);
}

.heritage-links {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.partner-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.booking-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.booking-note {
  padding: 1.35rem 1.5rem;
  margin: 1.25rem 0;
}

.booking-note ol {
  padding-left: 1.1rem;
  margin: 0.85rem 0 0;
}

.faq-stack {
  display: grid;
  gap: 0.85rem;
}

.faq-stack details {
  padding: 1rem 1rem 0.9rem;
}

.faq-stack p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.route-banner {
  display: none;
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
}

.route-banner.is-visible {
  display: block;
}

.route-banner--success {
  border-color: rgba(139, 195, 74, 0.35);
  background: rgba(139, 195, 74, 0.12);
}

.route-banner--warning {
  border-color: rgba(244, 193, 93, 0.35);
  background: rgba(244, 193, 93, 0.1);
}

.route-banner__title {
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.booking-form {
  display: grid;
  gap: 1.5rem;
}

.booking-form label {
  display: grid;
  gap: 0.6rem;
  font-weight: 600;
}

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

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: #111;
  color: var(--ink);
  padding: 0.9rem 1rem;
}

.booking-form select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #111;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a227' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.75rem;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(201, 162, 39, 0.45);
  border-color: rgba(201, 162, 39, 0.65);
}

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.consent-row input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
}

.form-status,
.fine-print {
  color: var(--muted);
  font-size: 0.94rem;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--success);
}

.visit-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.map-frame {
  overflow: hidden;
  min-height: 22rem;
}

.map-frame iframe {
  width: 100%;
  min-height: 22rem;
  border: 0;
}

.site-footer {
  padding: 2rem 0 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0c0c0c;
}

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

.footer-grid > div {
  display: grid;
  gap: 0.5rem;
}

.footer-brand {
  font-size: 1.8rem;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(calc(100% - 1rem), 41rem);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.sticky-cta strong {
  display: block;
}

.sticky-cta span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 70rem) {
  .services-grid,
  .heritage-grid,
  .proof-grid,
  .band-grid,
  .booking-grid,
  .visit-grid,
  .footer-grid,
  .hero-grid,
  .partner-links,
  .heritage-links {
    grid-template-columns: 1fr 1fr;
  }

  .featured-card {
    grid-column: span 2;
  }

  .heritage-links > div {
    grid-column: span 2;
  }
}

@media (max-width: 48rem) {
  .header-bar {
    flex-wrap: wrap;
    padding: 0.8rem 0;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0.65rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .section {
    padding: 3.5rem 0;
  }

  .services-grid,
  .heritage-grid,
  .proof-grid,
  .band-grid,
  .booking-grid,
  .visit-grid,
  .footer-grid,
  .hero-grid,
  .field-grid,
  .partner-links,
  .heritage-links {
    grid-template-columns: 1fr;
  }

  .featured-card,
  .heritage-links > div {
    grid-column: auto;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .hero-actions,
  .contact-stack {
    flex-direction: column;
  }

  .btn,
  .sticky-cta .btn {
    width: 100%;
  }

  .sticky-cta {
    border-radius: 1rem;
    padding: 0.9rem;
    width: calc(100% - 1rem);
    flex-direction: column;
    align-items: stretch;
    bottom: 0.5rem;
  }
}

