:root {
    --forest-950: #071d1e;
    --forest-900: #0b292b;
    --forest-800: #12383a;
    --moss-600: #4d6b59;
    --sand-50: #f7f4ec;
    --sand-100: #ece7da;
    --site-ink: #102123;
    --site-muted: #667474;
    --brand-yellow: #fdc300;
    --brand-yellow-hover: #eab500;
    --site-white: #fff;
    --site-line: rgba(16, 33, 35, 0.14);
    --site-line-dark: rgba(255, 255, 255, 0.14);
    --site-container: 1280px;
    --site-gutter: clamp(16px, 3vw, 32px);
    --site-section: clamp(72px, 9vw, 124px);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-feature: 64px;
    --shadow-card: 0 20px 60px rgba(4, 25, 27, 0.14);
    --shadow-float: 0 28px 80px rgba(4, 25, 27, 0.22);
    --site-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

html {
    scroll-padding-top: 104px;
}

body {
    background: var(--sand-50);
    color: var(--site-ink);
}

body::selection,
body *::selection {
    background: var(--brand-yellow);
    color: var(--forest-950);
}

.container {
    width: min(var(--site-container), calc(100% - (var(--site-gutter) * 2)));
}

.site-header {
    background: rgba(7, 29, 30, 0.88);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px) saturate(130%);
}

.site-header__inner {
    min-height: 82px;
}

.brand__name {
    font-size: 20px;
    letter-spacing: 0.075em;
}

.desktop-nav {
    gap: clamp(18px, 2vw, 30px);
}

.desktop-nav > a,
.desktop-nav__dropdown > button {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 650;
}

.desktop-nav__dropdown > button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.desktop-nav > a::after,
.desktop-nav__dropdown > button::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--brand-yellow);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 260ms var(--site-ease);
}

.desktop-nav__dropdown > button::after {
    display: none;
}

.desktop-nav__dropdown > button span {
    display: block;
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    margin: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    font-size: 0;
    transform: rotate(45deg);
    transition: transform 260ms var(--site-ease);
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.desktop-nav > a[aria-current='page']::after,
.desktop-nav__dropdown > button:hover::after,
.desktop-nav__dropdown > button:focus-visible::after,
.desktop-nav__dropdown > button[aria-expanded='true']::after {
    transform: scaleX(1);
    transform-origin: left;
}

.desktop-nav__menu {
    top: calc(100% + 12px);
    left: -22px;
    width: min(340px, calc(100vw - 32px));
    min-width: 320px;
    padding: 10px;
    transform: translateY(10px);
    border: 1px solid rgba(16, 33, 35, 0.09);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(3, 22, 24, 0.26);
}

.desktop-nav__menu a {
    display: grid;
    min-height: 58px;
    padding: 11px 13px;
    align-content: center;
    gap: 4px;
    border-radius: 14px;
    white-space: normal;
}

.desktop-nav__menu a strong {
    font-size: 13px;
    font-weight: 750;
}

.desktop-nav__menu a small {
    color: var(--site-muted);
    font-size: 10px;
    font-weight: 550;
    line-height: 1.35;
}

.desktop-nav__dropdown:hover .desktop-nav__menu,
.desktop-nav__dropdown:focus-within .desktop-nav__menu,
.desktop-nav__dropdown.is-open .desktop-nav__menu {
    transform: translateY(0);
}

.desktop-nav__dropdown:hover > button span,
.desktop-nav__dropdown:focus-within > button span,
.desktop-nav__dropdown.is-open > button span {
    transform: rotate(225deg);
}

.header-phone {
    border-radius: 999px;
    background: var(--brand-yellow);
    box-shadow: 0 10px 30px rgba(253, 195, 0, 0.12);
}

.header-phone:hover,
.header-phone:focus-visible {
    background: #ffd329;
}

.mobile-nav {
    position: fixed;
    z-index: 900;
    inset: 83px 0 0;
    height: auto;
    background:
        radial-gradient(circle at 85% 0, rgba(77, 107, 89, 0.26), transparent 34%),
        var(--forest-950);
}

.mobile-nav__inner {
    padding-bottom: max(44px, env(safe-area-inset-bottom));
}

.mobile-nav__group {
    margin: 18px 0 4px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mobile-nav a {
    min-height: 54px;
}

.page-shell {
    overflow: clip;
}

.eyebrow,
.kicker {
    margin: 0;
    color: var(--moss-600);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.kicker--light {
    color: rgba(255, 255, 255, 0.6);
}

.kicker span {
    display: inline-flex;
    margin-right: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--brand-yellow);
    color: var(--forest-950);
}

.display-title {
    margin: 20px 0 0;
    font-size: clamp(46px, 7vw, 92px);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -0.058em;
}

.section-title {
    max-width: 820px;
    margin: 16px 0 0;
    font-size: clamp(35px, 4.5vw, 62px);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -0.048em;
}

.section-intro {
    max-width: 62ch;
    margin: 22px 0 0;
    color: var(--site-muted);
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.72;
}

.section-intro--light {
    color: rgba(255, 255, 255, 0.67);
}

.section-pad {
    padding: var(--site-section) 0;
}

.section-pad--dark {
    background: var(--forest-950);
    color: #fff;
}

.section-pad--steps {
    padding-bottom: clamp(36px, 4vw, 56px);
}

.section-pad--safety {
    padding-top: 0;
}

.button {
    border-radius: 999px;
    transition: transform 260ms var(--site-ease), background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.button--primary {
    background: var(--brand-yellow);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: #ffd329;
    box-shadow: 0 16px 34px rgba(253, 195, 0, 0.2);
}

.button--outline-dark {
    border-color: var(--site-line);
    background: transparent;
    color: var(--site-ink);
}

.button--outline-dark:hover,
.button--outline-dark:focus-visible {
    border-color: var(--site-ink);
}

.text-link {
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
}

.home-hero {
    position: relative;
    min-height: min(920px, calc(100svh - 82px));
    padding: clamp(78px, 9vw, 128px) 0 76px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(4, 25, 27, 0.95) 0%, rgba(5, 29, 31, 0.8) 48%, rgba(5, 29, 31, 0.34) 100%),
        linear-gradient(180deg, transparent 65%, var(--forest-950) 100%),
        url('/img/block5_new.jpg') center / cover no-repeat;
    color: #fff;
}

.home-hero::before,
.home-hero::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.home-hero::before {
    top: -320px;
    right: -160px;
    width: 760px;
    height: 760px;
}

.home-hero::after {
    right: 20%;
    bottom: -360px;
    width: 660px;
    height: 660px;
}

.home-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 660px;
    align-items: center;
    grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.74fr);
    gap: clamp(50px, 7vw, 110px);
}

.home-hero__copy {
    max-width: 760px;
}

.home-hero__copy .display-title span {
    color: var(--brand-yellow);
}

.home-hero__lead {
    max-width: 660px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.68;
}

.hero-actions {
    display: flex;
    margin-top: 36px;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-proof {
    display: grid;
    margin: 50px 0 0;
    padding: 24px 0 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--site-line-dark);
    list-style: none;
}

.hero-proof li {
    padding-right: 22px;
}

.hero-proof li + li {
    padding-left: 22px;
    border-left: 1px solid var(--site-line-dark);
}

.hero-proof strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
}

.hero-proof span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    font-weight: 650;
    line-height: 1.45;
    text-transform: uppercase;
}

.season-stack {
    display: grid;
    gap: 14px;
}

.season-card {
    position: relative;
    display: grid;
    min-height: 250px;
    padding: 26px;
    align-content: end;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    background: rgba(8, 38, 40, 0.58);
    box-shadow: var(--shadow-float);
    color: #fff;
    text-decoration: none;
    isolation: isolate;
    backdrop-filter: blur(10px);
    transition: transform 380ms var(--site-ease), border-color 260ms ease;
}

.season-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background-position: center;
    background-size: cover;
    opacity: 0.46;
    transition: transform 600ms var(--site-ease), opacity 300ms ease;
}

.season-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top, rgba(4, 24, 26, 0.96), rgba(4, 24, 26, 0.12));
}

.season-card--summer::before {
    background-image: url('/img/block2_photo.png');
}

.season-card--winter::before {
    background-image: url('/img/photo_for_slider_4.jpg');
}

.season-card:hover,
.season-card:focus-visible {
    z-index: 2;
    transform: translateX(-8px) scale(1.018);
    border-color: rgba(253, 195, 0, 0.65);
    outline: none;
}

.season-card:hover::before,
.season-card:focus-visible::before {
    transform: scale(1.06);
    opacity: 0.62;
}

.season-card__meta {
    margin-bottom: 12px;
    color: var(--brand-yellow);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.season-card__title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 800;
    letter-spacing: -0.035em;
}

.season-card__arrow {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-yellow);
    color: var(--forest-950);
}

.trust-rail {
    background: var(--forest-950);
    color: #fff;
}

.trust-rail__grid {
    display: grid;
    padding: 34px 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--site-line-dark);
}

.trust-item {
    padding: 4px 30px;
}

.trust-item:first-child {
    padding-left: 0;
}

.trust-item + .trust-item {
    border-left: 1px solid var(--site-line-dark);
}

.trust-item strong {
    display: block;
    color: var(--brand-yellow);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 850;
    letter-spacing: -0.035em;
}

.trust-item span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.45;
}

.activity-grid {
    display: grid;
    margin-top: 48px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.activity-card {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--forest-800);
    box-shadow: var(--shadow-card);
    color: #fff;
    isolation: isolate;
}

.activity-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top, rgba(5, 26, 28, 0.97) 0%, rgba(5, 26, 28, 0.2) 68%, transparent 100%);
}

.activity-card__image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--site-ease);
}

.activity-card:hover .activity-card__image {
    transform: scale(1.035);
}

.activity-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: clamp(28px, 4vw, 46px);
}

.activity-card__label {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--brand-yellow);
    color: var(--forest-950);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.activity-card h3 {
    margin: 20px 0 0;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.045em;
}

.activity-card p {
    max-width: 52ch;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.65;
}

.activity-card .button {
    margin-top: 26px;
}

.route-strip {
    display: grid;
    margin-top: 46px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.route-card {
    position: relative;
    display: flex;
    min-height: 390px;
    padding: 28px;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 26px;
    background: var(--forest-800);
    color: #fff;
    text-decoration: none;
    isolation: isolate;
}

.route-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background-position: center;
    background-size: cover;
    transition: transform 600ms var(--site-ease);
}

.route-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top, rgba(5, 26, 28, 0.98), rgba(5, 26, 28, 0.04) 72%);
}

.route-card:hover::before,
.route-card:focus-visible::before {
    transform: scale(1.05);
}

.route-card:focus-visible {
    outline: 3px solid var(--brand-yellow);
    outline-offset: 3px;
}

.route-card--summer::before {
    background-image: url('/img/block6.png');
}

.route-card--scenic::before {
    background-image: url('/img/block5_new.jpg');
}

.route-card--winter::before {
    background-image: url('/img/photo_for_slider_3.jpg');
}

.route-card--snowmobile::before {
    background-image: url('/img/photo_for_slider_4.jpg');
}

.route-card--winter-panoramic::before {
    background-image: url('/img/photo_for_slider_2.jpg');
}

.route-card--tracked::before {
    background-image: url('/img/photo_for_slider_3.jpg');
}

.route-card__content {
    width: 100%;
}

.route-card__meta {
    display: flex;
    margin-bottom: 14px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--brand-yellow);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.route-card h3 {
    margin: 0;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -0.035em;
}

.route-card p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.55;
}

.category-hero {
    position: relative;
    min-height: 760px;
    padding: clamp(70px, 8vw, 112px) 0 86px;
    overflow: hidden;
    background: var(--forest-950);
    color: #fff;
}

.category-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--category-image) center / cover no-repeat;
    opacity: 0.28;
}

.category-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 27, 29, 0.97) 0%, rgba(5, 27, 29, 0.78) 50%, rgba(5, 27, 29, 0.16) 100%),
        linear-gradient(to top, var(--forest-950), transparent 45%);
}

.category-hero--quad {
    --category-image: url('/img/block2_photo.png');
}

.category-hero--snow {
    --category-image: url('/img/photo_for_slider_1.png');
}

.category-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 580px;
    align-items: center;
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.8fr);
    gap: clamp(40px, 7vw, 100px);
}

.category-hero--snow .category-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1fr);
    gap: clamp(36px, 5vw, 72px);
}

.category-hero__copy {
    max-width: 760px;
}

.category-hero__copy .display-title span {
    display: block;
    color: var(--brand-yellow);
    font-size: 0.54em;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.category-hero__lead {
    max-width: 640px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.7;
}

.vehicle-stage {
    position: relative;
    display: grid;
    min-height: 520px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 200px 32px 32px 32px;
    background:
        radial-gradient(circle at 50% 62%, rgba(253, 195, 0, 0.16), transparent 35%),
        rgba(14, 52, 55, 0.64);
    box-shadow: var(--shadow-float);
    backdrop-filter: blur(12px);
}

.vehicle-stage::after {
    content: '';
    position: absolute;
    right: 9%;
    bottom: 12%;
    left: 9%;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.34);
    filter: blur(18px);
}

.vehicle-stage img {
    position: relative;
    z-index: 1;
    width: 110%;
    height: auto;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.35));
}

.vehicle-stage--snow img {
    width: min(92%, 700px);
    max-width: 92%;
    height: auto;
}

.vehicle-stage__badge {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 22px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(5, 27, 29, 0.78);
    color: rgba(255, 255, 255, 0.82);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.fleet-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
}

.fleet-heading .section-intro {
    margin-bottom: 5px;
}

.fleet-grid {
    display: grid;
    margin-top: 54px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.fleet-card {
    overflow: hidden;
    border: 1px solid var(--site-line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 18px 54px rgba(5, 29, 31, 0.07);
}

.fleet-card--featured {
    border-color: rgba(253, 195, 0, 0.62);
}

.fleet-card__media {
    position: relative;
    display: grid;
    min-height: 340px;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 66%, rgba(253, 195, 0, 0.13), transparent 33%),
        linear-gradient(145deg, #0b292b, #164044);
}

.fleet-card__media::after {
    content: '';
    position: absolute;
    right: 20%;
    bottom: 16%;
    left: 20%;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    filter: blur(13px);
}

.fleet-card__media img {
    position: relative;
    z-index: 1;
    width: min(84%, 520px);
    max-height: 310px;
    object-fit: contain;
    filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.34));
}

.fleet-card__media--real {
    min-height: 0;
    aspect-ratio: 16 / 9;
    background: var(--forest-900);
}

.fleet-card__media--real::after {
    display: none;
}

.fleet-card__media--real img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.02);
}

.fleet-card__media--snowmobile img {
    object-position: 58% 50%;
}

.fleet-card__media--snowmobile .fleet-card__flag {
    right: auto;
    left: 22px;
}

.fleet-card__media--tracked img {
    object-position: 50% 58%;
}

.fleet-card__flag {
    position: absolute;
    z-index: 2;
    top: 22px;
    right: 22px;
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--brand-yellow);
    color: var(--forest-950);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.fleet-card__body {
    padding: clamp(28px, 4vw, 42px);
}

.fleet-card__tier {
    display: inline-flex;
    padding: 7px 10px;
    border: 1px solid rgba(16, 33, 35, 0.22);
    border-radius: 999px;
    color: var(--moss-600);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.fleet-card h3 {
    margin: 20px 0 0;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -0.044em;
}

.fleet-card__model {
    margin: 10px 0 0;
    color: var(--site-muted);
    font-size: 13px;
    font-weight: 650;
}

.fleet-card__description {
    max-width: 58ch;
    margin: 18px 0 0;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.65;
}

.price-list {
    display: grid;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.price-list li {
    display: flex;
    min-height: 52px;
    padding: 14px 0;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--site-line);
    font-size: 13px;
}

.price-list strong {
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.pending-price {
    margin: 30px 0 0;
    padding: 24px;
    border-radius: 18px;
    background: var(--sand-50);
}

.pending-price strong {
    display: block;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.pending-price p {
    margin: 9px 0 0;
    color: var(--site-muted);
    font-size: 13px;
    line-height: 1.55;
}

.duration-chips {
    display: flex;
    margin-top: 18px;
    flex-wrap: wrap;
    gap: 7px;
}

.duration-chips span {
    padding: 8px 10px;
    border: 1px solid var(--site-line);
    border-radius: 999px;
    background: #fff;
    font-size: 10px;
    font-weight: 750;
}

.rate-note {
    margin: 12px 0 0;
    color: var(--site-muted);
    font-size: 12px;
    line-height: 1.55;
}

.photo-grid__caption {
    position: relative;
    display: grid;
    padding: clamp(24px, 3vw, 38px);
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 8px clamp(18px, 2.5vw, 28px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at 100% 0, rgba(253, 195, 0, 0.12), transparent 42%),
        linear-gradient(135deg, var(--forest-800), var(--forest-900));
    color: #fff;
}

.photo-grid__caption span {
    display: inline-flex;
    width: fit-content;
    padding: 8px 11px;
    align-items: center;
    border: 1px solid rgba(253, 195, 0, 0.42);
    border-radius: 999px;
    color: var(--brand-yellow);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.photo-grid__caption p {
    grid-column: 1;
    max-width: 38ch;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(13px, 1.15vw, 16px);
    font-weight: 550;
}

.photo-grid__caption .text-link {
    grid-column: 2;
    grid-row: 1 / 3;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--brand-yellow);
    color: var(--forest-950);
    text-decoration: none;
    white-space: nowrap;
    transition: transform 240ms var(--site-ease), background-color 240ms ease;
}

.photo-grid__caption .text-link:hover,
.photo-grid__caption .text-link:focus-visible {
    transform: translateY(-2px);
    background: #ffd329;
    outline: none;
}

.fleet-card__actions {
    display: flex;
    margin-top: 28px;
    flex-wrap: wrap;
    gap: 10px;
}

.steps-grid {
    display: grid;
    margin-top: 48px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.step-card {
    min-height: 250px;
    padding: 30px;
    border: 1px solid var(--site-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.68);
}

.step-card__number {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-yellow);
    font-size: 12px;
    font-weight: 850;
}

.step-card h3 {
    margin: 30px 0 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.step-card p {
    margin: 14px 0 0;
    color: var(--site-muted);
    font-size: 13px;
    line-height: 1.65;
}

.safety-panel {
    display: grid;
    padding: clamp(34px, 5vw, 62px);
    align-items: center;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 64px;
    border-radius: var(--radius-lg);
    background: var(--forest-900);
    color: #fff;
}

.safety-panel__list {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
}

.safety-panel__list li {
    min-height: 112px;
    padding: 20px;
    border: 1px solid var(--site-line-dark);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.55;
}

.safety-panel__list strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 14px;
}

.contact-section {
    padding: var(--site-section) 0;
    background: var(--brand-yellow);
}

.contact-layout {
    display: grid;
    align-items: stretch;
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 18px;
}

.contact-copy,
.contact-card {
    border-radius: var(--radius-lg);
}

.contact-copy {
    display: flex;
    min-height: 610px;
    padding: clamp(36px, 5vw, 62px);
    flex-direction: column;
    justify-content: space-between;
    background: var(--forest-950);
    color: #fff;
}

.contact-copy h2 {
    max-width: 660px;
    margin: 18px 0 0;
    font-size: clamp(40px, 5vw, 66px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.052em;
}

.contact-copy p:not(.kicker) {
    max-width: 54ch;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.65;
}

.contact-phone {
    display: inline-block;
    margin-top: 44px;
    color: var(--brand-yellow);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 850;
    letter-spacing: -0.035em;
    text-decoration: none;
}

.contact-socials {
    display: flex;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-socials a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 650;
    text-underline-offset: 5px;
}

.contact-card {
    padding: clamp(34px, 5vw, 60px);
    background: #fff;
    color: var(--site-ink);
}

.contact-card h3 {
    margin: 0;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 850;
    letter-spacing: -0.04em;
}

.contact-card > p {
    margin: 14px 0 0;
    color: var(--site-muted);
    font-size: 13px;
    line-height: 1.6;
}

.contact-form-modern {
    display: grid;
    margin-top: 34px;
    gap: 14px;
}

.field {
    display: grid;
    gap: 8px;
}

.field label {
    color: var(--site-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.field input {
    width: 100%;
    min-height: 58px;
    padding: 14px 18px;
    border: 1px solid var(--site-line);
    border-radius: 15px;
    background: var(--sand-50);
    color: var(--site-ink);
    font: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.field input:focus {
    border-color: var(--brand-yellow);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(253, 195, 0, 0.15);
}

.phone-input {
    position: relative;
}

.phone-input__country,
.phone-input__status {
    position: absolute;
    top: 50%;
    z-index: 1;
    display: grid;
    place-items: center;
    pointer-events: none;
    transform: translateY(-50%);
    user-select: none;
}

.phone-input__country {
    left: 14px;
    width: 54px;
    height: 30px;
    border: 1px solid rgba(16, 33, 35, 0.12);
    border-radius: 10px;
    background: #fff;
    color: var(--forest-800);
    font-size: 10px;
    font-weight: 850;
}

.phone-input input {
    padding-right: 52px;
    padding-left: 82px;
    caret-color: var(--forest-950);
    font-variant-numeric: tabular-nums;
}

.phone-input__status {
    right: 16px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #dfeae1;
    color: var(--moss-600);
    font-size: 13px;
    font-weight: 900;
    opacity: 0;
    transform: translateY(-50%) scale(0.82);
    transition: opacity 180ms ease-out, transform 180ms ease-out;
}

.phone-input.is-complete .phone-input__status {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.phone-input.is-complete input {
    border-color: rgba(77, 107, 89, 0.48);
    background: #fff;
}

.phone-input.is-complete + .field-help {
    color: var(--moss-600);
    font-weight: 650;
}

.field-help,
.field-error {
    min-height: 15px;
    margin: 0;
    font-size: 10px;
    line-height: 1.45;
}

.field-help {
    color: var(--site-muted);
}

.field-error {
    color: #9b3b31;
    font-weight: 650;
}

.field--phone.has-error input,
.field--phone.has-error input:focus {
    border-color: #b64b3f;
    background: #fff8f6;
    box-shadow: 0 0 0 4px rgba(182, 75, 63, 0.1);
}

.field--phone.has-error label {
    color: #8f392f;
}

.contact-form-modern .button {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.form-note {
    margin: 2px 0 0;
    color: var(--site-muted);
    font-size: 10px;
    line-height: 1.45;
}

.map-strip {
    height: 400px;
    background: #d8ddd6;
}

.map-strip iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.72) contrast(0.94);
}

.site-footer {
    padding: 54px 0;
    background: #04191b;
}

.site-footer__grid {
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
}

.footer-meta span + span::before {
    content: '·';
    margin-right: 10px;
}

.tour-hero {
    position: relative;
    min-height: 720px;
    padding: 90px 0 74px;
    overflow: hidden;
    background: var(--forest-950);
    color: #fff;
    isolation: isolate;
}

.tour-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--tour-image) center / cover no-repeat;
}

.tour-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(4, 24, 26, 0.96) 0%, rgba(4, 24, 26, 0.78) 52%, rgba(4, 24, 26, 0.28) 100%),
        linear-gradient(to top, var(--forest-950), transparent 48%);
}

.tour-hero__inner {
    display: flex;
    min-height: 540px;
    max-width: 900px;
    justify-content: center;
    flex-direction: column;
}

.breadcrumbs--modern {
    margin: 0 0 40px;
}

.tour-hero h1 {
    margin: 22px 0 0;
    font-size: clamp(46px, 7vw, 86px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.057em;
}

.tour-hero__lead {
    max-width: 680px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.7;
}

.tour-facts {
    display: flex;
    margin-top: 36px;
    flex-wrap: wrap;
    gap: 9px;
}

.tour-facts span {
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 999px;
    background: rgba(8, 38, 40, 0.48);
    color: rgba(255, 255, 255, 0.86);
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.tour-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: clamp(44px, 7vw, 94px);
}

.tour-story {
    max-width: 780px;
}

.tour-story h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.tour-story p {
    margin: 24px 0 0;
    color: var(--site-muted);
    font-size: 16px;
    line-height: 1.78;
}

.tour-includes {
    display: grid;
    margin: 44px 0 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
}

.tour-includes li {
    min-height: 90px;
    padding: 20px;
    border: 1px solid var(--site-line);
    border-radius: 17px;
    background: #fff;
    color: var(--site-muted);
    font-size: 12px;
    line-height: 1.5;
}

.tour-includes strong {
    display: block;
    margin-bottom: 6px;
    color: var(--site-ink);
    font-size: 13px;
}

.tour-booking {
    position: sticky;
    top: 110px;
    padding: 30px;
    border-radius: 26px;
    background: var(--forest-900);
    box-shadow: var(--shadow-card);
    color: #fff;
}

.tour-booking__label {
    color: var(--brand-yellow);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.tour-booking h3 {
    margin: 14px 0 0;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.tour-booking p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.55;
}

.tour-booking .button {
    width: 100%;
    margin-top: 24px;
}

.tour-nav-grid {
    display: grid;
    margin-top: 44px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.tour-nav-card {
    min-height: 165px;
    padding: 24px;
    border: 1px solid var(--site-line-dark);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    text-decoration: none;
    transition: transform 260ms var(--site-ease), border-color 260ms ease, background 260ms ease;
}

.tour-nav-card:hover,
.tour-nav-card:focus-visible,
.tour-nav-card[aria-current='page'] {
    transform: translateY(-4px);
    border-color: rgba(253, 195, 0, 0.58);
    background: rgba(253, 195, 0, 0.08);
    outline: none;
}

.tour-nav-card span {
    color: var(--brand-yellow);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.tour-nav-card strong {
    display: block;
    margin-top: 16px;
    font-size: 17px;
    font-weight: 750;
    line-height: 1.35;
}

.gallery-hero {
    padding: clamp(82px, 10vw, 140px) 0 80px;
    background:
        radial-gradient(circle at 75% 0, rgba(77, 107, 89, 0.3), transparent 34%),
        var(--forest-950);
    color: #fff;
}

.gallery-hero__grid {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
    gap: 80px;
}

.gallery-hero p:not(.kicker) {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    line-height: 1.7;
}

.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.gallery-tile {
    position: relative;
    grid-column: span 4;
    min-height: 360px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    background: #d9ddd7;
    cursor: zoom-in;
}

.gallery-tile:nth-child(5n + 1),
.gallery-tile:nth-child(5n + 4) {
    grid-column: span 8;
}

.gallery-tile:nth-child(5n + 2),
.gallery-tile:nth-child(5n + 4) {
    min-height: 520px;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--site-ease), filter 300ms ease;
}

.gallery-tile::after {
    content: 'Переглянути';
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(5, 27, 29, 0.72);
    color: #fff;
    font-size: 10px;
    font-weight: 750;
    opacity: 0;
    backdrop-filter: blur(9px);
    transition: opacity 260ms ease;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
    transform: scale(1.035);
}

.gallery-tile:hover::after,
.gallery-tile:focus-visible::after {
    opacity: 1;
}

.gallery-tile:focus-visible {
    outline: 3px solid var(--brand-yellow);
    outline-offset: 4px;
}

.lightbox[hidden] {
    display: none;
}

.lightbox {
    position: fixed;
    z-index: 3000;
    inset: 0;
    display: grid;
    padding: 24px;
    place-items: center;
    background: rgba(2, 16, 18, 0.94);
    backdrop-filter: blur(12px);
}

.lightbox__figure {
    max-width: min(1120px, 100%);
    max-height: calc(100svh - 48px);
    margin: 0;
}

.lightbox__image {
    max-width: 100%;
    max-height: calc(100svh - 110px);
    border-radius: 18px;
    object-fit: contain;
}

.lightbox__close {
    position: fixed;
    top: 20px;
    right: 20px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.not-found {
    display: grid;
    min-height: calc(100svh - 82px);
    padding: 70px 0;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 30%, rgba(77, 107, 89, 0.28), transparent 34%),
        var(--forest-950);
    color: #fff;
}

.not-found__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
    gap: 80px;
}

.not-found__code {
    color: var(--brand-yellow);
    font-size: clamp(92px, 16vw, 220px);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.08em;
}

.not-found h1 {
    margin: 34px 0 0;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.05em;
}

.not-found p {
    max-width: 52ch;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
}

.not-found__media {
    position: relative;
    min-height: 520px;
}

.not-found__media img {
    position: absolute;
    max-width: none;
    filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.36));
}

.not-found__media img:first-child {
    top: 0;
    right: 8%;
    width: 82%;
}

.not-found__media img:last-child {
    right: -6%;
    bottom: 0;
    width: 64%;
}

[data-reveal] {
    opacity: 1;
    transform: none;
    transition: transform 420ms var(--site-ease), box-shadow 420ms var(--site-ease);
}

@media (max-width: 1120px) {
    .home-hero__grid,
    .category-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.64fr);
        gap: 50px;
    }

    .vehicle-stage {
        min-height: 450px;
    }

    .category-hero--snow .category-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(410px, 0.85fr);
    }

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

    .contact-layout {
        grid-template-columns: minmax(0, 0.82fr) minmax(410px, 1fr);
    }
}

@media (max-width: 920px) {
    .site-header__inner {
        min-height: 76px;
    }

    .mobile-nav {
        inset: 77px 0 0;
        height: auto;
    }

    .home-hero,
    .category-hero {
        min-height: 0;
    }

    .home-hero__grid,
    .category-hero__grid,
    .gallery-hero__grid,
    .not-found__grid {
        grid-template-columns: 1fr;
    }

    .home-hero__grid,
    .category-hero__grid {
        min-height: 0;
    }

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

    .season-card:hover,
    .season-card:focus-visible {
        transform: translateY(-5px);
    }

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

    .trust-item:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .trust-item:nth-child(n + 3) {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--site-line-dark);
    }

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

    .route-card:last-child,
    .step-card:last-child {
        grid-column: 1 / -1;
    }

    .category-hero__grid {
        gap: 70px;
    }

    .category-hero--snow .category-hero__grid {
        grid-template-columns: 1fr;
    }

    .vehicle-stage {
        min-height: 580px;
        margin: 0 50px;
    }

    .fleet-grid,
    .contact-layout,
    .tour-layout {
        grid-template-columns: 1fr;
    }

    .safety-panel {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .contact-copy {
        min-height: 480px;
    }

    .tour-booking {
        position: static;
    }

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

    .gallery-tile,
    .gallery-tile:nth-child(5n + 1),
    .gallery-tile:nth-child(5n + 4) {
        grid-column: span 6;
    }

    .not-found__media {
        max-width: 600px;
    }
}

/* Compact tariff terms replace the orphaned paragraph below price cards. */
.section-pad--pricing {
    padding-bottom: clamp(48px, 6vw, 80px);
}

.price-terms {
    display: grid;
    margin-top: 28px;
    overflow: hidden;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--light-line);
    border-radius: 20px;
    background: var(--light-surface);
    box-shadow: 0 14px 36px rgba(20, 38, 39, 0.07);
}

.price-terms__item {
    display: grid;
    min-width: 0;
    padding: 22px;
    align-items: center;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
}

.price-terms__item + .price-terms__item {
    border-left: 1px solid var(--light-line);
}

.price-terms__mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: var(--brand-yellow);
    color: var(--forest-950);
    font-size: 11px;
    font-weight: 850;
    font-variant-numeric: tabular-nums;
}

.price-terms strong {
    display: block;
    color: var(--site-ink);
    font-size: 14px;
    font-weight: 800;
}

.price-terms p {
    margin: 6px 0 0;
    color: var(--site-muted);
    font-size: 12px;
    line-height: 1.55;
    text-wrap: pretty;
}

/* One first-party icon language for navigation and actions. */
.ui-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button .ui-icon {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
}

.header-phone .ui-icon,
.text-link .ui-icon,
.booking__social .ui-icon,
.contact-socials .ui-icon {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
}

.season-card__arrow .ui-icon {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
}

.desktop-nav__dropdown > button .nav-chevron {
    display: block;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    margin: 0;
    border: 0;
    font-size: inherit;
    transform: none;
    transition: transform 180ms ease-out;
}

.desktop-nav__dropdown:hover > button .nav-chevron,
.desktop-nav__dropdown:focus-within > button .nav-chevron,
.desktop-nav__dropdown.is-open > button .nav-chevron,
.desktop-nav__dropdown > button[aria-expanded='true'] .nav-chevron {
    transform: rotate(180deg);
}

.contact-socials a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.gallery-tile::after {
    display: none;
}

.gallery-tile__hint {
    position: absolute;
    z-index: 2;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    min-height: 36px;
    padding: 8px 12px;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: rgba(5, 27, 29, 0.78);
    color: #fff;
    font-size: 10px;
    font-weight: 750;
    opacity: 0;
    pointer-events: none;
}

.gallery-tile__hint .ui-icon {
    width: 13px;
    height: 13px;
    flex-basis: 13px;
}

.gallery-tile:hover .gallery-tile__hint,
.gallery-tile:focus-visible .gallery-tile__hint {
    opacity: 1;
}

.lightbox__close .ui-icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
}

@media (max-width: 720px) {
    .section-pad--pricing {
        padding-bottom: 48px;
    }

    .price-terms {
        margin-top: 20px;
        grid-template-columns: 1fr;
    }

    .price-terms__item {
        padding: 18px;
    }

    .price-terms__item + .price-terms__item {
        border-top: 1px solid var(--light-line);
        border-left: 0;
    }

    .gallery-tile__hint {
        opacity: 1;
    }
}

@media (max-width: 720px) {
    html {
        scroll-padding-top: 86px;
    }

    .display-title {
        font-size: clamp(44px, 14vw, 66px);
    }

    .section-title {
        font-size: clamp(34px, 10vw, 48px);
    }

    .home-hero {
        padding: 60px 0 70px;
    }

    .home-hero__grid {
        gap: 54px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .hero-proof li {
        display: flex;
        padding: 14px 0;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .hero-proof li + li {
        padding-left: 0;
        border-top: 1px solid var(--site-line-dark);
        border-left: 0;
    }

    .hero-proof span {
        margin: 0;
        text-align: right;
    }

    .category-hero--quad .kicker > span {
        display: block;
        width: fit-content;
        margin: 0 0 10px;
    }

    .season-stack,
    .activity-grid,
    .route-strip,
    .steps-grid,
    .tour-nav-grid {
        grid-template-columns: 1fr;
    }

    .season-card {
        min-height: 225px;
    }

    .trust-rail__grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:first-child,
    .trust-item:nth-child(3) {
        margin: 0;
        padding: 18px 0;
        border-top: 1px solid var(--site-line-dark);
        border-left: 0;
    }

    .trust-item:first-child {
        border-top: 0;
    }

    .trust-item + .trust-item {
        border-left: 0;
    }

    .activity-card {
        min-height: 520px;
    }

    .route-card,
    .route-card:last-child,
    .step-card:last-child {
        grid-column: auto;
    }

    .category-hero {
        padding: 58px 0 68px;
    }

    .category-hero__lead {
        font-size: 15px;
    }

    .vehicle-stage {
        min-height: 430px;
        margin: 0;
        border-radius: 120px 26px 26px 26px;
    }

    .vehicle-stage img {
        width: 108%;
    }

    .category-hero--quad .vehicle-stage img {
        width: min(94%, 500px);
        max-width: 94%;
        height: auto;
    }

    .fleet-card__media {
        min-height: 280px;
    }

    .fleet-card__media img {
        width: 90%;
        max-height: 250px;
    }

    .fleet-card__media--real {
        min-height: 0;
    }

    .fleet-card__media--real img {
        width: 100%;
        max-height: none;
    }

    .photo-grid__caption {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .photo-grid__caption .text-link {
        width: fit-content;
        grid-column: 1;
        grid-row: auto;
    }

    .fleet-card__actions {
        display: grid;
    }

    .price-list li {
        font-size: 12px;
    }

    .price-list strong {
        font-size: 13px;
    }

    .safety-panel {
        padding: 30px;
    }

    .safety-panel__list,
    .tour-includes {
        grid-template-columns: 1fr;
    }

    .contact-copy {
        min-height: 500px;
    }

    .contact-card {
        padding: 30px 22px;
    }

    .site-footer__grid {
        grid-template-columns: minmax(0, 1fr);
        align-items: flex-start;
        gap: 24px;
    }

    .site-footer__grid > * {
        min-width: 0;
    }

    .footer-meta {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        gap: 6px;
        overflow-wrap: anywhere;
    }

    .footer-meta span + span::before {
        display: none;
    }

    .tour-hero {
        min-height: 650px;
        padding: 60px 0 64px;
    }

    .tour-hero h1 {
        font-size: clamp(43px, 13vw, 62px);
    }

    .tour-hero__lead {
        font-size: 15px;
    }

    .gallery-hero {
        padding: 70px 0 62px;
    }

    .gallery-grid-modern {
        display: grid;
        grid-template-columns: 1fr;
    }

    .gallery-tile,
    .gallery-tile:nth-child(5n + 1),
    .gallery-tile:nth-child(5n + 2),
    .gallery-tile:nth-child(5n + 4) {
        grid-column: 1;
        min-height: 420px;
    }

    .not-found__media {
        min-height: 400px;
    }
}

@media (max-width: 430px) {
    .season-card__title {
        font-size: 25px;
    }

    .activity-card {
        min-height: 470px;
    }

    .vehicle-stage {
        min-height: 360px;
    }

    .fleet-card__media {
        min-height: 240px;
    }

    .fleet-card__media--real {
        min-height: 0;
    }

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

    .gallery-tile,
    .gallery-tile:nth-child(5n + 1),
    .gallery-tile:nth-child(5n + 2),
    .gallery-tile:nth-child(5n + 4) {
        min-height: 360px;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    .js [data-reveal]:not(.is-visible) {
        opacity: 1;
        transform: none;
    }
}

/* ========================================================================== 
   LIGHT REFRESH — 2026-08
   Keeps the current layout, but restores the airy, photo-led character of
   the previous EXTREME DRIVE website.
   ========================================================================== */

:root {
    --light-canvas: #fbfaf6;
    --light-surface: #ffffff;
    --light-tint: #f2eee3;
    --light-line: rgba(16, 33, 35, 0.13);
    --light-glass: rgba(255, 255, 255, 0.82);
    --light-shadow: 0 22px 64px rgba(20, 38, 39, 0.11);
}

body {
    background: var(--light-canvas);
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 1px 0 var(--light-line), 0 12px 34px rgba(20, 38, 39, 0.05);
    color: var(--site-ink);
}

.brand__place,
.desktop-nav > a,
.desktop-nav__dropdown > button,
.menu-toggle__label {
    color: var(--site-ink);
}

.site-footer .brand__place{
    color: white;
}

.menu-toggle__icon span {
    background: var(--site-ink);
}

.desktop-nav__menu {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(20, 38, 39, 0.14);
}

/* Homepage hero */
.home-hero {
    background:
        linear-gradient(90deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.93) 42%, rgba(251, 250, 246, 0.58) 67%, rgba(251, 250, 246, 0.12) 100%),
        linear-gradient(180deg, rgba(251, 250, 246, 0.05) 62%, var(--light-canvas) 100%),
        url('/img/block5_new.jpg') center / cover no-repeat;
    color: var(--site-ink);
}

.home-hero::before,
.home-hero::after {
    border-color: rgba(16, 33, 35, 0.1);
}

.home-hero .kicker--light,
.category-hero .kicker--light,
.hero .hero__eyebrow,
.tour-hero .kicker--light {
    color: var(--site-muted);
}

.home-hero__lead,
.category-hero__lead,
.hero__lead,
.tour-hero__lead {
    color: rgba(16, 33, 35, 0.72);
}

.home-hero .button--ghost,
.category-hero .button--ghost,
.hero .button--ghost,
.tour-hero .button--ghost {
    border-color: rgba(16, 33, 35, 0.3);
    background: rgba(255, 255, 255, 0.52);
    color: var(--site-ink);
}

.home-hero .button--ghost:hover,
.home-hero .button--ghost:focus-visible,
.category-hero .button--ghost:hover,
.category-hero .button--ghost:focus-visible,
.hero .button--ghost:hover,
.hero .button--ghost:focus-visible,
.tour-hero .button--ghost:hover,
.tour-hero .button--ghost:focus-visible {
    border-color: var(--site-ink);
    background: #fff;
}

.home-hero .hero-proof,
.category-hero .hero-proof,
.hero__facts {
    border-color: var(--light-line);
}

.home-hero .hero-proof li + li,
.category-hero .hero-proof li + li,
.hero__facts li + li {
    border-color: var(--light-line);
}

.home-hero .hero-proof strong,
.category-hero .hero-proof strong,
.hero__facts strong {
    color: var(--site-ink);
}

.home-hero .hero-proof span,
.category-hero .hero-proof span,
.hero__facts li > span {
    color: var(--site-muted);
}

/* Photo cards stay dramatic, but the photography is no longer buried. */
.season-card {
    background: rgba(255, 255, 255, 0.26);
    box-shadow: var(--light-shadow);
}

.season-card::before {
    opacity: 0.78;
}

.season-card::after {
    background: linear-gradient(to top, rgba(4, 24, 26, 0.9) 0%, rgba(4, 24, 26, 0.24) 58%, rgba(4, 24, 26, 0.02) 100%);
}

.season-card:hover::before,
.season-card:focus-visible::before {
    opacity: 0.9;
}

.activity-card::after {
    background: linear-gradient(to top, rgba(5, 26, 28, 0.9) 0%, rgba(5, 26, 28, 0.14) 64%, transparent 100%);
}

.route-card::after {
    background: linear-gradient(to top, rgba(5, 26, 28, 0.9) 0%, rgba(5, 26, 28, 0.13) 66%, transparent 100%);
}

/* Light information rails and sections */
.trust-rail {
    background: var(--light-surface);
    color: var(--site-ink);
}

.trust-rail__grid,
.trust-item + .trust-item {
    border-color: var(--light-line);
}

.trust-item span {
    color: var(--site-muted);
}

.section-pad--dark {
    background: var(--light-tint);
    color: var(--site-ink);
}

.section-pad--dark .kicker--light {
    color: var(--moss-600);
}

.section-pad--dark .section-intro--light {
    color: var(--site-muted);
}

.safety-panel {
    border: 1px solid var(--light-line);
    background: var(--light-surface);
    box-shadow: var(--light-shadow);
    color: var(--site-ink);
}

.safety-panel .kicker--light {
    color: var(--moss-600);
}

.safety-panel .section-intro--light {
    color: var(--site-muted);
}

.safety-panel__list li {
    border-color: var(--light-line);
    background: var(--light-tint);
    color: var(--site-muted);
}

.safety-panel__list strong {
    color: var(--site-ink);
}

.photo-grid__caption {
    border-color: var(--light-line);
    background:
        radial-gradient(circle at 100% 0, rgba(253, 195, 0, 0.15), transparent 42%),
        var(--light-surface);
    color: var(--site-ink);
}

.photo-grid__caption p {
    color: var(--site-muted);
}

/* Booking — one bright brand panel, one clean form panel. */
.contact-section {
    background: var(--light-tint);
}

.contact-copy {
    background: var(--brand-yellow);
    color: var(--forest-950);
}

.contact-copy .kicker--light,
.contact-copy p:not(.kicker),
.contact-socials a {
    color: rgba(7, 29, 30, 0.72);
}

.contact-phone {
    color: var(--forest-950);
}

.contact-card {
    border: 1px solid var(--light-line);
    box-shadow: var(--light-shadow);
}

.map-strip iframe {
    filter: saturate(0.9) contrast(0.98);
}

/* Category pages */
.category-hero {
    background: var(--light-canvas);
    color: var(--site-ink);
}

.category-hero::before {
    opacity: 0.46;
}

.category-hero::after {
    background:
        linear-gradient(90deg, rgba(251, 250, 246, 0.99) 0%, rgba(251, 250, 246, 0.93) 52%, rgba(251, 250, 246, 0.42) 100%),
        linear-gradient(to top, var(--light-canvas), transparent 46%);
}

.vehicle-stage {
    border-color: rgba(16, 33, 35, 0.12);
    background:
        radial-gradient(circle at 50% 62%, rgba(253, 195, 0, 0.22), transparent 37%),
        rgba(255, 255, 255, 0.72);
    box-shadow: var(--light-shadow);
}

.vehicle-stage__badge {
    border-color: rgba(16, 33, 35, 0.12);
    background: rgba(255, 255, 255, 0.84);
    color: var(--site-ink);
}

.fleet-card__media:not(.fleet-card__media--real) {
    background:
        radial-gradient(circle at 50% 66%, rgba(253, 195, 0, 0.2), transparent 36%),
        linear-gradient(145deg, #f6f4ed, #e6ebe6);
}

/* Tour pages */
.tour-hero {
    background: var(--light-canvas);
    color: var(--site-ink);
}

.tour-hero::after {
    background:
        linear-gradient(90deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.9) 52%, rgba(251, 250, 246, 0.24) 100%),
        linear-gradient(to top, var(--light-canvas), transparent 48%);
}

.tour-facts span {
    border-color: rgba(16, 33, 35, 0.16);
    background: rgba(255, 255, 255, 0.68);
    color: var(--site-ink);
}

.tour-booking {
    background: var(--brand-yellow);
    color: var(--forest-950);
}

.tour-booking__label,
.tour-booking p {
    color: rgba(7, 29, 30, 0.7);
}

.tour-nav-card {
    border-color: var(--light-line);
    background: var(--light-surface);
    color: var(--site-ink);
    box-shadow: 0 14px 36px rgba(20, 38, 39, 0.07);
}

.tour-nav-card:hover,
.tour-nav-card:focus-visible,
.tour-nav-card[aria-current='page'] {
    background: rgba(253, 195, 0, 0.14);
}

/* Gallery and utility pages */
.gallery-hero,
.not-found {
    background:
        radial-gradient(circle at 75% 0, rgba(253, 195, 0, 0.18), transparent 34%),
        var(--light-tint);
    color: var(--site-ink);
}

.gallery-hero .kicker--light,
.gallery-hero p:not(.kicker),
.not-found p {
    color: var(--site-muted);
}

/* CFMOTO model page */
.hero {
    background:
        radial-gradient(circle at 78% 28%, rgba(253, 195, 0, 0.18), transparent 30%),
        linear-gradient(145deg, #fbfaf6 0%, #f0ede4 58%, #fbfaf6 100%);
    color: var(--site-ink);
}

.hero__glow--one {
    opacity: 0.35;
}

.hero__glow--two {
    opacity: 0.24;
}

.hero .breadcrumbs,
.hero .breadcrumbs a {
    color: var(--site-muted);
}

.hero__photo {
    border-color: var(--light-line);
    background: #e9eee9;
    box-shadow: var(--light-shadow);
}

.hero__photo::after {
    background: linear-gradient(to top, rgba(7, 32, 35, 0.2), transparent 42%);
}

.hero__availability {
    border-color: var(--light-line);
    background: rgba(255, 255, 255, 0.86);
    color: var(--site-ink);
}

.choice-card--premium,
.choice-card--accessible {
    border: 1px solid var(--light-line);
    background: var(--light-surface);
    box-shadow: 0 18px 48px rgba(20, 38, 39, 0.08);
    color: var(--site-ink);
}

.choice-card--premium > p:not(.choice-card__price),
.choice-card--accessible > p:not(.choice-card__price) {
    color: var(--site-muted);
}

.choice-card--premium .choice-card__price,
.choice-card--accessible .choice-card__price {
    color: var(--site-ink);
}

.choice-card--premium .choice-card__label {
    border-color: var(--brand-yellow);
    background: var(--brand-yellow);
    color: var(--forest-950);
}

@media (max-width: 920px) {
    .trust-item:nth-child(n + 3) {
        border-color: var(--light-line);
    }
}

@media (max-width: 720px) {
    .home-hero {
        background:
            linear-gradient(180deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.92) 56%, rgba(251, 250, 246, 0.54) 100%),
            url('/img/block5_new.jpg') 62% center / cover no-repeat;
    }

    .category-hero::after,
    .tour-hero::after {
        background: linear-gradient(180deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.9) 62%, rgba(251, 250, 246, 0.5) 100%);
    }

    .home-hero .hero-proof li + li,
    .category-hero .hero-proof li + li {
        border-color: var(--light-line);
    }

    .trust-item,
    .trust-item:first-child,
    .trust-item:nth-child(3) {
        border-color: var(--light-line);
    }
}

/* ========================================================================== 
   RESPONSIVE AND VISUAL POLISH — 2026-08-11
   ========================================================================== */

.display-title,
.section-title,
.fleet-card h3 {
    text-wrap: balance;
}

.home-hero__lead,
.category-hero__lead,
.section-intro,
.fleet-card__description {
    text-wrap: pretty;
}

/* Keep the complete desktop header at laptop widths. */
@media (min-width: 921px) and (max-width: 1140px) {
    .header-phone {
        display: inline-flex;
    }
}

/* Numbered editorial cards add hierarchy without making the light block heavy. */
.safety-panel__list {
    counter-reset: safety-card;
    gap: 16px;
}

.safety-panel__list li {
    position: relative;
    min-height: 132px;
    padding: 24px 22px 22px 70px;
    border: 0;
    border-radius: 16px;
    background: var(--light-tint);
    font-size: 13px;
    line-height: 1.55;
    counter-increment: safety-card;
}

.safety-panel__list li::before {
    content: '0' counter(safety-card);
    position: absolute;
    top: 22px;
    left: 22px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-yellow);
    color: var(--forest-950);
    font-size: 10px;
    font-weight: 850;
}

.safety-panel__list strong {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Both quad-bike cards now use the same showroom composition. */
.fleet-grid--quad {
    align-items: stretch;
}

.fleet-grid__comfort-column {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 20px;
}

.fleet-grid__comfort-column .fleet-card {
    flex: 0 0 auto;
}

.fleet-grid__comfort-column .price-terms--quad {
    flex: 1 1 auto;
    margin-top: 0;
}

.price-terms--quad .price-terms__item {
    padding: 16px;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
}

.price-terms--quad .price-terms__mark {
    width: 36px;
    height: 36px;
}

.fleet-grid--quad .fleet-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

.fleet-grid--quad .fleet-card__body {
    display: flex;
    flex-direction: column;
}

.fleet-grid--quad .fleet-card__tier {
    align-self: flex-start;
}

.fleet-grid--quad .fleet-card__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
    background: #eef0e9;
}

.fleet-grid--quad .fleet-card__vehicle {
    position: absolute;
    inset: 7%;
    width: 86%;
    height: 86%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    filter: drop-shadow(0 16px 12px rgba(7, 29, 30, 0.22));
}

.fleet-grid--quad .fleet-card--featured {
    position: relative;
    border: 2px solid var(--brand-yellow);
    background: #fffdf5;
    box-shadow: 0 28px 74px rgba(7, 29, 30, 0.16), 0 0 0 6px rgba(253, 195, 0, 0.12);
}

.fleet-grid--quad .fleet-card--premium {
    border-color: rgba(7, 29, 30, 0.28);
    box-shadow: 0 24px 64px rgba(7, 29, 30, 0.12);
}

.fleet-grid--quad .fleet-card--premium .fleet-card__flag,
.fleet-grid--quad .fleet-card--premium .fleet-card__tier {
    border-color: var(--forest-950);
    background: var(--forest-950);
    color: #fff;
}

.fleet-grid--quad .fleet-card--premium .fleet-card__model {
    color: var(--forest-800);
    font-weight: 800;
}

.fleet-grid--quad .fleet-card__media::after {
    right: 18%;
    bottom: 8%;
    left: 18%;
    height: 20px;
    background: rgba(7, 29, 30, 0.26);
    filter: blur(10px);
}

.fleet-grid--quad .fleet-card--featured .fleet-card__tier {
    border-color: var(--brand-yellow);
    background: var(--brand-yellow);
    color: var(--forest-950);
}

.fleet-card__highlights {
    display: grid;
    margin: 26px 0 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    list-style: none;
    font-variant-numeric: tabular-nums;
}

.fleet-card__highlights li {
    display: grid;
    min-height: 66px;
    padding: 11px 8px;
    place-content: center;
    border: 1px solid rgba(16, 33, 35, 0.11);
    border-radius: 12px;
    background: #fff;
    text-align: center;
}

.fleet-card__highlights strong,
.fleet-card__highlights span {
    display: block;
}

.fleet-card__highlights strong {
    color: var(--site-ink);
    font-size: 14px;
    font-weight: 850;
}

.fleet-card__highlights span {
    margin-top: 3px;
    color: var(--site-muted);
    font-size: 9px;
    font-weight: 650;
    line-height: 1.3;
}

.fleet-grid--quad .price-list strong {
    font-variant-numeric: tabular-nums;
}

.fleet-grid--quad .fleet-card__actions {
    margin-top: 28px;
    padding-top: 0;
}

@media (max-width: 720px) {
    .fleet-grid--quad .fleet-card__media {
        aspect-ratio: 4 / 3;
    }

    .fleet-grid--quad .fleet-card__vehicle--cfmoto {
        inset: 2.5%;
        width: 95%;
        height: 95%;
    }

    .phone-input input {
        font-size: 16px;
    }

    .safety-panel__list li {
        min-height: 0;
    }
}

@media (max-width: 920px) {
    .fleet-grid--quad {
        align-items: start;
    }

    .fleet-grid__comfort-column {
        width: 100%;
    }

    .fleet-grid__comfort-column .price-terms--quad {
        flex: none;
    }
}

/* Header overlays the opening scene instead of adding a separate row to it. */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
}

@media (min-width: 921px) {
    .home-hero,
    .category-hero,
    .tour-hero,
    .hero,
    .not-found {
        min-height: 100svh;
    }
}

@media (max-width: 920px) {
    .home-hero,
    .category-hero,
    .tour-hero,
    .hero,
    .gallery-hero,
    .not-found {
        padding-top: 100px;
    }
}

/* Social links in the opening screen */
.hero-socials {
    display: flex;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-socials__label {
    margin-right: 4px;
    color: currentColor;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    opacity: 0.58;
    text-transform: uppercase;
}

.hero-socials__link {
    display: inline-flex;
    min-height: 38px;
    padding: 0 13px;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(16, 33, 35, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(16, 33, 35, 0.06);
    color: var(--forest-950);
    font-size: 11px;
    font-weight: 750;
    text-decoration: none;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.hero-socials__link .ui-icon {
    width: 16px;
    height: 16px;
}

.hero-socials__link:hover,
.hero-socials__link:focus-visible {
    border-color: rgba(253, 195, 0, 0.75);
    background: #fff;
    transform: translateY(-1px);
}

/* Round brand mark and social links in every footer */
.site-footer__brand {
    align-items: center;
    flex-direction: row;
    gap: 14px;
}

.site-footer__logo {
    display: block;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    border: 2px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    object-fit: cover;
}

.site-footer__brand-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.site-footer__links {
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    row-gap: 12px;
}

.site-footer__socials {
    display: inline-flex;
    margin-left: 2px;
    gap: 8px;
}

.site-footer__links .site-footer__social {
    display: inline-flex;
    min-height: 38px;
    padding: 0 12px;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.86);
    font-size: 11px;
}

.site-footer__social .ui-icon {
    width: 15px;
    height: 15px;
}

.site-footer__links .site-footer__social:hover,
.site-footer__links .site-footer__social:focus-visible {
    border-color: rgba(253, 195, 0, 0.65);
    background: rgba(253, 195, 0, 0.1);
    color: var(--brand-yellow);
}

/* 404: a stable two-vehicle composition instead of viewport-dependent offsets */
.not-found {
    min-height: 100svh;
    padding: clamp(122px, 13vh, 152px) 0 clamp(52px, 7vh, 82px);
    overflow: hidden;
    background: var(--light-tint);
    color: var(--site-ink);
}

.not-found__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
    gap: clamp(36px, 6vw, 88px);
}

.not-found__content {
    z-index: 2;
    max-width: 590px;
}

.not-found__code {
    color: var(--brand-yellow);
    font-size: clamp(112px, 14vw, 210px);
    font-weight: 900;
    line-height: 0.76;
    letter-spacing: -0.085em;
}

.not-found h1 {
    max-width: 10ch;
    margin: 36px 0 0;
    font-size: clamp(42px, 4.7vw, 68px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.not-found p {
    max-width: 50ch;
    margin: 22px 0 0;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.7;
    text-wrap: pretty;
}

.not-found .hero-actions {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 12px;
}

.not-found__media {
    position: relative;
    min-height: 0;
    aspect-ratio: 1.08 / 1;
    isolation: isolate;
}

.not-found__media .not-found__vehicle {
    position: absolute;
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 24px rgba(16, 33, 35, 0.18));
}

.not-found__media .not-found__vehicle--quad {
    z-index: 1;
    top: 6%;
    left: 0;
    width: 76%;
}

.not-found__media img.not-found__vehicle--snow {
    z-index: 2;
    right: -1%;
    bottom: 4%;
    width: 64%;
}

.not-found__ground {
    position: absolute;
    right: 2%;
    bottom: 5%;
    left: 7%;
    z-index: 0;
    height: 15%;
    border-radius: 50%;
    background: rgba(16, 33, 35, 0.1);
    filter: blur(18px);
}

/* Responsive Google reCAPTCHA */
.contact-form-modern .g-recaptcha {
    width: 100%;
    height: var(--captcha-height, 78px);
    min-height: 0;
    overflow: visible;
}

.contact-form-modern .g-recaptcha > div {
    transform: scale(var(--captcha-scale, 1));
    transform-origin: 0 0;
}

.captcha-status {
    min-height: 16px;
    margin: -4px 0 0;
    color: var(--site-muted);
    font-size: 10px;
    line-height: 1.5;
}

.captcha-status.is-error {
    color: #9b3b31;
    font-weight: 650;
}

.contact-form-modern .button[disabled] {
    cursor: wait;
    opacity: 0.68;
}

.bot-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 1120px) {
    .site-footer__links {
        justify-content: flex-start;
    }

    .not-found__grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1fr);
        gap: 28px;
    }

    .not-found__code {
        font-size: clamp(112px, 15vw, 150px);
    }
}

@media (max-width: 920px) {
    .not-found {
        min-height: 0;
        padding-top: 118px;
    }

    .not-found__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }

    .not-found__content {
        max-width: 640px;
    }

    .not-found__media {
        width: min(620px, 100%);
        margin: 8px auto 0;
        aspect-ratio: 1.35 / 1;
    }

    .not-found__media .not-found__vehicle--quad {
        top: 2%;
        left: 3%;
        width: 68%;
    }

    .not-found__media img.not-found__vehicle--snow {
        right: 1%;
        bottom: 0;
        width: 55%;
    }
}

@media (max-width: 560px) {
    .hero-socials__label {
        width: 100%;
        margin: 0 0 2px;
    }

    .site-footer__logo {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }

    .site-footer__socials {
        width: 100%;
        margin: 2px 0 0;
        flex-wrap: wrap;
    }

    .not-found__code {
        font-size: clamp(88px, 31vw, 112px);
    }

    .not-found h1 {
        margin-top: 28px;
        font-size: clamp(36px, 12vw, 46px);
    }

    .not-found .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .not-found .hero-actions .button {
        width: 100%;
    }

    .not-found .hero-actions .button--primary {
        grid-column: 1 / -1;
    }

    .not-found__media {
        aspect-ratio: 1.18 / 1;
    }

    .not-found__media .not-found__vehicle--quad {
        width: 72%;
    }

    .not-found__media img.not-found__vehicle--snow {
        width: 59%;
    }
}

@media (max-width: 380px) {
    .not-found .hero-actions {
        grid-template-columns: 1fr;
    }

    .not-found .hero-actions .button--primary {
        grid-column: auto;
    }
}

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