/* ==================== VARIABLES ==================== */
:root {
    /* Golden ratio φ = 1.618 */
    --phi: 1.618;
    /* Fibonacci spacing: 8, 13, 21, 34, 55, 89 */
    --space-xs: 8px;
    --space-sm: 13px;
    --space-md: 21px;
    --space-lg: 34px;
    --space-xl: 55px;
    --space-2xl: 89px;
    /* Golden typography ladder */
    --text-xs: 10px;
    --text-sm: 13px;
    --text-base: 16px;
    --text-lg: 20px;
    --text-xl: 26px;
    --text-2xl: 42px;
    --text-3xl: 68px;
    --text-hero: 110px;
    /* Line heights */
    --leading: 1.618;
    --leading-tight: 1.25;
    --leading-snug: 1.382;

    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary: #8b5cf6;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 13px;
    --radius-lg: 21px;
    --radius-xl: 34px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==================== RESET ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
::-webkit-scrollbar { width: 0; height: 0; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray-900);
    background: var(--gray-50);
    line-height: 1.618;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-size: var(--text-base);
}
a { color: inherit; }
button { font-family: inherit; }
img { max-width: 100%; }

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0 21px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.95);
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo__icon { font-size: 18px; }

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo__name {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.logo__location {
    font-size: var(--text-xs);
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.618px;
}

/* ==================== NAV ==================== */
.nav {
    display: none;
    gap: 8px;
    align-items: center;
}

@media (min-width: 1024px) {
    .nav { display: flex; }
}

.nav-link {
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
    border: none;
    background: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover,
.nav-link--active {
    color: var(--primary);
    background: rgba(14, 165, 233, 0.08);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown__menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(13px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
    pointer-events: auto;
}

.nav-dropdown__item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 8px 13px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-dropdown__item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.nav-dropdown__icon {
    font-size: 21px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.nav-dropdown__item:hover .nav-dropdown__icon {
    background: rgba(14, 165, 233, 0.1);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 13px;
}

@media (min-width: 1024px) {
    .header-actions { display: flex; }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 21px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    white-space: nowrap;
    line-height: 1.618;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

.btn--outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}
.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(14, 165, 233, 0.05);
}

.btn--accent {
    background: linear-gradient(135deg, var(--accent) 0%, #F7931E 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}
.btn--accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,107,53,0.5);
}

.btn--sm { padding: 8px 21px; font-size: var(--text-sm); }
.btn--lg { padding: 21px 55px; font-size: 18px; }

/* ==================== BURGER ==================== */
.burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1200;
    width: 28px;
    height: 28px;
}

@media (min-width: 1024px) {
    .burger { display: none; }
}

.burger span {
    width: 18px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--white);
}
.burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--white);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    z-index: 1100;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 1px solid rgba(255,255,255,0.08);
    box-shadow: 20px 0 60px rgba(0,0,0,0.5);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    z-index: 1090;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu__overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 80px 21px 34px;
    overflow-y: auto;
}

.mobile-menu__header {
    padding: 0 0 21px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 21px;
}

.mobile-menu__brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.mobile-menu__brand-icon { font-size: 21px; }
.mobile-menu__brand-name { font-size: 21px; font-weight: 800; color: #fff; }
.mobile-menu__brand-sub { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1.618px; }

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 13px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-radius: 13px;
    transition: all 0.2s;
    width: 100%;
    text-align: left;
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.mobile-menu__link-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    font-size: 18px;
    flex-shrink: 0;
}

.mobile-menu__link--active .mobile-menu__link-icon {
    background: rgba(14, 165, 233, 0.2);
}

.mobile-menu__actions {
    padding-top: 21px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.mobile-menu__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    text-decoration: none;
}

/* ==================== HERO MAP ==================== */
.hero-map {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0a0a2e 0%, #1a1a4e 30%, #2d4a6f 60%, #87CEEB 100%);
    overflow: hidden;
    padding: 89px 21px 55px;
    margin-top: 55px;
}

.hero-map__bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='10' cy='10' r='1' fill='white' opacity='0.8'/%3E%3Ccircle cx='50' cy='30' r='0.5' fill='white' opacity='0.6'/%3E%3Ccircle cx='80' cy='60' r='1.2' fill='white' opacity='0.7'/%3E%3Ccircle cx='30' cy='80' r='0.8' fill='white' opacity='0.5'/%3E%3Ccircle cx='70' cy='20' r='1' fill='white' opacity='0.9'/%3E%3C/svg%3E");
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-map__content {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 55px;
}

.hero-map__title {
    font-size: clamp(42px, 8vw, var(--text-3xl));
    font-weight: 900;
    color: white;
    text-shadow: 0 0 60px rgba(255,215,0,0.4);
    margin-bottom: 21px;
    letter-spacing: 0.05em;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 40px rgba(14, 165, 233, 0.3); }
    to { text-shadow: 0 0 80px rgba(14, 165, 233, 0.6), 0 0 40px rgba(255,215,0,0.3); }
}

.hero-map__subtitle {
    font-size: clamp(16px, 2vw, var(--text-xl));
    color: rgba(255,255,255,0.9);
    margin-bottom: 55px;
}

.hero-map__svg {
    position: relative;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ==================== HERO SEARCH ==================== */
.hero-search {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    z-index: 20;
}

.hero-search__input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 8px 8px 8px 21px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.hero-search__input-wrap:focus-within {
    box-shadow: 0 8px 40px rgba(0,0,0,0.25), 0 0 0 3px rgba(14, 165, 233, 0.3);
    transform: translateY(-2px);
}

.hero-search__icon {
    flex-shrink: 0;
    color: var(--gray-400);
}

.hero-search__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 8px;
    font-size: 13px;
    background: transparent;
    color: var(--gray-900);
    min-width: 0;
}

.hero-search__input::placeholder {
    color: var(--gray-400);
}

.hero-search__btn {
    padding: 10px 21px;
    background: linear-gradient(135deg, var(--accent) 0%, #F7931E 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.hero-search__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.hero-search__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-100);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 30;
}

.hero-search__dropdown.active {
    display: block;
    animation: dropdownIn 0.2s ease-out;
}

@keyframes dropdownIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-search__suggestions {
    padding: 8px;
}

.search-suggestion {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 8px 13px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    color: var(--gray-700);
}

.search-suggestion:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.search-suggestion__icon {
    font-size: 21px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.search-suggestion__text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.search-suggestion__text p {
    font-size: 12px;
    color: var(--gray-500);
}

.search-section-label {
    padding: 8px 16px 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 89px 21px;
}

.section--dark {
    background: var(--dark);
    color: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(34px, 5vw, 55px);
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 21px;
    letter-spacing: -1px;
    line-height: 1.25;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 55px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.618;
}

/* ==================== STATS ==================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 21px;
}

.stat-card {
    text-align: center;
    padding: 55px 21px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 55px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.25;
}

.stat-label {
    font-size: var(--text-base);
    color: var(--gray-500);
    font-weight: 500;
    line-height: 1.618;
}

/* ==================== CAROUSEL ==================== */
.carousel {
    position: relative;
    overflow: hidden;
    padding: 0 0 34px;
}

.carousel__track {
    display: flex;
    gap: 21px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 13px 8px;
    scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
    display: none;
}

.carousel__track > * {
    flex: 0 0 342px;
    scroll-snap-align: start;
    min-width: 342px;
}

@media (max-width: 768px) {
    .carousel__track > * {
        flex: 0 0 280px;
        min-width: 280px;
    }
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 21px));
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    color: var(--gray-700);
}

.carousel__btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(calc(-50% - 21px)) scale(1.1);
    box-shadow: 0 8px 25px rgba(14,165,233,0.3);
}

.carousel__btn--prev { left: -4px; }
.carousel__btn--next { right: -4px; }

@media (max-width: 768px) {
    .carousel__btn { display: none; }
}

.carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
}

.carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel__dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ==================== CARDS ==================== */
.cablecar-card,
.attraction-card,
.hotel-card,
.service-card,
.review-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 34px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-100);
}

.cablecar-card:hover,
.attraction-card:hover,
.hotel-card:hover,
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.cablecar-icon,
.attraction-icon,
.service-icon {
    font-size: 55px;
    margin-bottom: 21px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cablecar-card:hover .cablecar-icon,
.attraction-card:hover .attraction-icon,
.service-card:hover .service-icon {
    transform: scale(1.2) rotate(-5deg);
}

.cablecar-card h3,
.attraction-card h3,
.service-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 13px;
    line-height: 1.382;
}

.cablecar-card p,
.attraction-card p,
.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.618;
    margin-bottom: 21px;
}

.cablecar-meta,
.attraction-meta,
.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.cablecar-price {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 21px;
    padding-top: 21px;
    border-top: 1px solid var(--gray-100);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* Hotel Card */
.hotel-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.hotel-card__image {
    height: 211px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    margin: -34px -34px 21px;
    position: relative;
    overflow: hidden;
}

.hotel-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.1));
}

.hotel-card__badge {
    position: absolute;
    top: 21px;
    right: 21px;
    padding: 8px 13px;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.hotel-card__type {
    display: inline-block;
    padding: 4px 13px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.hotel-card__type--hotel { background: #dbeafe; color: #1e40af; }
.hotel-card__type--camping { background: #dcfce7; color: #166534; }
.hotel-card__type--guesthouse { background: #fef3c7; color: #92400e; }

.hotel-card__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 8px;
}

.hotel-card__price {
    font-size: 34px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.25;
}

.hotel-card__price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-500);
}

.hotel-card__btn {
    margin-top: 21px;
    width: 100%;
}

/* Review Card */
.review-card {
    position: relative;
}

.review-card__stars {
    display: flex;
    gap: 8px;
    margin-bottom: 21px;
    color: #fbbf24;
    font-size: 18px;
}

.review-card__text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.618;
    margin-bottom: 21px;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.review-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.review-card__name {
    font-weight: 600;
    color: var(--gray-900);
}

.review-card__location {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.review-stats {
    display: flex;
    justify-content: center;
    gap: 55px;
    margin-bottom: 89px;
}

.review-stats__item { text-align: center; }

.review-stats__value {
    font-size: 55px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.25;
}

.review-stats__label {
    font-size: var(--text-base);
    color: var(--gray-500);
}

/* ==================== SKELETON LOADING ==================== */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.618s infinite;
    border-radius: var(--radius-md);
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    height: 342px;
    border-radius: var(--radius-xl);
}

.skeleton-card--short {
    height: 211px;
}

/* ==================== SCROLL REVEAL ==================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== MODALS ==================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 21px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
}

.modal__container {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-2xl);
}

.modal__container--sm {
    max-width: 480px;
}

.modal.active .modal__container {
    transform: scale(1) translateY(0);
}

.modal__close {
    position: absolute;
    top: 21px;
    right: 21px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gray-100);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    color: var(--gray-600);
}

.modal__close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
    transform: rotate(90deg);
}

.modal__body {
    padding: 34px;
}

.modal__title {
    font-size: var(--text-xl);
    font-weight: 800;
    margin-bottom: 21px;
    color: var(--gray-900);
    line-height: 1.382;
}

/* ==================== BOOKING FORM ==================== */
.form-group {
    margin-bottom: 21px;
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 13px 21px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--gray-900);
    transition: var(--transition);
    background: var(--white);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
}

.booking-total {
    padding: 21px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 21px;
    display: none;
}

.booking-total.active {
    display: block;
}

/* ==================== TOAST NOTIFICATIONS ==================== */
.toast-container {
    position: fixed;
    top: 89px;
    right: 21px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 13px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 21px 21px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border-left: 4px solid var(--gray-300);
    min-width: 300px;
    max-width: 420px;
    pointer-events: auto;
    animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: all 0.3s ease;
}

.toast.removing {
    animation: toastOut 0.3s ease forwards;
}

.toast--success { border-left-color: var(--success); }
.toast--error { border-left-color: var(--error); }
.toast--warning { border-left-color: var(--warning); }
.toast--info { border-left-color: var(--primary); }

.toast__icon {
    font-size: 21px;
    flex-shrink: 0;
}

.toast__content {
    flex: 1;
}

.toast__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

.toast__message {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-top: 4px;
}

.toast__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    padding: 4px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.toast__close:hover {
    color: var(--gray-700);
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(100px) scale(0.9); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to { opacity: 0; transform: translateX(100px) scale(0.9); }
}

/* ==================== BREADCRUMBS ==================== */
.breadcrumbs {
    padding: 16px 20px;
    font-size: var(--text-sm);
    color: var(--gray-500);
    max-width: 1200px;
    margin: 50px auto 0;
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs__sep {
    margin: 0 8px;
    color: var(--gray-300);
}

.breadcrumbs__current {
    color: var(--gray-700);
    font-weight: 500;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 34px;
    right: 34px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(14,165,233,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(21px);
    transition: var(--transition);
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(14,165,233,0.5);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 89px 21px 55px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 55px;
    margin-bottom: 55px;
}

.footer__brand h3 {
    font-size: var(--text-xl);
    font-weight: 800;
    margin-bottom: 21px;
}

.footer__brand p {
    color: var(--gray-400);
    font-size: 14px;
    line-height: 1.618;
}

.footer__title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.618px;
    margin-bottom: 21px;
    color: var(--gray-400);
}

.footer__links {
    list-style: none;
}

.footer__links li { margin-bottom: 13px; }

.footer__links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
    padding-top: 55px;
    border-top: 1px solid var(--gray-700);
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
}

/* ==================== MOBILE BOTTOM NAV ==================== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.mobile-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 13px;
    color: var(--gray-500);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.mobile-bottom-nav__item svg {
    width: 21px;
    height: 21px;
}

.mobile-bottom-nav__item--active {
    color: var(--primary);
}

.mobile-bottom-nav__item:hover {
    color: var(--primary);
    background: rgba(14, 165, 233, 0.08);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero-map { padding: 89px 16px 55px; }
    .section { padding: 55px 16px; }
    .stat-number { font-size: 42px; }
    .reviews-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 21px;
    }
    .review-stats { flex-direction: column; gap: 21px; }
    .footer__content { grid-template-columns: 1fr; gap: 34px; }
    .footer__bottom { text-align: center; }
    .hero-search__btn { padding: 13px 21px; font-size: 14px; }
    .modal__body { padding: 21px; }
    .form-row { grid-template-columns: 1fr; }
    .back-to-top { bottom: 21px; right: 21px; width: 42px; height: 42px; }
    .toast-container { right: 16px; left: 16px; }
    .toast { min-width: auto; max-width: none; }
}

/* ==================== HOME HERO ==================== */
.home-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
    padding: 55px 21px 0;
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(14,165,233,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.home-hero__mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    line-height: 0;
}

.home-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 700px;
    padding-bottom: 30px;
}

.home-hero__title--new {
    font-size: clamp(42px, 9vw, 89px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 21px;
    text-shadow: 0 0 60px rgba(14, 165, 233, 0.4), 0 4px 30px rgba(0,0,0,0.5);
}

.home-hero__title--new span {
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero__subtitle--new {
    font-size: clamp(16px, 2.5vw, var(--text-xl));
    color: rgba(255,255,255,0.5);
    max-width: 550px;
    margin: 0 auto 34px;
    line-height: 1.618;
    letter-spacing: 0.5px;
}

.home-hero__cta {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.home-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 34px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    justify-content: center;
}

.home-hero__btn--primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(14,165,233,0.5);
}

.home-hero__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(14,165,233,0.6);
}

.home-hero__btn--outline {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}

.home-hero__btn--outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-3px);
}

/* Hero search */
.home-hero__search {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    padding: 4px 4px 4px 16px;
    backdrop-filter: blur(8px);
}
.home-hero__search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}
.home-hero__search-input::placeholder {
    color: rgba(255,255,255,0.4);
}
.home-hero__search-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.home-hero__search-btn:hover {
    background: rgba(255,255,255,0.25);
}

.home-hero__stats-mini {
    display: flex;
    gap: 13px;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: var(--text-sm);
    font-weight: 500;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .home-hero {
        height: 100vh;
        min-height: 100vh;
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .home-hero__content {
        padding-bottom: 0;
    }
    .home-hero__title--new {
        font-size: 32px;
        letter-spacing: -1px;
        margin-bottom: 8px;
    }
    .home-hero__subtitle--new {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .home-hero__btn {
        width: 100%;
        padding: 10px 21px;
        font-size: 13px;
        gap: 6px;
    }
    .home-hero__weather {
        gap: 10px;
        padding: 8px 13px;
    }
    .home-hero__weather-item {
        font-size: 11px;
    }
    .home-hero__weather-divider {
        height: 13px;
    }
    .home-hero__mountains svg {
        max-height: 80px;
    }
}

/* Hero weather strip */
.home-hero__weather {
    display: flex;
    align-items: center;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 13px 21px;
    background: rgba(255,255,255,0.06);
    border-radius: 13px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    margin-top: 21px;
}

.home-hero__weather-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: var(--text-sm);
    white-space: nowrap;
}

.home-hero__weather-item strong {
    color: #fff;
    font-weight: 700;
}

.home-hero__weather-divider {
    width: 1px;
    height: 21px;
    background: rgba(255,255,255,0.15);
}

@media (max-width: 767px) {
    .home-hero__weather {
        gap: 13px;
        padding: 13px 13px;
    }
    .home-hero__weather-item {
        font-size: 12px;
    }
}

.home-hero__subtitle {
    font-size: clamp(16px, 2.5vw, var(--text-lg));
    color: rgba(255,255,255,0.65);
    max-width: 550px;
    margin: 0 auto 4px;
    line-height: 1.618;
}

.home-hero__filters {
    display: flex;
    gap: 13px;
    margin-top: 21px;
    flex-wrap: wrap;
    justify-content: center;
}

.home-hero__filter {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 13px;
    padding: 8px 13px;
    min-width: 130px;
    backdrop-filter: blur(8px);
    text-align: left;
}

.home-hero__filter-label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.home-hero__filter-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: var(--text-sm);
    font-weight: 600;
    outline: none;
    width: 100%;
    font-family: inherit;
}

.home-hero__filter-input option {
    background: var(--dark);
    color: #fff;
}

@media (max-width: 767px) {
    .home-hero__filters {
        gap: 8px;
    }
    .home-hero__filter {
        min-width: calc(50% - 4px);
        flex: 1 1 calc(50% - 4px);
    }
}

/* ==================== HOME WEATHER BAR ==================== */
.home-weather {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 21px 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

.home-weather__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.home-weather__temp {
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--primary-light);
}

.home-weather__stat {
    display: flex;
    gap: 21px;
    align-items: center;
    flex-wrap: wrap;
}

.home-weather__stat span {
    color: rgba(255,255,255,0.5);
    font-size: var(--text-sm);
}

.home-weather__stat strong {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 767px) {
    .home-weather {
        gap: 13px;
        padding: 13px 16px;
    }
    .home-weather__stat {
        gap: 13px;
    }
}

/* ==================== QUICK ACTIONS ==================== */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
    max-width: 800px;
    margin: -21px auto 55px;
    padding: 0 21px;
    position: relative;
    z-index: 10;
}

.quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 21px 13px 21px;
    background: #fff;
    border-radius: 13px;
    border: 1px solid var(--gray-200);
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.quick-action:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(14,165,233,0.15);
    transform: translateY(-4px);
}

.quick-action__icon {
    font-size: 34px;
}

.quick-action__name {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--gray-800);
}

.quick-action__count {
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 500;
}

@media (max-width: 767px) {
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: -13px;
    }
}

/* ==================== SCROLL SECTION ==================== */
.scroll-section {
    padding: 0 21px 55px;
    max-width: 1280px;
    margin: 0 auto;
}

.scroll-section__title {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 21px;
    letter-spacing: -0.5px;
    line-height: 1.382;
}

.scroll-section__track {
    display: flex;
    gap: 13px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
    cursor: grab;
}

.scroll-section__track::-webkit-scrollbar {
    display: none;
}

.scroll-section__track:active {
    cursor: grabbing;
}

.scroll-card {
    flex: 0 0 237px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 13px;
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
    cursor: pointer;
}

.scroll-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.scroll-card__icon {
    height: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.scroll-card__body {
    padding: 13px 21px 21px;
}

.scroll-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
    line-height: 1.382;
}

.scroll-card__meta {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.618;
}

.scroll-card__price {
    font-size: 21px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 8px;
}

@media (max-width: 767px) {
    .scroll-section {
        padding: 0 16px 34px;
    }
    .scroll-card {
        flex: 0 0 198px;
    }
    .scroll-card__icon {
        height: 122px;
        font-size: 42px;
    }
}

/* ==================== HOME EVENTS ==================== */
.home-events {
    padding: 55px 21px;
    background: var(--gray-50);
}

.home-events__title {
    font-size: var(--text-xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: 34px;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.home-events__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 21px;
    max-width: 1100px;
    margin: 0 auto;
}

.home-events__card {
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    background: #fff;
    transition: transform 0.25s, box-shadow 0.25s;
}

.home-events__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.home-events__card-img {
    height: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.home-events__card-body {
    padding: 21px;
}

.home-events__card-date {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.home-events__card-name {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.382;
}

.home-events__card-desc {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.618;
}

@media (max-width: 1024px) {
    .home-events__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .home-events__grid {
        grid-template-columns: 1fr;
    }
    .home-events__card {
        display: flex;
        flex-direction: row;
    }
    .home-events__card-img {
        width: 100px;
        height: auto;
        min-height: 100px;
        flex-shrink: 0;
    }
}

/* ==================== ACTIVITY CATEGORY GRID ==================== */
.activity-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
    max-width: 1000px;
    margin: 0 auto;
}

.activity-cat {
    background: #fff;
    border-radius: 21px;
    padding: 34px 21px;
    text-align: center;
    border: 2px solid var(--gray-100);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: block;
}

.activity-cat:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.activity-cat__icon {
    font-size: 48px;
    margin-bottom: 13px;
}

.activity-cat__name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.activity-cat__desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.618;
}

@media (max-width: 767px) {
    .activity-cat-grid { grid-template-columns: 1fr 1fr; gap: 13px; }
    .activity-cat { padding: 21px 13px; }
    .activity-cat__icon { font-size: 34px; }
    .activity-cat__name { font-size: 15px; }
}

/* ==================== FORECAST STRIP ==================== */
.home-forecast {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px 48px;
}

.forecast-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.forecast-strip::-webkit-scrollbar {
    display: none;
}

.forecast-day {
    flex: 0 0 100px;
    background: rgba(255,255,255,0.06);
    border-radius: 13px;
    padding: 13px 10px;
    text-align: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
}

.forecast-day__name {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.7;
}

.forecast-day__date {
    font-size: 11px;
    opacity: 0.5;
}

.forecast-day__icon {
    font-size: 24px;
    margin: 6px 0;
}

.forecast-day__temp {
    font-size: 14px;
    font-weight: 700;
}

.forecast-day__rain {
    font-size: 11px;
    color: #60a5fa;
    margin-top: 4px;
}

.forecast-day__wind {
    font-size: 11px;
    opacity: 0.5;
    margin-top: 2px;
}

@media (max-width: 767px) {
    .forecast-day { flex: 0 0 80px; padding: 8px 6px; }
}

/* ==================== HOME CTA ==================== */
.home-cta {
    padding: 89px 21px;
    text-align: center;
    background: linear-gradient(160deg, #0c1220, #1e293b);
}

.home-cta h2 {
    font-size: clamp(26px, 4vw, var(--text-2xl));
    font-weight: 800;
    color: #fff;
    margin-bottom: 13px;
    line-height: 1.382;
}

.home-cta p {
    font-size: var(--text-base);
    color: rgba(255,255,255,0.6);
    margin-bottom: 34px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.618;
}

/* Page transitions */
body{opacity:0;transition:opacity .3s ease}
body.loaded{opacity:1}

/* ==================== RESORT SWITCHER ==================== */
.resort-switcher { display: flex; gap: 4px; background: rgba(14,165,233,0.08); border-radius: 10px; padding: 3px; margin-left: 21px; }
.resort-btn { padding: 5px 13px; border-radius: 8px; border: none; background: transparent; color: var(--gray-400); font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.resort-btn.active { background: #0ea5e9; color: #fff; }
.resort-btn:hover:not(.active) { color: var(--gray-900); }

@media (max-width: 767px) { .resort-switcher { margin-left: 0; margin-top: 4px; } }
