:root {
    --green: #d4fa0a;
    --black: #000;
}

html {
    scroll-behavior: smooth;
    /* clip avoids creating a scrollport that kills position:sticky */
    overflow-x: clip;
}

body.savage-page {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: Poppins, Arial, sans-serif;
    font-size: 15px;
    overflow-x: clip;
}

body.savage-page *,
body.savage-page *::before,
body.savage-page *::after {
    box-sizing: border-box;
}

body.savage-page a {
    color: inherit;
    text-decoration: none;
}

body.savage-page img {
    display: block;
    max-width: 100%;
}

body.savage-page button,
body.savage-page input,
body.savage-page select {
    font-family: inherit;
}

body.savage-page .savage-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background: #000;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
}

body.savage-page .headerLogo {
    width: 112px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.hero {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: clamp(520px, 41.666vw, 810px);
    overflow: hidden;
    text-align: center;
}

.heroBg {
    position: absolute;
    inset: 0;
    background: #000 center / cover no-repeat;
    background-image: url('/img/banner-1920x800.jpg');
}

.heroBg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(#0001, #0000 58%, #0003);
}

.heroCopy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 0 24px 56px;
}

.heroCopy .heroText {
    display: none;
}

.heroCopy a {
    margin-top: 0;
}

@media (max-width: 1280px) {
    .heroBg {
        background-image: url('/img/banner-1280x720.jpg');
    }

    .hero {
        height: clamp(480px, 56.25vw, 720px);
    }
}

@media (max-width: 800px) {
    .heroBg {
        background-image: url('/img/banner-750x1334.jpg');
        background-position: center top;
    }
}

.heroCopy small {
    letter-spacing: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.heroCopy h1 {
    color: var(--green);
    margin: 28px 0 14px;
    font-size: clamp(76px, 9.4vw, 136px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -5px;
}

.heroCopy b {
    letter-spacing: 21px;
    font-size: 15px;
    font-weight: 700;
    margin-left: 21px;
}

.heroCopy a,
.courseHead button,
.courseHead .masterPlanBtn {
    background: var(--green) !important;
    color: #050505 !important;
    border: 0;
    margin-top: 46px;
    padding: 15px 35px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
    text-align: center;
}

.marquee {
    display: flex;
    align-items: center;
    height: 79px;
    overflow: hidden;
    background: #0a0a0a;
    color: var(--green);
    letter-spacing: 5px;
    white-space: nowrap;
    font-size: 20px;
    font-weight: 700;
}

.marqueeTrack {
    display: flex;
    flex: none;
    min-width: max-content;
    animation: marqueeFinal 26s linear infinite;
}

.marqueeTrack span {
    flex: none;
    padding-right: 58px;
}

@keyframes marqueeFinal {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

body.savage-page section:not(.hero):not(.course) {
    max-width: 1440px;
    margin: auto;
    background: transparent;
    color: inherit;
    overflow: visible;
}

body.savage-page section.register,
body.savage-page section.details,
body.savage-page section.details.two {
    max-width: none;
}

body.savage-page section.two,
body.savage-page section.intro,
.two {
    display: grid;
    grid-template-columns: 652px 1fr;
    gap: 49px;
    align-items: center;
    padding: 80px 60px;
}

body.savage-page section.intro {
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.two > img,
.intro > img {
    width: 100%;
    height: 695px;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
}

body.savage-page label {
    display: block;
    color: #777;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-size: 10px;
}

body.savage-page .intro h2,
body.savage-page .about h2,
body.savage-page .format h2,
body.savage-page .details h2,
body.savage-page .register h2,
body.savage-page .courseHead h2 {
    color: var(--green);
    margin: 14px 0;
    font-weight: 900;
    font-size: 72px;
    line-height: 80px;
}

body.savage-page .intro p,
body.savage-page .about p,
body.savage-page .format p,
body.savage-page .details p,
body.savage-page .courseHead p,
body.savage-page .register p {
    color: #d0d0cc;
    font-size: 16px;
    line-height: 20px;
    max-width: 540px;
}

body.savage-page .register > div:first-child p {
    max-width: 430px;
}

.stats {
    grid-column: 1 / -1;
    display: grid !important;
    flex-wrap: nowrap !important;
    gap: 28px;
    width: 100%;
    margin-top: 8px;
}

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

.aboutStats {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 10px;
}

.stats b {
    color: var(--green);
    white-space: nowrap;
    font-size: 48px;
    font-style: italic;
    font-weight: 700;
    line-height: 1;
}

.stats small {
    display: block;
    color: #aaa;
    white-space: normal;
    margin-top: 22px;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    line-height: 20px;
}

body.savage-page section.about,
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 49px;
    padding: 80px 60px 0;
}

.about .gallery {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gallery img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: center 25%;
    border-radius: 16px;
    background: #111;
}

.gallery img:nth-child(1) { object-position: center 15%; }
.gallery img:nth-child(2) { object-position: center 35%; }
.gallery img:nth-child(3) { object-position: center 20%; }
.gallery img:nth-child(4) { object-position: center 30%; }
.gallery img:nth-child(5) { object-position: center 40%; }
.gallery img:nth-child(6) { object-position: center 25%; }

body.savage-page section.format,
.format {
    padding: 80px 60px;
    padding-top: 150px;
}

.format.two {
    align-items: center;
    gap: 49px;
}

.format strong {
    display: block;
    color: var(--green);
    margin-top: 42px;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    max-width: 540px;
}

.courseHead {
    padding: 80px 60px 43px;
}

.courseHead p {
    max-width: 580px;
}

.courseHead button,
.courseHead .masterPlanBtn {
    margin-top: 20px;
    min-width: 177px;
    height: 48px;
    line-height: 48px;
    padding: 0 24px;
    font-size: 12px;
}

.course {
    height: 7800px;
    min-height: 7800px;
    max-width: 1440px;
    margin: auto;
    padding: 0 60px 80px;
    position: relative;
}

/* One sticky pin for the whole scroll distance — avoids grid sticky bugs */
.coursePin {
    position: sticky;
    top: 0;
    height: 100vh;
    max-height: 100vh;
    display: grid;
    grid-template-columns: 652px minmax(0, 1fr);
    gap: 2px;
    align-items: stretch;
    overflow: hidden;
    background: #000;
}

.mapViewport,
.obstacleStage {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #000;
    width: 100%;
}

.mapViewport {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapFixed {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 456px;
    height: min(92vh, 700px);
}

.mapFixed > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.progressTrack {
    position: absolute;
    z-index: 4;
    top: 8%;
    left: 50%;
    width: 3px;
    height: 84%;
    transform: translateX(-50%);
    background: transparent;
    pointer-events: none;
}

.progressFill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green), 0 0 18px #d4fa0aa6;
    will-change: height;
}

.progressTrack .routeMarker {
    position: absolute;
    top: 0%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    border: 2px solid #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--green), 0 0 24px var(--green);
    will-change: top;
}

.mapCheckpoint {
    position: absolute;
    z-index: 5;
    left: 50%;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #000;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    font-family: inherit;
    padding: 0;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

/* img is first child; checkpoints start at even/odd correctly with buttons */
.mapCheckpoint:nth-of-type(odd) {
    margin-left: 76px;
}

.mapCheckpoint:nth-of-type(even) {
    margin-left: -76px;
}

.mapCheckpoint.active {
    color: #000;
    background: var(--green);
    border-color: var(--green);
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 0 12px var(--green), 0 0 28px #d4fa0ab3;
}

.obstacleStage {
    z-index: 1;
}

.obstacleSlide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 0 40px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.42s, visibility 0.42s, transform 0.42s;
}

.obstacleSlide.active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.obstacleSlide > img {
    width: min(585px, 100%);
    height: 52vh;
    max-height: 430px;
    object-fit: contain;
    object-position: center;
}

.obstacleSlide--classified > img {
    width: min(585px, 100%);
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: 8px;
    background: #111;
}

.obstacleSlide > div {
    position: relative;
    width: min(585px, 100%);
    max-width: 585px;
}

.obstacleSlide h3 {
    color: var(--green);
    margin: 14px 0;
    font-size: 40px;
    font-style: italic;
    font-weight: 900;
    line-height: 0.92;
}

.obstacleSlide em {
    position: absolute;
    top: 12px;
    right: 0;
    color: var(--green);
    font-size: 10px;
    font-style: normal;
}

.obstacleSlide p {
    color: #d0d0cc;
    font-size: 13px;
    line-height: 18px;
    max-width: none;
}

body.savage-page section.details,
body.savage-page section.details.two,
.details,
.details.two {
    display: grid;
    grid-template-columns: 652px 541px;
    align-items: center;
    gap: 49px;
    padding: 80px 60px;
    max-width: none !important;
    margin: 0 auto;
    overflow: visible;
    background: #0a0b0a !important;
}

.details > img,
.details.two > img {
    width: 100%;
    height: 695px;
    min-height: 0;
    object-fit: cover;
    border-radius: 16px;
    align-self: center;
}

.details > div {
    min-width: 0;
    overflow: visible;
}

.details > div > label,
body.savage-page .details > div > label {
    display: block;
    color: #777;
    letter-spacing: 1.5px;
    margin: 0 0 20px !important;
    font-size: 10px;
}

.details > div > h2,
body.savage-page .details > div > h2 {
    margin: 14px 0 !important;
    font-size: 72px !important;
    line-height: 80px !important;
}

.details > div > p,
body.savage-page .details > div > p {
    margin: 0 !important;
    max-width: none;
    font-size: 16px !important;
    line-height: 20px !important;
}

.details dl {
    margin: 30px 0 0;
    padding: 0;
}

.details dt {
    color: #aaa;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

.details dd {
    color: var(--green);
    margin: 3px 0 20px;
    padding: 0;
    font-size: 21px;
    font-style: italic;
    font-weight: 900;
    line-height: 1.2;
}

.details dd:last-of-type {
    margin-bottom: 0;
}

.categoryDisplay {
    margin-top: 36px;
}

.categoryDisplay > span,
body.savage-page .details .categoryDisplay > span {
    display: block;
    color: #fff !important;
    margin: 0 0 11px !important;
    font-size: 26px !important;
    line-height: 32px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: none;
}

.categoryDisplay strong,
body.savage-page .details .categoryDisplay strong {
    display: block;
    color: var(--green) !important;
    margin: 0 !important;
    font-size: 50px !important;
    font-style: italic !important;
    font-weight: 600 !important;
    line-height: 1.46 !important;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

body.savage-page section.partners,
.partners {
    text-align: center;
    padding: 90px 6vw;
    background: #000 !important;
    max-width: none;
    margin: 0 auto;
}

.partners > small {
    display: block;
    color: #777;
    letter-spacing: 1.5px;
    font-size: 10px;
    margin: 0;
}

.partners > div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 1120px;
    margin: 35px auto 0;
}

.partnerLogo:nth-child(5) {
    grid-column: 2;
}

.partnerLogo:nth-child(6) {
    grid-column: 3;
}

.partnerLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 96px;
    padding: 22px;
    background: #070707;
    border: 1px solid #252525;
}

.partnerLogo img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 52px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

.partnerLogo:first-child img {
    max-height: 42px;
}

.partnerLogo:nth-child(4) img {
    max-height: 58px;
}

.partnerLogo:nth-child(6) img {
    max-height: 46px;
}

body.savage-page section.register,
.register {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: start !important;
    gap: 100px;
    min-height: 650px !important;
    padding: 72px max(6vw, calc(56vw - 720px));
    background: #171817 !important;
    max-width: none !important;
    margin: 0 auto;
    scroll-margin-top: 80px;
}

.register > div:first-child > label,
body.savage-page .register > div:first-child > label {
    display: block;
    color: #777;
    letter-spacing: 1.5px;
    margin: 0 0 20px !important;
    font-size: 10px;
}

.register > div:first-child h2,
body.savage-page .register > div:first-child h2 {
    margin: 14px 0 !important;
    font-size: 72px !important;
    line-height: 80px !important;
}

.register > div:first-child p,
body.savage-page .register > div:first-child p {
    max-width: 430px !important;
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 20px !important;
}

.register form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: start;
    gap: 16px;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.formTop,
.formtop {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.formTop small,
.formtop small {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
}

.formTop b,
.formtop b {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.ticketPrice {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.earlyBirdLabel,
.earlyBirdPrice {
    color: var(--green) !important;
}

.originalPrice {
    color: #fff !important;
    text-decoration: line-through;
    opacity: 0.75;
    font-weight: 600;
}

.register .fieldGroup,
body.savage-page .register .fieldGroup {
    display: block !important;
    color: #fff !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
    font-size: 11px !important;
}

.register .fieldGroup > span {
    display: block;
    margin: 0 0 8px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 0;
    font-weight: 400;
}

.register input,
.register select,
.register .form-control,
.register .flatpickr-input,
.register .iti input {
    width: 100% !important;
    height: 48px;
    padding: 12px;
    color: #fff !important;
    background: transparent !important;
    border: 1px solid #888 !important;
    border-radius: 0 !important;
    font-size: 11px;
    box-shadow: none !important;
}

.register select option {
    color: #000;
}

.register input:focus,
.register select:focus {
    outline: none;
    border-color: var(--green) !important;
    box-shadow: 0 0 0 1px var(--green);
}

.register .iti {
    width: 100%;
    display: block !important;
}

.register .iti__selected-flag {
    background: transparent !important;
}

.register .iti__country-list {
    background: #111;
    color: #fff;
    border: 1px solid #333;
    z-index: 20;
}

.register .fieldWide {
    grid-column: 1 / -1;
}

.register .dobField {
    grid-column: 1 / -1;
    position: relative;
    overflow: visible;
}

body.savage-page .flatpickr-calendar {
    background: #111 !important;
    border: 1px solid #333 !important;
    box-shadow: 0 12px 40px #000a;
    width: 320px;
    max-height: none !important;
    overflow: visible !important;
    z-index: 99999 !important;
    padding: 8px 0 12px;
}

body.savage-page .flatpickr-calendar.open {
    display: inline-block;
}

body.savage-page .flatpickr-innerContainer,
body.savage-page .flatpickr-rContainer,
body.savage-page .flatpickr-days {
    overflow: visible !important;
    width: 100%;
}

body.savage-page .flatpickr-days {
    width: 307px !important;
}

body.savage-page .dayContainer {
    width: 307px !important;
    min-width: 307px !important;
    max-width: 307px !important;
    min-height: 240px;
}

body.savage-page .flatpickr-months {
    align-items: center;
    height: auto;
    padding: 4px 0 8px;
}

body.savage-page .flatpickr-months .flatpickr-month {
    background: transparent;
    color: #fff;
    height: auto;
    overflow: visible;
}

body.savage-page .flatpickr-current-month {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    left: 0;
    padding: 4px 40px;
    height: auto;
    position: relative;
}

body.savage-page .dob-month-select,
body.savage-page .dob-year-select {
    appearance: auto;
    -webkit-appearance: menulist;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #555;
    border-radius: 4px;
    height: 32px;
    padding: 0 8px;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
}

body.savage-page .dob-month-select {
    min-width: 120px;
}

body.savage-page .dob-year-select {
    min-width: 84px;
}

body.savage-page .flatpickr-months .flatpickr-prev-month,
body.savage-page .flatpickr-months .flatpickr-next-month {
    fill: #fff;
    color: #fff;
    padding: 8px;
    top: 10px;
}

body.savage-page .flatpickr-weekdays {
    background: transparent;
    height: 28px;
}

body.savage-page span.flatpickr-weekday {
    color: #999;
    font-weight: 600;
}

body.savage-page .flatpickr-day {
    color: #eee;
    border-radius: 4px;
    max-width: 40px;
    height: 39px;
    line-height: 39px;
}

body.savage-page .flatpickr-day.flatpickr-disabled,
body.savage-page .flatpickr-day.prevMonthDay,
body.savage-page .flatpickr-day.nextMonthDay {
    color: #555;
}

body.savage-page .flatpickr-day:hover,
body.savage-page .flatpickr-day:focus {
    background: #2a2a2a;
    border-color: #2a2a2a;
}

body.savage-page .flatpickr-day.selected,
body.savage-page .flatpickr-day.selected:hover {
    background: var(--green);
    border-color: var(--green);
    color: #050505;
}

body.savage-page .flatpickr-day.today {
    border-color: var(--green);
}

.register .waiverRow,
body.savage-page .register .waiverRow {
    grid-column: 1 / -1;
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    color: #fff !important;
    font-size: 12px !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
    cursor: pointer;
}

.register .waiverRow input {
    width: 17px !important;
    height: 17px !important;
    accent-color: var(--green);
    flex: none;
    border: 1px solid #888 !important;
    padding: 0 !important;
    margin: 2px 0 0 !important;
}

.register .waiverRow span {
    line-height: 1.45;
}

.register .waiverRow a,
body.savage-page .register .waiverRow a {
    color: var(--green) !important;
    font-weight: 700;
    text-decoration: underline !important;
    text-underline-offset: 2px;
}

.register .waiverRow a:hover,
body.savage-page .register .waiverRow a:hover {
    color: #e8ff4a !important;
}

.register .singleTicketNote,
body.savage-page .register .singleTicketNote {
    grid-column: 1 / -1;
    border-top: 1px solid #777;
    padding-top: 18px;
    margin: 23px 0 4px !important;
    color: #9a9a96 !important;
    font-size: clamp(7px, 0.75vw, 11px) !important;
    line-height: 1.5 !important;
    max-width: none !important;
    white-space: nowrap;
}

.register .review {
    grid-column: 1 / -1;
    width: 100%;
    height: 56px;
    margin: 0;
    border: 0;
    border-radius: 10px;
    background: var(--green);
    color: #050505;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.2px;
    cursor: pointer;
    text-transform: uppercase;
}

.review.soldOut,
.review:disabled {
    background: transparent;
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
    cursor: not-allowed;
}

.error-text {
    display: block;
    color: #ff7f7f;
    font-size: 10px;
    min-height: 0;
    margin-top: 4px;
}

.register .error-text:empty {
    display: none;
    margin: 0;
}

.formLoader {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: none;
    place-items: center;
    background: rgba(0, 0, 0, 0.7);
}

.formLoader.show {
    display: grid;
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #333;
    border-top-color: var(--green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hidden {
    display: none !important;
}

body.savage-page .savage-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 64px;
    min-height: 510px;
    padding: 70px 60px 42px;
    background: #000;
    text-align: center;
}

.footerLogo {
    width: 260px;
    max-height: 96px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.footerContacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 40px;
    width: min(100%, 720px);
    color: #fff;
    font-size: 17px;
    line-height: 24px;
}

.footerContacts a {
    color: #fff;
}

body.savage-page .savage-footer > small {
    color: #777;
    font-size: 14px;
    line-height: 20px;
}

@media (max-width: 800px) {
    body.savage-page .savage-header {
        height: 64px;
    }

    .hero {
        height: auto;
        aspect-ratio: 750 / 1334;
        min-height: 520px;
        max-height: none;
    }

    .heroCopy {
        padding-bottom: 42px;
    }

    .heroCopy h1 {
        letter-spacing: -3px;
    }

    .heroCopy small {
        letter-spacing: 7px;
    }

    .marquee {
        height: 58px;
        letter-spacing: 3px;
        font-size: 14px;
    }

    .two,
    .about,
    body.savage-page section.two,
    body.savage-page section.intro,
    body.savage-page section.about,
    body.savage-page section.details,
    body.savage-page section.details.two,
    body.savage-page section.register,
    body.savage-page section.courseHead,
    body.savage-page section.partners,
    .details,
    .details.two,
    .register,
    .courseHead,
    .partners {
        grid-template-columns: 1fr;
        padding: 60px 22px;
    }

    .two > img,
    .intro > img,
    .details > img,
    .details.two > img {
        height: 430px;
        min-height: 430px;
    }

    body.savage-page section.about,
    .about {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 60px 22px 0;
    }

    body.savage-page .intro h2,
    body.savage-page .about h2,
    body.savage-page .format h2,
    body.savage-page .details h2,
    body.savage-page .register h2,
    body.savage-page .courseHead h2 {
        font-size: 48px !important;
        line-height: 52px !important;
    }

    .stats,
    .introStats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow-x: visible;
        gap: 28px 16px;
        padding-bottom: 0;
    }

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

    .aboutStats b:nth-child(5) {
        grid-column: 1 / -1;
    }

    .stats b {
        font-size: 34px;
        white-space: nowrap;
    }

    .stats small {
        margin-top: 12px;
        font-size: 12px;
    }

    .about .gallery {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .gallery img {
        height: 230px;
        min-height: 0;
        max-height: none;
    }

    .course {
        height: 6200px;
        min-height: 6200px;
        padding: 0;
    }

    .coursePin {
        grid-template-columns: 46% 54%;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .mapViewport,
    .obstacleStage {
        position: relative;
        height: 100%;
    }

    .mapFixed {
        width: 100%;
        height: 88vh;
    }

    .mapCheckpoint {
        width: 25px;
        height: 25px;
        font-size: 8px;
    }

    .mapCheckpoint:nth-of-type(odd) {
        margin-left: 34px;
    }

    .mapCheckpoint:nth-of-type(even) {
        margin-left: -34px;
    }

    .obstacleSlide {
        padding: 30px 14px;
    }

    .obstacleSlide > img,
    .obstacleSlide > div {
        width: 100%;
    }

    .obstacleSlide > img {
        height: 44vh;
    }

    .obstacleSlide h3 {
        font-size: 26px;
    }

    .categoryDisplay > span,
    body.savage-page .details .categoryDisplay > span {
        font-size: 22px !important;
        line-height: 28px !important;
    }

    .categoryDisplay strong,
    body.savage-page .details .categoryDisplay strong {
        font-size: 40px !important;
        line-height: 1.2 !important;
        white-space: normal;
    }

    .partners > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partnerLogo:nth-child(5),
    .partnerLogo:nth-child(6) {
        grid-column: auto;
    }

    body.savage-page section.register,
    .register {
        min-height: auto !important;
        gap: 45px;
        background: #171817 !important;
        padding: 60px 22px;
        grid-template-columns: 1fr;
    }

    .register form {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .register .singleTicketNote {
        white-space: normal;
    }

    body.savage-page section.details,
    body.savage-page section.details.two,
    .details,
    .details.two {
        padding: 60px 22px;
        gap: 40px;
        grid-template-columns: 1fr;
    }

    body.savage-page section.partners,
    .partners {
        padding: 60px 22px;
    }

    .review {
        height: 52px;
        font-size: 13px;
        border-radius: 9px;
    }

    body.savage-page .savage-footer {
        gap: 42px;
        min-height: 430px;
        padding: 58px 22px 36px;
    }

    .footerLogo {
        width: 210px;
    }

    .footerContacts {
        grid-template-columns: 1fr;
        gap: 14px;
        font-size: 14px;
    }
}

/* Review registration page */
body.savage-review .savage-header {
    justify-content: center;
}

.reviewPage {
    min-height: calc(100vh - 80px);
    padding: 28px max(6vw, calc(56vw - 720px)) 80px;
    background: #000;
    max-width: none !important;
}

.reviewPageInner {
    max-width: 1180px;
    margin: 0 auto;
}

.reviewPageTop {
    margin-bottom: 18px;
}

.reviewPageEyebrow {
    display: block;
    color: #777;
    font-size: 10px;
    letter-spacing: 1.5px;
}

.reviewBack {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.4px;
    margin: 8px 0 18px;
}

.reviewBack:hover {
    color: var(--green);
}

.reviewTitle {
    color: var(--green);
    margin: 0 0 36px;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.05;
}

.reviewLayout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
    gap: 28px;
    align-items: start;
}

.reviewMain {
    display: grid;
    gap: 18px;
}

.reviewCard,
.reviewSummary {
    background: #171817;
    border-radius: 14px;
    padding: 24px 26px;
}

.reviewCard h2,
.reviewSummary h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.reviewCardHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.reviewCardHead h2 {
    margin: 0;
}

.reviewOutlineBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

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

.reviewGrid {
    display: grid;
    gap: 18px 24px;
}

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

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

.reviewGrid small,
.reviewSummaryMeta span:first-child {
    display: block;
    color: #888;
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.reviewGrid strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    word-break: break-word;
}

.reviewTicketCount {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.reviewEntryRow {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.6fr auto;
    gap: 12px;
    align-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.reviewEntryActions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}

.reviewEntryActions a {
    color: #888;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

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

.reviewSummaryLine {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.reviewSummary hr {
    border: 0;
    border-top: 1px solid #3a3a3a;
    margin: 18px 0;
}

.reviewSummaryMeta,
.reviewSummaryTotal {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 13px;
}

.reviewSummaryTotal {
    margin: 16px 0 22px;
    font-size: 16px;
    font-weight: 700;
}

.reviewSummary .waiverRow {
    margin-bottom: 10px !important;
    font-size: 12px !important;
    color: #cfcfcf !important;
}

.reviewSummary .waiverRow a,
body.savage-page .reviewSummary .waiverRow a {
    color: var(--green) !important;
    font-weight: 700;
    text-decoration: underline !important;
    text-underline-offset: 2px;
}

.reviewSummary .waiverRow a:hover,
body.savage-page .reviewSummary .waiverRow a:hover {
    color: #e8ff4a !important;
}

.reviewSummary .error-text {
    display: block;
    margin: -4px 0 10px;
}

.reviewPayBtn {
    width: 100%;
    height: 54px;
    margin-top: 10px;
    border: 0;
    border-radius: 10px;
    background: var(--green);
    color: #050505;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    text-transform: uppercase;
}

.reviewPayBtn:hover {
    filter: brightness(1.05);
}

.reviewSummary {
    position: relative;
}

.reviewSummary .formLoader {
    border-radius: 14px;
}

@media (max-width: 980px) {
    .reviewLayout {
        grid-template-columns: 1fr;
    }

    .reviewGrid--4,
    .reviewGrid--3 {
        grid-template-columns: 1fr 1fr;
    }

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

    .reviewEntryActions {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .reviewPage {
        padding: 20px 18px 56px;
    }

    .reviewCard,
    .reviewSummary {
        padding: 20px 18px;
    }

    .reviewGrid--4,
    .reviewGrid--3,
    .reviewEntryRow {
        grid-template-columns: 1fr;
    }

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