:root {
  --green: #007d3d;
  --green-bright: #0aa34a;
  --green-ink: #062d1b;
  --green-deep: #03180f;
  --red: #d43628;
  --red-dark: #a9201c;
  --paper: #f4f2ec;
  --paper-deep: #e9e6df;
  --ink: #162019;
  --muted: #647067;
  --line: #d9ddd8;
  --white: #ffffff;
  --shell: min(1180px, calc(100% - clamp(2rem, 5vw, 3rem)));
  --radius: 0;
  --shadow: 0 18px 45px rgba(2, 28, 16, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

[data-site-header] {
  display: block;
  min-height: 8.1rem;
}

[data-site-footer] {
  display: block;
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

h1, h2, h3 {
  font-weight: 900;
  letter-spacing: 0;
  line-height: .98;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
}

.kicker {
  margin-bottom: .85rem;
  color: var(--green);
  font-size: .72rem;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
}

.kicker-light {
  color: #c9edbb;
}

.section-copy {
  color: var(--muted);
  max-width: 32rem;
}

.notice-bar {
  background: var(--green-deep);
  color: rgba(255, 255, 255, .84);
}

.notice-inner {
  min-height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.notice-inner a {
  color: #c6edb6;
}

.notice-inner a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 1px 0 rgba(3, 45, 27, .09);
  backdrop-filter: blur(12px);
}

.header-inner {
  position: relative;
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 7.2rem;
  height: 4.5rem;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: .55rem 0;
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .28rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover::after, .main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-booking {
  margin-left: .2rem;
  background: var(--green);
  color: #fff;
  padding: .78rem 1rem;
  font-size: .75rem;
  font-weight: 900;
  white-space: nowrap;
}

.header-booking:hover {
  background: var(--green-ink);
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.6rem;
  padding: .5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.visually-hidden) {
  display: block;
  width: 100%;
  height: 2px;
  margin: .27rem 0;
  background: var(--ink);
}

.track-ribbon {
  position: relative;
  min-height: 19.5rem;
  color: #fff;
  background: linear-gradient(90deg, rgba(3, 24, 15, .88) 0%, rgba(3, 24, 15, .62) 48%, rgba(3, 24, 15, .2) 100%), url("/assets/img/luft.webp") center 50% / cover;
}

.track-ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .2));
  pointer-events: none;
}

.track-ribbon-inner {
  position: relative;
  z-index: 1;
  min-height: 19.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  align-items: end;
  gap: 2rem 3rem;
  padding: 3.5rem 0 2.8rem;
}

.track-ribbon-copy h1 {
  max-width: 14ch;
  margin-bottom: .8rem;
  font-size: clamp(2.5rem, 5vw, 5.1rem);
}

.track-ribbon-copy p:not(.kicker) {
  max-width: 36rem;
  margin: 0;
  color: rgba(255, 255, 255, .83);
  font-size: .95rem;
}

.track-ribbon-inner > img {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: min(100%, 25rem);
  max-height: 13.5rem;
  align-self: center;
  justify-self: end;
  object-fit: contain;
  filter: drop-shadow(0 1.2rem 1.8rem rgba(0, 0, 0, .32));
}

.track-ribbon-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-left: 1.6rem;
  border-left: 1px solid rgba(255, 255, 255, .4);
}

.track-ribbon-stats strong {
  display: block;
  font-size: 1.85rem;
  letter-spacing: 0;
}

.track-ribbon-stats span {
  display: block;
  margin-top: .2rem;
  color: rgba(255, 255, 255, .75);
  font-size: .66rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero {
  overflow: hidden;
  background: #fff;
}

.hero-grid {
  min-height: 43rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.7rem 3rem 5.7rem 0;
}

.hero-copy h1 {
  max-width: 10.5ch;
  margin-bottom: 1.35rem;
}

.hero-copy h1 span {
  color: var(--green);
}

.hero-text {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 3.15rem;
  padding: .75rem 1.08rem;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .01em;
}

.button-primary {
  background: var(--green);
  color: #fff;
}

.button-primary:hover {
  background: var(--green-ink);
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.button-light {
  background: #fff;
  color: var(--green-ink);
}

.button-light:hover {
  background: #c9edbb;
}

.button-outline-light {
  border: 1px solid rgba(255, 255, 255, .62);
  color: #fff;
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, .12);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.7rem;
  color: var(--muted);
  font-size: .76rem;
}

.hero-meta b {
  color: var(--green-ink);
}

.hero-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-ink), var(--green));
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 42, 27, .45), transparent 40%), repeating-linear-gradient(0deg, transparent 0 29px, rgba(255, 255, 255, .035) 29px 30px);
}

.hero-visual img {
  position: absolute;
  z-index: 2;
  width: min(123%, 51rem);
  max-width: none;
  left: 49%;
  bottom: 1.4rem;
  transform: translateX(-50%) scale(1.08);
  mix-blend-mode: multiply;
  filter: saturate(1.17) contrast(1.03);
}

.hero-visual-label {
  position: absolute;
  z-index: 3;
  top: 2.3rem;
  right: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.hero-visual-label span {
  font-size: .64rem;
  font-weight: 700;
}

.hero-visual-label strong {
  font-size: 1.45rem;
}

.hero-visual-number {
  position: absolute;
  right: -.4rem;
  bottom: -2.9rem;
  z-index: 1;
  color: rgba(255, 255, 255, .09);
  font-size: 18rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.hero-visual-number span {
  color: rgba(213, 54, 40, .24);
}

.facts {
  background: var(--paper-deep);
}

.facts-white {
  background: #fff;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.facts article {
  min-height: 7.5rem;
  padding: 1.5rem 1.6rem;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.facts article:last-child {
  border-right: 1px solid var(--line);
}

.facts strong {
  display: block;
  color: var(--green-ink);
  font-size: 1.8rem;
  letter-spacing: 0;
}

.facts span {
  display: block;
  margin-top: .22rem;
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.viper-section {
  background: #fff;
}

.viper-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8.5rem);
  align-items: center;
}

.viper-image-wrap {
  position: relative;
  min-height: 35rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
}

.viper-image-wrap::before {
  content: "";
  position: absolute;
  width: 23rem;
  height: 23rem;
  border: 1px solid rgba(0, 125, 61, .17);
  border-radius: 50%;
}

.viper-image-wrap img {
  position: relative;
  z-index: 2;
  width: 83%;
  mix-blend-mode: multiply;
}

.viper-outline {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  color: transparent;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
  -webkit-text-stroke: 1px rgba(0, 125, 61, .21);
}

.viper-copy > p:not(.kicker) {
  margin: 1.3rem 0 2rem;
  color: var(--muted);
}

.viper-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.viper-points div {
  padding: 1.25rem .85rem 1.25rem 0;
}

.viper-points div + div {
  padding-left: .85rem;
  border-left: 1px solid var(--line);
}

.viper-points span {
  display: block;
  margin-bottom: .55rem;
  color: var(--red);
  font-size: .7rem;
  font-weight: 900;
}

.viper-points strong {
  display: block;
  margin-bottom: .25rem;
  font-size: .83rem;
}

.viper-points small {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.35;
}

.text-link {
  display: inline-flex;
  gap: .5rem;
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  border-bottom: 1px solid currentColor;
  padding-bottom: .18rem;
}

.text-link:hover {
  color: var(--red);
}

.text-link-light {
  color: #c9edbb;
}

.text-link-light:hover {
  color: #fff;
}

.booking-band {
  background: linear-gradient(100deg, var(--green-deep), var(--green));
  color: #fff;
  padding: 3rem 0;
}

.booking-band-inner {
  min-height: 16rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.booking-band h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
}

.booking-band-compact .booking-band-inner {
  min-height: 10rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 27rem;
  margin: 0;
  color: var(--muted);
}

.offers {
  background: var(--paper);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.offer-card {
  min-height: 27rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #fff;
}

.offer-card h3 {
  margin: .7rem 0 1rem;
  font-size: 2rem;
}

.offer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

.offer-top span {
  color: var(--red);
  font-size: .74rem;
  font-weight: 900;
}

.offer-top small {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.offer-card p {
  color: var(--muted);
  font-size: .9rem;
}

.offer-card ul {
  margin: 1.3rem 0 1.9rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .78rem;
}

.offer-card li {
  position: relative;
  padding: .42rem 0 .42rem 1rem;
  border-bottom: 1px solid var(--line);
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78rem;
  width: .34rem;
  height: .34rem;
  background: var(--green);
  border-radius: 50%;
}

.offer-card > a {
  margin-top: auto;
  color: var(--green);
  font-size: .76rem;
  font-weight: 900;
}

.offer-card-emphasis {
  background: linear-gradient(135deg, #fff, #e6f1e6);
}

.offer-card-dark {
  background: var(--green-ink);
  color: #fff;
}

.offer-card-dark p, .offer-card-dark ul, .offer-card-dark .offer-top {
  color: rgba(255, 255, 255, .72);
}

.offer-card-dark .offer-top span {
  color: #c9edbb;
}

.offer-card-dark li {
  border-color: rgba(255, 255, 255, .17);
}

.offer-card-dark li::before {
  background: #c9edbb;
}

.offer-card-dark > a {
  color: #c9edbb;
}

.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}

.process-photo {
  min-height: 40rem;
  background: linear-gradient(90deg, rgba(2, 24, 15, .12), rgba(2, 24, 15, .42)), url("/assets/img/luft2.webp") center / cover;
}

.process-content {
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 8rem);
  background: #fff;
}

.process-content-inner {
  max-width: 34rem;
}

.process-content h2 {
  margin-bottom: 3rem;
}

.process-content ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-content li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.process-content li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-content li > span {
  color: var(--red);
  font-size: .75rem;
  font-weight: 900;
}

.process-content h3 {
  margin-bottom: .2rem;
  font-size: 1.03rem;
}

.process-content p {
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
}

.track {
  background: var(--paper);
}

.track-grid {
  display: grid;
  grid-template-columns: .87fr 1.13fr;
  gap: clamp(3.5rem, 7vw, 7.5rem);
  align-items: center;
}

.track-copy > p:not(.kicker) {
  margin: 1.4rem 0 2rem;
  color: var(--muted);
}

.track-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin: 2.4rem 0;
}

.track-stats div {
  padding-top: .75rem;
  border-top: 3px solid var(--green);
}

.track-stats strong {
  display: block;
  font-size: 1.72rem;
  letter-spacing: 0;
}

.track-stats span {
  display: block;
  margin-top: .2rem;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.35;
}

.track-image {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.track-image img {
  width: 100%;
  min-height: 31rem;
  object-fit: cover;
}

.track-image figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, .91);
  padding: .6rem .75rem;
  color: var(--green-ink);
  font-size: .71rem;
  font-weight: 800;
}

.group-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--green-ink);
  color: #fff;
}

.group-photo {
  min-height: 40rem;
  background: linear-gradient(90deg, rgba(3, 40, 23, .08), rgba(3, 40, 23, .44)), url("/assets/img/tony-viper-side.webp") center / cover;
}

.group-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7.7rem) clamp(2rem, 7vw, 7.4rem);
}

.group-panel h2 {
  max-width: 9ch;
}

.group-panel > p:not(.kicker) {
  max-width: 35rem;
  margin: 1.4rem 0 2rem;
  color: rgba(255, 255, 255, .72);
}

.group-tags, .shop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 2rem;
}

.group-tags span {
  padding: .42rem .62rem;
  border: 1px solid rgba(255, 255, 255, .38);
  font-size: .72rem;
  font-weight: 800;
}

.group-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}

.group-mail {
  color: rgba(255, 255, 255, .8);
  font-size: .84rem;
  font-weight: 800;
}

.faq {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3.5rem, 9vw, 9.5rem);
  align-items: start;
}

.faq-list details, .faq-topic details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child, .faq-topic details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary, .faq-topic summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  list-style: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker, .faq-topic summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span, .faq-topic summary span {
  color: var(--red);
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq-list details[open] summary span, .faq-topic details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p, .faq-topic p {
  margin: -.15rem 2.4rem 1.25rem 0;
  color: var(--muted);
  font-size: .9rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: #fff;
}

.final-cta::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  top: -4.5rem;
  width: 22rem;
  height: 22rem;
  border: 1.7rem solid rgba(255, 255, 255, .09);
  border-radius: 50%;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 0;
}

.final-cta h2 {
  max-width: 15ch;
  margin-bottom: 1.8rem;
}

.site-footer {
  background: #161a17;
  color: rgba(255, 255, 255, .7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, .85fr);
  gap: 2.5rem;
  padding: 4.5rem 0 3rem;
}

.footer-brand img {
  width: 9.7rem;
  background: #fff;
  padding: .35rem;
}

.footer-brand p {
  max-width: 18rem;
  margin: 1.2rem 0 1rem;
  font-size: .87rem;
}

.footer-phone {
  color: #c9edbb;
  font-size: .84rem;
  font-weight: 800;
}

.site-footer h3 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: .85rem;
}

.site-footer a {
  display: block;
  margin: .55rem 0;
  font-size: .8rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  min-height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .72rem;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 1rem;
}

.footer-bottom a {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 120;
  max-width: 34rem;
  margin-left: auto;
  background: rgba(3, 24, 15, .96);
  color: #fff;
  box-shadow: 0 22px 55px rgba(2, 28, 16, .28);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity .22s ease, transform .22s ease;
}

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

.cookie-banner__inner {
  display: flex;
  align-items: end;
  gap: 1rem 1.25rem;
  padding: 1rem 1.1rem;
}

.cookie-banner__copy strong {
  display: inline-block;
  margin-bottom: .35rem;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cookie-banner__copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .84);
  font-size: .92rem;
}

.cookie-banner__copy a {
  color: #c9edbb;
  text-decoration: underline;
  text-underline-offset: .14em;
}

.cookie-banner__button {
  flex: 0 0 auto;
  min-height: 3rem;
  padding: .85rem 1.1rem;
  border: 0;
  background: var(--green);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  cursor: pointer;
}

.cookie-banner__button:hover {
  background: var(--green-bright);
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 30rem;
  color: #fff;
  background: var(--green-ink);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 24, 15, .88) 0%, rgba(3, 24, 15, .67) 45%, rgba(3, 24, 15, .19) 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -7rem -10rem auto;
  width: 27rem;
  height: 27rem;
  border: 3rem solid rgba(255, 255, 255, .07);
  border-radius: 50%;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 30rem;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.page-hero-inner > div {
  max-width: 47rem;
}

.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
}

.page-rennkart .page-hero h1 {
  max-width: none;
}

.page-hero p:not(.kicker) {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, .8);
  font-size: 1.05rem;
}

.page-hero-viper {
  background: url("/assets/img/tony-viper-side.webp") 86% 46% / min(62rem, 66%) auto no-repeat, linear-gradient(135deg, var(--green-deep), var(--green));
}

.page-hero-track {
  background: url("/assets/img/kartbahn-start-ziel.webp") center 46% / cover;
}

.page-hero-group {
  background: url("/assets/img/kartbahn-karts.webp") center / cover;
}

.page-hero-race {
  background: url("/assets/img/tony-viper-front.webp") 85% 50% / min(42rem, 57%) auto no-repeat, linear-gradient(135deg, var(--green-deep), #0b7440);
}

.page-hero-shop {
  background: url("/assets/img/rennkart.webp") center 42% / cover;
}

.page-hero-boxenstop {
  background: url("/assets/img/kartbahn-start-ziel.webp") center 30% / cover;
}

.page-hero-hours {
  background: url("/assets/img/kartbahn-karts.webp") center / cover;
}

.page-hero-directions {
  background: url("/assets/img/kartbahn-start-ziel.webp") center 60% / cover;
}

.page-hero-faq {
  background: url("/assets/img/tony-viper-front.webp") 87% 53% / min(44rem, 54%) auto no-repeat, linear-gradient(135deg, var(--green-deep), var(--green));
}

.page-hero-contact {
  background: url("/assets/img/tony-viper-cutout.png") 90% 55% / min(48rem, 60%) auto no-repeat, linear-gradient(135deg, var(--green-deep), #075331);
}

.page-hero-kids {
  background: url("/assets/img/tony-viper-side.webp") 86% 46% / min(44rem, 57%) auto no-repeat, linear-gradient(135deg, var(--green-deep), #0c6b38);
}

.page-hero-jobs {
  background: url("/assets/img/tony-viper-side.webp") 88% 44% / min(52rem, 62%) auto no-repeat, linear-gradient(135deg, var(--green-deep), var(--green));
}

.page-hero-error {
  background: url("/assets/img/kartbahn-start-ziel.webp") center 38% / cover;
}

.error-section {
  background: #fff;
}

.error-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.error-card,
.error-links a {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid rgba(6, 45, 27, .08);
  background: #fff;
  box-shadow: 0 18px 34px rgba(6, 45, 27, .06);
}

.error-card span {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--green);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.error-card p {
  max-width: 28rem;
  color: var(--muted);
}

.error-links {
  display: grid;
  gap: 1rem;
}

.error-links a {
  display: grid;
  gap: .35rem;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.error-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 125, 61, .22);
  box-shadow: 0 22px 36px rgba(6, 45, 27, .09);
}

.error-links strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.error-links span {
  color: var(--muted);
  font-size: .92rem;
}

.split-intro {
  background: #fff;
}

.split-intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(3rem, 9vw, 10rem);
}

.split-intro-grid > div:last-child {
  max-width: 35rem;
}

.split-intro-grid p:not(.kicker) {
  color: var(--muted);
  font-size: 1.06rem;
}

.viper-detail {
  background: #fff;
}

.viper-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.viper-stage {
  position: relative;
  min-height: 29rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--paper);
}

.viper-stage img {
  position: relative;
  z-index: 2;
  width: 98%;
}

.viper-ghost {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  color: transparent;
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 900;
  letter-spacing: 0;
  transform: translate(-50%, -50%);
  -webkit-text-stroke: 1px rgba(0, 125, 61, .2);
}

.viper-detail-grid p:not(.kicker) {
  color: var(--muted);
}

.prep-section .text-link {
  margin-top: 1.5rem;
}

.page-leihkart .offers {
  background: #fff;
}

.prep-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 1.75rem 0 0;
  background: var(--line);
}

.prep-highlights article {
  min-height: 8.5rem;
  padding: 1.2rem 1.25rem;
  background: var(--paper);
}

.prep-highlights strong {
  display: block;
  color: var(--green-ink);
  font-size: 1rem;
}

.prep-highlights span {
  display: block;
  margin-top: .45rem;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
}

.spec-list {
  margin: 2rem 0 0;
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-size: .75rem;
}

.spec-list dd {
  margin: 0;
  font-size: .87rem;
  font-weight: 800;
}

.kart-gallery-section {
  background: var(--paper);
}

.kart-gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.25rem;
  align-items: stretch;
}

.kart-gallery-grid figure {
  margin: 0;
}

.kart-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kart-gallery-main {
  min-height: 41rem;
  overflow: hidden;
  background: #fff;
}

.kart-gallery-main figcaption, .kart-gallery-stack figcaption {
  padding: .95rem 1rem;
  color: var(--muted);
  font-size: .76rem;
  background: #fff;
  border-top: 1px solid var(--line);
}

.kart-gallery-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.kart-gallery-stack figure {
  min-height: 15.5rem;
  overflow: hidden;
  background: #fff;
}

.kart-gallery-card-wide {
  grid-column: 1 / -1;
  min-height: 11rem !important;
}

.kart-tech {
  background: #fff;
}

.kart-tech-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.25rem;
  align-items: start;
}

.kart-tech-copy p:not(.kicker) {
  color: var(--muted);
}

.kart-tech-list {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.kart-tech-list div {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.kart-tech-list span {
  color: var(--red);
  font-size: .74rem;
  font-weight: 900;
}

.kart-tech-list p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.kart-tech-list strong {
  color: var(--green-ink);
}

.kart-tech-panel {
  min-height: 100%;
  padding: clamp(2rem, 4vw, 3rem);
  color: #fff;
  background: var(--green-ink);
}

.kart-tech-panel h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.kart-tech-panel ul {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.kart-tech-panel li {
  position: relative;
  padding: .8rem 0 .8rem 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .76);
  font-size: .84rem;
}

.kart-tech-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: .36rem;
  height: .36rem;
  border-radius: 50%;
  background: #c9edbb;
}

.howto {
  background: var(--paper);
}

.page-leihkart .muted-section {
  background: #fff;
}

.page-leihkart .faq {
  background: var(--paper);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.steps-grid article {
  min-height: 13.5rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .5);
}

.steps-grid span, .measure-grid > article > span, .format-card > span {
  color: var(--red);
  font-size: .74rem;
  font-weight: 900;
}

.steps-grid h3 {
  margin: 2.4rem 0 .7rem;
  font-size: 1.1rem;
}

.steps-grid p {
  color: var(--muted);
  font-size: .83rem;
}

.muted-section {
  background: var(--paper-deep);
}

.two-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.info-card {
  min-height: 22rem;
  padding: clamp(2rem, 4vw, 4rem);
  background: #fff;
}

.info-card h2 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.info-card p:not(.kicker) {
  max-width: 29rem;
  color: var(--muted);
}

.info-card-dark {
  background: var(--green-ink);
  color: #fff;
}

.info-card-dark p:not(.kicker) {
  color: rgba(255, 255, 255, .73);
}

.track-story {
  background: #fff;
}

.track-story-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.track-story-copy p:not(.kicker) {
  color: var(--muted);
}

.track-layout > p {
  margin: .85rem 0 0;
  color: var(--muted);
  font-size: .73rem;
}

.track-map {
  position: relative;
  min-height: 29rem;
  overflow: hidden;
  background: #dbe5da;
}

.track-map::before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(0, 125, 61, .16);
}

.track-map svg {
  position: absolute;
  inset: 8% 6%;
  width: 88%;
  height: 84%;
}

.track-map path:first-child {
  fill: none;
  stroke: rgba(214, 54, 40, .22);
  stroke-width: 38;
}

.track-map path:last-child {
  fill: none;
  stroke: #f6f4ee;
  stroke-width: 21;
}

.map-label {
  position: absolute;
  z-index: 2;
  padding: .34rem .48rem;
  background: rgba(255, 255, 255, .92);
  color: var(--green-ink);
  font-size: .65rem;
  font-weight: 800;
}

.map-label-one {
  left: 16%;
  bottom: 23%;
}

.map-label-two {
  right: 16%;
  top: 16%;
}

.map-label-three {
  right: 9%;
  bottom: 19%;
}

.image-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}

.image-feature-image {
  min-height: 35rem;
  overflow: hidden;
}

.image-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.image-feature-copy h2 {
  max-width: 11ch;
}

.image-feature-copy p:not(.kicker) {
  max-width: 30rem;
  color: var(--muted);
}

.image-feature-reverse .image-feature-image {
  order: 2;
}

.measure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.measure-grid > article {
  min-height: 15rem;
  padding: 1.7rem;
  background: #fff;
}

.measure-grid h3 {
  margin: 2rem 0 .7rem;
  font-size: 1.5rem;
}

.measure-grid p {
  color: var(--muted);
  font-size: .86rem;
}

.measure-grid a {
  color: var(--green);
  font-size: .84rem;
  font-weight: 800;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.format-card {
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #fff;
}

.format-card h2 {
  margin: .6rem 0 1.1rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.format-card p:not(.kicker) {
  color: var(--muted);
}

.format-card a {
  margin-top: auto;
  color: var(--green);
  font-size: .8rem;
  font-weight: 900;
}

.format-card-strong {
  background: var(--green-ink);
  color: #fff;
}

.format-card-strong > span {
  color: #c9edbb;
}

.format-card-strong p:not(.kicker) {
  color: rgba(255, 255, 255, .7);
}

.format-card-strong a {
  color: #c9edbb;
}

.group-process {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  color: #fff;
  background: var(--green-ink);
}

.group-process h2 {
  margin-bottom: 3rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.timeline article {
  padding: 1.5rem 1.4rem 0 0;
}

.timeline article + article {
  padding-left: 1.4rem;
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.timeline span {
  color: #c9edbb;
  font-size: .74rem;
  font-weight: 900;
}

.timeline h3 {
  margin: 1.55rem 0 .45rem;
  font-size: 1.05rem;
}

.timeline p {
  color: rgba(255, 255, 255, .7);
  font-size: .82rem;
}

.race-options {
  background: #fff;
}

.race-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.race-grid > article {
  min-height: 33rem;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--paper);
}

.race-option-dark {
  color: #fff;
  background: var(--green-ink) !important;
}

.race-number {
  margin-bottom: 3rem;
  color: var(--red);
  font-size: .8rem;
  font-weight: 900;
}

.race-option-dark .race-number {
  color: #c9edbb;
}

.race-grid h2 {
  max-width: 10ch;
}

.race-grid p:not(.kicker) {
  max-width: 32rem;
  color: var(--muted);
}

.race-option-dark p:not(.kicker) {
  color: rgba(255, 255, 255, .72);
}

.race-grid ul {
  margin: 1.6rem 0 2rem;
  padding: 0;
  list-style: none;
}

.race-grid li {
  position: relative;
  padding: .6rem 0 .6rem 1.1rem;
  border-top: 1px solid rgba(22, 32, 25, .15);
  color: var(--muted);
  font-size: .82rem;
}

.race-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .95rem;
  width: .36rem;
  height: .36rem;
  background: var(--green);
  border-radius: 50%;
}

.race-option-dark li {
  border-color: rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .76);
}

.race-option-dark li::before {
  background: #c9edbb;
}

.race-grid a {
  color: var(--green);
  font-size: .8rem;
  font-weight: 900;
}

.race-option-dark a {
  color: #c9edbb;
}

.race-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 9vw, 9rem);
}

.race-detail-grid p:not(.kicker) {
  max-width: 31rem;
  color: var(--muted);
}

.race-detail-list {
  border-top: 1px solid var(--line);
}

.race-detail-list div {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.race-detail-list span {
  color: var(--red);
  font-size: .75rem;
  font-weight: 900;
}

.race-detail-list p {
  margin: 0;
  font-size: .85rem;
}

.ticket-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.25rem;
}

.ticket-grid > article {
  min-height: 22rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: #fff;
}

.ticket-plan {
  grid-column: 1 / -1;
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  max-width: 52rem;
  width: 100%;
  justify-self: center;
  background: linear-gradient(180deg, #ffffff 0%, #f5f1e8 100%);
  border: 1px solid rgba(6, 45, 27, .08);
  box-shadow: 0 24px 40px rgba(6, 45, 27, .08);
}

.ticket-plan img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: .2rem;
}

.ticket-grid p:not(.kicker) {
  max-width: 29rem;
  color: var(--muted);
}

.ticket-highlight {
  background: var(--green-ink) !important;
  color: #fff;
}

.ticket-highlight span {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #c9edbb;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.ticket-highlight h3 {
  max-width: 8ch;
  font-size: clamp(2rem, 3vw, 3rem);
}

.ticket-highlight p {
  color: rgba(255, 255, 255, .73) !important;
}

.shop-section {
  background: #fff;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.shop-cutout {
  min-height: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  overflow: hidden;
}

.shop-cutout img {
  width: 113%;
  max-width: none;
}

.shop-grid p:not(.kicker) {
  color: var(--muted);
}

.shop-tags span {
  padding: .48rem .65rem;
  border: 1px solid var(--line);
  color: var(--green-ink);
  font-size: .7rem;
  font-weight: 800;
}

.boxenstop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.boxenstop-grid article {
  min-height: 19rem;
  padding: 1.8rem;
  background: #fff;
}

.boxenstop-grid span {
  color: var(--red);
  font-size: .75rem;
  font-weight: 900;
}

.boxenstop-grid h2 {
  margin: 2.1rem 0 .75rem;
  font-size: clamp(1.75rem, 2.7vw, 2.6rem);
}

.boxenstop-grid p {
  color: var(--muted);
}

.contact-feature {
  background: var(--green-ink);
  color: #fff;
}

.contact-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}

.contact-feature h2 {
  margin-bottom: 0;
}

.contact-feature p:not(.kicker) {
  color: rgba(255, 255, 255, .78);
}

.contact-feature .button {
  margin-top: 1.4rem;
}

.operating-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.25rem;
}

.operating-grid > article {
  min-height: 22rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: #fff;
}

.operating-grid p:not(.kicker) {
  color: var(--muted);
}

.operating-note {
  color: #fff;
  background: var(--green-ink) !important;
}

.operating-note > span {
  display: block;
  margin-bottom: 1.6rem;
  color: #c9edbb;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.operating-note ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.operating-note li {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
}

.direction-content {
  background: #fff;
}

.direction-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.direction-grid p:not(.kicker) {
  max-width: 34rem;
  color: var(--muted);
}

.direction-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.8rem;
}

.map-panel {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  background: #dfe8dc;
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(0, 125, 61, .16);
}

.map-road {
  position: absolute;
  background: #f7f5ef;
  box-shadow: 0 0 0 8px rgba(214, 54, 40, .1);
  transform-origin: center;
}

.map-road-a {
  top: 48%;
  left: -12%;
  width: 130%;
  height: 1.5rem;
  transform: rotate(-16deg);
}

.map-road-b {
  top: 18%;
  left: 51%;
  width: 1.45rem;
  height: 100%;
  transform: rotate(32deg);
}

.map-road-c {
  top: 62%;
  left: 12%;
  width: 80%;
  height: 1.4rem;
  transform: rotate(19deg);
}

.map-pin {
  position: absolute;
  top: 45%;
  left: 58%;
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  transform: rotate(-45deg);
}

.map-pin::first-letter {
  transform: rotate(45deg);
}

.map-town, .map-b36, .map-l602 {
  position: absolute;
  color: var(--green-ink);
  font-size: .72rem;
  font-weight: 900;
}

.map-town {
  left: 15%;
  top: 22%;
  font-size: 1.05rem;
}

.map-b36 {
  left: 31%;
  top: 57%;
}

.map-l602 {
  right: 15%;
  bottom: 28%;
}

.map-panel p {
  position: absolute;
  left: 1.3rem;
  bottom: 1rem;
  max-width: 19rem;
  margin: 0;
  font-size: .67rem !important;
}

.faq-page {
  background: #fff;
}

.faq-page-grid {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: start;
}

.faq-nav {
  position: sticky;
  top: 7.5rem;
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-nav a {
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.faq-nav a:hover {
  color: var(--green);
}

.faq-topic {
  scroll-margin-top: 8rem;
  margin-bottom: 4.5rem;
}

.faq-topic:last-child {
  margin-bottom: 0;
}

.faq-topic h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.contact-page {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-panel {
  min-height: 30rem;
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--paper);
}

.contact-panel h2 {
  margin-bottom: 2rem;
}

.contact-link {
  display: block;
  margin: .85rem 0;
  color: var(--green-ink);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
}

.contact-panel > p:not(.kicker) {
  margin: 2.2rem 0;
  color: var(--muted);
}

.contact-panel-green {
  background: var(--green-ink);
  color: #fff;
}

.contact-panel-green > a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .85);
  font-size: .9rem;
  font-weight: 800;
}

.contact-panel-green > a:hover {
  color: #c9edbb;
}

.contact-note {
  max-width: 46rem;
}

.contact-note p:not(.kicker) {
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.story-grid p:not(.kicker) {
  max-width: 40rem;
  color: var(--muted);
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

.story-stats div {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
}

.story-stats strong {
  color: var(--green);
  font-size: 1.45rem;
  letter-spacing: 0;
}

.story-stats span {
  color: var(--muted);
  font-size: .78rem;
}

.dark-story {
  color: #fff;
  background: var(--green-ink);
}

.dark-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.dark-story p:not(.kicker) {
  max-width: 34rem;
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
}

.future-note {
  max-width: 52rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: #fff;
}

.future-note > span {
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.future-note p {
  color: var(--muted);
}

.kids-license-details > p {
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
}

.kids-license-details {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.kids-license-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.kids-license-info-card,
.kids-license-schedule-card {
  background: #fff;
}

.kids-license-info-card {
  min-height: 14rem;
  padding: 1.7rem;
}

.kids-license-info-card span {
  display: block;
  margin-bottom: .7rem;
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.kids-license-info-card strong {
  display: block;
  margin-bottom: .85rem;
  color: var(--green-ink);
  font-size: 1.5rem;
  line-height: 1.05;
}

.kids-license-info-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .92rem;
}

.kids-license-schedule-card {
  padding: 1.9rem;
  border-top: 4px solid var(--green);
}

.kids-license-price-card {
  padding: 1.7rem 1.9rem;
  border-top: 4px solid var(--red);
  background: #fff;
}

.kids-license-price-card span {
  display: block;
  margin-bottom: .7rem;
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.kids-license-price-card strong {
  display: block;
  margin-bottom: .6rem;
  color: var(--green-ink);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.kids-license-price-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.kids-license-schedule-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.kids-license-schedule-card ul {
  margin: 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.kids-license-schedule-card li {
  padding: .85rem 0;
  border-top: 1px solid var(--line);
  font-size: .98rem;
}

.kids-license-schedule-card li:first-child {
  border-top: 0;
}

.kids-license-note {
  margin: 0;
  padding: .95rem 1.1rem;
  border-left: 3px solid var(--red);
  background: var(--paper);
  color: var(--ink) !important;
  font-size: .94rem;
}

.job-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.job-grid > div:first-child p:not(.kicker) {
  max-width: 34rem;
  color: var(--muted);
}

.job-checklist {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.job-checklist section {
  padding: 1.45rem;
  background: #fff;
}

.job-checklist h3 {
  margin-bottom: .65rem;
  font-size: 1rem;
}

.job-checklist ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-checklist li {
  position: relative;
  padding: .33rem 0 .33rem .85rem;
  color: var(--muted);
  font-size: .82rem;
}

.job-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72rem;
  width: .32rem;
  height: .32rem;
  border-radius: 50%;
  background: var(--green);
}

.legal-hero {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--paper-deep);
}

.legal-hero h1 {
  margin-bottom: 0;
}

.legal {
  background: #fff;
}

.legal-content {
  max-width: 48rem;
}

.legal-content h2 {
  margin: 3rem 0 1rem;
  font-size: 1.7rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--green);
  font-weight: 800;
}

.legal-note {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--red);
  background: var(--paper);
  color: var(--ink) !important;
  font-size: .85rem;
}

.track-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;

  position: relative;
  width: min(100%, 48rem);
  min-height: 25rem;
  padding: 2rem 1rem 1.5rem;
  isolation: isolate;
  perspective: 1100px;
}

.track-visual::before {
  position: absolute;
  inset: 12% 4% 16%;
  z-index: -3;

  content: "";
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse at center,
      rgba(0, 132, 61, 0.3) 0%,
      rgba(0, 132, 61, 0.1) 38%,
      transparent 72%
    );

  filter: blur(1.2rem);
  pointer-events: none;
}

.track-visual__eyebrow {
  position: absolute;
  top: 0.5rem;
  right: 1rem;

  color: #c8f4d7;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.track-visual__map-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 20rem;
}

.track-visual__map {
  position: relative;
  z-index: 2;

  display: block;
  width: 112%;
  max-width: none;

  transform:
    rotate(-7deg)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));

  transform-origin: center;
  transition: transform 180ms ease-out;

  filter:
    drop-shadow(0 1.4rem 1.5rem rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 1.1rem rgba(0, 132, 61, 0.28));

  will-change: transform;
}


.track-visual__facts {
  position: absolute;
  right: 1rem;
  bottom: 0.4rem;
  z-index: 4;

  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.track-visual__facts span {
  padding: 0.5rem 0.7rem;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(4, 31, 18, 0.72);
  box-shadow: 0 0.7rem 1.5rem rgba(0, 0, 0, 0.16);

  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

@keyframes track-sweep {
  0%,
  20% {
    background-position: 130% 0;
    opacity: 0;
  }

  35%,
  68% {
    opacity: 0.78;
  }

  85%,
  100% {
    background-position: -100% 0;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .track-visual__map {
    transition: none;
  }

  .track-visual__glow {
    animation: none;
    opacity: 0.18;
  }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: .9rem;
  }

  .main-nav a {
    font-size: .72rem;
  }

  .header-inner {
    gap: 1rem;
  }

  .header-booking {
    padding: .7rem .78rem;
  }

  .track-ribbon-inner {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 22rem);
    gap: 2rem;
  }

  .track-ribbon-inner > img {
    width: min(100%, 20rem);
  }

  .track-ribbon-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  }

  .hero-copy {
    padding-right: 2rem;
  }

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

  .offer-card {
    padding: 1.55rem;
  }

  .footer-grid {
    grid-template-columns: 1.1fr repeat(3, .9fr);
    gap: 1.75rem;
  }

}

@media (max-width: 950px) {
  [data-site-header] {
    min-height: 7.6rem;
  }

  .track-visual {
    width: min(100%, 40rem);
    margin-inline: auto;
    min-height: 22rem;
  }

  .track-visual__map {
    width: 106%;
    transform:
      rotate(-5deg)
      rotateX(var(--tilt-x))
      rotateY(var(--tilt-y));
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 2rem, 1180px);
  }

  .header-inner {
    min-height: 5rem;
  }

  .brand img {
    width: 6.6rem;
    height: 4rem;
  }

  .header-booking {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0;
    padding: .65rem 1rem 1rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 .8rem 1.5rem rgba(0, 0, 0, .08);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: .9rem .5rem;
    font-size: .79rem;
  }

  .track-ribbon-inner {
    grid-template-columns: minmax(0, 1fr) minmax(13rem, 17rem);
    gap: 1.6rem;
  }

  .track-ribbon-copy h1 {
    max-width: 13ch;
  }

  .track-ribbon-inner > img {
    width: min(100%, 16rem);
    max-height: 11rem;
  }

  .track-ribbon-stats {
    gap: .8rem;
    padding-left: 1rem;
  }

  .hero-grid, .viper-grid, .track-grid, .faq-grid, .split-intro-grid, .viper-detail-grid, .track-story-grid, .shop-grid, .race-detail-grid, .direction-grid, .story-grid, .dark-story-grid, .job-grid, .error-grid {
    grid-template-columns: 1fr;
  }

  .kids-license-info-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 35rem;
    padding-right: 0;
  }

  .hero-visual {
    min-height: 26rem;
  }

  .hero-visual img {
    width: min(116%, 43rem);
    left: 50%;
  }

  .viper-image-wrap {
    min-height: 29rem;
  }

  .process, .group-section, .image-feature, .contact-feature-inner {
    grid-template-columns: 1fr;
  }

  .process-photo, .group-photo, .image-feature-image {
    min-height: 26rem;
  }

  .process-content {
    padding: 4rem 1rem;
  }

  .group-panel {
    padding: 4.5rem 1rem;
  }

  .image-feature-reverse .image-feature-image {
    order: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .section-heading > p {
    max-width: 34rem;
  }

  .offers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-card-emphasis {
    grid-column: 1 / -1;
    min-height: 21rem;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .format-grid, .boxenstop-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .timeline article:nth-child(3) {
    border-left: 0;
  }

  .race-grid, .ticket-grid, .operating-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-page-grid {
    grid-template-columns: 1fr;
  }

  .faq-nav {
    position: static;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid var(--line);
  }

  .faq-nav a {
    padding: .7rem;
    border-right: 1px solid var(--line);
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

}
@media (max-width: 620px) {
  .notice-inner {
    min-height: 2.8rem;
    font-size: .63rem;
  }

  .notice-inner span {
    max-width: 57%;
  }

  .track-ribbon, .track-ribbon-inner {
    min-height: 20rem;
  }

  .track-ribbon-inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    align-content: end;
    padding-top: 3.5rem;
    padding-bottom: 2.1rem;
  }

  .track-ribbon-copy h1 {
    font-size: clamp(2.45rem, 11vw, 4rem);
  }

  .track-ribbon-inner > img {
    grid-column: 1;
    grid-row: auto;
    width: min(100%, 15rem);
    max-height: 8.5rem;
    justify-self: start;
  }

  .track-ribbon-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    gap: .75rem;
    padding-top: 1rem;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .42);
    border-left: 0;
  }

  .track-ribbon-stats > div {
    min-width: 0;
    padding: .85rem .9rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1rem;
  }

  .track-ribbon-stats strong {
    font-size: clamp(1.45rem, 5vw, 1.8rem);
  }

  .track-ribbon-stats span {
    font-size: .62rem;
    line-height: 1.35;
  }

  .track-visual {
    min-height: 17rem;
    padding: 1.5rem 0 2.8rem;
  }

  .track-visual__map-wrap {
    min-height: 13rem;
  }

  .track-visual__map {
    width: 112%;
    transform: rotate(-3deg);
  }

  .track-visual__eyebrow {
    top: 0;
    right: 0;
    font-size: 0.65rem;
  }

  .track-visual__facts {
    right: 0;
    bottom: 0;
    width: 100%;
    justify-content: center;
  }

  .track-visual__facts span {
    padding: 0.45rem 0.6rem;
    font-size: 0.66rem;
  }

  .track-visual__glow {
    animation-duration: 7s;
  }

  .hero-copy {
    min-height: 34rem;
    padding: 4.2rem 0 3rem;
  }

  .hero-visual {
    min-height: 21rem;
  }

  .hero-visual img {
    width: 132%;
    transform: translateX(-50%) scale(1.12);
  }

  .hero-visual-number {
    font-size: 11.5rem;
  }

  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .facts article:nth-child(3) {
    border-left: 0;
  }

  .facts article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .facts article:last-child {
    border-right: 0;
  }

  .facts article {
    min-height: 6.8rem;
    padding: 1.15rem 1rem;
  }

  .facts strong {
    font-size: 1.45rem;
  }

  .viper-points {
    grid-template-columns: 1fr;
  }

  .viper-points div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .prep-highlights {
    grid-template-columns: 1fr;
  }

  .kart-gallery-grid, .kart-tech-grid {
    grid-template-columns: 1fr;
  }

  .kart-gallery-main {
    min-height: 25rem;
  }

  .kart-gallery-stack {
    grid-template-columns: 1fr 1fr;
  }

  .kart-gallery-stack figure {
    min-height: 15rem;
  }

  .kart-gallery-card-wide {
    min-height: 12rem !important;
  }

  .booking-band-inner {
    min-height: 14rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2.5rem 0;
  }

  .offers-grid, .format-grid, .boxenstop-grid, .measure-grid {
    grid-template-columns: 1fr;
  }

  .offer-card-emphasis {
    grid-column: auto;
  }

  .offer-card, .format-card {
    min-height: 23rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .image-feature-image {
    min-height: 23rem;
  }

  .track-stats {
    gap: .7rem;
  }

  .track-map {
    min-height: 23rem;
  }

  .group-process h2 {
    margin-bottom: 2rem;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline article, .timeline article + article, .timeline article:nth-child(3) {
    padding: 1.1rem 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .race-grid > article {
    min-height: 28rem;
  }

  .page-hero, .page-hero-inner {
    min-height: 26rem;
  }

  .page-hero-inner {
    padding: 3.75rem 0;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 11vw, 4.2rem);
  }

  .page-hero p:not(.kicker) {
    font-size: .95rem;
  }

  .page-hero::before {
    background: linear-gradient(90deg, rgba(3, 24, 15, .89), rgba(3, 24, 15, .55));
  }

  .page-hero-viper, .page-hero-race, .page-hero-faq, .page-hero-contact, .page-hero-kids, .page-hero-jobs {
    background-position: 145% 68%, center;
    background-size: 34rem auto, auto;
  }

  .page-hero-shop {
    background-position: center 42%;
    background-size: cover;
  }

  .contact-panel {
    min-height: 23rem;
  }

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

  .map-panel {
    min-height: 25rem;
  }

  .faq-nav {
    grid-template-columns: 1fr 1fr;
  }

  .faq-topic {
    margin-bottom: 3.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding: 3.5rem 0 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: .8rem 0;
  }

}

@media (max-width: 390px) {
  :root {
    --shell: calc(100% - 1.25rem);
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .notice-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: .35rem;
    padding: .55rem 0;
  }

  .notice-inner span {
    max-width: none;
  }

  .main-nav {
    grid-template-columns: 1fr;
  }

  .track-ribbon-inner {
    padding-top: 2.6rem;
  }

  .track-ribbon-inner > img {
    width: min(100%, 12rem);
  }

  .track-ribbon-stats {
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
  }

  .track-ribbon-stats strong {
    font-size: 1.35rem;
  }

  .track-ribbon-stats span {
    font-size: .58rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    flex-direction: column;
  }

  .hero-visual-label {
    top: 1.4rem;
    right: 1.2rem;
  }

  .hero-visual-number {
    font-size: 8.5rem;
    bottom: -1.5rem;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .facts article, .facts article:nth-child(3), .facts article:last-child {
    border-right: 0;
    border-left: 0;
  }

  .facts article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .kart-gallery-stack {
    grid-template-columns: 1fr;
  }

  .kart-gallery-card-wide {
    min-height: 15rem !important;
  }

  .track-stats {
    grid-template-columns: 1fr;
  }

  .group-actions {
    width: 100%;
  }

  .group-actions .button {
    width: 100%;
  }

  .group-mail {
    overflow-wrap: anywhere;
  }

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

}

@media (max-width: 640px) {
  .cookie-banner {
    right: .75rem;
    bottom: .75rem;
    left: .75rem;
  }

  .cookie-banner__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner__button {
    width: 100%;
  }
}
