:root {
--color-white: #FFFFFF;
--color-white-20: rgba(255, 255, 255, 0.2);
--color-white-50: rgba(255, 255, 255, 0.5); --winter-primary: #1a5fb4;
--winter-panel-bg: rgba(26, 95, 180, 0.8);
--winter-page-bg: #D9EFFF; --summer-primary: #4a9b4a;
--summer-panel-bg: rgba(74, 155, 74, 0.8);
--summer-page-bg: #FFFFFF; --font-family: 'Montserrat', sans-serif;
} .dombay-homepage {
margin: 0;
padding: 0;
background-color: var(--winter-page-bg);
transition: background-color 0.6s ease;
}
.dombay-homepage.season-summer {
background-color: var(--summer-page-bg);
}
.dombay-home {
overflow-x: hidden;
}
.dombay-homepage .site-content,
.dombay-homepage #content,
.dombay-homepage .ast-container {
padding: 0;
max-width: 100%;
} .dombay-header {
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 100;
padding: 20px 60px;
border-bottom: 1px solid var(--color-white-20);
}
.dombay-header--transparent {
background: transparent;
}
.header-container {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1920px;
margin: 0 auto;
} .header-left {
display: flex;
align-items: center;
gap: 50px;
} .burger-menu {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 6px;  width: 85px;
height: 46px;
background: transparent;
border: 1px solid var(--color-white);
border-radius: 50px;
cursor: pointer;
color: var(--color-white);
transition: background-color 0.3s ease;
box-sizing: border-box;
}
.burger-menu:hover {
background: var(--color-white-20);
}
.burger-line {
display: block;
width: 37px;
height: 2px;
} .header-nav {
display: flex;
align-items: center;
gap: 40px;
}
.nav-link {
font-family: var(--font-family);
font-size: 16px;
font-weight: 400;
color: var(--color-white);
text-decoration: none;
transition: opacity 0.3s ease;
}
.nav-link:hover {
opacity: 0.8;
color: var(--color-white);
} .header-center {
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.header-logo {
display: block;
}
.header-logo svg {
display: block;
height: 49px;
width: auto;
} .header-right {
display: flex;
align-items: center;
}
.season-toggle {
display: flex;
align-items: center;
gap: 8px;
}
.season-btn {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
background: transparent !important;
background-color: transparent !important;
border: 1px solid transparent;
border-radius: 50px;
cursor: pointer;
font-family: var(--font-family);
font-size: 16px;
font-weight: 400;
color: var(--color-white);
transition: all 0.3s ease;
box-shadow: none !important;
}
.season-btn:hover {
border-color: var(--color-white-50);
background: transparent !important;
}
.season-btn:focus,
.season-btn:active {
background: transparent !important;
outline: none;
}
.season-btn.active {
border-color: var(--color-white);
background: transparent !important;
}
.season-icon {
width: 20px;
height: 20px;
} .hero-section {
position: relative;
height: 1100px;
display: flex;
flex-direction: column;
overflow: hidden;
} .hero-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
}
.hero-bg-winter,
.hero-bg-summer {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-size: cover;
background-position: center bottom;
background-repeat: no-repeat;
transition: opacity 0.6s ease;
}
.hero-bg-winter {
background-image: url(//dombay-resort.ru/wp-content/uploads/2026/01/Zimnij-fon-1.jpg);
opacity: 1;
}
.hero-bg-summer {
background-image: url(//dombay-resort.ru/wp-content/uploads/2026/01/Letnij-fon-1.jpg);
opacity: 0;
} .season-summer .hero-bg-winter {
opacity: 0;
}
.season-summer .hero-bg-summer {
opacity: 1;
} .hero-content {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding-top: 170px; text-align: center;
} .hero-title {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
margin: 0;
color: var(--color-white);
font-family: var(--font-family);
text-transform: uppercase;
}
.hero-title-top {
font-size: 128px;
font-weight: 400;
letter-spacing: normal;
line-height: 1;
}
.hero-title-bottom {
font-size: 135px;
font-weight: 800;
letter-spacing: 0.05em;
margin-right: -0.05em;
line-height: 135px;
margin-top: -10px;
}
.hero-subtitle {
font-family: var(--font-family);
font-size: 40px;
font-weight: 400;
color: var(--color-white);
margin-top: 10px;
align-self: flex-end;
text-transform: none;
} .weather-widget {
position: absolute;
top: 180px;
right: 100px;
display: flex;
align-items: center;
gap: 15px;
}
.weather-icon {
width: 80px;
height: auto;
}
.weather-info {
display: flex;
flex-direction: column;
align-items: flex-start;
color: var(--color-white);
}
.weather-temp {
font-family: var(--font-family);
font-size: 32px;
font-weight: 500;
}
.weather-desc {
font-family: var(--font-family);
font-size: 14px;
font-weight: 400;
opacity: 0.8;
} .quick-links {
position: relative;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
gap: 30px;
padding: 20px 60px;
background: var(--winter-panel-bg);
border-radius: 50px;
margin: 160px auto 40px;
backdrop-filter: blur(10px);
transition: background-color 0.6s ease;
}
.season-summer .quick-links {
background: var(--summer-panel-bg);
}
.quick-link {
display: flex;
align-items: center;
gap: 10px;
font-family: var(--font-family);
font-size: 16px;
font-weight: 400;
color: var(--color-white);
text-decoration: none;
transition: opacity 0.3s ease;
}
.quick-link:hover {
opacity: 0.8;
color: var(--color-white);
}
.quick-link-icon {
width: 24px;
height: 24px;
}
.quick-link-divider {
display: flex;
align-items: center;
}
.quick-link-divider img {
height: 16px;
width: auto;
opacity: 0.5;
} .about-section {
position: relative;
z-index: 10;
margin-top: -200px; padding-bottom: 80px;
overflow: visible;
}
.about-container {
display: grid;
grid-template-columns: auto 1fr;
gap: 0;
align-items: center;
max-width: 1448px;
margin: 0 auto;
padding: 0 24px;
} .about-character {
position: relative;
flex-shrink: 0;
}
.about-character .character-winter,
.about-character .character-summer {
max-width: 550px;
height: auto;
display: block;
transition: opacity 0.6s ease;
}
.about-character .character-winter {
opacity: 1;
}
.about-character .character-summer {
position: absolute;
bottom: 0;
left: -50px;
opacity: 0;
max-width: 550px;
}
.season-summer .about-character .character-winter {
opacity: 0;
}
.season-summer .about-character .character-summer {
opacity: 1;
} .about-title {
font-family: var(--font-family);
font-size: 32px;
font-weight: 700;
color: #004E92;
margin: 0 0 20px 0;
text-transform: uppercase;
transition: color 0.6s ease;
}
.season-summer .about-title {
color: var(--summer-primary);
}
.about-text {
font-family: var(--font-family);
font-size: 16px;
font-weight: 400;
line-height: 1.6;
color: #004E92;
margin: 0 0 30px 0;
}
.season-summer .about-text {
color: #555;
}
.about-btn {
display: inline-flex;
align-items: center;
position: relative;
gap: 20px;
padding: 15px 30px 15px 80px;
border-radius: 50px;
background: rgba(255, 255, 255, 0.4);
border: none;
font-family: var(--font-family);
font-size: 16px;
font-weight: 500;
color: #004E92;
text-decoration: none;
overflow: hidden;
z-index: 1;
}
.about-btn span {
transition: transform 0.4s ease;
position: relative;
z-index: 1;
}
.about-btn:hover span {
transform: translateX(-50px);
}
.about-btn-icon {
position: absolute;
width: 70px;
height: 70px;
left: -5px;
transition: all 0.4s ease;
z-index: 1;
}
.about-btn-icon circle {
fill: var(--color-white);
}
.about-btn-icon path {
fill: #004E92;
stroke: var(--color-white);
}
.about-btn:hover .about-btn-icon {
left: calc(100% - 65px);
transform: rotate(45deg);
} .season-summer .about-btn {
background: var(--color-white);
border: 1px solid #386C00;
color: #386C00;
}
.season-summer .about-btn-icon circle {
fill: #E5ECDE;
}
.season-summer .about-btn-icon path {
fill: #386C00;
stroke: #E5ECDE;
} @media (max-width: 1200px) {
.hero-title-top {
font-size: 60px;
}
.hero-title-bottom {
font-size: 90px;
}
.weather-widget {
right: 40px;
}
.about-character .character-winter,
.about-character .character-summer {
max-width: 400px;
}
.about-card {
padding: 40px;
max-width: 480px;
}
}
@media (max-width: 992px) {
.dombay-header {
padding: 15px 30px;
}
.header-nav {
display: none;
}
.hero-title-top {
font-size: 48px;
}
.hero-title-bottom {
font-size: 72px;
}
.quick-links {
flex-wrap: wrap;
padding: 15px 30px;
gap: 15px;
}
.quick-link-divider {
display: none;
}
.about-section {
margin-top: -150px;
}
.about-container {
flex-direction: column;
align-items: center;
padding: 0 30px;
}
.about-character .character-winter,
.about-character .character-summer {
max-width: 350px;
}
.about-card {
max-width: 100%;
margin-top: -50px;
}
} .header-home-mobile-actions {
display: none;
} .dombay-homepage .tg-popup { display: none; }
.dombay-homepage .tg-popup.active { display: block; }
.dombay-homepage .tg-popup__overlay { position: fixed; inset: 0; z-index: 9998; }
.dombay-homepage .tg-popup__card {
position: absolute; top: 100%; right: 0; z-index: 9999;
margin-top: 12px; width: 340px; background: #fff;
border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.18);
padding: 24px 20px 16px; animation: tgFadeIn 0.2s ease;
}
@keyframes tgFadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.dombay-homepage .tg-popup__close,
.dombay-homepage .tg-popup__close:hover,
.dombay-homepage .tg-popup__close:focus {
position: absolute; top: 12px; right: 16px;
background: none !important; border: none !important; box-shadow: none !important;
font-size: 24px; color: #999; cursor: pointer; line-height: 1;
padding: 4px 8px !important; min-width: auto !important;
}
.dombay-homepage .tg-popup__close:hover { color: #333 !important; }
.dombay-homepage .tg-popup__title {
font-family: 'Montserrat', sans-serif;
font-size: 16px; font-weight: 700; color: #1a1a2e; margin: 0 0 16px;
}
.dombay-homepage .tg-popup__link {
display: flex; align-items: center; gap: 14px;
padding: 14px 12px; border-radius: 12px;
text-decoration: none; color: #1a1a2e; transition: background 0.2s;
}
.dombay-homepage .tg-popup__link:hover { background: #f0f4f8; }
.dombay-homepage .tg-popup__link + .tg-popup__link { margin-top: 4px; }
.dombay-homepage .tg-popup__icon {
width: 48px; height: 48px; border-radius: 50%;
display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dombay-homepage .tg-popup__icon--chat { background: #0088cc; }
.dombay-homepage .tg-popup__icon--admin { background: #066acd; }
.dombay-homepage .tg-popup__info { flex: 1; min-width: 0; }
.dombay-homepage .tg-popup__name { display: block; font-size: 14px; font-weight: 600; color: #1a1a2e; line-height: 1.3; }
.dombay-homepage .tg-popup__desc { display: block; font-size: 12px; color: #777; margin-top: 2px; line-height: 1.4; }
.dombay-homepage .tg-popup__arrow { flex-shrink: 0; color: #bbb; }
.dombay-homepage .tg-popup__link:hover .tg-popup__arrow { color: #066acd; } .mobile-season-toggle {
display: none;
}
@media (max-width: 768px) { .dombay-header {
padding: 12px 16px;
}
.header-container {
justify-content: flex-start;
} .header-nav,
.header-right {
display: none;
} .header-center {
position: static;
transform: none;
order: -1;
}
.header-logo svg {
height: 30px;
} .header-home-mobile-actions {
display: flex;
align-items: center;
margin-left: auto;
color: white;
}
.header-home-mobile-actions .header-actions {
display: flex;
align-items: center;
gap: 10px;
position: relative;
}
.header-home-mobile-actions .header-action-btn {
display: flex;
align-items: center;
justify-content: center;
color: white;
background: none;
border: none;
padding: 0;
cursor: pointer;
}
.header-home-mobile-actions .header-action-btn svg {
width: 24px;
height: 24px;
} .header-left {
display: flex;
gap: 0;
order: 1;
margin-left: 12px;
}
.dombay-header--transparent .burger-menu {
width: 52px;
height: 34px;
gap: 0;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='8'%3E%3Cline x1='0' y1='1' x2='22' y2='1' stroke='white' stroke-width='2'/%3E%3Cline x1='0' y1='7' x2='22' y2='7' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: center;
}
.dombay-header--transparent .burger-menu .burger-line {
display: none;
} .dombay-header--transparent {
position: fixed;
transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.dombay-header--transparent.header-scrolled {
background: #fff;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
padding: 8px 16px;
}
.dombay-header--transparent.header-scrolled .header-logo svg path {
fill: #066acd;
transition: fill 0.3s ease;
}
.dombay-header--transparent.header-scrolled .header-home-mobile-actions {
color: #066acd;
}
.dombay-header--transparent.header-scrolled .header-home-mobile-actions .header-action-btn {
color: #066acd;
}
.dombay-header--transparent.header-scrolled .burger-menu {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='8'%3E%3Cline x1='0' y1='1' x2='22' y2='1' stroke='%23066acd' stroke-width='2'/%3E%3Cline x1='0' y1='7' x2='22' y2='7' stroke='%23066acd' stroke-width='2'/%3E%3C/svg%3E") !important;
border: 1px solid #066acd !important;
}
.dombay-header--transparent.header-scrolled .header-logo svg {
height: 24px;
} .dombay-homepage .tg-popup__card {
position: fixed;
top: 60px;
left: 16px;
right: 16px;
width: auto;
} .hero-section {
height: auto;
min-height: 600px;
padding-bottom: 0;
position: relative;
}
.hero-content {
padding-top: 100px;
}
.hero-title-top {
font-size: 40px;
font-weight: 400;
letter-spacing: 0.1em;
}
.hero-title-bottom {
font-size: 56px;
font-weight: 800;
line-height: 1;
margin-top: 0;
}
.hero-subtitle {
font-size: 18px;
align-self: center;
margin-top: 5px;
} .weather-widget {
position: relative;
top: auto;
bottom: auto;
left: auto;
right: auto;
flex-direction: row;
margin-top: 30px;
}
.weather-icon {
width: 60px;
}
.weather-temp {
font-size: 20px;
}
.weather-desc {
font-size: 12px;
} .mobile-season-toggle {
display: flex;
position: absolute;
bottom: -180px;
left: 50%;
transform: translateX(-50%);
background: rgba(255, 255, 255, 0.3);
border-radius: 50px;
padding: 6px;
backdrop-filter: blur(10px);
gap: 0;
z-index: 20;
}
.mobile-season-toggle .season-btn {
width: 60px;
height: 60px;
padding: 0;
border: none;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease;
}
.mobile-season-toggle .season-btn .season-icon {
width: 28px;
height: 28px;
transition: filter 0.3s ease;
}
.mobile-season-toggle .season-btn.active {
background: #1b5fb4 !important;
}
.mobile-season-toggle .season-btn:not(.active) .season-icon {
filter: brightness(0) invert(1);
opacity: 0.7;
}
.mobile-season-toggle .season-btn.active .season-icon {
filter: none;
} .season-summer .mobile-season-toggle .season-btn--summer.active {
background: #8BC34A !important;
} .quick-links {
display: none;
} .about-section {
margin-top: -50px;
padding: 0 20px 40px;
pointer-events: none;
}
.about-container {
display: flex;
flex-direction: column;
align-items: center;
padding: 0;
gap: 0;
}
.about-character {
order: 1;
}
.about-character .character-winter,
.about-character .character-summer {
max-width: 300px;
}
.about-character .character-summer {
left: 0;
max-width: 300px;
}
.about-card {
display: none;
}
} .services-section {
background: #D8EFFF !important;
padding: 80px 0 120px;
transition: background-color 0.6s ease;
}
body.season-winter .services-section,
.season-winter .services-section {
background: #D8EFFF !important;
}
body.season-summer .services-section,
.season-summer .services-section {
background: #FFFFFF !important;
}
.services-container {
max-width: 1448px;
margin: 0 auto;
padding: 0 24px;
}
.services-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 40px;
}
.services-title {
font-family: 'Montserrat', sans-serif;
font-size: 36px;
font-weight: 700;
color: #1B5FB4;
margin: 0;
transition: color 0.6s ease;
}
.services-subtitle {
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 500;
color: #4b5563;
margin: 12px 0 0;
max-width: 700px;
line-height: 1.6;
}
.season-summer .services-title {
color: #4a9b4a;
}
.season-summer .services-subtitle {
color: #6b7280;
}
.services-nav {
display: flex;
gap: 10px;
}
.services-nav-btn {
width: 50px;
height: 60px;
flex-shrink: 0;
aspect-ratio: 1;
border-radius: 50%;
border: 2px solid #1B5FB4;
background: transparent;
color: #1B5FB4;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
box-sizing: border-box;
}
.services-nav-btn svg {
width: 24px;
height: 24px;
flex-shrink: 0;
}
.services-nav-btn:hover {
background: #1B5FB4;
color: #ffffff;
}
.services-nav-btn:disabled {
opacity: 0.3;
cursor: not-allowed;
}
.services-nav-btn:disabled:hover {
background: transparent;
color: #1B5FB4;
} .season-summer .services-nav-btn {
border-color: #4a9b4a;
color: #4a9b4a;
}
.season-summer .services-nav-btn:hover {
background: #4a9b4a;
color: #ffffff;
}
.season-summer .services-nav-btn:disabled:hover {
background: transparent;
color: #4a9b4a;
} .services-grid-wrapper {
overflow: hidden;
}
.services-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(2, 280px);
gap: 20px;
} .service-card {
position: relative;
border-radius: 20px;
overflow: hidden;
text-decoration: none;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 20px;
transition: transform 0.3s ease;
}
.service-card:hover {
transform: scale(1.02);
}
.service-card__image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #87CEEB 0%, #5BA3D9 100%);
background-size: cover;
background-position: center;
z-index: 0;
}
.service-card__title {
position: relative;
z-index: 1;
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 700;
color: #ffffff;
text-transform: uppercase;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.service-card__arrow {
position: absolute;
top: 20px;
right: 20px;
z-index: 1;
color: rgba(255, 255, 255, 0.9);
}
.service-card__arrow svg {
width: 50px;
height: 50px;
display: block;
} .service-card--small {
grid-column: span 1;
grid-row: span 1;
}
.service-card--tall {
grid-column: span 1;
grid-row: span 2;
}
.service-card--wide {
grid-column: span 2;
grid-row: span 1;
} .services-swiper-mobile {
display: none;
} @media (max-width: 768px) {
.services-section {
padding: 40px 0;
}
.services-container {
padding: 0 20px;
}
.services-header {
margin-bottom: 25px;
}
.services-title {
font-size: 26px;
}
.services-subtitle {
font-size: 14px;
margin-top: 6px;
} .services-nav {
display: none;
} .services-swiper-desktop {
display: none;
} .services-swiper-mobile {
display: block;
overflow: visible;
}
.services-slider-wrapper {
margin-left: -20px;
margin-right: -20px;
padding-left: 20px;
padding-right: 10px;
}
.services-swiper-mobile .swiper-slide {
width: 280px;
} .service-card-mobile {
display: block;
position: relative;
border-radius: 20px;
overflow: hidden;
text-decoration: none;
height: 380px;
}
.service-card-mobile__image {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #87CEEB 0%, #5BA3D9 100%);
background-size: cover;
background-position: center;
}
.service-card-mobile__title {
position: absolute;
bottom: 20px;
left: 20px;
right: 20px;
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 700;
color: #ffffff;
text-transform: uppercase;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
}
@media (max-width: 1024px) and (min-width: 769px) {
.services-grid {
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 220px);
}
.service-card--tall {
grid-row: span 2;
}
.service-card--wide {
grid-column: span 2;
}
} .cableways-section {
position: relative;
background-image: url(//dombay-resort.ru/wp-content/uploads/2026/01/fon-mini-gor.jpg);
background-size: cover;
background-position: center top;
background-repeat: no-repeat;
transition: background-image 0.6s ease;
} .season-summer .cableways-section {
background-image: url(//dombay-resort.ru/wp-content/uploads/2026/01/fon-mini-gor-summer.jpg);
} .cableways-content {
padding: 80px 24px;
max-width: 1448px;
margin: 0 auto;
} .cableways-header {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
margin-bottom: 60px;
width: 100%;
}
.cableways-subtitle {
font-family: var(--font-family);
font-size: 40px;
font-weight: 600;
color: #FFFFFF;
text-transform: uppercase;
letter-spacing: 0.05em;
margin: 0 0 10px 0;
line-height: 1.3;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.cableways-stat {
font-family: var(--font-family);
font-size: 220px;
font-weight: 700;
color: #FFFFFF;
line-height: 1;
text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
margin-bottom: 0;
}
.cableways-lines {
height: 80px;
width: auto;
margin: 60px 0;
}
.cableways-map-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 18px 50px;
background: rgba(255, 255, 255, 0.25);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 50px;
font-family: var(--font-family);
font-size: 18px;
font-weight: 600;
color: #FFFFFF;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 0.05em;
transition: all 0.3s ease;
}
.cableways-map-btn:hover {
background: rgba(255, 255, 255, 0.4);
color: #FFFFFF;
transform: translateY(-2px);
}
.cableways-map-icon {
width: 24px;
height: 24px;
} .cableways-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 1400px;
margin: 0 auto;
} .cableway-card {
border-radius: 20px;
padding: 30px 25px;
padding-top: 80px; display: flex;
flex-direction: column;
align-items: center;
text-align: center;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
overflow: visible; margin-top: 80px; position: relative;
} .cableway-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100%;
border-radius: 20px;
background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0) 60%);
pointer-events: none;
z-index: 0;
}
.cableway-card__image {
height: 160px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
margin-top: -130px; position: relative;
z-index: 1;
}
.cableway-card__image img {
max-height: 180px;
width: auto;
object-fit: contain;
filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
} .cableway-card--chairlift .cableway-card__image img {
max-height: 180px !important;
} .cableway-card--gondola .cableway-card__image img {
max-height: 250px !important;
margin-top: -60px;
}
.cableway-card__title {
font-family: var(--font-family);
font-size: 18px;
font-weight: 700;
color: #1B3A5F;
text-transform: uppercase;
margin: 0 0 15px 0;
margin-top: 24px;
line-height: 1.3;
position: relative;
z-index: 1;
}
.cableway-card__levels {
display: inline-block;
padding: 8px 20px;
background: #004E92;
border-radius: 50px;
font-family: var(--font-family);
font-size: 14px;
font-weight: 500;
color: var(--color-white);
margin-bottom: 15px;
position: relative;
z-index: 1;
} .season-summer .cableway-card__levels {
background: var(--summer-primary);
}
.cableway-card__time {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 10px;
position: relative;
z-index: 1;
}
.cableway-card__time-icon {
width: 18px;
height: 18px;
opacity: 0.6;
}
.cableway-card__time span {
font-family: var(--font-family);
font-size: 15px;
color: #555;
}
.cableway-card__height {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 20px;
position: relative;
z-index: 1;
}
.cableway-card__height-icon {
width: 14px;
height: 19px;
color: #004E92;
}
.season-summer .cableway-card__height-icon {
color: var(--summer-primary);
}
.cableway-card__height span {
font-family: var(--font-family);
font-size: 15px;
color: #1B5FB4;
}
.cableway-card__height strong {
color: #1B5FB4;
font-weight: 600;
}
.cableway-card__btn {
display: inline-flex;
align-items: center;
position: relative;
gap: 20px;
padding: 15px 30px 15px 80px;
border-radius: 50px;
background: rgba(255, 255, 255, 0.55);
border: none;
font-family: var(--font-family);
font-size: 16px;
font-weight: 500;
color: #004E92;
text-decoration: none;
overflow: hidden;
z-index: 1;
}
.cableway-card__btn span {
transition: transform 0.4s ease;
position: relative;
z-index: 1;
}
.cableway-card__btn:hover span {
transform: translateX(-50px);
}
.cableway-card__btn-icon {
position: absolute;
width: 70px;
height: 70px;
left: -5px;
transition: all 0.4s ease;
z-index: 1;
}
.cableway-card__btn-icon circle {
fill: #ffffff;
}
.cableway-card__btn-icon path {
fill: #004E92;
stroke: #ffffff;
}
.cableway-card__btn:hover .cableway-card__btn-icon {
left: calc(100% - 65px);
transform: rotate(45deg);
} .season-summer .cableway-card {
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.season-summer .cableway-card::before {
background: none;
}
.season-summer .cableway-card__height span,
.season-summer .cableway-card__height strong {
color: var(--summer-primary);
}
.season-summer .cableway-card__btn {
color: var(--summer-primary);
border: 1px solid var(--summer-primary);
background: transparent;
}
.season-summer .cableway-card__btn-icon circle {
fill: #E5ECDE;
}
.season-summer .cableway-card__btn-icon path {
fill: var(--summer-primary);
stroke: #E5ECDE;
} @media (max-width: 1200px) {
.cableways-stat {
font-size: 140px;
}
.cableways-stat--small {
font-size: 90px;
}
.cableways-subtitle {
font-size: 32px;
}
.cableways-cards {
gap: 20px;
}
}
@media (max-width: 992px) {
.cableways-content {
padding: 60px 30px;
}
.cableways-stat {
font-size: 100px;
}
.cableways-subtitle {
font-size: 24px;
}
.cableways-lines {
margin: 40px 0;
}
.cableways-cards {
grid-template-columns: repeat(2, 1fr);
}
.cableways-cards .cableway-card:last-child {
grid-column: 1 / -1;
max-width: 400px;
margin: 0 auto;
}
.season-summer .ecotrails-cards--desktop {
grid-template-columns: repeat(2, 1fr) !important;
}
.season-summer .ecotrails-cards--desktop .etd-card:last-child {
grid-column: 1 / -1;
max-width: 400px;
margin: 0 auto;
}
} .cableways-header--summer {
display: none !important;
}
.cableways-map-btn--summer {
display: none !important;
}
.season-summer .cableways-header--summer.cableways-header--desktop {
display: flex !important;
}
.season-summer .cableways-header--winter {
display: none !important;
}
.season-summer .cableways-map-btn--summer {
display: inline-flex !important;
}
.season-summer .cableways-map-btn--winter {
display: none !important;
}
.cableways-stat--small {
font-size: 120px;
}  .ecotrails-cards--desktop {
display: none;
} .season-summer .cableways-cards--desktop {
display: none !important;
}
.season-summer .ecotrails-cards--desktop {
display: grid !important;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 1400px;
margin: 0 auto;
} .etd-card {
padding: 0 0 30px 0 !important;
margin-top: 0 !important;
overflow: hidden;
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.etd-card::before {
display: none;
}
.etd-card__image {
width: 100%;
height: 200px;
overflow: hidden;
margin: 0;
border-radius: 20px 20px 0 0;
}
.etd-card__image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
filter: none;
max-height: none !important;
transition: transform 0.3s ease;
}
.etd-card:hover .etd-card__image img {
transform: scale(1.05);
}
.etd-card .cableway-card__title {
margin-top: 20px;
}
.etd-card .cableway-card__time svg {
opacity: 0.6;
color: var(--summer-primary);
}
.etd-card .cableway-card__time span {
color: var(--summer-primary);
font-weight: 500;
} .cableways-header--mobile {
display: none;
}
.cableways-slider-wrapper {
display: none;
}
.ecotrails-slider-wrapper {
display: none;
}
@media (max-width: 768px) {
.cableways-content {
padding: 40px 20px;
} .cableways-header--desktop {
display: none;
}
.cableways-cards--desktop {
display: none;
} .ecotrails-cards--desktop,
.season-summer .ecotrails-cards--desktop {
display: none !important;
} .cableways-header--mobile.cableways-header--winter {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-bottom: 30px;
}
.season-summer .cableways-header--mobile.cableways-header--winter {
display: none !important;
}
.season-summer .cableways-header--mobile.cableways-header--summer {
display: flex !important;
flex-direction: column;
align-items: center;
text-align: center;
margin-bottom: 30px;
} .cableways-header--desktop.cableways-header--winter,
.cableways-header--desktop.cableways-header--summer,
.season-summer .cableways-header--desktop.cableways-header--winter,
.season-summer .cableways-header--desktop.cableways-header--summer {
display: none !important;
}
.cableways-header--mobile .cableways-subtitle {
font-size: 16px;
margin-bottom: 10px;
}
.cableways-header--mobile .cableways-stat {
font-size: 48px;
}
.cableways-header--mobile .cableways-stat--small {
font-size: 36px;
}  .season-summer .cableways-slider-wrapper {
display: none !important;
}
.ecotrails-slider-wrapper {
display: none;
}
.season-summer .ecotrails-slider-wrapper {
display: block !important;
position: relative;
margin-left: -20px;
margin-right: -20px;
overflow: hidden;
padding: 0;
}
.ecotrails-swiper {
overflow: hidden;
padding-top: 20px;
padding-bottom: 10px;
}
.ecotrails-swiper .swiper-slide {
display: flex;
justify-content: center;
opacity: 0.6;
transform: scale(0.9);
transition: opacity 0.3s ease, transform 0.3s ease;
}
.ecotrails-swiper .swiper-slide-active {
opacity: 1;
transform: scale(1);
}
.etm-card {
width: 100%;
max-width: 300px;
border-radius: 20px;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
background: rgba(255,255,255,0.95);
box-shadow: 0 10px 40px rgba(0,0,0,0.12);
overflow: hidden;
}
.etm-card__image {
width: 100%;
height: 180px;
overflow: hidden;
}
.etm-card__image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.etm-card__title {
font-family: 'Montserrat', sans-serif;
font-size: 16px;
font-weight: 700;
color: #1a1a2e;
margin: 16px 0 10px;
padding: 0 15px;
}
.etm-card__stats {
display: flex;
gap: 16px;
margin-bottom: 10px;
}
.etm-card__stat {
display: inline-flex;
align-items: center;
gap: 4px;
font-size: 13px;
color: var(--summer-primary);
font-weight: 500;
}
.etm-card__stat svg {
color: var(--summer-primary);
}
.etm-card__diff {
display: inline-block;
padding: 4px 14px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
background: #E5ECDE;
color: var(--summer-primary);
margin-bottom: 40px;
}
.etm-card__btn {
display: inline-flex;
align-items: center;
position: relative;
gap: 20px;
padding: 15px 30px 15px 80px;
border-radius: 50px;
background: rgba(255, 255, 255, 0.55);
border: 1px solid var(--summer-primary);
font-family: 'Montserrat', sans-serif;
font-size: 16px;
font-weight: 500;
color: var(--summer-primary);
text-decoration: none;
overflow: hidden;
z-index: 1;
margin-top: auto;
margin-bottom: 24px;
}
.etm-card__btn span {
transition: transform 0.4s ease;
position: relative;
z-index: 1;
}
.etm-card__btn:hover span {
transform: translateX(-50px);
}
.etm-card__btn-icon {
position: absolute;
width: 70px;
height: 70px;
left: -5px;
transition: all 0.4s ease;
z-index: 1;
}
.etm-card__btn-icon circle {
fill: #E5ECDE;
}
.etm-card__btn-icon path {
fill: var(--summer-primary);
stroke: #E5ECDE;
}
.etm-card__btn:hover .etm-card__btn-icon {
left: calc(100% - 65px);
transform: rotate(45deg);
} .ecotrails-slider-wrapper .cableways-nav-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
border-color: rgba(74, 155, 74, 0.3);
color: var(--summer-primary);
background: rgba(255,255,255,0.9);
width: 44px;
height: 44px;
border-radius: 50%;
border-width: 2px;
border-style: solid;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
padding: 0;
}
.ecotrails-slider-wrapper .cableways-nav-btn:hover {
background: var(--summer-primary);
color: #fff;
border-color: var(--summer-primary);
}
.ecotrails-slider-wrapper .ecotrails-prev {
left: 20px;
}
.ecotrails-slider-wrapper .ecotrails-next {
right: 20px;
} .season-summer .cableways-map-btn--summer:not(.cableways-map-btn--mobile) {
display: none !important;
}
.season-summer .cableways-map-btn--summer.cableways-map-btn--mobile {
display: flex !important;
} .cableways-slider-wrapper {
display: block;
position: relative;
margin-left: -20px;
margin-right: -20px;
overflow: hidden;
padding: 0;
}
.cableways-swiper {
overflow: hidden;
padding-top: 100px;
}
.cableways-swiper .swiper-slide {
display: flex;
justify-content: center;
opacity: 0.6;
transform: scale(0.9);
transition: opacity 0.3s ease, transform 0.3s ease;
}
.cableways-swiper .swiper-slide-active {
opacity: 1;
transform: scale(1);
}
.cableways-swiper .cableway-card {
width: 100%;
max-width: 300px;
padding: 25px 20px;
margin-top: 0;
padding-top: 80px;
background: linear-gradient(to bottom, #FFFFFF 0%, #D9EFFF 100%);
}
.cableways-swiper .cableway-card::before {
display: none;
}
.cableways-swiper .cableway-card__image {
height: 180px;
margin-top: -120px;
margin-bottom: 15px;
}
.cableways-swiper .cableway-card__image img {
max-height: 200px;
}
.cableways-swiper .cableway-card--gondola .cableway-card__image img {
max-height: 280px !important;
margin-top: -40px;
}
.cableways-swiper .cableway-card__title {
font-size: 16px;
margin-top: 15px;
} .cableways-nav-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 44px;
height: 44px;
padding: 0;
aspect-ratio: 1;
flex-shrink: 0;
border-radius: 50%;
border: 2px solid rgba(0, 78, 146, 0.3);
background: rgba(255, 255, 255, 0.9);
color: #004E92;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
box-sizing: border-box;
z-index: 10;
}
.cableways-nav-btn svg {
width: 24px;
height: 24px;
flex-shrink: 0;
}
.cableways-prev {
left: 20px;
}
.cableways-next {
right: 20px;
}
.cableways-nav-btn:hover {
background: #004E92;
color: #ffffff;
border-color: #004E92;
} .season-summer .cableways-nav-btn {
border-color: rgba(74, 155, 74, 0.3);
color: var(--summer-primary);
}
.season-summer .cableways-nav-btn:hover {
background: var(--summer-primary);
color: #ffffff;
border-color: var(--summer-primary);
} .cableways-map-btn--mobile.cableways-map-btn--winter {
display: flex;
width: calc(100% - 40px);
margin: 30px auto 0;
padding: 14px 30px;
font-size: 14px;
background: #004E92;
border: none;
color: #ffffff;
}
.cableways-map-btn--mobile.cableways-map-btn--winter:hover {
background: #003d75;
color: #ffffff;
}
.season-summer .cableways-map-btn--mobile.cableways-map-btn--winter {
display: none !important;
}
.cableways-map-btn--mobile.cableways-map-btn--summer {
display: none !important;
width: calc(100% - 40px);
margin: 30px auto 0;
padding: 14px 30px;
font-size: 14px;
border: none;
color: #ffffff;
}
.season-summer .cableways-map-btn--mobile.cableways-map-btn--summer {
display: flex !important;
background: var(--summer-primary);
}
.season-summer .cableways-map-btn--mobile.cableways-map-btn--summer:hover {
background: #3d8a3d;
}
} @media (hover: none) {
.burger-menu:hover {
background: transparent;
}
.nav-link:hover {
opacity: 1;
}
.season-btn:hover {
border-color: transparent;
}
.quick-link:hover {
opacity: 1;
}
.about-btn:hover span {
transform: none;
}
.about-btn:hover .about-btn-icon {
left: -5px;
transform: none;
}
.services-nav-btn:hover {
background: transparent;
color: #1B5FB4;
}
.season-summer .services-nav-btn:hover {
background: transparent;
color: #4a9b4a;
}
.service-card:hover {
transform: none;
}
.cableways-map-btn:hover {
background: rgba(255, 255, 255, 0.25);
transform: none;
}
.cableway-card__btn:hover span {
transform: none;
}
.cableway-card__btn:hover .cableway-card__btn-icon {
left: -5px;
transform: none;
}
.etd-card:hover .etd-card__image img {
transform: none;
}
.etm-card__btn:hover span {
transform: none;
}
.etm-card__btn:hover .etm-card__btn-icon {
left: -5px;
transform: none;
}
.ecotrails-slider-wrapper .cableways-nav-btn:hover {
background: rgba(255, 255, 255, 0.9);
color: var(--summer-primary);
border-color: rgba(74, 155, 74, 0.3);
}
.cableways-nav-btn:hover {
background: rgba(255, 255, 255, 0.9);
color: #004E92;
border-color: rgba(0, 78, 146, 0.3);
}
.season-summer .cableways-nav-btn:hover {
background: rgba(255, 255, 255, 0.9);
color: var(--summer-primary);
border-color: rgba(74, 155, 74, 0.3);
}
.cableways-map-btn--mobile.cableways-map-btn--winter:hover {
background: #004E92;
}
.season-summer .cableways-map-btn--mobile.cableways-map-btn--summer:hover {
background: var(--summer-primary);
}
}.dombay-home-v2-page .dombay-header {
padding-left: 0;
padding-right: 0;
}
.dombay-home-v2-page .header-container,
.hv-container {
max-width: 1448px;
margin: 0 auto;
padding: 0 24px;
}
.dombay-home-v2 {
--hv-navy: #0B3A66;
--hv-navy-deep: #072B4D;
--hv-ink: #1C2B3A;
--hv-muted: #7C8B9A;
--hv-line: #E4EBF2;
--hv-green: #4F8A1E;
--hv-green-bg: #EDF5E2;
--hv-blue: #12558F;
--hv-radius: 16px;
font-family: 'Montserrat', sans-serif;
} .dombay-home-v2-page .header-extra {
display: flex;
align-items: center;
gap: 28px;
}
.dombay-home-v2-page .header-extra__link {
display: inline-flex;
align-items: center;
gap: 9px;
color: #fff;
font-size: 16px;
font-weight: 400;
text-decoration: none;
white-space: nowrap;
transition: opacity 0.3s ease;
}
.dombay-home-v2-page .header-extra__link:hover {
color: #fff;
opacity: 0.8;
}
.dombay-home-v2-page .header-extra__link svg { opacity: 0.85; flex: none; } .dombay-home-v2-page .header-extra__link--phone { font-weight: 600; } @media (max-width: 1024px) {
.dombay-home-v2-page .header-extra { display: none; }
} .hv-top {
display: grid;
grid-template-columns: minmax(0, 1fr);
}
.hv-top > .hv-hero,
.hv-top > .hv-status-wrap {
grid-column: 1;
grid-row: 1;
}
.hv-status-wrap {
align-self: center;
justify-self: center;
width: 100%;
max-width: 1448px;
padding: 0 24px;
display: flex;
justify-content: flex-end;
z-index: 3; pointer-events: none;
}
.hv-status-wrap > .hv-status { pointer-events: auto; }
.hv-hero {
position: relative;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
overflow: hidden;
padding: 140px 0 90px;
} .hv-hero__bg {
position: absolute;
inset: 0;
}
.hv-hero__bg-winter,
.hv-hero__bg-summer {
position: absolute;
inset: 0;
background-size: cover;
background-position: center bottom;
background-repeat: no-repeat;
transition: opacity 0.6s ease;
}
.hv-hero__bg-winter {
background-image: url(//dombay-resort.ru/wp-content/uploads/2026/01/Zimnij-fon-1.jpg);
opacity: 1;
}
.hv-hero__bg-summer {
background-image: url(//dombay-resort.ru/wp-content/uploads/2026/01/Letnij-fon-1.jpg);
opacity: 0;
}
.season-summer .hv-hero__bg-winter { opacity: 0; }
.season-summer .hv-hero__bg-summer { opacity: 1; } .hv-hero__scrim {
position: absolute;
inset: 0;
background: linear-gradient(
100deg,
rgba(7, 30, 52, 0.86) 0%,
rgba(7, 30, 52, 0.66) 38%,
rgba(7, 30, 52, 0.30) 66%,
rgba(7, 30, 52, 0.22) 100%
);
} .hv-hero__inner {
position: relative;
z-index: 2;
width: 100%;
max-width: 1448px;
margin: 0 auto;
padding: 0 24px;
display: block;
} .hv-hero__left { max-width: 620px; }  .hv-hero__title {
position: relative;
display: flex;
flex-direction: column;
align-items: flex-start;
margin: 0 0 24px;
color: #fff;
text-transform: uppercase;
}
.hv-hero__title-top {
font-size: clamp(38px, 5vw, 74px);
font-weight: 400;
letter-spacing: normal;
line-height: 1;
}
.hv-hero__title-bottom {
font-size: clamp(44px, 5.6vw, 82px);
font-weight: 800;
letter-spacing: 0.05em;
margin-right: -0.05em;
line-height: 1;
margin-top: -4px;
}
.hv-hero__title-sub {
font-size: clamp(13px, 1vw, 16px);
font-weight: 500;
letter-spacing: 2.4px;
color: rgba(255, 255, 255, 0.62);
margin-top: 14px;
align-self: flex-start;
text-transform: uppercase;
} .hv-hero__tagline {
max-width: 560px;
margin: 0 0 14px;
font-size: clamp(20px, 1.9vw, 27px);
font-weight: 700;
line-height: 1.25;
color: #fff;
}
.hv-hero__lead {
max-width: 560px;
margin: 0 0 32px;
font-size: 17px;
line-height: 1.6;
font-weight: 400;
color: rgba(255, 255, 255, 0.86);
}
.hv-hero__lead p { margin: 0 0 10px; }
.hv-hero__lead p:last-child { margin-bottom: 0; } .hv-hero__lead-more {
font-size: 15px;
color: rgba(255, 255, 255, 0.72);
} .hv-hero__nav { display: none; }
.hv-herotile {
display: flex;
align-items: center;
gap: 9px;
padding: 13px 14px;
border-radius: 15px;
background: rgba(255, 255, 255, 0.15);
border: 1px solid rgba(255, 255, 255, 0.22);
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);
color: #fff;
font-size: 13px;
font-weight: 600;
line-height: 1.2;
white-space: nowrap;
text-decoration: none;
}
.hv-herotile:hover,
.hv-herotile:focus {
background: rgba(255, 255, 255, 0.24);
color: #fff;
}
.hv-herotile svg { flex: none; opacity: 0.85; }
.hv-herotile--wide { grid-column: 1 / -1; } .hv-herotile--primary {
justify-content: center;
background: #fff;
border-color: #fff;
color: var(--hv-navy);
padding: 15px 14px;
font-size: 14px;
}
.hv-herotile--primary:hover,
.hv-herotile--primary:focus {
background: #EAF3FC;
color: var(--hv-navy);
}
.hv-herotile--primary svg { opacity: 0.7; } .hv-hero__actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 34px;
}
.hv-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 15px 32px;
border-radius: 999px;
font-size: 15px;
font-weight: 600;
text-decoration: none;
transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.hv-btn:hover { transform: translateY(-2px); }
.hv-btn--primary {
background: #fff;
color: var(--hv-navy);
}
.hv-btn--primary:hover {
background: #EAF3FC;
color: var(--hv-navy);
}
.hv-btn--ghost {
border: 1px solid rgba(255, 255, 255, 0.5);
color: #fff;
}
.hv-btn--ghost:hover {
background: rgba(255, 255, 255, 0.14);
color: #fff;
} .hv-hero__facts {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 10px 18px;
margin: 0;
padding: 0;
list-style: none;
font-size: 13px;
font-weight: 500;
color: rgba(255, 255, 255, 0.60);
}
.hv-hero__facts li + li::before {
content: '·';
margin-right: 18px;
color: rgba(255, 255, 255, 0.40);
} .hv-hero__fact--summer { display: none; }
.season-summer .hv-hero__fact--summer { display: flex; align-items: center; } .hv-status {
position: relative;
width: 100%;
max-width: 392px;
padding: 20px 20px 16px;
border-radius: 28px;
color: #fff;
background: rgba(255, 255, 255, 0.11);
-webkit-backdrop-filter: blur(34px) saturate(180%);
backdrop-filter: blur(34px) saturate(180%);
border: 1px solid rgba(255, 255, 255, 0.20);
box-shadow:
0 26px 64px rgba(3, 18, 34, 0.42),
inset 0 1px 0 rgba(255, 255, 255, 0.26);
} .hv-status::before {
content: '';
position: absolute;
inset: 0;
border-radius: inherit;
padding: 1px;
background: linear-gradient(160deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 42%);
-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
}
.hv-status__head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-bottom: 14px;
}
.hv-status__caption {
font-size: 11px;
font-weight: 600;
letter-spacing: 1.4px;
color: rgba(255, 255, 255, 0.60);
}
.hv-status__badge {
font-size: 12px;
font-weight: 600;
padding: 5px 12px;
border-radius: 999px;
letter-spacing: 0.2px;
}
.hv-status__badge.is-open {
background: rgba(48, 209, 88, 0.20);
color: #6EE787;
border: 1px solid rgba(48, 209, 88, 0.34);
}
.hv-status__badge.is-closed {
background: rgba(255, 105, 97, 0.18);
color: #FF8F87;
border: 1px solid rgba(255, 105, 97, 0.32);
} .hv-status__list {
margin: 0 0 14px;
padding: 4px 0;
list-style: none;
background: rgba(255, 255, 255, 0.07);
border-radius: 18px;
}
.hv-status__row {
display: flex;
align-items: center;
gap: 11px;
padding: 11px 14px;
position: relative;
}
.hv-status__row + .hv-status__row::before {
content: '';
position: absolute;
top: 0;
left: 33px;
right: 14px;
height: 1px;
background: rgba(255, 255, 255, 0.11);
} .hv-status__row + .hv-status__row--trails::before {
left: 14px;
background: rgba(255, 255, 255, 0.18);
}
.hv-status__dot {
width: 8px;
height: 8px;
border-radius: 50%;
flex: none;
background: rgba(255, 255, 255, 0.35);
}
.hv-status__row.is-open .hv-status__dot {
background: #30D158;
box-shadow: 0 0 0 3px rgba(48, 209, 88, 0.22);
}
.hv-status__row.is-partial .hv-status__dot {
background: #FF9F0A;
box-shadow: 0 0 0 3px rgba(255, 159, 10, 0.22);
}
.hv-status__row.is-closed .hv-status__dot {
background: rgba(255, 255, 255, 0.30);
}
.hv-status__name {
flex: 1;
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.94);
letter-spacing: 0.1px;
}
.hv-status__value {
font-size: 13px;
font-weight: 600;
color: #6EE787;
text-align: right;
letter-spacing: 0.1px;
}
.hv-status__row.is-partial .hv-status__value { color: #FFC65C; }
.hv-status__row.is-closed .hv-status__name,
.hv-status__row.is-closed .hv-status__value {
color: rgba(255, 255, 255, 0.44);
} .hv-status__grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 10px;
margin-bottom: 10px;
}
.hv-status__grid:empty { display: none; }
.hv-status__cell {
background: rgba(255, 255, 255, 0.07);
border-radius: 16px;
padding: 12px 14px;
}
.hv-status__label {
display: block;
font-size: 11px;
color: rgba(255, 255, 255, 0.56);
margin-bottom: 5px;
}
.hv-status__num {
display: block;
font-size: 17px;
font-weight: 600;
color: #fff;
letter-spacing: 0.2px;
} .hv-status__cell--summer { display: none; }
.season-summer .hv-status__cell--summer { display: block; }
.season-summer .hv-status__cell--winter { display: none; } .hv-status__weather {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 12px;
}
.hv-status__temp {
flex: 1;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 11px 14px;
border-radius: 16px;
background: rgba(255, 255, 255, 0.07);
font-size: 12px;
color: rgba(255, 255, 255, 0.56);
}
.hv-status__temp svg {
color: rgba(255, 255, 255, 0.72);
flex: none;
}
.hv-status__temp strong {
font-size: 16px;
font-weight: 600;
color: #fff;
}
.hv-status__updated {
margin: 0;
font-size: 11px;
color: rgba(255, 255, 255, 0.42);
text-align: center;
}  @media (max-width: 1100px) {
.hv-hero__left { max-width: 540px; }
}
@media (max-width: 900px) { .hv-top {
grid-template-rows: auto auto;
}
.hv-top > .hv-hero      { grid-row: 1; }
.hv-top > .hv-status-wrap { grid-row: 2; }
.hv-hero {
min-height: auto;
padding: 130px 0 44px;
}
.hv-hero__left { max-width: none; } .hv-hero__scrim {
background: linear-gradient(
180deg,
rgba(6, 24, 42, 0.72) 0%,
rgba(6, 24, 42, 0.86) 44%,
rgba(6, 24, 42, 0.78) 74%,
rgba(6, 24, 42, 0.56) 100%
);
} .season-summer .hv-hero__scrim {
background: linear-gradient(
180deg,
rgba(5, 26, 30, 0.70) 0%,
rgba(5, 26, 30, 0.84) 46%,
rgba(5, 26, 30, 0.74) 76%,
rgba(5, 26, 30, 0.50) 100%
);
}
.hv-hero__bg-summer { filter: saturate(1.4); } .hv-hero__title,
.hv-hero__tagline,
.hv-hero__lead,
.hv-hero__facts {
text-shadow: 0 1px 8px rgba(3, 14, 26, 0.45);
} .hv-hero__lead { color: rgba(255, 255, 255, 0.94); }
.hv-hero__lead-more { color: rgba(255, 255, 255, 0.88); }
.hv-hero__title-sub { color: rgba(255, 255, 255, 0.78); }
.hv-hero__facts { color: rgba(255, 255, 255, 0.78); } .hv-status-wrap {
align-self: stretch;
justify-content: stretch;
max-width: none;
padding: 30px 20px 34px;
pointer-events: auto;
background: #F4F8FB;
} .hv-status {
max-width: none;
margin-top: 0;
background: #fff;
border: 1px solid #E4EBF2;
border-radius: 22px;
color: var(--hv-ink);
-webkit-backdrop-filter: none;
backdrop-filter: none;
box-shadow: 0 10px 30px rgba(16, 42, 67, 0.08);
}
.hv-status::before { display: none; }
.hv-status__caption { color: var(--hv-muted); }
.hv-status__badge.is-open {
background: #EAF5E0;
color: #3B6D11;
border-color: transparent;
}
.hv-status__badge.is-closed {
background: #F6E9E9;
color: #A32D2D;
border-color: transparent;
}
.hv-status__list { background: #F4F8FB; }
.hv-status__row + .hv-status__row::before { background: #E1E8EF; }
.hv-status__row + .hv-status__row--trails::before { background: #D3DDE6; }
.hv-status__name { color: var(--hv-ink); }
.hv-status__row.is-open .hv-status__value { color: #3B6D11; }
.hv-status__row.is-partial .hv-status__value { color: #B87708; }
.hv-status__row.is-closed .hv-status__dot { background: #C3CCD5; }
.hv-status__row.is-closed .hv-status__name,
.hv-status__row.is-closed .hv-status__value { color: #98A5B2; }
.hv-status__cell { background: #F4F8FB; }
.hv-status__label { color: var(--hv-muted); }
.hv-status__num { color: var(--hv-blue); }
.hv-status__temp {
background: #F4F8FB;
color: var(--hv-muted);
}
.hv-status__temp svg { color: var(--hv-blue); }
.hv-status__temp strong { color: var(--hv-ink); }
.hv-status__updated { color: #A9B4BF; }
}
@media (max-width: 600px) {
.hv-hero { padding: 116px 0 40px; }
.hv-hero__inner { padding: 0 20px; }
.hv-hero__title-bottom { margin-top: -2px; }
.hv-hero__tagline {
margin-bottom: 10px;
}
.hv-hero__lead {
font-size: 15px;
line-height: 1.55;
margin-bottom: 24px;
}
.hv-hero__lead-more { font-size: 14px; } .hv-hero__facts { gap: 4px 16px; }
.hv-hero__facts li + li::before { display: none; } .hv-hero__nav {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 8px;
margin: 0 0 20px;
} .hv-hero__actions { display: none; }
.hv-btn {
flex: 1 1 auto;
padding: 14px 22px;
font-size: 14px;
}
.hv-status {
padding: 18px 16px 14px;
border-radius: 24px;
}
.hv-status__grid { gap: 10px; }
} .hv-services {
background: #fff;
padding: 84px 0;
}
.hv-services__head {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 32px;
margin-bottom: 28px;
}
.hv-services__title {
margin: 0 0 12px;
font-size: clamp(26px, 3vw, 40px);
font-weight: 800;
letter-spacing: 1px;
color: var(--hv-ink);
text-transform: uppercase;
}
.hv-services__subtitle {
margin: 0;
max-width: 560px;
font-size: 15px;
line-height: 1.65;
color: var(--hv-muted);
}
.hv-services__all {
flex: none;
display: inline-flex;
align-items: center;
padding: 13px 26px;
border: 1px solid #D6DEE6;
border-radius: 999px;
font-size: 14px;
font-weight: 600;
color: var(--hv-ink);
text-decoration: none;
white-space: nowrap;
transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.hv-services__all:hover {
background: var(--hv-blue);
border-color: var(--hv-blue);
color: #fff;
} .hv-services__row {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 20px;
}
.hv-service {
display: flex;
flex-direction: column;
background: #fff;
border: 1px solid #E8EDF2;
border-radius: 18px;
overflow: hidden;
text-decoration: none;
transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.hv-service:hover {
transform: translateY(-4px);
border-color: #D2DEE9;
box-shadow: 0 18px 40px rgba(16, 42, 67, 0.12);
} .hv-service__media {
position: relative;
aspect-ratio: 4 / 3;
background: #DCE5ED;
overflow: hidden;
}
.hv-service__media img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.4s ease;
}
.hv-service:hover .hv-service__media img { transform: scale(1.05); } .hv-service__cat {
position: absolute;
top: 10px;
left: 10px;
max-width: calc(100% - 20px);
padding: 6px 12px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.94);
color: #2B3A48;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.1px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);
} .hv-service__body {
display: flex;
flex-direction: column;
flex: 1;
padding: 15px 17px 17px;
}
.hv-service__title {
margin: 0 0 6px;
font-size: 15px;
font-weight: 600;
line-height: 1.35;
color: var(--hv-ink);
}
.hv-service__meta {
margin: 0 0 15px;
font-size: 12px;
color: var(--hv-muted);
} .hv-service__title:last-of-type { margin-bottom: 15px; }
.hv-service__foot {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
margin-top: auto;
}
.hv-service__price {
font-size: 18px;
font-weight: 700;
color: var(--hv-ink);
white-space: nowrap;
}
.hv-service__price small {
font-size: 11px;
font-weight: 500;
color: var(--hv-muted);
}
.hv-service__arrow {
flex: none;
width: 34px;
height: 34px;
border-radius: 50%;
border: 1px solid #E1E8EF;
display: inline-flex;
align-items: center;
justify-content: center;
color: var(--hv-blue);
transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hv-service:hover .hv-service__arrow {
background: var(--hv-blue);
border-color: var(--hv-blue);
color: #fff;
} @media (max-width: 1100px) {
.hv-services__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
.hv-services { padding: 60px 0; } .hv-services .hv-container {
display: flex;
flex-direction: column;
}
.hv-services__head { display: contents; }
.hv-services__intro {
order: 1;
margin-bottom: 22px;
}
.hv-services__row { order: 2; }
.hv-services__all {
order: 3;
align-self: stretch;
justify-content: center;
margin-top: 22px;
}
}
@media (max-width: 680px) {
.hv-services { padding: 46px 0; } .hv-services__row {
display: flex;
gap: 12px;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-padding-left: 24px;
margin-left: -24px;
margin-right: -24px;
padding: 4px 24px 8px;
scrollbar-width: none;
}
.hv-services__row::-webkit-scrollbar { display: none; }
.hv-service {
flex: 0 0 74%;
scroll-snap-align: start;
}
} .hv-tickets {
background: #F4F8FB;
padding: 84px 0;
}
.hv-tickets__head {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 28px;
margin-bottom: 26px;
flex-wrap: wrap;
}
.hv-tickets__title {
margin: 0 0 12px;
font-size: clamp(26px, 3vw, 40px);
font-weight: 800;
letter-spacing: 1px;
color: var(--hv-ink);
text-transform: uppercase;
}
.hv-tickets__subtitle {
margin: 0;
max-width: 520px;
font-size: 15px;
line-height: 1.65;
color: var(--hv-muted);
}
.hv-tickets__controls {
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
} .hv-toggle {
display: inline-flex;
background: #fff;
border: 1px solid #E1E8EF;
border-radius: 999px;
padding: 4px;
}
.hv-toggle__btn {
border: none;
padding: 9px 18px;
background: transparent;
border-radius: 999px;
font-family: inherit;
font-size: 13px;
font-weight: 600;
color: var(--hv-muted);
cursor: pointer;
transition: background 0.2s ease, color 0.2s ease;
} .hv-toggle__btn:hover,
.hv-toggle__btn:focus {
background: #EDF3F9;
color: var(--hv-ink);
}
.hv-toggle__btn.is-active,
.hv-toggle__btn.is-active:hover,
.hv-toggle__btn.is-active:focus {
background: var(--hv-blue);
color: #fff;
} .hv-tickets__nav {
display: flex;
gap: 8px;
}
.hv-nav { width: 44px;
height: 44px;
min-width: 44px;
padding: 0;
flex: none;
border-radius: 50%;
border: 1px solid #D6DEE6;
background: #fff;
color: var(--hv-ink);
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
line-height: 0;
transition: all 0.2s ease;
}
.hv-nav svg {
width: 19px;
height: 19px;
flex: none;
display: block;
}
.hv-nav:hover:not(:disabled),
.hv-nav:focus:not(:disabled) {
background: var(--hv-blue);
border-color: var(--hv-blue);
color: #fff;
} .hv-nav:disabled,
.hv-nav:disabled:hover {
background: #fff;
border-color: #D6DEE6;
color: var(--hv-ink);
}
.hv-nav:disabled {
opacity: 0.4;
cursor: default;
}
.hv-tickets__all {
display: inline-flex;
align-items: center;
padding: 13px 24px;
border: 1px solid #D6DEE6;
border-radius: 999px;
background: #fff;
font-size: 14px;
font-weight: 600;
color: var(--hv-ink);
text-decoration: none;
white-space: nowrap;
transition: all 0.2s ease;
}
.hv-tickets__all:hover {
background: var(--hv-blue);
border-color: var(--hv-blue);
color: #fff;
} .hv-tickets__slider {
overflow: hidden;
padding: 6px 0;
}
.hv-tickets__slider .swiper-slide {
height: auto;
display: flex;
}
.hv-tickets__empty {
margin: 0;
padding: 34px 28px;
background: #fff;
border: 1px dashed #CBD8E4;
border-radius: 16px;
font-size: 15px;
color: var(--hv-muted);
text-align: center;
} .hv-ticket {
position: relative;
display: flex;
flex-direction: column;
width: 100%;
background: #fff;
border: 1px solid #E4EBF2;
border-radius: 18px;
overflow: hidden;
}
.hv-ticket__media {
position: relative;
aspect-ratio: 16 / 9;
background: #DCE5ED;
overflow: hidden;
}
.hv-ticket__media img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.hv-ticket__body {
display: flex;
flex-direction: column;
flex: 1;
padding: 18px 20px;
}
.hv-ticket--highlight {
border: 2px solid var(--hv-blue);
box-shadow: 0 14px 34px rgba(18, 85, 143, 0.14);
}
.hv-ticket__badge {
position: absolute;
top: 12px;
left: 12px;
z-index: 2;
background: var(--hv-blue);
color: #fff;
font-size: 11px;
font-weight: 600;
border-radius: 999px;
padding: 5px 12px;
white-space: nowrap;
} .hv-ticket:not(:has(.hv-ticket__media)) .hv-ticket__badge {
position: static;
align-self: flex-start;
margin-bottom: 10px;
}
.hv-ticket__kind {
display: block;
font-size: 10px;
font-weight: 600;
letter-spacing: 1.2px;
color: var(--hv-muted);
text-transform: uppercase;
margin-bottom: 6px;
}
.hv-ticket__what {
margin: 0 0 16px;
font-size: 14px;
line-height: 1.4;
color: var(--hv-ink);
min-height: 39px;
}
.hv-ticket__main {
display: flex;
align-items: baseline;
gap: 7px;
margin-bottom: 4px;
}
.hv-ticket__price {
font-size: 28px;
font-weight: 700;
color: var(--hv-ink);
letter-spacing: -0.5px;
}
.hv-ticket__for {
font-size: 12px;
color: var(--hv-muted);
}
.hv-ticket__eco {
margin: 0 0 14px;
font-size: 12px;
font-weight: 600;
color: #B87708;
}
.hv-ticket__rest {
display: flex;
gap: 22px;
margin-top: auto;
padding-top: 13px;
border-top: 1px solid #EDF2F7;
}
.hv-ticket__label {
display: block;
font-size: 11px;
color: var(--hv-muted);
margin-bottom: 2px;
}
.hv-ticket__rest strong {
font-size: 14px;
font-weight: 600;
color: var(--hv-ink);
} .hv-tickets__free {
display: flex;
align-items: center;
gap: 12px;
margin-top: 18px;
padding: 14px 20px;
background: #EAF5E0;
border-radius: 14px;
color: #3B6D11;
}
.hv-tickets__free svg { flex: none; }
.hv-tickets__free p {
margin: 0;
font-size: 13px;
line-height: 1.5;
} @media (max-width: 900px) {
.hv-tickets { padding: 60px 0; }
.hv-tickets__head {
flex-direction: column;
align-items: flex-start;
gap: 18px;
}
.hv-tickets__controls { width: 100%; }
}
@media (max-width: 680px) {
.hv-tickets { padding: 46px 0; } .hv-tickets__slider {
margin-left: -24px;
margin-right: -24px;
padding-left: 24px;
padding-right: 24px;
} .hv-tickets__nav { display: none; }
.hv-toggle { flex: 1; }
.hv-toggle__btn { flex: 1; }
.hv-tickets__all { width: 100%; justify-content: center; }
.hv-ticket__what { min-height: 0; }
} .hv-trails {
background: #fff;
padding: 84px 0;
}
.hv-trails__head {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 30px;
margin-bottom: 26px;
flex-wrap: wrap;
}
.hv-trails__titleline {
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
margin-bottom: 12px;
}
.hv-trails__title {
margin: 0;
font-size: clamp(26px, 3vw, 40px);
font-weight: 800;
letter-spacing: 1px;
color: var(--hv-ink);
text-transform: uppercase;
}
.hv-trails__count {
font-size: 13px;
font-weight: 600;
padding: 6px 14px;
border-radius: 999px;
background: #EAF5E0;
color: #3B6D11;
white-space: nowrap;
}
.hv-trails__count.is-closed {
background: #F6E9E9;
color: #A32D2D;
}
.hv-trails__subtitle {
margin: 0;
max-width: 560px;
font-size: 15px;
line-height: 1.65;
color: var(--hv-muted);
}
.hv-trails__all {
flex: none;
display: inline-flex;
align-items: center;
padding: 13px 26px;
border: 1px solid #D6DEE6;
border-radius: 999px;
font-size: 14px;
font-weight: 600;
color: var(--hv-ink);
text-decoration: none;
white-space: nowrap;
transition: all 0.2s ease;
}
.hv-trails__all:hover {
background: var(--hv-blue);
border-color: var(--hv-blue);
color: #fff;
} .hv-trails__row {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 20px;
}
.hv-trail {
display: flex;
flex-direction: column;
background: #fff;
border: 1px solid #E8EDF2;
border-radius: 18px;
overflow: hidden;
transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.hv-trail:hover {
transform: translateY(-4px);
border-color: #D2DEE9;
box-shadow: 0 18px 40px rgba(16, 42, 67, 0.12);
} .hv-trail--off { opacity: 0.68; }
.hv-trail--off:hover { opacity: 1; }
.hv-trail__media {
position: relative;
aspect-ratio: 4 / 3;
background: #DCE5ED;
overflow: hidden;
}
.hv-trail__media img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.4s ease;
}
.hv-trail:hover .hv-trail__media img { transform: scale(1.05); } .hv-trail__status {
position: absolute;
top: 10px;
left: 10px;
display: inline-flex;
align-items: center;
gap: 6px;
padding: 5px 11px;
border-radius: 999px;
font-size: 11px;
font-weight: 600;
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);
}
.hv-trail__dot {
width: 5px;
height: 5px;
border-radius: 50%;
background: currentColor;
flex: none;
}
.hv-trail__status.is-open    { background: rgba(48, 209, 88, 0.93);  color: #0B3D18; }
.hv-trail__status.is-partial { background: rgba(255, 159, 10, 0.95); color: #4A2B00; }
.hv-trail__status.is-closed  { background: rgba(70, 84, 97, 0.92);   color: #E7EDF3; } .hv-trail__body {
display: flex;
flex-direction: column;
flex: 1;
padding: 14px 16px 16px;
}
.hv-trail__name {
margin: 0 0 5px;
font-size: 15px;
font-weight: 600;
line-height: 1.35;
color: var(--hv-ink);
}
.hv-trail__note {
margin: 0 0 7px;
font-size: 12px;
line-height: 1.45;
color: #B87708;
}
.hv-trail__meta {
margin: 0 0 14px;
font-size: 12px;
color: var(--hv-muted);
}
.hv-trail__foot {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
margin-top: auto;
flex-wrap: wrap;
}
.hv-trail__diff {
font-size: 11px;
font-weight: 600;
padding: 4px 11px;
border-radius: 999px;
}
.hv-trail__diff.is-easy   { background: #EAF5E0; color: #3B6D11; }
.hv-trail__diff.is-medium { background: #E6F0FA; color: #12558F; }
.hv-trail__diff.is-hard   { background: #F6E9E9; color: #A32D2D; }
.hv-trail__pass {
display: inline-flex;
align-items: center;
gap: 4px;
font-size: 11px;
color: var(--hv-muted);
}
.hv-trail__pass svg { flex: none; } @media (max-width: 1100px) {
.hv-trails__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
.hv-trails { padding: 60px 0; } .hv-trails .hv-container {
display: flex;
flex-direction: column;
}
.hv-trails__head { display: contents; }
.hv-trails__intro {
order: 1;
margin-bottom: 22px;
}
.hv-trails__row { order: 2; }
.hv-trails__all {
order: 3;
align-self: stretch;
justify-content: center;
margin-top: 22px;
}
}
@media (max-width: 680px) {
.hv-trails { padding: 46px 0; }
.hv-trails__row {
display: flex;
gap: 12px;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-padding-left: 24px;
margin-left: -24px;
margin-right: -24px;
padding: 4px 24px 8px;
scrollbar-width: none;
}
.hv-trails__row::-webkit-scrollbar { display: none; }
.hv-trail {
flex: 0 0 74%;
scroll-snap-align: start;
}
} .hv-lifts {
background: #F4F8FB;
padding: 84px 0;
}
.hv-lifts__head {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 30px;
margin-bottom: 10px;
flex-wrap: wrap;
}
.hv-lifts__titleline {
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
margin-bottom: 12px;
}
.hv-lifts__title {
margin: 0;
font-size: clamp(26px, 3vw, 40px);
font-weight: 800;
letter-spacing: 1px;
color: var(--hv-ink);
text-transform: uppercase;
}
.hv-lifts__count {
font-size: 13px;
font-weight: 600;
padding: 6px 14px;
border-radius: 999px;
background: #EAF5E0;
color: #3B6D11;
white-space: nowrap;
}
.hv-lifts__count.is-closed {
background: #F6E9E9;
color: #A32D2D;
}
.hv-lifts__subtitle {
margin: 0;
max-width: 620px;
font-size: 15px;
line-height: 1.65;
color: var(--hv-muted);
}
.hv-lifts__all {
flex: none;
display: inline-flex;
align-items: center;
padding: 13px 26px;
border: 1px solid #D6DEE6;
border-radius: 999px;
background: #fff;
font-size: 14px;
font-weight: 600;
color: var(--hv-ink);
text-decoration: none;
white-space: nowrap;
transition: all 0.2s ease;
}
.hv-lifts__all:hover {
background: var(--hv-blue);
border-color: var(--hv-blue);
color: #fff;
} .hv-ascent__chart {
margin: 4px 0 6px;
}
.hv-ascent__chart svg {
display: block;
width: 100%;
height: auto;
overflow: visible;
}
.hv-ascent__ground {
stroke: #D3DEE8;
stroke-width: 1;
stroke-dasharray: 4 6;
}
.hv-ascent__leg {
stroke-width: 3;
stroke-linecap: round;
}
.hv-ascent__leg.is-on  { stroke: var(--hv-blue); }
.hv-ascent__leg.is-off { stroke: #BFCBD6; stroke-dasharray: 7 7; }
.hv-ascent__dot {
fill: #fff;
stroke: var(--hv-blue);
stroke-width: 3;
}
.hv-ascent__h {
fill: var(--hv-ink);
font-family: 'Montserrat', sans-serif;
font-size: 17px;
font-weight: 700;
}
.hv-ascent__cap {
fill: var(--hv-muted);
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 500;
} .hv-ascent__legs {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
gap: 18px;
margin-top: 6px;
}
.hv-leg {
display: flex;
flex-direction: column;
background: #fff;
border: 1px solid #E4EBF2;
border-radius: 16px;
overflow: hidden;
}
.hv-leg__media {
aspect-ratio: 16 / 9;
background: #DCE5ED;
overflow: hidden;
}
.hv-leg__media img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.hv-leg__body {
flex: 1;
padding: 17px 19px 16px;
}
.hv-leg--off { opacity: 0.7; }
.hv-leg--off .hv-leg__media img { filter: grayscale(0.55); }
.hv-leg__head {
display: flex;
align-items: center;
gap: 9px;
margin-bottom: 7px;
}
.hv-leg__dot {
width: 9px;
height: 9px;
border-radius: 50%;
flex: none;
background: var(--hv-muted);
}
.hv-leg__dot.is-open    { background: #30D158; box-shadow: 0 0 0 3px rgba(48, 209, 88, 0.20); }
.hv-leg__dot.is-partial { background: #FF9F0A; box-shadow: 0 0 0 3px rgba(255, 159, 10, 0.20); }
.hv-leg__dot.is-closed  { background: #BFCBD6; }
.hv-leg__name {
font-size: 16px;
font-weight: 700;
color: var(--hv-ink);
}
.hv-leg__status {
margin: 0 0 11px;
font-size: 13px;
font-weight: 600;
}
.hv-leg__status.is-open    { color: #3B6D11; }
.hv-leg__status.is-partial { color: #B87708; }
.hv-leg__status.is-closed  { color: var(--hv-muted); }
.hv-leg__line {
margin: 0 0 4px;
font-size: 13px;
color: var(--hv-muted);
}
.hv-leg__line:last-child { margin-bottom: 0; } @media (max-width: 900px) {
.hv-lifts { padding: 60px 0; } .hv-ascent .hv-container {
display: flex;
flex-direction: column;
}
.hv-lifts__head { display: contents; }
.hv-lifts__intro {
order: 1;
margin-bottom: 18px;
}
.hv-ascent__chart { order: 2; }
.hv-ascent__legs  { order: 3; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.hv-lifts__all {
order: 4;
align-self: stretch;
justify-content: center;
margin-top: 22px;
}
}
@media (max-width: 680px) {
.hv-lifts { padding: 46px 0; } .hv-ascent__chart { display: none; }
.hv-ascent__legs { grid-template-columns: minmax(0, 1fr); }
} .hv-news {
background: #fff;
padding: 84px 0 96px;
}
.hv-news__head {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 30px;
margin-bottom: 26px;
flex-wrap: wrap;
}
.hv-news__title {
margin: 0 0 12px;
font-size: clamp(26px, 3vw, 40px);
font-weight: 800;
letter-spacing: 1px;
color: var(--hv-ink);
text-transform: uppercase;
}
.hv-news__subtitle {
margin: 0;
max-width: 560px;
font-size: 15px;
line-height: 1.65;
color: var(--hv-muted);
}
.hv-news__all {
flex: none;
display: inline-flex;
align-items: center;
padding: 13px 26px;
border: 1px solid #D6DEE6;
border-radius: 999px;
font-size: 14px;
font-weight: 600;
color: var(--hv-ink);
text-decoration: none;
white-space: nowrap;
transition: all 0.2s ease;
}
.hv-news__all:hover {
background: var(--hv-blue);
border-color: var(--hv-blue);
color: #fff;
} .hv-news__row {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 20px;
}
.hv-newscard {
display: flex;
flex-direction: column;
background: #fff;
border: 1px solid #E8EDF2;
border-radius: 18px;
overflow: hidden;
text-decoration: none;
transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.hv-newscard:hover {
transform: translateY(-4px);
border-color: #D2DEE9;
box-shadow: 0 18px 40px rgba(16, 42, 67, 0.12);
}
.hv-newscard__media {
position: relative;
aspect-ratio: 16 / 10;
background: #DCE5ED;
overflow: hidden;
}
.hv-newscard__media img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.4s ease;
}
.hv-newscard:hover .hv-newscard__media img { transform: scale(1.05); }
.hv-newscard__body {
display: flex;
flex-direction: column;
flex: 1;
padding: 14px 16px 16px;
}
.hv-newscard__date {
display: block;
font-size: 12px;
font-weight: 500;
color: var(--hv-muted);
margin-bottom: 7px;
}
.hv-newscard__title {
margin: 0 0 8px;
font-size: 15px;
font-weight: 600;
line-height: 1.35;
color: var(--hv-ink);
}
.hv-newscard__excerpt {
margin: 0 0 14px;
font-size: 13px;
line-height: 1.55;
color: var(--hv-muted); display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.hv-newscard__more {
display: inline-flex;
align-items: center;
gap: 6px;
margin-top: auto;
font-size: 13px;
font-weight: 600;
color: var(--hv-blue);
}
.hv-newscard__more svg { flex: none; transition: transform 0.2s ease; }
.hv-newscard:hover .hv-newscard__more svg { transform: translateX(3px); } @media (max-width: 1100px) {
.hv-news__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
.hv-news { padding: 60px 0 72px; } .hv-news .hv-container {
display: flex;
flex-direction: column;
}
.hv-news__head { display: contents; }
.hv-news__intro {
order: 1;
margin-bottom: 22px;
}
.hv-news__row { order: 2; }
.hv-news__all {
order: 3;
align-self: stretch;
justify-content: center;
margin-top: 22px;
}
}
@media (max-width: 680px) {
.hv-news { padding: 46px 0 56px; }
.hv-news__row {
display: flex;
gap: 12px;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-padding-left: 24px;
margin-left: -24px;
margin-right: -24px;
padding: 4px 24px 8px;
scrollbar-width: none;
}
.hv-news__row::-webkit-scrollbar { display: none; }
.hv-newscard {
flex: 0 0 74%;
scroll-snap-align: start;
}
} .hv-travel {
background: #F4F8FB;
padding: 84px 0;
}
.hv-travel__head {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 30px;
margin-bottom: 26px;
flex-wrap: wrap;
}
.hv-travel__title {
margin: 0 0 12px;
font-size: clamp(26px, 3vw, 40px);
font-weight: 800;
letter-spacing: 1px;
color: var(--hv-ink);
text-transform: uppercase;
}
.hv-travel__subtitle {
margin: 0;
max-width: 600px;
font-size: 15px;
line-height: 1.65;
color: var(--hv-muted);
}
.hv-travel__all {
flex: none;
display: inline-flex;
align-items: center;
padding: 13px 26px;
border: 1px solid #D6DEE6;
border-radius: 999px;
background: #fff;
font-size: 14px;
font-weight: 600;
color: var(--hv-ink);
text-decoration: none;
white-space: nowrap;
transition: all 0.2s ease;
}
.hv-travel__all:hover {
background: var(--hv-blue);
border-color: var(--hv-blue);
color: #fff;
} .hv-travel__row {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 20px;
}
.hv-way {
display: flex;
flex-direction: column;
background: #fff;
border: 1px solid #E4EBF2;
border-radius: 18px;
padding: 22px 22px 18px;
text-decoration: none;
transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.hv-way:hover {
transform: translateY(-4px);
border-color: #D2DEE9;
box-shadow: 0 18px 40px rgba(16, 42, 67, 0.12);
}
.hv-way__icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 52px;
height: 52px;
border-radius: 50%;
background: #E6F0FA;
color: var(--hv-blue);
margin-bottom: 16px;
transition: background 0.2s ease, color 0.2s ease;
}
.hv-way:hover .hv-way__icon {
background: var(--hv-blue);
color: #fff;
}
.hv-way__title {
margin: 0 0 8px;
font-size: 17px;
font-weight: 700;
color: var(--hv-ink);
}
.hv-way__text {
margin: 0 0 18px;
font-size: 13px;
line-height: 1.55;
color: var(--hv-muted);
}
.hv-way__foot {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
margin-top: auto;
}
.hv-way__note {
font-size: 11px;
font-weight: 600;
padding: 4px 11px;
border-radius: 999px;
background: #F1F5F9;
color: var(--hv-muted);
}
.hv-way__arrow {
display: inline-flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border-radius: 50%;
border: 1px solid #E1E8EF;
color: var(--hv-blue);
flex: none;
transition: all 0.2s ease;
}
.hv-way:hover .hv-way__arrow {
background: var(--hv-blue);
border-color: var(--hv-blue);
color: #fff;
} @media (max-width: 1100px) {
.hv-travel__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
.hv-travel { padding: 60px 0; }
.hv-travel .hv-container {
display: flex;
flex-direction: column;
}
.hv-travel__head { display: contents; }
.hv-travel__intro {
order: 1;
margin-bottom: 22px;
}
.hv-travel__row { order: 2; }
.hv-travel__all {
order: 3;
align-self: stretch;
justify-content: center;
margin-top: 22px;
}
}
@media (max-width: 680px) {
.hv-travel { padding: 46px 0; }
.hv-travel__row { grid-template-columns: minmax(0, 1fr); gap: 12px; }
.hv-way { padding: 18px 18px 16px; }
.hv-way__icon {
width: 46px;
height: 46px;
margin-bottom: 13px;
}
.hv-way__text { margin-bottom: 14px; }
} .hv-lifts__tabs {
display: flex;
gap: 10px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.hv-lifttab {
flex: 1 1 200px;
display: flex;
align-items: center;
gap: 10px;
padding: 14px 18px;
border: 1px solid #DDE5EC;
border-radius: 14px;
background: #fff;
font-family: inherit;
text-align: left;
cursor: pointer;
transition: all 0.18s ease;
}
.hv-lifttab:hover,
.hv-lifttab:focus {
background: #fff;
border-color: #B9CBDB;
}
.hv-lifttab.is-active,
.hv-lifttab.is-active:hover,
.hv-lifttab.is-active:focus {
background: var(--hv-blue);
border-color: var(--hv-blue);
}
.hv-lifttab__dot {
width: 9px;
height: 9px;
border-radius: 50%;
flex: none;
background: #C3CCD5;
}
.hv-lifttab__dot.is-open   { background: #30D158; box-shadow: 0 0 0 3px rgba(48, 209, 88, 0.20); }
.hv-lifttab__dot.is-closed { background: #C3CCD5; }
.hv-lifttab.is-active .hv-lifttab__dot.is-closed { background: rgba(255, 255, 255, 0.55); }
.hv-lifttab__name {
flex: 1;
font-size: 14px;
font-weight: 600;
color: var(--hv-ink);
line-height: 1.3;
}
.hv-lifttab__meta {
font-size: 11px;
color: var(--hv-muted);
white-space: nowrap;
}
.hv-lifttab.is-active .hv-lifttab__name { color: #fff; }
.hv-lifttab.is-active .hv-lifttab__meta { color: rgba(255, 255, 255, 0.72); } .hv-liftpane[hidden] { display: none; }
.hv-liftpane__bar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap;
padding: 14px 18px;
background: #fff;
border: 1px solid #E4EBF2;
border-radius: 14px;
margin-bottom: 6px;
}
.hv-liftpane__facts {
display: flex;
gap: 22px;
flex-wrap: wrap;
font-size: 13px;
color: var(--hv-muted);
}
.hv-liftpane__facts strong {
font-weight: 600;
color: var(--hv-ink);
margin-right: 5px;
}
.hv-liftpane__count {
font-size: 12px;
font-weight: 600;
padding: 5px 12px;
border-radius: 999px;
background: #EAF5E0;
color: #3B6D11;
white-space: nowrap;
}
.hv-liftpane__count.is-closed {
background: #F6E9E9;
color: #A32D2D;
} .hv-ascent__legs--1 { grid-template-columns: minmax(0, 460px); }
.hv-ascent__legs--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hv-ascent__legs--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hv-ascent__legs--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) {
.hv-lifts .hv-container {
display: flex;
flex-direction: column;
}
.hv-lifts__head { display: contents; }
.hv-lifts__intro { order: 1; margin-bottom: 18px; }
.hv-lifts__tabs  { order: 2; }
.hv-liftpane     { order: 3; }
.hv-lifts__all {
order: 4;
align-self: stretch;
justify-content: center;
margin-top: 22px;
}
.hv-ascent__legs--1,
.hv-ascent__legs--2,
.hv-ascent__legs--3,
.hv-ascent__legs--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) { .hv-lifts__tabs {
flex-wrap: nowrap;
gap: 8px;
margin: 0 -24px 16px;
padding: 2px 24px 6px;
overflow-x: auto;
scroll-snap-type: x proximity;
scrollbar-width: none;
}
.hv-lifts__tabs::-webkit-scrollbar { display: none; }
.hv-lifttab {
flex: 0 0 auto;
gap: 8px;
padding: 9px 15px;
border-radius: 999px;
scroll-snap-align: center;
}
.hv-lifttab__name { font-size: 13px; }
.hv-lifttab__meta { display: none; }
.hv-liftpane__facts { gap: 6px 18px; font-size: 12px; }
.hv-ascent__legs--1,
.hv-ascent__legs--2,
.hv-ascent__legs--3,
.hv-ascent__legs--4 { grid-template-columns: minmax(0, 1fr); }
} .hv-otherlifts {
margin-top: 18px;
padding: 16px 20px;
background: #fff;
border: 1px solid #E4EBF2;
border-radius: 16px;
}
.hv-otherlifts__label {
display: block;
font-size: 11px;
font-weight: 600;
letter-spacing: 1.2px;
text-transform: uppercase;
color: var(--hv-muted);
margin-bottom: 12px;
}
.hv-otherlifts__row {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.hv-otherlift {
flex: 1 1 260px;
display: flex;
align-items: center;
gap: 10px;
padding: 12px 16px;
border: 1px solid #E8EDF2;
border-radius: 12px;
text-decoration: none;
transition: all 0.18s ease;
}
.hv-otherlift:hover {
border-color: var(--hv-blue);
background: #F4F8FB;
}
.hv-otherlift__dot {
width: 8px;
height: 8px;
border-radius: 50%;
flex: none;
background: #C3CCD5;
}
.hv-otherlift__dot.is-open   { background: #30D158; box-shadow: 0 0 0 3px rgba(48, 209, 88, 0.20); }
.hv-otherlift__dot.is-closed { background: #C3CCD5; }
.hv-otherlift__name {
font-size: 14px;
font-weight: 600;
color: var(--hv-ink);
white-space: nowrap;
}
.hv-otherlift__price {
flex: 1;
text-align: right;
font-size: 13px;
color: var(--hv-muted);
}
@media (max-width: 680px) {
.hv-otherlifts { padding: 14px 16px; }
.hv-otherlift { flex: 1 1 100%; }
.hv-otherlift__price { font-size: 12px; }
} .hv-leg__price {
margin: 10px 0 0;
font-size: 16px;
font-weight: 700;
color: var(--hv-ink);
}
.hv-leg--off .hv-leg__price { color: var(--hv-muted); } .hv-tickets__total {
margin: 0 0 4px;
padding: 12px 18px;
background: #fff;
border: 1px solid #E4EBF2;
border-radius: 12px;
font-size: 14px;
color: var(--hv-muted);
}
.hv-tickets__total strong {
font-size: 17px;
font-weight: 700;
color: var(--hv-ink);
}
.hv-lifts__tabs--prices { margin-bottom: 16px; } .hv-about {
padding: 64px 0;
background: var(--hv-navy, #0B3A66);
color: #fff;
}
.hv-about__inner {
max-width: 760px;
margin: 0 auto;
text-align: center;
}
.hv-about__title {
margin: 0 0 16px;
font-size: 34px;
font-weight: 800;
letter-spacing: 0.5px;
color: #fff;
}
.hv-about__text {
margin: 0;
font-size: 17px;
line-height: 1.7;
color: rgba(255, 255, 255, 0.86);
}
@media (max-width: 680px) {
.hv-about { padding: 44px 0; }
.hv-about__title { font-size: 26px; }
.hv-about__text { font-size: 15px; line-height: 1.6; text-align: left; }
.hv-about__inner { text-align: left; }
}