:root {
  --ink: #101211;
  --paper: #f1f0eb;
  --acid: #b9ff3e;
  --orange: #ff5a36;
  --muted: #858985;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
.site-header {
  height: 84px;
  padding: 0 clamp(22px, 6vw, 90px);
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff22;
  color: white;
}
.logo img {
  width: 120px;
  max-height: 55px;
  object-fit: contain;
}
.co-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-x {
  color: var(--acid);
  font-size: 18px;
  font-weight: 300;
}
.padborg-logo {
  width: 180px;
  max-height: 50px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.site-header nav > a:hover {
  color: var(--acid);
}
.nav-button {
  border: 1px solid #ffffff55;
  padding: 16px 18px;
}
.nav-button b {
  color: var(--acid);
  margin-left: 16px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 6px;
}
.hero {
  min-height: 720px;
  height: 100svh;
  max-height: 950px;
  background: #0b0c0b;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px clamp(22px, 7vw, 110px) 55px;
}
.grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(500px) rotateX(58deg) scale(1.7) translateY(17%);
  transform-origin: bottom;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 42%, #50604e33, transparent 35%);
}
.speed-line {
  position: absolute;
  z-index: 2;
  right: -8%;
  width: 70%;
  height: 7px;
  background: var(--acid);
  transform: rotate(-15deg) skewX(-55deg);
  box-shadow: 0 0 40px #b9ff3e66;
}
.speed-line.one {
  top: 39%;
}
.speed-line.two {
  top: 45%;
  right: -20%;
  height: 2px;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.kicker {
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 800;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 12px;
}
.kicker i {
  width: 36px;
  height: 2px;
  background: var(--acid);
}
.hero h1 {
  font-size: clamp(70px, 10.6vw, 168px);
  line-height: 0.79;
  letter-spacing: -0.075em;
  font-style: italic;
  margin: 25px 0 0;
}
.hero h1 em,
.section h2 em,
.faq h2 em,
.final h2 em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 2px currentColor;
}
.hero-bottom {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 50px;
}
.date {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 46px;
  border-right: 1px solid #ffffff44;
}
.date strong {
  font-size: 65px;
  color: var(--acid);
  letter-spacing: -5px;
  line-height: 0.8;
}
.date span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.45;
}
.hero-bottom > p {
  color: #aaa;
  font-size: 13px;
  line-height: 1.7;
}
.down {
  width: 64px;
  height: 64px;
  border: 1px solid #ffffff55;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-left: auto;
  color: var(--acid);
  font-size: 22px;
}
.down:hover {
  background: var(--acid);
  color: #111;
}
.section {
  padding: 105px clamp(22px, 7vw, 110px);
}
.section-label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 9px;
  letter-spacing: 2.5px;
  font-weight: 900;
  margin-bottom: 60px;
}
.section-label span {
  color: #777;
}
.section-label:after {
  content: "";
  height: 1px;
  background: #15151529;
  flex: 1;
}
.section-label.light:after {
  background: #ffffff25;
}
.intro {
  display: grid;
  grid-template-columns: 0.7fr 1.35fr 1.05fr;
  gap: 55px;
}
.intro > .section-label {
  grid-column: 1/-1;
}
.intro-copy {
  grid-column: 2;
}
.section h2 {
  font-size: clamp(50px, 6vw, 88px);
  line-height: 0.87;
  letter-spacing: -0.065em;
  font-style: italic;
  margin: 0;
}
.section h2 em {
  -webkit-text-stroke-color: #111;
}
.intro-copy > p,
.section-head > p {
  color: #646763;
  line-height: 1.75;
  font-size: 14px;
  margin: 34px 0;
}
.facts {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ccc;
  padding-top: 25px;
}
.facts div {
  display: flex;
  flex-direction: column;
}
.facts b {
  font-size: 33px;
  letter-spacing: -2px;
}
.facts small {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #777;
  margin-top: 6px;
}
.track {
  min-height: 470px;
  background: #171917;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 55px;
  overflow: hidden;
}
.track:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 49.5%,
    #ffffff0a 50%,
    transparent 50.5%
  );
  background-size: 30px 30px;
}
.track img {
  max-width: 92%;
  max-height: 310px;
  filter: brightness(0) invert(1);
  position: relative;
}
.track-head {
  position: absolute;
  left: 25px;
  top: 23px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 9px;
  letter-spacing: 2px;
}
.track-head small {
  font-size: 7px;
  color: #777;
}
.track > span {
  position: absolute;
  right: 23px;
  bottom: 20px;
  font-size: 8px;
  color: var(--acid);
  letter-spacing: 2px;
}
.groups {
  background: #101211;
  color: #fff;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 50px;
}
.section-head > p {
  max-width: 400px;
  color: #8c8f8c;
  margin: 0;
}
.groups h2 em {
  color: var(--acid);
  -webkit-text-stroke: 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.group-card {
  --accent: var(--acid);
  background: #1b1d1b;
  padding: 28px 29px;
  border-top: 4px solid var(--accent);
  transition: 0.2s;
}
.group-card.orange {
  --accent: var(--orange);
}
.group-card.purple {
  --accent: #c8c8ff;
}
.group-card:hover {
  transform: translateY(-5px);
  background: #222422;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-top small {
  color: #777;
}
.card-top b {
  background: var(--accent);
  color: #111;
  font-size: 8px;
  letter-spacing: 1.4px;
  padding: 7px 9px;
}
.group-card h3 {
  font-size: 42px;
  letter-spacing: -2px;
  font-style: italic;
  margin: 40px 0 12px;
}
.group-card > p {
  min-height: 66px;
  color: #999d99;
  font-size: 13px;
  line-height: 1.65;
}
.details {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-block: 1px solid #ffffff20;
  color: #c4c5c4;
  font-size: 9px;
}
.capacity {
  margin: 24px 0;
}
.capacity > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.capacity small,
.price small {
  font-size: 8px;
  letter-spacing: 1.4px;
  color: #8b8d8b;
}
.capacity b {
  font-size: 20px;
  color: var(--accent);
}
.capacity b i {
  font-size: 10px;
  color: #777;
  font-style: normal;
}
.capacity > span {
  height: 3px;
  display: block;
  background: #393b39;
  margin-top: 10px;
}
.capacity > span i {
  display: block;
  height: 100%;
  background: var(--accent);
}
.price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 27px 0;
}
.price b {
  font-size: 27px;
}
.price b i {
  font-size: 8px;
  color: #aaa;
  font-style: normal;
  letter-spacing: 1px;
}
.reserve {
  width: 100%;
  height: 54px;
  border: 0;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  cursor: pointer;
}
.availability {
  text-align: center;
  color: #777;
  font-size: 9px;
  letter-spacing: 1px;
  margin: 26px 0 0;
}
.availability i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--acid);
  margin-right: 7px;
}
.practical .section-head {
  margin-bottom: 60px;
}
.timeline {
  border-top: 1px solid #bbb;
}
.timeline > div {
  display: grid;
  grid-template-columns: 90px 35px 1fr 1fr;
  align-items: center;
  gap: 16px;
  min-height: 75px;
  border-bottom: 1px solid #ccc;
}
.timeline time {
  font-size: 17px;
  font-weight: 900;
}
.timeline > div > i {
  width: 7px;
  height: 7px;
  border: 1px solid #777;
  border-radius: 50%;
}
.timeline > div > i.hot {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px #ff5a3620;
}
.timeline b {
  font-size: 11px;
  letter-spacing: 1px;
}
.timeline p {
  font-size: 11px;
  color: #777;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #ccc;
  margin-top: 70px;
}
.info-cards > div {
  padding: 27px;
  border-right: 1px solid #ccc;
}
.info-cards > div:last-child {
  border: 0;
}
.info-cards > div > span {
  color: var(--orange);
  font-size: 23px;
}
.info-cards h3 {
  font-size: 9px;
  letter-spacing: 1.4px;
  margin: 22px 0 10px;
}
.info-cards p {
  font-size: 11px;
  line-height: 1.65;
  color: #6d706d;
}
.faq {
  background: #e4e3dd;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}
.accordion {
  border-top: 1px solid #aaa;
}
.accordion details {
  border-bottom: 1px solid #aaa;
}
.accordion summary {
  list-style: none;
  padding: 24px 0;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary span {
  font-size: 21px;
  font-weight: 300;
}
.accordion details[open] summary span {
  transform: rotate(45deg);
}
.accordion details p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  padding: 0 40px 24px 0;
}
.final {
  background: var(--acid);
  padding: 95px 22px;
  text-align: center;
}
.final > span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2.5px;
}
.final h2 {
  font-size: clamp(60px, 8vw, 118px);
  line-height: 0.82;
  letter-spacing: -0.07em;
  font-style: italic;
  margin: 34px 0;
}
.final h2 em {
  -webkit-text-stroke-color: #111;
}
.final a {
  display: inline-flex;
  gap: 50px;
  background: #111;
  color: #fff;
  padding: 18px 20px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.final a b {
  color: var(--acid);
}
footer {
  background: #0b0c0b;
  color: #fff;
  padding: 46px clamp(22px, 7vw, 110px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer > img {
  width: 100px;
  max-height: 50px;
  object-fit: contain;
}
footer p {
  font-size: 8px;
  line-height: 1.7;
  text-align: center;
  color: #777;
}
footer > div {
  display: flex;
  gap: 22px;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  inset: 0;
  background: #000c;
  backdrop-filter: blur(8px);
  padding: 18px;
  place-items: center;
}
.modal.open {
  display: grid;
}
.modal-box {
  width: min(640px, 100%);
  max-height: 94vh;
  overflow: auto;
  background: #f2f1ec;
  padding: 42px;
  position: relative;
}
.close {
  position: absolute;
  right: 16px;
  top: 10px;
  background: none;
  border: 0;
  font-size: 30px;
  cursor: pointer;
}
.modal-box > small,
.success > small {
  font-size: 8px;
  letter-spacing: 2px;
  font-weight: 900;
  color: #777;
}
.modal-box h2 {
  font-size: 47px;
  line-height: 0.9;
  letter-spacing: -3px;
  font-style: italic;
  margin: 15px 0 27px;
}
.modal-box h2 em {
  color: var(--orange);
  font-style: italic;
}
.summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #151715;
  color: #fff;
  margin-bottom: 25px;
}
.summary > div {
  padding: 17px 19px;
}
.summary > div + div {
  border-left: 1px solid #ffffff30;
}
.summary small {
  display: block;
  font-size: 7px;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 6px;
}
.summary b {
  font-size: 14px;
}
.modal form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modal label {
  font-size: 8px;
  letter-spacing: 1px;
  font-weight: 900;
  text-transform: uppercase;
}
.modal input,
.modal select {
  display: block;
  width: 100%;
  height: 47px;
  margin-top: 7px;
  border: 1px solid #c7c7c2;
  background: #fff;
  padding: 0 12px;
  font-size: 13px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: #666;
}
.checkbox input {
  width: 17px;
  height: 17px;
  margin: 0;
}
.submit,
.close-button {
  height: 53px;
  border: 0;
  background: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.fineprint {
  text-align: center;
  color: #777;
  font-size: 8px;
  margin: 0;
}
.error {
  background: #ffe1db;
  color: #902a16;
  padding: 12px;
  font-size: 12px;
}
.success {
  text-align: center;
  padding: 20px 5px;
}
.success > i {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--acid);
  margin: 0 auto 24px;
  font-style: normal;
  font-size: 25px;
}
.success p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}
.close-button {
  display: inline-flex;
  background: #111;
  color: #fff;
  padding: 0 28px;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .site-header {
    height: 70px;
  }
  .menu-toggle {
    display: block;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    padding: 28px;
  }
  .site-header nav.open {
    display: flex;
  }
  .intro {
    grid-template-columns: 1fr 1fr;
  }
  .intro-copy {
    grid-column: 1;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .group-card > p {
    min-height: auto;
  }
  .info-cards {
    grid-template-columns: 1fr 1fr;
  }
  .info-cards > div:nth-child(2) {
    border-right: 0;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: 680px;
    padding: 110px 20px 42px;
    align-items: end;
  }
  .hero h1 {
    font-size: 17vw;
  }
  .speed-line {
    top: 28% !important;
    width: 95%;
  }
  .hero-bottom {
    gap: 20px;
  }
  .date {
    padding-right: 18px;
  }
  .date strong {
    font-size: 48px;
  }
  .hero-bottom > p {
    display: none;
  }
  .down {
    width: 50px;
    height: 50px;
  }
  .section {
    padding: 78px 20px;
  }
  .intro {
    display: block;
  }
  .intro .section-label {
    margin-bottom: 50px;
  }
  .intro-copy {
    margin-bottom: 45px;
  }
  .section h2 {
    font-size: 14vw;
  }
  .facts {
    margin-bottom: 45px;
  }
  .track {
    min-height: 330px;
    padding: 35px;
  }
  .groups h2 {
    font-size: 14vw;
  }
  .group-card {
    padding: 25px 22px;
  }
  .timeline > div {
    grid-template-columns: 60px 20px 1fr;
    gap: 10px;
  }
  .timeline p {
    display: none;
  }
  .info-cards {
    grid-template-columns: 1fr;
  }
  .info-cards > div {
    border-right: 0;
  }
  .final h2 {
    font-size: 15vw;
  }
  footer {
    flex-direction: column;
    gap: 25px;
  }
  footer > div {
    flex-wrap: wrap;
    justify-content: center;
  }
  .modal-box {
    padding: 38px 20px 22px;
  }
  .modal-box h2 {
    font-size: 38px;
  }
  .form-row,
  .summary {
    grid-template-columns: 1fr;
  }
  .summary > div + div {
    border-left: 0;
    border-top: 1px solid #ffffff30;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: smooth;
  }
}

/* Sticky navigation, touch-scroll og blødere bevægelser */
:root {
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}
html {
  scroll-padding-top: 84px;
  overscroll-behavior-y: none;
}
html {
  scroll-behavior: auto !important;
}
.section {
  scroll-margin-top: 42px;
}
#top {
  scroll-margin-top: 0;
}
body {
  -webkit-overflow-scrolling: touch;
}
.site-header {
  position: fixed;
  z-index: 50;
  transition:
    background-color 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    backdrop-filter 0.45s var(--ease-out);
}
.site-header.scrolled,
.site-header.menu-open {
  background: #0b0c0bef;
  box-shadow: 0 12px 35px #00000030;
  backdrop-filter: blur(14px);
}
.group-card {
  transform: translateY(0);
  transition:
    transform 0.85s var(--ease-out),
    opacity 0.75s var(--ease-out),
    background-color 0.65s var(--ease-out),
    box-shadow 0.65s var(--ease-out);
}
.group-card.will-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  will-change: transform, opacity;
}
.group-card.will-reveal.is-visible {
  animation: card-rise 0.9s var(--ease-out) var(--reveal-delay, 0ms) both;
}
.group-card:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 22px 50px #00000035;
  transition-delay: 0ms;
}
.reserve {
  transition:
    transform 0.5s var(--ease-out),
    filter 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out);
}
.reserve:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 12px 28px #00000035;
}
.reserve:active {
  transform: translateY(0) scale(0.99);
  transition-duration: 0.12s;
}
@media (max-width: 900px) {
  html {
    scroll-padding-top: 70px;
  }
  .section {
    scroll-margin-top: 35px;
  }
}

@keyframes card-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
  }
  65% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Gruppefarver matcher navnene Grøn, Gul og Rød */
.group-card.green {
  --accent: #79e43f;
}
.group-card.yellow {
  --accent: #ffd43b;
}
.group-card.red {
  --accent: #ff493b;
}
.modal-box {
  --modal-accent: #79e43f;
}
.modal-box.group-green {
  --modal-accent: #79e43f;
}
.modal-box.group-yellow {
  --modal-accent: #ffd43b;
}
.modal-box.group-red {
  --modal-accent: #ff493b;
}
.modal-box > h2 em,
.modal-box .success h2 em {
  color: var(--modal-accent);
}
.modal-box .summary {
  border-top: 4px solid var(--modal-accent);
}
.modal-box .submit {
  background: var(--modal-accent);
  color: #101211;
}

/* Blød FAQ-accordion */
.accordion .faq-item {
  border-bottom: 1px solid #aaa;
}
.accordion .faq-item > button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.accordion .faq-item > button span {
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.45s var(--ease-out);
}
.accordion .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0.35;
  transition:
    grid-template-rows 0.55s var(--ease-out),
    opacity 0.45s var(--ease-out);
}
.accordion .faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 40px 0 0;
  color: #666;
  font-size: 13px;
  line-height: 1.7;
  transition: padding-bottom 0.55s var(--ease-out);
}
.accordion .faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}
.accordion .faq-item.open .faq-answer p {
  padding-bottom: 24px;
}

/* Vertical pit wall navigation */
.top-actions {
  margin-left: auto;
}
.nav-date {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}
.nav-date i {
  color: #737773;
  font-size: 8px;
  font-style: normal;
}
.pit-nav {
  position: fixed;
  z-index: 60;
  top: 50%;
  right: 18px;
  bottom: auto;
  width: 68px;
  height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  background: #101211e8;
  border: 1px solid #ffffff20;
  box-shadow: 0 18px 55px #0004;
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
}
.pit-nav-title {
  padding: 17px 0 15px;
  color: #696d69;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 1.6px;
  writing-mode: vertical-rl;
}
.pit-nav-line {
  width: 1px;
  min-height: 28px;
  flex: 1;
  background: linear-gradient(transparent, #ffffff30);
}
.pit-nav-links {
  width: 100%;
  padding: 8px 0;
}
.pit-nav-links a {
  position: relative;
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pit-nav-links small {
  position: absolute;
  top: 8px;
  color: #656965;
  font-size: 7px;
  font-weight: 900;
}
.pit-nav-links i {
  width: 7px;
  height: 7px;
  margin-top: 12px;
  border: 1px solid #737773;
  border-radius: 50%;
  transition:
    background-color 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    transform 0.4s var(--ease-out);
}
.pit-nav-links b {
  position: absolute;
  right: 56px;
  min-width: max-content;
  padding: 9px 12px;
  color: #fff;
  background: #101211;
  font-size: 8px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition:
    opacity 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}
.pit-nav-links a:hover b {
  opacity: 1;
  transform: translateX(0);
}
.pit-nav-links a.active i {
  background: var(--acid);
  border-color: var(--acid);
  box-shadow:
    0 0 0 5px #b9ff3e18,
    0 0 14px #b9ff3e80;
  transform: scale(1.2);
}
.pit-nav-links a.active small {
  color: var(--acid);
}
.pit-reserve {
  position: absolute;
  right: 0;
  bottom: -46px;
  width: 100%;
  min-height: 36px;
  height: 36px;
  flex: none;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #101211;
  background: var(--acid);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.5px;
  box-shadow: 0 0 0 0 #b9ff3e00;
  animation: pit-reserve-glow 2.3s ease-in-out infinite;
}
.pit-reserve span {
  writing-mode: horizontal-tb;
  transform: none;
}
.pit-reserve b {
  font-size: 12px;
}

@keyframes pit-reserve-glow {
  0%,
  100% {
    background: #b9ff3e;
    box-shadow:
      0 0 0 0 #b9ff3e00,
      0 0 16px #b9ff3e20;
  }
  50% {
    background: #c7ff61;
    box-shadow:
      0 0 0 5px #b9ff3e10,
      0 0 30px #b9ff3e70;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-inline: 16px;
  }
  .co-brand {
    gap: 8px;
  }
  .logo img {
    width: 64px;
    max-height: 37px;
  }
  .brand-x {
    font-size: 13px;
  }
  .padborg-logo {
    width: 112px;
    max-height: 36px;
  }
  .nav-date {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    font-size: 8px;
    line-height: 1;
  }
  .site-header nav.top-actions {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
    background: transparent;
  }
  .nav-date i {
    font-size: 6px;
  }
  .top-actions .nav-button {
    display: none;
  }
  .pit-nav {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    height: 68px;
    flex-direction: row;
    border-color: #ffffff30;
    transform: none;
  }
  .pit-nav-title,
  .pit-nav-line {
    display: none;
  }
  .pit-nav-links {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
  }
  .pit-nav-links a {
    height: 100%;
    flex-direction: column;
    gap: 6px;
  }
  .pit-nav-links small {
    position: static;
    font-size: 6px;
  }
  .pit-nav-links i {
    width: 5px;
    height: 5px;
    margin: 0;
  }
  .pit-nav-links b {
    position: static;
    min-width: 0;
    padding: 0;
    background: transparent;
    font-size: 7px;
    opacity: 1;
    transform: none;
  }
  .pit-reserve {
    position: static;
    width: 68px;
    height: 100%;
    min-height: 100%;
    flex: 0 0 68px;
    gap: 4px;
  }
  .pit-reserve span {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0;
  }
  .pit-reserve span::after {
    content: "BOOK";
    font-size: 7px;
  }
  footer {
    padding-bottom: 115px;
  }
}
