.hp-main { display: flex; flex-direction: column; } .hp-section-link {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 14px;
font-weight: 700;
color: var(--color-primary);
text-decoration: none;
white-space: nowrap;
flex-shrink: 0;
transition: gap .2s;
}
.hp-section-link:hover { gap: 12px; }
.hp-section-link--light { color: rgba(255,255,255,.8); }
.hp-section-link--light:hover { color: #fff; } .hp-widget-wrap {
padding: var(--section-gap) 0;
}
.hp-widget-wrap .container { max-width: 1140px; margin: 0 auto; } .hp-hero {
position: relative;
height: 100svh;
min-height: 620px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
color: #fff;
} .hp-hero__slides { position: absolute; inset: 0; }
.hp-hero__slide {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
opacity: 0;
transition: opacity 1.5s ease;
transform: scale(1.05);
animation: hp-zoom 14s ease-in-out infinite;
}
.hp-hero__slide.is-active { opacity: 1; }
@keyframes hp-zoom {
0%   { transform: scale(1.05); }
50%  { transform: scale(1.0); }
100% { transform: scale(1.05); }
} .hp-hero__overlay {
position: absolute;
inset: 0;
background:
linear-gradient(to bottom,
rgba(15,23,42,.25) 0%,
rgba(15,23,42,.60) 55%,
rgba(15,23,42,.90) 100%),
linear-gradient(160deg, rgba(24,42,99,.5) 0%, transparent 55%);
} .hp-hero__scanlines {
position: absolute;
inset: 0;
pointer-events: none;
background: repeating-linear-gradient(
to bottom,
transparent 0px, transparent 3px,
rgba(0,0,0,.06) 3px, rgba(0,0,0,.06) 4px
);
opacity: .4;
} .hp-hero__inner {
position: relative;
z-index: 2;
text-align: center;
padding: 0 24px;
max-width: 820px;
}
.hp-hero__pre {
font-size: 12px;
font-weight: 700;
letter-spacing: .18em;
text-transform: uppercase;
color: rgba(255,255,255,.6);
margin: 0 0 22px;
}
.hp-hero__h1 {
font-size: clamp(46px, 8vw, 96px);
font-weight: 900;
line-height: .98;
letter-spacing: -.05em;
margin: 0 0 22px;
color: #fff;
}
.hp-hero__h1 em {
font-style: italic;
font-weight: 300;
color: rgba(255,255,255,.55);
}
.hp-hero__sub {
font-size: clamp(13px, 1.6vw, 15px);
font-weight: 500;
color: rgba(255,255,255,.58);
letter-spacing: .04em;
margin: 0 0 40px;
} .hp-hero__scroll {
position: absolute;
bottom: 36px;
left: 50%;
transform: translateX(-50%);
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
animation: hp-bounce 2.4s ease-in-out infinite;
}
.hp-hero__scroll-line {
display: block;
width: 1.5px;
height: 40px;
background: linear-gradient(to bottom, transparent, rgba(255,255,255,.55));
}
.hp-hero__scroll-label {
font-size: 9px;
font-weight: 700;
letter-spacing: .16em;
text-transform: uppercase;
color: rgba(255,255,255,.38);
}
@keyframes hp-bounce {
0%, 100% { transform: translateX(-50%) translateY(0); }
50%       { transform: translateX(-50%) translateY(9px); }
} .hp-search {
position: relative;
max-width: 520px;
margin: 0 auto;
}
.hp-search__box {
display: flex;
align-items: center;
gap: 10px;
background: rgba(255,255,255,.10);
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
border: 1.5px solid rgba(255,255,255,.25);
border-radius: 999px;
padding: 0 22px 0 18px;
transition: background .2s, border-color .2s, box-shadow .25s;
}
.hp-search__box:focus-within {
background: rgba(255,255,255,.18);
border-color: rgba(255,255,255,.55);
box-shadow: 0 10px 40px rgba(0,0,0,.28);
}
.hp-search__icon {
width: 18px; height: 18px;
flex-shrink: 0;
color: rgba(255,255,255,.7);
}
.hp-search__input {
flex: 1;
background: none;
border: none;
outline: none;
font-size: 16px;
font-weight: 500;
color: #fff;
line-height: 54px;
height: 54px;
min-width: 0;
}
.hp-search__input::placeholder { color: rgba(255,255,255,.5); }
.hp-search__caret {
font-size: 11px;
color: rgba(255,255,255,.4);
flex-shrink: 0;
}
.hp-search__results {
display: none;
position: absolute;
top: calc(100% + 10px);
left: 0; right: 0;
background: #fff;
border-radius: 18px;
box-shadow: 0 24px 60px -12px rgba(15,23,42,.38);
max-height: 360px;
overflow-y: auto;
list-style: none;
margin: 0;
padding: 8px;
z-index: 200;
border: 1px solid rgba(15,23,42,.07);
}
.hp-search__results.is-open { display: block; }
.hp-search__item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 11px 14px;
border-radius: 11px;
text-decoration: none;
color: var(--color-text);
transition: background .14s, color .14s;
}
.hp-search__item:hover,
.hp-search__results li.is-focused .hp-search__item {
background: var(--color-bg-soft);
color: var(--color-primary);
}
.hp-search__name {
font-size: 15px;
font-weight: 600;
}
.hp-search__count {
font-size: 12px;
font-weight: 500;
color: var(--color-text-muted);
background: var(--color-bg-soft);
border-radius: 999px;
padding: 2px 11px;
flex-shrink: 0;
} .hp-features {
padding: var(--section-gap) 0;
background: var(--color-bg-soft);
}
.hp-features .section-head { margin-bottom: 42px; }
.hp-features__grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 20px;
}
.hp-feat {
background: #fff;
border-radius: var(--radius-card);
padding: 30px 22px;
text-align: center;
box-shadow: var(--shadow-card);
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
transition: transform .25s, box-shadow .25s, opacity .4s, translate .4s;
opacity: 0;
translate: 0 18px;
}
.hp-feat.is-visible {
opacity: 1;
translate: 0 0;
}
.hp-feat:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-card-hover);
}
.hp-feat:nth-child(1) { transition-delay: 0s; }
.hp-feat:nth-child(2) { transition-delay: .07s; }
.hp-feat:nth-child(3) { transition-delay: .14s; }
.hp-feat:nth-child(4) { transition-delay: .21s; }
.hp-feat:nth-child(5) { transition-delay: .28s; }
.hp-feat__icon {
width: 52px; height: 52px;
display: flex; align-items: center; justify-content: center;
background: linear-gradient(135deg, rgba(32,60,133,.12), rgba(32,60,133,.04));
border-radius: 14px;
color: var(--color-primary);
flex-shrink: 0;
}
.hp-feat__icon svg { width: 26px; height: 26px; }
.hp-feat__label {
font-size: 14px;
font-weight: 700;
color: var(--color-text);
display: block;
}
.hp-feat__desc {
font-size: 13px;
line-height: 1.55;
color: var(--color-text-muted);
margin: 0;
} .hp-guides {
padding: var(--section-gap) 0;
}
.hp-guides__head {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 16px;
margin-bottom: 32px;
}
.hp-guides__head .section-title { margin: 0; } .hp-hotels {
padding: var(--section-gap) 0;
background: linear-gradient(135deg, #1b2f63 0%, #203c85 55%, #24337a 100%);
color: #fff;
}
.hp-hotels__head {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 24px;
margin-bottom: 36px;
}
.hp-hotels__head .section-title { color: #fff; margin: 8px 0 0; }
.hp-hotels__sub {
font-size: 14px;
color: rgba(255,255,255,.6);
margin: 6px 0 0;
}
.hp-hotels__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
} .hp-hotels .hotel-card {
background: rgba(255,255,255,.07);
border: 1px solid rgba(255,255,255,.14);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
}
.hp-hotels .hotel-card:hover {
background: rgba(255,255,255,.11);
transform: translateY(-4px);
}
.hp-hotels .hotel-name { color: #fff; }
.hp-hotels .hotel-area { color: rgba(255,255,255,.55); }
.hp-hotels .hotel-desc { color: rgba(255,255,255,.6); }
.hp-hotels .hotel-score { background: rgba(255,255,255,.14); color: #fff; }
.hp-hotels .hotel-rwords { color: rgba(255,255,255,.75); }
.hp-hotels .hotel-reviews { color: rgba(255,255,255,.5); }
.hp-hotels .hotel-price { color: rgba(255,255,255,.7); }
.hp-hotels .hotel-stars span { color: rgba(255,255,255,.3); }
.hp-hotels .hotel-stars span.is-on { color: #fbbf24; } .hp-facts {
padding: var(--section-gap) 0;
background: #080e22;
color: #fff;
}
.hp-facts__head {
display: flex;
align-items: center;
gap: 12px;
justify-content: center;
margin-bottom: 32px;
}
.hp-facts__emoji { font-size: 28px; line-height: 1; }
.hp-facts__head .sw-eyebrow { color: rgba(255,255,255,.6); }
.hp-facts__stage {
max-width: 740px;
margin: 0 auto;
min-height: 100px;
}
.hp-facts__slide {
display: none;
animation: hp-fact-in .5s ease;
}
.hp-facts__slide.is-active { display: block; }
@keyframes hp-fact-in {
from { opacity: 0; transform: translateY(14px); }
to   { opacity: 1; transform: translateY(0); }
}
.hp-facts__quote {
font-size: clamp(18px, 2.8vw, 26px);
font-weight: 400;
line-height: 1.55;
color: rgba(255,255,255,.88);
text-align: center;
margin: 0 0 22px;
border: none;
padding: 0;
font-style: normal;
}
.hp-facts__footer {
display: flex;
align-items: center;
gap: 18px;
justify-content: center;
}
.hp-facts__city {
font-size: 12px;
font-weight: 700;
letter-spacing: .1em;
text-transform: uppercase;
color: rgba(255,255,255,.38);
}
.hp-facts__link {
font-size: 13px;
font-weight: 700;
color: #7fa8ff;
text-decoration: none;
transition: color .15s;
}
.hp-facts__link:hover { color: #fff; }
.hp-facts__dots {
display: flex;
gap: 9px;
justify-content: center;
margin-top: 32px;
flex-wrap: wrap;
}
.hp-facts__dot {
width: 7px; height: 7px;
border-radius: 50%;
border: none;
background: rgba(255,255,255,.18);
cursor: pointer;
padding: 0;
transition: background .2s, transform .2s;
}
.hp-facts__dot.is-active {
background: rgba(255,255,255,.85);
transform: scale(1.35);
} @media (max-width: 1100px) {
.hp-features__grid { grid-template-columns: repeat(3, 1fr); }
.hp-hotels__grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
.hp-features__grid { grid-template-columns: repeat(2, 1fr); }
.hp-hotels__grid   { grid-template-columns: 1fr; }
.hp-guides__head   { flex-direction: column; align-items: flex-start; gap: 12px; }
.hp-hotels__head   { flex-direction: column; gap: 16px; }
}
@media (max-width: 480px) {
.hp-features__grid { grid-template-columns: 1fr; }
.hp-hero__h1       { letter-spacing: -.03em; }
.hp-facts__quote   { font-size: 17px; }
}