: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: absolute;
    inset: 100% 0 auto;
    height: calc(100svh - 82px);
    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%;
    max-width: none;
    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 img.fleet-card__cfmoto {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: 50% 32%;
    filter: none;
}

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

.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);
}

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

.contact-form-modern .g-recaptcha {
    max-width: 100%;
    overflow: hidden;
}

.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 {
        height: calc(100svh - 76px);
    }

    .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;
    }
}

@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;
    }

    .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;
    }

    .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;
    }
}
