:root {
  color-scheme: dark;
  --bg: #030303;
  --surface: #090909;
  --surface-strong: #111111;
  --text: #ffffff;
  --muted: #c9c9c9;
  --red: #a3000b;
  --red-strong: #ef0015;
  --red-hot: #ff1b1c;
  --red-deep: #580006;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
  --max-width: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  background: var(--red-strong);
  color: var(--white);
  font-weight: 800;
  left: 1rem;
  padding: 0.6rem 0.9rem;
  position: fixed;
  top: -5rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(3, 3, 3, 0.94);
  border-bottom: 1px solid rgba(239, 0, 21, 0.28);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max-width);
  min-height: 76px;
  padding: 0 1.25rem;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  flex: 0 0 auto;
  height: 56px;
  object-fit: cover;
  width: 56px;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-copy span {
  font-size: 0.98rem;
  font-weight: 900;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 1.4rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.nav-cta {
  background: var(--red-strong);
  border-radius: 4px;
  box-shadow: 0 0 22px rgba(239, 0, 21, 0.26);
  color: var(--white) !important;
  padding: 0.7rem 1rem;
}

.nav-toggle {
  align-items: center;
  background: rgba(239, 0, 21, 0.16);
  border: 1px solid rgba(239, 0, 21, 0.42);
  border-radius: 4px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.nav-toggle span:not(.sr-only) {
  background: var(--text);
  display: block;
  height: 2px;
  width: 20px;
}

.hero {
  align-items: end;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  padding: 8rem 1.25rem 2rem;
  position: relative;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1534258936925-c58bed479fcb?auto=format&fit=crop&w=2200&q=85");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.83) 42%, rgba(3, 3, 3, 0.35) 100%), linear-gradient(0deg, rgba(3, 3, 3, 0.95) 0%, rgba(88, 0, 6, 0.38) 38%, rgba(3, 3, 3, 0) 68%);
  inset: 0;
  position: absolute;
}

.hero-content {
  margin: 0 auto;
  max-width: var(--max-width);
  position: relative;
  width: 100%;
  z-index: 1;
}

.eyebrow {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0 0 0.8rem;
  text-shadow: 3px 3px 0 var(--red-deep);
  text-transform: uppercase;
}

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

h1 {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(3rem, 9vw, 6.6rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 1.2rem;
  max-width: 900px;
  text-shadow: 5px 5px 0 var(--red-deep), 0 0 32px rgba(239, 0, 21, 0.34);
  text-transform: uppercase;
}

h2 {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.13rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
}

.button-primary {
  background: var(--red-strong);
  box-shadow: 0 0 24px rgba(239, 0, 21, 0.26);
  color: var(--white);
}

.button-secondary {
  border: 1px solid rgba(239, 0, 21, 0.7);
  background: rgba(239, 0, 21, 0.1);
  color: var(--white);
}

.hero-stats {
  background: #030303;
  border: 1px solid rgba(239, 0, 21, 0.4);
  box-shadow: 0 0 38px rgba(239, 0, 21, 0.12);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 4rem auto 0;
  max-width: var(--max-width);
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-stats > div {
  background: #070707;
  padding: 1.1rem;
}

.hero-stats strong {
  color: var(--red-hot);
  display: block;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1;
}

.hero-stats > div > span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.busy-stat {
  display: grid;
  gap: 0.35rem;
}

.meter-track {
  background: #1a1a1a;
  border: 1px solid rgba(239, 0, 21, 0.45);
  height: 8px;
  margin-top: 0.25rem;
  overflow: hidden;
}

.meter-fill {
  background: var(--red-strong);
  display: block;
  height: 100%;
  width: var(--busy-level);
}

.section,
.split-section,
.contact-section {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 5.5rem 1.25rem;
}

.intro-band,
.schedule-band {
  max-width: none;
}

.intro-band > *,
.schedule-band > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-width);
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading h2 {
  max-width: 760px;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid rgba(239, 0, 21, 0.22);
  border-radius: 8px;
  min-height: 250px;
  padding: 1.4rem;
}

.feature-card p,
.facility-copy p,
.contact-copy p,
.site-footer p,
.site-footer address {
  color: var(--muted);
}

.feature-icon {
  color: var(--red-hot);
  display: inline-block;
  font-weight: 950;
  margin-bottom: 2rem;
}

.split-section {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.facility-image {
  aspect-ratio: 4 / 5;
  background-image: url("https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?auto=format&fit=crop&w=1400&q=85");
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.facility-copy p {
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
}

.check-list li {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  font-weight: 800;
}

.check-list li::before {
  background: var(--red-strong);
  border-radius: 50%;
  content: "";
  flex: 0 0 0.55rem;
  height: 0.55rem;
}

.schedule-band {
  background: linear-gradient(180deg, var(--surface), #050505);
}

.schedule-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.schedule-row {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.schedule-row span {
  color: var(--muted);
  font-weight: 800;
}

.schedule-row strong {
  color: var(--white);
  font-size: 1.2rem;
  text-align: right;
}

.contact-section {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
}

.contact-panel {
  background: var(--surface-strong);
  border: 1px solid rgba(239, 0, 21, 0.28);
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.contact-line {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.2rem;
  padding-bottom: 1rem;
}

.contact-line span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-line strong {
  font-size: 1.05rem;
}

.site-footer {
  background: #020202;
  border-top: 1px solid rgba(239, 0, 21, 0.26);
  padding: 3rem 1.25rem 1rem;
}

.footer-grid,
.footer-bottom {
  margin: 0 auto;
  max-width: var(--max-width);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand .brand-logo {
  height: 64px;
  width: 64px;
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.site-footer address {
  font-style: normal;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

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

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

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    background: rgba(13, 15, 16, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    display: none;
    flex-direction: column;
    gap: 0;
    inset: 76px 0 auto;
    padding: 1rem 1.25rem 1.5rem;
    position: fixed;
  }

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

  .nav-links a {
    padding: 0.9rem 0;
    width: 100%;
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(13, 15, 16, 0.96), rgba(13, 15, 16, 0.7)), linear-gradient(0deg, rgba(13, 15, 16, 0.92), rgba(13, 15, 16, 0));
  }

  .hero-stats,
  .feature-grid,
  .split-section,
  .contact-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .facility-image {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  .brand-copy span {
    font-size: 0.86rem;
  }

  .brand-copy small {
    font-size: 0.68rem;
  }

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

  h1 {
    font-size: clamp(2.55rem, 16vw, 4.1rem);
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-stats {
    margin-top: 2.5rem;
  }

  .section,
  .split-section,
  .contact-section {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }

  .schedule-row {
    align-items: start;
    flex-direction: column;
  }

  .schedule-row strong {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

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