:root {
  --red: #e1251b;
  --red-dark: #b91d15;
  --black: #0a0a0b;
  --black-2: #131315;
  --white: #fff;
  --paper: #f5f3ee;
  --warm: #e9e4da;
  --text: #171719;
  --muted: #69696f;
  --line: #d9d6cf;
  --dark-line: rgba(255, 255, 255, 0.14);
  --display: "Oswald", sans-serif;
  --body: "Manrope", sans-serif;
  --container: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 122px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

picture {
  display: block;
}

picture img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  background: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.top-bar {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  left: 0;
  padding: 7px 0;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 11, 0.92);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: flex;
  height: 78px;
  align-items: center;
}

.logo {
  display: grid;
  width: 142px;
  height: 64px;
  align-items: center;
  overflow: hidden;
}

.logo img {
  width: 135px;
}

.nav {
  display: flex;
  gap: clamp(16px, 2vw, 30px);
  margin-left: auto;
}

.nav a {
  position: relative;
  padding: 12px 0;
  color: #d6d6d8;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-left: 26px;
}

.header-hours { position: relative; }
.header-hours summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  cursor: pointer;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  list-style: none;
  text-transform: uppercase;
}
.header-hours summary::-webkit-details-marker { display: none; }
.header-hours summary svg { width: 17px; fill: none; stroke: var(--red); stroke-width: 1.8; }
.header-hours[open] summary { border-color: var(--red); background: rgba(255, 255, 255, 0.06); }
.header-hours__panel {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  width: 330px;
  padding: 22px;
  border-top: 3px solid var(--red);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.header-hours__panel > strong { display: block; margin-bottom: 13px; font-family: var(--display); font-size: 18px; text-transform: uppercase; }
.header-hours__panel > div { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.header-hours__panel > div span { color: var(--muted); }
.header-hours__panel > div b { text-align: right; }
.header-hours__panel > a { display: inline-block; margin-top: 16px; color: var(--red-dark); font-family: var(--display); font-size: 11px; font-weight: 800; text-transform: uppercase; }

.phone-link {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}

.phone-link svg,
.mobile-bar svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 26px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  gap: 14px;
  padding-inline: 18px;
  font-size: 14px;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button--dark {
  border-color: var(--black);
  background: var(--black);
}

.button--dark:hover {
  background: #28282b;
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.button--light:hover {
  background: #e8e8e8;
}

.button--large {
  min-height: 66px;
  padding-inline: 34px;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 7px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 99;
  inset: 78px 0 0;
  overflow-y: auto;
  background: var(--black);
}

.mobile-menu__inner {
  display: flex;
  min-height: calc(100dvh - 78px);
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px 100px;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: flex;
  min-height: 62px;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid var(--dark-line);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-menu nav a span {
  color: var(--red);
  font-size: 11px;
}

.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 30px;
  color: #a8a8ab;
  font-size: 14px;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(860px, 94vh);
  align-items: center;
  overflow: hidden;
  padding: 140px 0 92px;
  background: var(--black);
  color: var(--white);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: contrast(1.07) saturate(0.86);
}

.hero__shade {
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 6, 0.96) 0%,
      rgba(5, 5, 6, 0.74) 47%,
      rgba(5, 5, 6, 0.2)
    ),
    linear-gradient(0deg, rgba(5, 5, 6, 0.75), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.overline {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 18px;
  color: #b8b8ba;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.overline::before {
  width: 30px;
  height: 3px;
  background: var(--red);
  content: "";
  transform: skew(-20deg);
}

.overline--dark {
  color: #656569;
}

.hero h1,
.section-head h2,
.track h2,
.kids h2,
.faq h2,
.booking-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(74px, 8.5vw, 124px);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 em,
h2 em {
  color: var(--red);
}

.hero__lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: #d2d2d4;
  font-size: 18px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 35px;
}

.hero-card {
  align-self: end;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(14px);
}

.open-state {
  display: flex;
  gap: 13px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--dark-line);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #39d16f;
  box-shadow: 0 0 0 5px rgba(57, 209, 111, 0.13);
}

.status-dot.is-closed {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(225, 37, 27, 0.14);
}

.open-state small,
.open-state strong {
  display: block;
}

.open-state small {
  margin-bottom: 3px;
  color: #8d8d90;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.open-state strong {
  font-size: 13px;
}

.hero-card__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 24px 0;
}

.hero-card__facts div {
  border-right: 1px solid var(--dark-line);
}

.hero-card__facts div:last-child {
  border: 0;
}

.hero-card__facts span,
.hero-card__facts strong,
.hero-card__facts small {
  display: block;
}

.hero-card__facts span {
  color: #8c8c8f;
  font-size: 9px;
  text-transform: uppercase;
}

.hero-card__facts strong {
  margin: 3px 0 1px;
  font-family: var(--display);
  font-size: 27px;
}

.hero-card__facts small {
  color: #a5a5a8;
  font-size: 9px;
}

.hero-card > p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--dark-line);
  color: #a0a0a3;
  font-size: 11px;
  line-height: 1.6;
}

.hero__ticker {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 11, 0.7);
}

.hero__ticker div {
  display: flex;
  width: max-content;
  min-width: 100%;
  justify-content: center;
  gap: 25px;
  padding: 15px 0 15px 24px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__ticker i {
  color: var(--red);
  font-style: normal;
}

.quick-pick {
  padding: 48px 0;
  background: var(--white);
}

.quick-pick__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}

.quick-pick__heading > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.quick-pick__heading h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.quick-pick__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.quick-pick__grid a {
  display: grid;
  min-height: 105px;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 160ms ease,
    color 160ms ease;
}

.quick-pick__grid a:hover {
  background: var(--black);
  color: var(--white);
}

.quick-pick__icon {
  color: var(--red);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
}

.quick-pick__grid strong,
.quick-pick__grid small {
  display: block;
}

.quick-pick__grid strong {
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
}

.quick-pick__grid small {
  margin-top: 4px;
  color: #5a5a5e;
  font-size: 11px;
  font-weight: 600;
}

.quick-pick__grid b {
  color: var(--red);
  font-size: 18px;
}

.section {
  padding: 120px 0;
}

.prices,
.audiences,
.visit {
  background: var(--paper);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--warm {
  background: var(--warm);
}

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}

.section-head h2,
.track h2,
.kids h2,
.faq h2,
.booking-cta h2 {
  font-size: clamp(58px, 6.5vw, 92px);
}

.section-head > p {
  max-width: 460px;
  margin: 0 0 4px auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.price-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.price-tab {
  flex: 1 0 auto;
  min-width: 120px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid #c9c6bf;
  background: var(--white);
  cursor: pointer;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.price-tab.is-active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.price-tab:hover:not(.is-active) {
  background: #f5f4f0;
}

.price-panel {
  animation: panel-in 220ms ease both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.price-grid {
  display: grid;
  gap: 18px;
}

.price-grid--two {
  grid-template-columns: 1fr 1fr;
}

#panel-einzel .price-grid {
  max-width: 780px;
  grid-template-columns: 1fr;
  margin-inline: auto;
}

.price-card--recommended {
  border: 2px solid var(--red);
}

.price-card--info {
  background: var(--black);
  color: var(--white);
}

.price-card--info .price-card__label,
.price-card--info .price-card__price strong {
  color: var(--white);
}

.price-card--info .price-card__summary,
.price-card--info .info-list { color: #c2c2c6; }

.info-list {
  margin: 0 0 22px;
  padding: 0 0 0 18px;
  color: #5f5f63;
  font-size: 13px;
  line-height: 1.7;
}

.info-list li {
  margin-bottom: 9px;
}

.checklist__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.checklist__card {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.checklist__card h3 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}

.checklist__card .button {
  margin-top: auto;
}

.start-guide {
  border-top: 1px solid #c9c3b8;
}

.start-guide article {
  display: grid;
  grid-template-columns: 54px 190px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 112px;
  padding: 20px 4px;
  border-bottom: 1px solid #c9c3b8;
}

.start-guide article > span {
  color: var(--red-dark);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}

.start-guide article > div { display: contents; }

.start-guide h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
}

.start-guide p {
  max-width: 680px;
  margin: 0;
  color: #59595e;
  font-size: 13px;
  line-height: 1.7;
}

.start-guide__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--black);
  color: var(--white);
}

.start-guide__footer strong,
.start-guide__footer span { display: block; }
.start-guide__footer strong { font-family: var(--display); font-size: 16px; text-transform: uppercase; }
.start-guide__footer span { margin-top: 4px; color: #b7b7bb; font-size: 11px; }
.start-guide__footer a { flex: 0 0 auto; color: var(--white); font-family: var(--display); font-size: 12px; font-weight: 800; text-transform: uppercase; }

.recommended-ribbon {
  position: absolute;
  top: -1px;
  right: 24px;
  padding: 8px 13px;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.availability {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #656569;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.availability span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.availability--online span {
  background: #2fbf62;
  box-shadow: 0 0 0 4px rgba(47, 191, 98, 0.12);
}

.availability--request span {
  background: #ed8b18;
  box-shadow: 0 0 0 4px rgba(237, 139, 24, 0.12);
}

.tag {
  padding: 6px 10px;
  border: 1px solid #c8c5be;
  border-radius: 100px;
  color: #5f5f63;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag--red {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.price-card__label {
  margin: 8px 0 6px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.price-card__price {
  display: flex;
  gap: 13px;
  align-items: baseline;
}

.price-card__price strong {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-card__price span {
  color: #717176;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-card__price--small {
  align-items: flex-end;
  flex-direction: column;
  gap: 5px;
}

.price-card__price--small strong {
  align-self: flex-start;
  font-size: 42px;
}

.price-card__price--small span {
  align-self: flex-start;
}

.price-card__summary {
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.price-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.price-facts div {
  padding: 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-facts small,
.price-facts strong {
  display: block;
}

.price-facts small {
  margin-bottom: 5px;
  color: #6a6a6e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-facts strong {
  font-size: 12px;
}

.price-facts--stack {
  grid-template-columns: 1fr;
  margin-bottom: 20px;
}

.price-card > .button {
  width: 100%;
  margin-top: auto;
}

.price-hint {
  display: block;
  margin-top: 12px;
  color: #6a6a6e;
  font-size: 10px;
  text-align: center;
}

.birthday-options {
  display: grid;
  margin-bottom: 26px;
  border-top: 1px solid var(--line);
}

.birthday-options div {
  display: grid;
  grid-template-columns: 0.7fr 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.birthday-options span {
  color: var(--red);
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
}

.price-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 20px;
  padding: 17px 20px;
  border: 1px solid #e0c67d;
  background: #fff7dc;
}

.price-note svg {
  flex: 0 0 22px;
  width: 22px;
  fill: none;
  stroke: #8e6614;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.price-note p {
  margin: 0;
  color: #6b581e;
  font-size: 11px;
  line-height: 1.6;
}

.track__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 90px;
  align-items: center;
}

.track__lead {
  max-width: 520px;
  margin: 30px 0 38px;
  color: #aaaab0;
  font-size: 16px;
  line-height: 1.8;
}

.track__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 35px;
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.track__specs div {
  padding: 19px;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.track__specs strong,
.track__specs span {
  display: block;
}

.track__specs strong {
  font-family: var(--display);
  font-size: 28px;
}

.track__specs span {
  margin-top: 3px;
  color: #7d7d82;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.track__record {
  margin-bottom: 35px;
}

.track__record .track-record__block {
  background: rgba(227, 30, 36, 0.1);
  border-color: var(--red);
}

.track__record .track-record__label,
.track__record .track-record__time,
.track__record .track-record__driver {
  color: var(--white);
}

.track__record .track-record__time small {
  color: #b5b5b9;
  opacity: 1;
}

.track__record-label {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.feature-checks {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  color: #b0b0b4;
  font-size: 12px;
  list-style: none;
}

.feature-checks li {
  position: relative;
  padding-left: 22px;
}

.feature-checks li::before {
  position: absolute;
  top: 4px;
  left: 1px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--red);
  border-left: 2px solid var(--red);
  content: "";
  transform: rotate(-45deg);
}

.track__visual {
  position: relative;
  min-height: 650px;
}

.track__photo {
  width: 78%;
  height: 590px;
  margin-left: auto;
  object-fit: cover;
}

.track__map {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54%;
  padding: 17px;
  border: 8px solid var(--black);
  background: var(--white);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.track__map img {
  width: 100%;
}

.track__map span {
  display: block;
  margin-top: 10px;
  color: var(--black);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.track__map-zoom {
  display: inline-block !important;
  margin-top: 6px;
  padding: 5px 10px;
  border: 1px solid var(--black);
  color: var(--black);
  font-size: 10px;
  transition: background 160ms ease;
}

.track__map:hover .track__map-zoom {
  background: var(--black);
  color: var(--white);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: zoom-out;
}

.lightbox__content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: min(1200px, calc(100vw - 40px));
  max-height: calc(100dvh - 40px);
  gap: 10px;
  justify-items: end;
}

.lightbox__content img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 96px);
  border-radius: 4px;
  object-fit: contain;
}

.lightbox__close {
  position: static;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 8px 14px;
  border: 0;
  border-radius: 100px;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.lightbox__close span {
  font-size: 18px;
  line-height: 1;
}

.app__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

.app__ranking {
  grid-column: 1 / -1;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.app__ranking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.app__ranking-head span,
.app__ranking-head strong { display: block; }
.app__ranking-head span { margin-bottom: 4px; color: var(--red-dark); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.app__ranking-head strong { font-family: var(--display); font-size: 22px; text-transform: uppercase; }
.app__ranking-head a { color: var(--red-dark); font-family: var(--display); font-size: 13px; font-weight: 800; text-transform: uppercase; }

.app__ranking iframe {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
  background: var(--white);
}

.app__content > p {
  max-width: 520px;
  margin: 28px 0 34px;
  color: #5f5f63;
  font-size: 15px;
  line-height: 1.8;
}

.app__facts {
  display: grid;
  gap: 18px;
}

.app__facts div {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.app__facts strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.app__facts span {
  color: #6a6a6e;
  font-size: 13px;
  line-height: 1.6;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--white);
}

.audience-card__tag {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--red);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.audience-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.audience-card p {
  margin: 18px 0 28px;
  color: #5a5a5e;
  font-size: 14px;
  line-height: 1.7;
}

.audience-card a {
  display: inline-block;
  margin-top: auto;
  padding: 12px 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.audience-card a:hover {
  color: var(--red);
}

.audience-card--red {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.audience-card--red .audience-card__tag {
  color: var(--white);
}

.audience-card--red p {
  color: var(--white);
}

.audience-card--red a:hover {
  color: var(--white);
}

.audience-card--light {
  background: var(--white);
}

.kids__grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 90px;
  align-items: center;
}

.sws {
  background: #ebe7df;
  color: var(--text);
}

.sws .overline { color: #656569; }

.sws__grid {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
}

.sws__content {
  text-align: center;
}

.sws__lead {
  max-width: 640px;
  margin: 28px auto 50px;
  color: #5f5f63;
  font-size: 16px;
  line-height: 1.7;
}

.sws__programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 45px;
  text-align: left;
}

.sws__programs article {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.sws__programs h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.sws__programs p {
  margin: 0 0 18px;
  color: #5f5f63;
  font-size: 14px;
  line-height: 1.6;
}

.sws__programs ul {
  margin: 0 0 20px;
  padding: 0 0 0 18px;
  color: #5f5f63;
  font-size: 13px;
  line-height: 1.7;
}

.sws__programs li {
  margin-bottom: 8px;
}

.sws__price {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-top: auto;
  font-family: var(--display);
}

.sws__price strong {
  font-size: 34px;
  font-weight: 700;
}

.bistro { background: var(--paper); }

.bistro__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.bistro__content > p {
  max-width: 520px;
  margin: 28px 0 34px;
  color: #5f5f63;
  font-size: 15px;
  line-height: 1.8;
}

.bistro__content .button {
  margin-top: 34px;
}

.bistro__note {
  display: grid;
  gap: 5px;
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  background: var(--white);
}

.bistro__note strong {
  font-family: var(--display);
  font-size: 16px;
  text-transform: uppercase;
}

.bistro__note span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.bistro__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
  overflow: hidden;
}

.bistro__gallery {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.bistro__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bistro__gallery img:first-child {
  grid-row: 1 / -1;
}

.app__phone-image {
  width: min(100%, 520px);
  max-height: 310px;
  margin-inline: auto;
  object-fit: contain;
}

.app__downloads {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.app__store-link {
  color: var(--red);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bistro h2,
.sws h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6.5vw, 92px);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 0.92;
  text-transform: uppercase;
}

.feature-checks--light li::before {
  background: var(--red);
}


.kids__gallery {
  position: relative;
  min-height: 680px;
}

.kids__main-image {
  width: 78%;
  height: 610px;
  object-fit: cover;
}

.kids__small-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 49%;
  height: 280px;
  border: 10px solid var(--warm);
  object-fit: cover;
}

.kids__stamp {
  position: absolute;
  top: 30px;
  right: 5%;
  display: grid;
  width: 115px;
  height: 115px;
  border: 6px solid var(--warm);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  text-align: center;
  place-content: center;
}

.kids__stamp strong,
.kids__stamp span {
  display: block;
}

.kids__stamp strong {
  font-family: var(--display);
  font-size: 46px;
  line-height: 0.9;
}

.kids__stamp span {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.kids__content > p:not(.overline) {
  max-width: 520px;
  margin: 28px 0 36px;
  color: #5f5f63;
  font-size: 15px;
  line-height: 1.8;
}

.kids__choices {
  display: grid;
  border-top: 1px solid #c7c0b5;
}

.kids__choices a {
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #c7c0b5;
}

.kids__choices span {
  color: #a31a14;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.kids__choices strong {
  font-size: 12px;
}

.kids__choices b {
  font-family: var(--display);
  font-size: 12px;
  text-transform: uppercase;
}

.document-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 27px;
  padding: 18px;
  background: var(--black);
  color: var(--white);
}

.document-link strong,
.document-link span {
  display: block;
}

.document-link strong {
  font-family: var(--display);
  font-size: 15px;
  text-transform: uppercase;
}

.document-link span {
  margin-top: 3px;
  color: #9e9ea2;
  font-size: 10px;
}

.document-link a {
  flex: 0 0 auto;
  color: var(--white);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 70px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.steps article {
  display: grid;
  min-height: 200px;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.steps > article > span {
  color: #a31a14;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}

.steps h3 {
  margin: 35px 0 8px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 800;
  text-transform: uppercase;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.visit__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.hours-card,
.location-card {
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--white);
}

.card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.card-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hours-card h3,
.location-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 35px;
  font-weight: 800;
  text-transform: uppercase;
}

.today-badge {
  padding: 7px 10px;
  border-radius: 100px;
  background: #dcf3e3;
  color: #1d743b;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.hours {
  border-top: 1px solid var(--line);
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.hours span {
  color: #76767a;
}

.hours-card > p {
  margin: 18px 0 0;
  color: #6a6a6e;
  font-size: 10px;
}

.holiday-block {
  margin-top: 8px;
}

.holiday-dates {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.5;
}

.holiday-dates s {
  color: #6a6a6e;
  font-size: 15px;
  text-decoration: line-through;
}

.holiday-dates strong {
  color: var(--red);
  font-weight: 600;
}

.holiday-note {
  margin: 0;
  color: #6a6a6e;
  font-size: 12px;
  line-height: 1.6;
}

.location-card {
  display: flex;
  flex-direction: column;
  background: var(--black);
  color: var(--white);
}

.location-card .card-kicker {
  color: var(--white);
}

.location-card address {
  margin-top: 16px;
  color: #a4a4a8;
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.location-map {
  margin: 22px 0 18px;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1c;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.location-card__links {
  margin: 0 0 22px;
  border-top: 1px solid var(--dark-line);
}

.location-card__links a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--dark-line);
}

.location-card__links span {
  color: #7f7f84;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.location-card__links strong {
  font-size: 12px;
}

.location-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
}

.faq__intro > p:not(.overline) {
  max-width: 290px;
  margin: 25px 0 18px;
  color: #929297;
  font-size: 13px;
  line-height: 1.7;
}

.faq__intro > a {
  color: var(--white);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
}

.faq__items {
  min-height: 360px;
  border-top: 1px solid var(--dark-line);
}

.faq__more { width: 100%; margin-top: 28px; }

.holiday-inline {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid var(--red);
  background: var(--paper);
}

.holiday-inline strong {
  color: var(--red-dark);
  font-family: var(--display);
  font-size: 15px;
  text-transform: uppercase;
}

.holiday-inline span {
  font-size: 11px;
  font-weight: 700;
}

.holiday-inline small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.faq details {
  border-bottom: 1px solid var(--dark-line);
}

.faq summary {
  display: flex;
  min-height: 76px;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  list-style: none;
  text-transform: uppercase;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  color: var(--red);
  font-size: 29px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 650px;
  margin: -5px 50px 25px 0;
  color: #9a9a9f;
  font-size: 13px;
  line-height: 1.8;
}

@supports selector(details::details-content) {
  .faq details::details-content {
    height: 0;
    overflow: clip;
    opacity: 0;
    transition: height 260ms ease, opacity 220ms ease, content-visibility 260ms allow-discrete;
  }

  .faq details[open]::details-content {
    height: auto;
    opacity: 1;
  }
}

.booking-cta {
  padding: 85px 0;
  background: var(--red);
  color: var(--white);
}

.booking-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.booking-cta .overline {
  color: var(--white);
}

.booking-cta .overline::before {
  background: var(--white);
}

.booking-cta h2 {
  font-size: clamp(55px, 6vw, 82px);
}

.footer {
  padding: 70px 0 90px;
  background: #070708;
  color: var(--white);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 55px;
}

.footer__brand img {
  width: 180px;
}

.footer__brand p {
  max-width: 260px;
  color: #77777c;
  font-size: 12px;
  line-height: 1.7;
}

.footer__top > div:not(.footer__brand) strong {
  display: block;
  margin-bottom: 18px;
  color: #77777c;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer__top > div:not(.footer__brand) a {
  display: block;
  margin: 11px 0;
  color: #b5b5b9;
  font-size: 11px;
}

.footer a:hover {
  color: var(--red);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--dark-line);
  color: #9a9a9e;
  font-size: 10px;
}

.footer__bottom div {
  display: flex;
  gap: 22px;
}

.mobile-bar {
  display: none;
}

.detail-page { background: var(--paper); }
.detail-hero { padding: 165px 0 85px; background: var(--black); color: var(--white); }
.detail-hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: end; }
.detail-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(68px, 8vw, 112px); font-weight: 900; letter-spacing: -0.052em; line-height: 0.9; text-transform: uppercase; }
.detail-hero h1 em { color: var(--red); }
.detail-hero__lead { margin: 0; color: #b7b7bb; font-size: 16px; line-height: 1.8; }
.detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.detail-card { min-width: 0; padding: 36px; border: 1px solid var(--line); background: var(--white); }
.detail-card--wide { grid-column: 1 / -1; }
.detail-card--accent { border-top: 4px solid var(--red); }
.detail-card h2, .detail-card h3 { margin: 0 0 16px; font-family: var(--display); font-weight: 800; text-transform: uppercase; }
.detail-card h2 { font-size: 38px; }
.detail-card h3 { font-size: 26px; }
.detail-card p, .detail-card li { color: var(--muted); font-size: 14px; line-height: 1.75; }
.detail-card ul { padding-left: 20px; }
.detail-price { display: flex; gap: 10px; align-items: baseline; margin: 22px 0; }
.detail-price strong { font-family: var(--display); font-size: 48px; }
.detail-media { width: 100%; max-height: 520px; object-fit: cover; }
.stats-frame { display: block; width: 100%; min-height: 720px; border: 0; background: var(--white); }
.trackrecord-frame { display: block; width: 100%; height: 160px; border: 0; background: transparent; }

/* Stats leaderboard */
.stats-board {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #131315;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

.stats-board--light {
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.stats-board--light .board__head,
.stats-board--light .board__foot,
.stats-board--light .board__table thead th,
.stats-board--light .board__table tbody td,
.stats-board--light .board__state,
.stats-board--light .board__chip {
  border-color: var(--line);
  color: var(--black);
}

.stats-board--light .board__chip {
  border: 1px solid var(--line);
  color: #6a6a6e;
}

.stats-board--light .board__chip.is-active,
.stats-board--light .board__chip:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.stats-board--light .board__table tbody tr:hover {
  background: rgba(227, 30, 36, 0.05);
}

.stats-board--light .board__driver,
.stats-board--light .board__time,
.stats-board--light .board__gap,
.stats-board--light .board__date {
  color: var(--black);
}

.stats-board--light .board__state--error strong {
  color: var(--black);
}

.board__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #d6d6d8;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board__head svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.board__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.board__chip {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #b5b5b9;
  cursor: pointer;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.board__chip.is-active,
.board__chip:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.board__body {
  height: 520px;
  overflow-y: auto;
}

.board__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 64px;
  padding: 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.board__load-more:disabled {
  opacity: 0.5;
  cursor: default;
}

.board__table {
  width: 100%;
  border-collapse: collapse;
}

.board__table thead th {
  padding: 12px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #9a9aa0;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}

.board__table tbody td {
  padding: 12px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #d6d6d8;
  font-size: 15px;
}

.board__table tbody tr {
  transition: background 150ms ease;
}

.board__table tbody tr:hover {
  background: rgba(227, 30, 36, 0.07);
}

.board__table tbody tr:last-child td {
  border-bottom: none;
}

.board__pos {
  width: 64px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: #9a9aa0;
}

.board__medal {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  font-size: 14px;
}

.board__row--p1 .board__medal { background: #ffd24a; }
.board__row--p2 .board__medal { background: #c9ccd4; }
.board__row--p3 .board__medal { background: #d8925c; }

.board__driver {
  font-weight: 700;
}

.board__row--p1 .board__driver { color: #ffd24a; }

.board__time {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.board__time small { color: #9a9aa0; font-size: 12px; }

.board__gap,
.board__date {
  color: #9a9aa0;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.board__state {
  display: grid;
  gap: 12px;
  place-items: center;
  height: 520px;
  padding: 40px 22px;
  color: #9a9aa0;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.board__load-more {
  text-align: center;
}

.board__state--loading span {
  animation: blink 1.2s infinite;
}

@keyframes blink {
  50% { opacity: 0.35; }
}

.board__state--error strong {
  color: var(--white);
}

.track-record__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px;
  border: 1px solid var(--red);
  background: #fff5f5;
}

.track-record__label {
  color: #0a0a0b;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track-record__time {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  color: #0a0a0b;
}

.track-record__time small { font-size: 18px; color: #0a0a0b; opacity: 0.6; }

.track-record__driver {
  margin-top: 4px;
  color: #0a0a0b;
  font-size: 14px;
}

.board__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9a9aa0;
  font-size: 13px;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: #9a9aa0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225, 37, 27, 0.55); }
  60% { box-shadow: 0 0 0 8px rgba(225, 37, 27, 0); }
}
.app-showcase { display: grid; grid-template-columns: 1fr 0.9fr; gap: 50px; align-items: center; overflow: hidden; }
.app-showcase img { width: 100%; max-height: 430px; object-fit: contain; }
.faq-page details { border-bottom: 1px solid var(--line); background: var(--white); }
.faq-page summary { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 20px; padding: 0 24px; cursor: pointer; font-family: var(--display); font-size: 20px; font-weight: 700; list-style: none; text-transform: uppercase; }
.faq-page summary::after { color: var(--red); font-size: 26px; content: "+"; }
.faq-page details[open] summary::after { transform: rotate(45deg); }
.faq-page details p { margin: 0; padding: 0 24px 26px; }

@media (max-width: 800px) {
  .detail-hero__grid, .detail-grid { grid-template-columns: 1fr; }
  .app-showcase { grid-template-columns: 1fr; }
  .detail-card--wide { grid-column: auto; }
  .detail-hero { padding: 135px 0 70px; }
}

@media (max-width: 560px) {
  .detail-hero h1 { font-size: clamp(56px, 17vw, 76px); }
  .detail-card { padding: 26px 22px; }
  .stats-frame { min-height: 520px; }
}

@media (max-width: 1050px) {
  .nav {
    gap: 22px;
  }

  .nav a:nth-child(3),
  .nav a:nth-child(4) {
    display: none;
  }

  .header__actions {
    margin-left: 28px;
  }

  .phone-link span {
    display: none;
  }

  .track__grid,
  .kids__grid {
    gap: 55px;
  }

  .faq__grid {
    gap: 60px;
  }
}

@media (max-width: 800px) {
  :root {
    --container: min(100% - 32px, 690px);
  }

  html {
    scroll-padding-top: 100px;
  }

  body {
    padding-bottom: 66px;
  }

  .header__inner {
    height: 66px;
  }

  .logo {
    width: 110px;
    height: 54px;
  }

  .logo img {
    width: 104px;
  }

  .nav,
  .header__actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    height: calc(100dvh - 66px);
  }

  .mobile-menu__inner {
    min-height: calc(100dvh - 66px);
  }

  .hero {
    min-height: 780px;
    align-items: flex-end;
    padding: 150px 0 118px;
  }

  .hero__media img {
    object-position: 59% center;
  }

  .hero__shade {
    background:
      linear-gradient(
        0deg,
        rgba(5, 5, 6, 0.98) 8%,
        rgba(5, 5, 6, 0.64) 66%,
        rgba(5, 5, 6, 0.15)
      ),
      linear-gradient(90deg, rgba(5, 5, 6, 0.34), transparent);
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(68px, 16vw, 94px);
  }

  .hero__lead {
    max-width: 570px;
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    align-items: center;
    padding: 19px;
  }

  .open-state {
    padding: 0;
    border: 0;
  }

  .hero-card__facts {
    padding: 0;
  }

  .hero-card > p {
    display: none;
  }

  .quick-pick__heading {
    display: block;
  }

  .quick-pick__heading h2 {
    margin-top: 6px;
  }

  .quick-pick__grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 88px 0;
  }

  .section-head,
  .track__grid,
  .app__grid,
  .kids__grid,
  .bistro__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 25px;
  }

  .section-head > p {
    margin-left: 0;
  }

  .price-grid--two {
    grid-template-columns: 1fr;
  }

  .track__grid,
  .app__grid,
  .kids__grid,
  .bistro__grid {
    gap: 70px;
  }

  .track__content {
    max-width: 650px;
  }

  .track__visual {
    min-height: 570px;
  }

  .track__photo {
    height: 520px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .checklist__grid {
    grid-template-columns: 1fr;
  }

  .start-guide article {
    grid-template-columns: 44px 160px minmax(0, 1fr);
    gap: 18px;
  }

  .sws__programs {
    grid-template-columns: 1fr;
  }

  .app__ranking iframe { min-height: 500px; }

  .faq__items { min-height: 360px; }

  .kids__content {
    max-width: 650px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps article {
    min-height: auto;
  }

  .steps h3 {
    margin-top: 4px;
  }

  .visit__grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq__intro {
    max-width: 600px;
  }

  .booking-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__top {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .mobile-bar {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 66px;
    grid-template-columns: 76px 76px 1fr;
    border-top: 1px solid #303034;
    background: var(--black);
    color: var(--white);
  }

  .mobile-bar > a {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid #303034;
    font-size: 9px;
    font-weight: 700;
  }

  .mobile-bar__book {
    flex-direction: row !important;
    gap: 20px !important;
    border: 0 !important;
    background: var(--red);
    font-family: var(--display);
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 28px);
  }

  .hero {
    min-height: 745px;
    padding: 140px 0 108px;
  }

  .overline {
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(60px, 19vw, 78px);
    line-height: 0.92;
  }

  .hero__lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-card__facts {
    padding-top: 14px;
    border-top: 1px solid var(--dark-line);
  }

  .hero__ticker div {
    padding: 12px 0;
    font-size: 11px;
  }

  .quick-pick {
    padding: 32px 0;
  }

  .quick-pick__grid {
    grid-template-columns: 1fr;
  }

  .quick-pick__grid a {
    min-height: 82px;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-head h2,
  .track h2,
  .kids h2,
  .faq h2,
  .booking-cta h2 {
    font-size: clamp(50px, 15vw, 67px);
  }

  .section-head > p,
  .track__lead,
  .kids__content > p:not(.overline) {
    font-size: 15px;
  }

  .price-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(105px, 1fr));
    scrollbar-width: none;
  }

  .price-tabs::-webkit-scrollbar {
    display: none;
  }

  .price-tab {
    min-height: 52px;
    font-size: 14px;
  }

  .price-card {
    padding: 22px 18px;
  }

  .start-guide article {
    grid-template-columns: 34px 1fr;
    gap: 5px 14px;
    align-items: start;
    padding: 20px 0;
  }

  .start-guide article > div {
    display: block;
  }

  .start-guide p { margin-top: 7px; }

  .start-guide__footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }

  .app__ranking-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .app__ranking iframe { min-height: 460px; }

  .bistro__visual { min-height: 430px; }

  .faq__items { min-height: 340px; }

  .price-card__top {
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .price-card__label {
    font-size: 24px;
  }

  .price-card__price {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .price-card__price strong {
    font-size: 42px;
  }

  .price-card__summary {
    margin: 14px 0 18px;
    font-size: 14px;
  }

  .price-facts {
    grid-template-columns: 1fr;
  }

  .price-facts div {
    min-height: auto;
    padding: 11px;
  }

  .price-card .button {
    width: 100%;
    gap: 16px;
    margin-top: 16px;
  }

  .birthday-options div {
    grid-template-columns: 1fr auto;
  }

  .birthday-options strong {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .price-note {
    padding: 15px;
  }

  .price-note p {
    font-size: 10px;
  }

  .track__specs {
    grid-template-columns: 1fr 1fr;
  }

  .track__visual {
    min-height: 455px;
  }

  .track__photo {
    width: 88%;
    height: 420px;
  }

  .track__map {
    width: 62%;
    border-width: 6px;
  }

  .audience-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .audience-card h3 {
    font-size: 37px;
  }

  .kids__gallery {
    min-height: 510px;
  }

  .kids__main-image {
    width: 88%;
    height: 450px;
  }

  .kids__small-image {
    width: 52%;
    height: 205px;
    border-width: 7px;
  }

  .kids__stamp {
    top: 20px;
    right: 0;
    width: 96px;
    height: 96px;
    border-width: 5px;
  }

  .kids__stamp strong {
    font-size: 38px;
  }

  .kids__choices a {
    grid-template-columns: 1fr auto;
    gap: 7px 15px;
  }

  .kids__choices strong {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .document-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps {
    margin-bottom: 45px;
  }

  .steps article {
    padding: 23px 20px;
  }

  .hours-card,
  .location-card {
    padding: 28px 22px;
  }

  .visit__grid {
    grid-template-columns: 1fr;
  }

  .hours div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .location-card__links a {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .location-card .button {
    width: 100%;
  }

  .location-map iframe {
    height: 180px;
  }

  .faq summary {
    min-height: 68px;
    font-size: 18px;
  }

  .booking-cta {
    padding: 65px 0;
  }

  .booking-cta .button {
    width: 100%;
  }

  .footer {
    padding: 60px 0 90px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 38px 22px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .mobile-bar {
    grid-template-columns: 64px 64px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
