:root {
  --matte-black: #1b1b1b;
  --coal: #141414;
  --aged-cream: #f0e6d2;
  --railroad-red: #8c1d18;
  --railroad-red-bright: #a8281f;
  --muted-gold: #b38a3d;
  --charcoal: #3a3a3a;
  --ink: #241d15;
  --cream-rgb: 240 230 210;
  --gold-rgb: 179 138 61;
  --shadow: 0 22px 60px rgb(0 0 0 / 34%);
  --radius: 10px;
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-slab: "Roboto Slab", Georgia, serif;
  --font-body: Montserrat, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 8%, rgb(var(--gold-rgb) / 14%), transparent 30rem),
    radial-gradient(circle at 85% 110%, rgb(140 29 24 / 16%), transparent 38rem),
    linear-gradient(135deg, #111 0%, var(--matte-black) 45%, #20100d 100%);
  color: var(--aged-cream);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--muted-gold);
  outline-offset: 2px;
}

.skip-link {
  background: var(--aged-cream);
  color: var(--matte-black);
  left: 1rem;
  padding: .75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 20;
}

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

/* ---------- header ---------- */

.site-header {
  background: rgb(20 20 20 / 94%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgb(var(--gold-rgb) / 35%);
  box-shadow: 0 1px 0 rgb(var(--gold-rgb) / 12%), 0 10px 30px rgb(0 0 0 / 35%);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: .7rem clamp(1rem, 4vw, 2rem);
}

.brand img {
  height: auto;
  width: min(44vw, 178px);
}

.nav-toggle {
  background: transparent;
  border: 1px solid rgb(var(--cream-rgb) / 28%);
  border-radius: 4px;
  color: var(--aged-cream);
  cursor: pointer;
  font: inherit;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  padding: .55rem .9rem;
  text-transform: uppercase;
}

.nav-links {
  background: rgb(20 20 20 / 97%);
  border: 1px solid rgb(var(--gold-rgb) / 35%);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: .75rem;
  position: absolute;
  right: 1rem;
  top: 4.6rem;
}

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

.nav-links a {
  border-bottom: 2px solid transparent;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  padding: .55rem .35rem;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-bottom-color: var(--muted-gold);
  color: rgb(var(--cream-rgb));
}

/* ---------- layout & type ---------- */

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1rem, 4vw, 2rem);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: calc(100svh - 84px);
}

.hero-copy,
.section-heading {
  max-width: 760px;
}

.eyebrow {
  align-items: center;
  color: var(--muted-gold);
  display: flex;
  flex-wrap: wrap;
  font-size: .78rem;
  font-weight: 800;
  gap: .6rem;
  letter-spacing: .18em;
  margin: 0 0 1.1rem;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .015em;
  line-height: .95;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.4rem, 9.5vw, 7.5rem);
  max-width: 860px;
}

h2 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
}

h3 {
  font-family: var(--font-slab);
  font-size: 1.3rem;
  line-height: 1.1;
  margin: 0;
}

.lede,
.section-heading p,
.split p,
.about-grid,
.contact p {
  color: rgb(var(--cream-rgb) / 82%);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

/* ---------- track divider ---------- */

.menu-preview::before,
.split::before,
.contact::before {
  background:
    repeating-linear-gradient(90deg,
      rgb(var(--gold-rgb) / 38%) 0 4px,
      transparent 4px 22px),
    linear-gradient(
      transparent 3px,
      rgb(var(--gold-rgb) / 55%) 3px 4px,
      transparent 4px 10px,
      rgb(var(--gold-rgb) / 55%) 10px 11px,
      transparent 11px);
  content: "";
  display: block;
  grid-column: 1 / -1;
  height: 14px;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

/* ---------- buttons: ticket style ---------- */

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

.button {
  border-radius: 4px;
  display: inline-flex;
  font-size: .85rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: .1em;
  padding: .95rem 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  background: linear-gradient(180deg, var(--railroad-red-bright), var(--railroad-red));
  box-shadow: inset 0 0 0 1px rgb(var(--gold-rgb) / 45%), 0 8px 22px rgb(0 0 0 / 35%);
  color: var(--aged-cream);
}

.button-primary:hover {
  background: linear-gradient(180deg, #b52d23, var(--railroad-red-bright));
}

.button-secondary {
  border: 1px solid rgb(var(--gold-rgb) / 60%);
  color: var(--aged-cream);
}

.button-secondary:hover {
  background: rgb(var(--gold-rgb) / 12%);
}

@supports (mask-composite: intersect) {
  .button-primary {
    mask:
      radial-gradient(7px at 0 50%, transparent 96%, #000),
      radial-gradient(7px at 100% 50%, transparent 96%, #000);
    mask-composite: intersect;
  }
}

/* ---------- hero ---------- */

.hero-card {
  padding: clamp(.5rem, 2vw, 1.5rem);
  position: relative;
}

.hero-card img {
  filter: drop-shadow(0 18px 40px rgb(0 0 0 / 50%));
  margin-inline: auto;
  position: relative;
  width: min(100%, 480px);
}

.hero-card::before,
.hero-card::after {
  background: radial-gradient(circle, rgb(var(--cream-rgb) / 14%), transparent 65%);
  border-radius: 50%;
  content: "";
  filter: blur(14px);
  height: 120px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 18%;
  width: 120px;
}

.hero-card::before {
  left: 30%;
}

.hero-card::after {
  left: 48%;
  height: 90px;
  width: 90px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-card::before {
    animation: steam 7s ease-in-out infinite;
  }

  .hero-card::after {
    animation: steam 9s ease-in-out 2.5s infinite;
  }
}

@keyframes steam {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(.7);
  }

  30% {
    opacity: .8;
  }

  100% {
    opacity: 0;
    transform: translateY(-110px) scale(1.5);
  }
}

/* ---------- menu: ticket cards ---------- */

.menu-grid,
.about-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.menu-card {
  background:
    linear-gradient(180deg, rgb(255 252 244 / 4%), transparent 30%),
    var(--aged-cream);
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgb(var(--gold-rgb) / 50%), inset 0 0 0 4px var(--aged-cream), inset 0 0 0 5px rgb(27 27 27 / 18%), var(--shadow);
  color: var(--ink);
  padding: 1.5rem 1.35rem 1.35rem;
}

.menu-card h3 {
  color: var(--railroad-red);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.menu-card ul {
  border-top: 2px dashed rgb(27 27 27 / 28%);
  list-style: none;
  margin: .9rem 0 0;
  padding: .35rem 0 0;
}

.menu-card li {
  border-bottom: 1px solid rgb(27 27 27 / 12%);
  font-weight: 600;
  padding: .65rem 0;
}

.menu-card li:last-child {
  border-bottom: 0;
}

/* ---------- split / depot board ---------- */

.split,
.contact {
  align-items: center;
  display: grid;
  gap: 2rem;
}

.notice-card {
  background: var(--coal);
  border: 1px solid rgb(var(--gold-rgb) / 55%);
  border-radius: 6px;
  box-shadow: inset 0 0 0 4px var(--coal), inset 0 0 0 5px rgb(var(--gold-rgb) / 30%), var(--shadow);
  padding: 1.75rem 1.5rem;
}

.notice-card h3 {
  color: var(--muted-gold);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.notice-card p {
  color: rgb(var(--cream-rgb) / 78%);
}

/* ---------- about ---------- */

.about {
  background: rgb(20 20 20 / 55%);
  border-block: 1px solid rgb(var(--gold-rgb) / 25%);
  max-width: none;
  overflow: hidden;
  position: relative;
}

.about::after {
  background: url("/assets/logos/logo-one-color.webp") no-repeat center / contain;
  bottom: -8%;
  content: "";
  height: clamp(280px, 38vw, 460px);
  opacity: .07;
  pointer-events: none;
  position: absolute;
  right: -3%;
  width: clamp(280px, 38vw, 460px);
}

.about > * {
  margin-inline: auto;
  max-width: 1180px;
  position: relative;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1rem;
  list-style: none;
  margin: 2.25rem auto 0;
  padding: 0;
}

.values li {
  border: 1px solid rgb(var(--gold-rgb) / 45%);
  border-radius: 4px;
  color: var(--muted-gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  padding: .45rem .8rem;
  text-transform: uppercase;
}

/* ---------- contact: rivet plate ---------- */

.contact-card {
  background: rgb(var(--cream-rgb) / 6%);
  border: 1px solid rgb(var(--cream-rgb) / 16%);
  border-radius: 6px;
  box-shadow: var(--shadow);
  display: grid;
  gap: .8rem;
  padding: 2rem 1.75rem;
  position: relative;
}

.contact-card::before {
  background:
    radial-gradient(4px at 14px 14px, rgb(var(--gold-rgb) / 85%) 60%, transparent 65%),
    radial-gradient(4px at calc(100% - 14px) 14px, rgb(var(--gold-rgb) / 85%) 60%, transparent 65%),
    radial-gradient(4px at 14px calc(100% - 14px), rgb(var(--gold-rgb) / 85%) 60%, transparent 65%),
    radial-gradient(4px at calc(100% - 14px) calc(100% - 14px), rgb(var(--gold-rgb) / 85%) 60%, transparent 65%);
  border-radius: inherit;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.contact-card a,
.contact-card span {
  align-items: center;
  background: rgb(20 20 20 / 55%);
  border: 1px solid rgb(var(--cream-rgb) / 10%);
  border-radius: 6px;
  display: flex;
  gap: .7rem;
  padding: .9rem 1rem;
  text-decoration: none;
}

.contact-card a:hover {
  border-color: rgb(var(--gold-rgb) / 55%);
}

.contact-card .social-mark {
  border-radius: 50%;
  height: 30px;
  width: 30px;
}

/* ---------- badges & pills ---------- */

.status-pill {
  background: var(--muted-gold);
  border-radius: 3px;
  color: var(--matte-black);
  display: inline-flex;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  margin-top: 1rem;
  padding: .45rem .7rem;
  text-transform: uppercase;
}

h2 .status-pill {
  font-family: var(--font-body);
  font-size: .78rem;
  margin-top: 0;
  transform: translateY(-.5em);
  vertical-align: middle;
}

.badge-soon {
  background: var(--railroad-red);
  border: 1px dashed rgb(var(--cream-rgb) / 55%);
  border-radius: 3px;
  color: var(--aged-cream);
  display: inline-block;
  font-weight: 900;
  letter-spacing: .14em;
  padding: .3rem .7rem;
}

/* ---------- footer ---------- */

.site-footer {
  align-items: center;
  background: var(--coal);
  border-top: 1px solid rgb(var(--gold-rgb) / 30%);
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: 3.5rem 1rem 3rem;
  position: relative;
  text-align: center;
}

.site-footer::before {
  background:
    repeating-linear-gradient(90deg,
      rgb(var(--gold-rgb) / 30%) 0 4px,
      transparent 4px 22px),
    linear-gradient(
      transparent 3px,
      rgb(var(--gold-rgb) / 45%) 3px 4px,
      transparent 4px 10px,
      rgb(var(--gold-rgb) / 45%) 10px 11px,
      transparent 11px);
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  right: 0;
  top: -15px;
}

.site-footer img {
  height: auto;
  width: 168px;
}

.footer-tagline {
  color: var(--muted-gold);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin: 0;
  text-transform: uppercase;
}

.fine-print {
  color: rgb(var(--cream-rgb) / 62%);
  font-size: .9rem;
  margin: 0;
}

/* ---------- responsive ---------- */

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    align-items: center;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    gap: 1.4rem;
    padding: 0;
    position: static;
  }

  .hero,
  .split,
  .contact {
    grid-template-columns: 1.05fr .95fr;
  }

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

@media (min-width: 1040px) {
  .menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
