/* ============================================
   TRAVEL GUIDE TO ASIA — DESIGN SYSTEM 2.0
   White-Minimal · Orange + Teal Brand
   ============================================ */

/* ============ DESIGN TOKENS ============ */
:root {


    /* Brand Colors */
    --orange:        #ED9946;
    --orange-dark:   #D97B34;
    --orange-light:  #F5A962;
    --orange-pale:   #FFF4E6;

    --teal:          #219B9C;
    --teal-dark:     #1A7A7B;
    --teal-light:    #35B4B5;
    --teal-pale:     #E6F7F7;

    --gold:          #E8C468;
    
        /* Semantic Colors */
--color-success-light: #D1FAE5;
--color-success-base:  #10B981;
--color-success-dark:  #047857;

--color-warning-light: #FEF3C7;
--color-warning-base:  #F59E0B;
--color-warning-dark:  #D97706;

--color-error-light:   #FEE2E2;
--color-error-base:    #EF4444;
--color-error-dark:    #DC2626;

--color-info-light:    #DBEAFE;
--color-info-base:     #3B82F6;
--color-info-dark:     #2563EB;

    /* Neutrals — pure white backgrounds, dark readable text */
    --white:         #FFFFFF;
    --bg:            #FFFFFF;
    --bg-subtle:     #F8F9FA;
    --bg-card:       #FFFFFF;

    --border:        #EAEAEA;
    --border-dark:   #D0D0D0;

    --text-dark:     #111111;
    --text-body:     #3D3D3D;
    --text-muted:    #767676;
    --text-light:    #A0A0A0;

    --dark-footer:   #0F1C1C;

    /* Fonts */
    --font-display:  'Cormorant Garamond', Georgia, serif;
    --font-body:     'Montserrat', -apple-system, sans-serif;
    --font-script:   'Dancing Script', cursive;

    /* Shadows */
    --shadow-xs:  0 1px 3px rgba(0,0,0,0.06);
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:  0 8px 40px rgba(0,0,0,0.14);
    --shadow-xl:  0 16px 60px rgba(0,0,0,0.18);

    --orange-glow: 0 4px 20px rgba(237,153,70,0.30);
    --teal-glow:   0 4px 20px rgba(33,155,156,0.25);

    /* Radius */
    --r-sm:   8px;
    --r-md:   12px;
    --r-lg:   16px;
    --r-xl:   24px;
    --r-pill: 999px;

    /* Ease */
    --ease:     cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Nav height */
    --nav-h: 68px;
    
    /* Z-Index Layers */
--z-base:     0;
--z-dropdown: 1000;
--z-sticky:   1100;
--z-fixed:    1200;
--z-overlay:  1300;
--z-modal:    1400;
--z-tooltip:  2000;

/* Spacing Scale (8px base grid) */
--space-1:  4px;
--space-2:  8px;
--space-3:  12px;
--space-4:  16px;
--space-5:  24px;
--space-6:  32px;
--space-7:  48px;
--space-8:  64px;
--space-9:  96px;
--space-10: 128px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; }

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

/* ============ TYPOGRAPHY HELPERS ============ */
.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.6rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.75rem 2rem;
    border: 2px solid var(--teal);
    color: var(--teal);
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 200ms var(--ease);
}
.btn-outline:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--teal-glow);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 900;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 250ms var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.logo-image {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: contain;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--orange), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
    position: relative;
    transition: color 150ms;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: width 200ms var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text-dark); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.btn-plan-trip {
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    border-radius: var(--r-pill);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--orange-glow);
    transition: all 200ms var(--ease);
}
.btn-plan-trip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(237,153,70,0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px; height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 200ms var(--ease);
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================
   STICKY BAR
   ============================================ */
.sticky-bar {
    position: fixed;
    top: calc(var(--nav-h) * -1 - 10px);
    left: 0; right: 0;
    z-index: 850;
    background: var(--teal);
    padding: 0.7rem 0;
    transition: top 300ms var(--ease);
    box-shadow: var(--shadow-md);
}
.sticky-bar.show { top: var(--nav-h); }
.sticky-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sticky-bar-text { color: white; font-weight: 600; font-size: 0.95rem; }
.btn-sticky {
    padding: 0.5rem 1.5rem;
    background: white;
    color: var(--teal);
    border: none;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 200ms var(--ease);
}
.btn-sticky:hover { transform: scale(1.05); box-shadow: var(--shadow-md); }

/* ============================================
   HERO — Klook-style, white BG
   ============================================ */
.hero-section {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
}

/* Subtle background texture */
.hero-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(237,153,70,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(33,155,156,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
}

/* Left side */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal);
    border-radius: var(--r-pill);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.hero-title em {
    font-style: italic;
    color: var(--orange);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2rem;
}

/* Search bar */
.hero-search {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--r-pill);
    padding: 0.4rem 0.4rem 0.4rem 1.25rem;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    max-width: 520px;
    transition: border-color 200ms, box-shadow 200ms;
}
.hero-search:focus-within {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(33,155,156,0.1);
}
.search-icon { color: var(--text-muted); flex-shrink: 0; }
.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: transparent;
}
.search-input::placeholder { color: var(--text-light); }
.search-btn {
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    border: none;
    border-radius: var(--r-pill);
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 200ms var(--ease);
    white-space: nowrap;
}
.search-btn:hover { transform: scale(1.04); box-shadow: var(--orange-glow); }

/* Pills */
.hero-pills {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.pill-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.pill {
    padding: 0.3rem 0.85rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-body);
    transition: all 150ms var(--ease);
}
.pill:hover {
    background: var(--orange-pale);
    border-color: var(--orange);
    color: var(--orange-dark);
    transform: translateY(-1px);
}

/* Right side — photo collage */
.hero-visual { position: relative; }

.hero-collage {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    border-radius: var(--r-xl);
    overflow: hidden;
}

.collage-main {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 420px;
}
.collage-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 8s var(--ease);
}
.collage-main:hover img { transform: scale(1.04); }

.collage-badge {
    position: absolute;
    bottom: 1rem; left: 1rem;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-radius: var(--r-md);
    padding: 0.6rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}
.cb-flag { font-size: 1.3rem; }
.collage-badge div { display: flex; flex-direction: column; }
.collage-badge strong { font-size: 0.8rem; color: var(--text-dark); font-weight: 700; }
.collage-badge span { font-size: 0.7rem; color: var(--orange-dark); font-weight: 600; }

.collage-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.collage-sm {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    flex: 1;
}
.collage-sm img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 6s var(--ease);
}
.collage-sm:hover img { transform: scale(1.05); }
.collage-label {
    position: absolute;
    bottom: 0.6rem; left: 0.6rem;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: var(--r-pill);
}

/* Floating trust badge */
.hero-trust {
    position: absolute;
    bottom: -16px; right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.trust-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }
.trust-text { font-size: 0.8rem; color: var(--text-body); }
.trust-text strong { color: var(--text-dark); }

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}
.scroll-dot {
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.4; }
}

/* ============================================
   TRAVELLERS' FAVOURITES
   ============================================ */
.favourites-section {
    padding: 6rem 0;
    background: var(--bg-subtle);
}

.fav-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.fav-tab {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid var(--border);
    background: white;
    border-radius: var(--r-pill);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    transition: all 150ms var(--ease);
}
.fav-tab:hover { border-color: var(--teal); color: var(--teal); }
.fav-tab.active {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
    box-shadow: var(--teal-glow);
}

.fav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fav-card {
    background: white;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    transition: all 300ms var(--ease);
    display: flex;
    flex-direction: column;
}
.fav-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.fav-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.fav-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 500ms var(--ease);
}
.fav-card:hover .fav-img-wrap img { transform: scale(1.06); }

.fav-badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    background: var(--orange);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: var(--r-pill);
    letter-spacing: 0.04em;
}
.fav-badge--new { background: var(--teal); }

.fav-country {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    background: rgba(0,0,0,0.55);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: var(--r-pill);
    backdrop-filter: blur(4px);
}

.fav-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fav-tags {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}
.fav-tags span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-subtle);
    padding: 0.15rem 0.55rem;
    border-radius: var(--r-pill);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fav-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.fav-body p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
}

.fav-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(237,153,70,0.15);
    flex-wrap: wrap;
}
.fav-btns {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}
/* Cards start visible — filter JS controls display, not IntersectionObserver */
.fav-revealed {
    opacity: 1 !important;
    transform: none !important;
}

.fav-btn {
    padding: 0.45rem 0.9rem;
    border-radius: var(--r-pill);
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all 220ms var(--ease);
    text-decoration: none;
    display: inline-block;
}
.fav-btn--itinerary {
    background: var(--teal);
    color: white;
}
.fav-btn--itinerary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33,155,156,0.3);
}
.fav-btn--enquire {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
}
.fav-btn--enquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(237,153,70,0.35);
}

/* ============================================
   AFFILIATE STRIP
   ============================================ */
.affiliate-strip {
    background: linear-gradient(135deg, var(--teal-pale), #f0fbfb);
    border-top: 1px solid rgba(33,155,156,0.15);
    border-bottom: 1px solid rgba(33,155,156,0.15);
    padding: 1.5rem 0;
}
.affiliate-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.affiliate-text { flex: 1; }
.affiliate-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-dark);
}
.affiliate-text h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0.1rem 0 0.2rem;
}
.affiliate-text p { font-size: 0.875rem; color: var(--text-muted); }

.affiliate-logos { display: flex; gap: 1rem; align-items: center; }
.affiliate-logo-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-body);
    background: white;
    padding: 0.4rem 0.85rem;
    border-radius: var(--r-pill);
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border);
}

.affiliate-btn {
    padding: 0.65rem 1.5rem;
    background: var(--teal);
    color: white;
    border-radius: var(--r-pill);
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all 200ms var(--ease);
    box-shadow: var(--teal-glow);
}
.affiliate-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    color: white;
}

/* ============================================
   TRAVEL GUIDES — 4 equal orange-tinted cards
   ============================================ */
.guides-section {
    padding: 6rem 0;
    background: var(--white);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 172px;         /* ALL 6 rows identical height */
    gap: 1rem;
}

.guide-card {
    display: flex;
    flex-direction: row;
    background: #fffaf4;
    border-radius: var(--r-lg);
    border: 1px solid rgba(237,153,70,0.22);
    overflow: hidden;
    text-decoration: none;
    transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms;
}
.guide-card:not(.guide-card--soon):hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(237,153,70,0.18);
    border-color: var(--orange);
}
.guide-card--soon { opacity: 0.65; cursor: default; }

/* Image column — fixed width, fills full cell height */
.guide-img {
    width: 155px;
    flex-shrink: 0;
    overflow: hidden;
}
.guide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 500ms var(--ease);
}
.guide-card:not(.guide-card--soon):hover .guide-img img { transform: scale(1.07); }

/* Text column */
.guide-body {
    flex: 1;
    min-width: 0;
    padding: 1rem 1.1rem 0.9rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.guide-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}
.guide-region {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange-dark);
    background: rgba(237,153,70,0.14);
    padding: 0.15rem 0.55rem;
    border-radius: var(--r-pill);
    white-space: nowrap;
}
.guide-time {
    font-size: 0.65rem;
    color: var(--text-muted);
    white-space: nowrap;
}
.guide-soon-tag { font-style: italic; }
.guide-body h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0.35rem;
    /* clamp to 2 lines so all cards stay the same height */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.guide-body p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.guide-read-link {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--orange-dark);
    margin-top: auto;
    flex-shrink: 0;
}
.guide-read-link--muted {
    color: var(--text-light);
    font-weight: 400;
    font-style: italic;
}

/* ============================================
   DESTINATIONS GRID — 6 truly equal cells, 3+3
   ============================================ */
.destinations-section {
    padding: 6rem 0;
    background: var(--bg-subtle);
}

/*  3 columns × 2 rows, every cell exactly the same size */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 270px);
    gap: 10px;
}

.dest-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
    /* No grid-column/row span — every card is 1×1 */
}

.dest-card img {
    position: absolute;   /* fill cell 100% */
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ease);
}
.dest-card:hover img { transform: scale(1.07); }

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.06) 55%,
        transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.3rem 1.4rem;
    transition: background 300ms;
}
.dest-card:hover .dest-overlay {
    background: linear-gradient(to top,
        rgba(0,0,0,0.84) 0%,
        rgba(0,0,0,0.18) 60%,
        transparent 100%);
}

.dest-info { color: white; }
.dest-info h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}
.dest-info p {
    font-size: 0.78rem;
    opacity: 0.78;
    font-weight: 500;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
    background: var(--text-dark);
    padding: 3rem 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.trust-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.trust-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================
   AFFILIATE CARDS SECTION
   ============================================ */
.affiliate-section {
    padding: 6rem 0;
    background: var(--white);
}

.affiliate-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.aff-card {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    transition: all 250ms var(--ease);
}
.aff-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--border-dark); }

.aff-card--highlight {
    background: linear-gradient(135deg, var(--orange-pale), #fff);
    border-color: var(--orange);
}
.aff-card--highlight:hover { box-shadow: var(--orange-glow); }

.aff-badge {
    position: absolute;
    top: -1px; right: 1rem;
    background: var(--orange);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.aff-icon { font-size: 2rem; }
.aff-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
}
.aff-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; flex: 1; }

.aff-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 150ms;
}
.aff-link:hover { gap: 8px; color: var(--teal-dark); }
.aff-card--highlight .aff-link { color: var(--orange-dark); }
.aff-card--highlight .aff-link:hover { color: var(--orange); }

.aff-note {
    font-size: 0.68rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-subtle);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testi-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xs);
    transition: all 250ms var(--ease);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.testi-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.testi-card > p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex: 1;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testi-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--orange), var(--teal));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.testi-author > div { display: flex; flex-direction: column; }
.testi-author strong { font-size: 0.875rem; color: var(--text-dark); }
.testi-author span { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
}
.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}
.newsletter-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}
.newsletter-text p { color: rgba(255,255,255,0.75); font-size: 1rem; }

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--r-pill);
    padding: 0.35rem 0.35rem 0.35rem 1.25rem;
    backdrop-filter: blur(8px);
    min-width: 360px;
}
.newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form button {
    padding: 0.65rem 1.5rem;
    background: white;
    color: var(--teal-dark);
    border: none;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 200ms var(--ease);
}
.newsletter-form button:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-footer);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer-logo-image { width: 38px; height: 38px; border-radius: 50%; }
.footer-logo h3 { font-family: var(--font-display); color: var(--orange); font-size: 1.1rem; font-weight: 800; }

.footer-description { font-size: 0.875rem; line-height: 1.8; margin-bottom: 1.5rem; }

.footer-social {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    transition: all 200ms ease;
}

.footer-social a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-social a img {
    width: 12x;
    height: 12x;
    object-fit: contain;
}

.footer-column h4 {
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding-top: 0.6rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a, .footer-contact li a { font-size: 0.875rem; transition: color 150ms; }
.footer-links a:hover, .footer-contact li a:hover { color: var(--orange); }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.875rem; }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}
.footer-bottom p em { opacity: 0.5; font-style: normal; }
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ============================================
   SIDEBAR POPUP
   ============================================ */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(4px);
    transition: all 300ms var(--ease);
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }

.sidebar-popup {
    position: fixed;
    top: 0; right: -520px; bottom: 0;
    width: 480px;
    background: white;
    z-index: 1001;
    overflow-y: auto;
    transition: right 380ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.18);
}
.sidebar-popup.active { right: 0; }

.sidebar-close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 36px; height: 36px;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 150ms;
    z-index: 10;
    line-height: 1;
}
.sidebar-close:hover { background: #fee2e2; border-color: #fca5a5; color: #dc2626; }

.sidebar-content { padding: 3rem 2rem; }
.sidebar-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}
.sidebar-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }

.sidebar-form { margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: white;
    transition: border-color 150ms, box-shadow 150ms;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(33,155,156,0.1);
}
.btn-submit {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    border: none;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 1rem;
    transition: all 200ms var(--ease);
    box-shadow: var(--orange-glow);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(237,153,70,0.4); }

.sidebar-quick-contact {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.quick-contact-title { font-weight: 600; color: var(--text-body); font-size: 0.9rem; margin-bottom: 1rem; }
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.75rem;
    background: #25D366;
    color: white;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: all 200ms var(--ease);
}
.btn-whatsapp:hover { background: #1fba5a; transform: translateY(-2px); color: white; }
.quick-contact-email { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.anim-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 550ms var(--ease-out), transform 550ms var(--ease-out);
}
.anim-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .fav-grid { grid-template-columns: repeat(2, 1fr); }
    .affiliate-cards { grid-template-columns: repeat(2, 1fr); }
    .guides-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 172px; }
    .dest-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 220px); }
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-visual { display: none; }
    .hero-section { min-height: auto; padding: 5rem 0 4rem; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-form { min-width: 0; width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr;}
    .guides-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 172px; }
    .dest-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); }
}

@media (max-width: 768px) {
    :root { --nav-h: 60px; }
    .container { padding: 0 1.25rem; }

    .mobile-menu-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        background: white;
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        box-shadow: var(--shadow-lg);
        z-index: 899;
    }
    .nav-menu.active { display: flex; }
    .nav-menu li { width: 100%; }
    .nav-link { display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
    .btn-plan-trip { display: block; text-align: center; margin-top: 1rem; padding: 0.75rem; }

    .fav-grid { grid-template-columns: 1fr; }
    .guides-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .affiliate-cards { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .sidebar-popup { width: 100%; right: -100%; }

    .hero-search { max-width: 100%; }
    .affiliate-inner { flex-direction: column; text-align: center; }
    .affiliate-logos { justify-content: center; flex-wrap: wrap; }

    .dest-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }
}

@media (max-width: 480px) {
    .hero-pills { gap: 0.4rem; }
    .fav-tabs { gap: 0.35rem; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .newsletter-form { flex-direction: column; border-radius: var(--r-lg); padding: 1rem; }
    .newsletter-form button { border-radius: var(--r-md); }
    .guides-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    /* Stack landscape guide cards vertically on mobile */
    .guide-card { flex-direction: column; min-height: auto; }
    .guide-img { width: 100%; height: 160px; }

    .dest-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 160px); }
}

/* ============================================
   MICRO-ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* === EVEREST HERO HOVER OVERLAY === */
.collage-hover-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0; top: 0;
    padding: 1.5rem 1.25rem;
    display: flex; flex-direction: column; justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
    transition: background 400ms ease;
}
.collage-main:hover .collage-hover-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.1) 100%);
}
.cho-bestseller {
    display: inline-block;
    background: #ED9946;
    color: white;
    font-size: 0.68rem; font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    width: fit-content;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 350ms ease, transform 350ms ease;
}
.collage-hover-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 800;
    color: white; margin-bottom: 0.6rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 350ms ease 50ms, transform 350ms ease 50ms;
}
.collage-hover-details {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 350ms ease 100ms, transform 350ms ease 100ms;
}
.collage-hover-details span {
    font-size: 0.75rem; font-weight: 600;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}
.cho-price {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 350ms ease 150ms, transform 350ms ease 150ms;
}
.cho-price strong {
    font-size: 1.2rem;
    color: #ED9946;
    font-weight: 800;
}
.collage-main:hover .cho-bestseller,
.collage-main:hover .collage-hover-overlay h3,
.collage-main:hover .collage-hover-details,
.collage-main:hover .cho-price {
    opacity: 1;
    transform: translateY(0);
}


<!-- ============================================================
 ADD THIS CSS inside your <style> block or styles.css
============================================================ -->
<style>
.lux-section {
  padding: 5rem 0;
  background: #FAFAF9;
}
.lux-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.lux-header {
  text-align: center;
  margin-bottom: 3rem;
}
.lux-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #219B9C;
  margin-bottom: 0.75rem;
}
.lux-eyebrow::before,
.lux-eyebrow::after {
  content: '';
  width: 24px;
  height: 2px;
  background: #219B9C;
  border-radius: 2px;
}
.lux-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #1C1917;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.lux-title em {
  font-style: italic;
  color: #ED9946;
}
.lux-subtitle {
  font-size: 0.9rem;
  color: #78716C;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Mosaic Grid --- */
.lux-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 10px;
  border-radius: 20px;
  overflow: hidden;
}
.hotel-card:nth-child(1) {
  grid-row: span 2;
}

/* --- Hotel Cards --- */
.hotel-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.hotel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.hotel-card:hover img {
  transform: scale(1.07);
}
.hotel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.88) 0%, rgba(10,9,8,0.3) 50%, rgba(10,9,8,0.05) 100%);
  transition: background 400ms;
}
.hotel-card:hover .hotel-overlay {
  background: linear-gradient(to top, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.5) 60%, rgba(10,9,8,0.1) 100%);
}
.hotel-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.4rem;
}
.hotel-country {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8C468;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hotel-country::before {
  content: '';
  width: 16px;
  height: 1px;
  background: #E8C468;
}
.hotel-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.hotel-card:nth-child(1) .hotel-name {
  font-size: 1.6rem;
}
.hotel-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(237, 153, 70, 0.95);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
}
.hotel-cta {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 300ms, transform 300ms;
}
.hotel-card:hover .hotel-cta {
  opacity: 1;
  transform: translateY(0);
}

/* --- Footer --- */
.lux-footer {
  text-align: center;
  margin-top: 2.5rem;
}
.lux-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ED9946, #D97B34);
  color: white;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 250ms, box-shadow 250ms;
  box-shadow: 0 4px 18px rgba(237,153,70,0.35);
}
.lux-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(237,153,70,0.45);
  color: white;
}
.lux-note {
  font-size: 0.72rem;
  color: #A8A29E;
  margin-top: 0.75rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .lux-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .hotel-card:nth-child(1) {
    grid-row: span 1;
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  .lux-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 240px);
  }
  .hotel-card:nth-child(1) {
    grid-column: span 1;
  }
}

.reading-progress {
    position: fixed; top: 0; left: 0; z-index: 1001;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--orange), var(--gold), var(--teal));
    transition: width 80ms linear;
    pointer-events: none;
}
</style>