/* ==========================================================
   NAMASTAY HIMALAYAS — STYLESHEET
   Premium, Minimal, Editorial Design
   ========================================================== */

/* ── Font Faces ─────────────────────────────────────────── */
@font-face {
    font-family: 'OrpheusPro';
    src: url('../../font/Orpheus-Pro.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OrpheusPro';
    src: url('../../font/Orpheus-Pro-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OrpheusPro';
    src: url('../../font/OrpheusPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OrpheusPro';
    src: url('../../font/Orpheus-Pro-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* ── Design Tokens ──────────────────────────────────────── */
:root {
    /* Colors */
    --color-cream:      #F5F0EB;
    --color-warm-white:  #FDFBF8;
    --color-charcoal:    #1A1A1A;
    --color-dark:        #0D0D0D;
    --color-brown:       #4A3728;
    --color-brown-light: #6B5344;
    --color-gold:        #C9A96E;
    --color-gold-light:  #D4B87A;
    --color-sage:        #7A8B6F;
    --color-mist:        rgba(255, 255, 255, 0.12);
    --color-overlay:     rgba(10, 10, 10, 0.35);

    /* Typography */
    --font-heading: 'OrpheusPro', 'Georgia', 'Times New Roman', serif;
    --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  1.5rem;
    --space-lg:  2.5rem;
    --space-xl:  4rem;
    --space-2xl: 6rem;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.3s var(--ease-out-expo);
    --transition-medium: 0.6s var(--ease-out-expo);
    --transition-slow: 1s var(--ease-out-expo);
}

/* ── Reset & Base ───────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-charcoal);
    background-color: var(--color-warm-white);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
    padding: 1.25rem 0;
    transition: all var(--transition-medium);
    z-index: 1000;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-logo {
    height: 50px;
    width: auto;
    transition: all var(--transition-fast);
}

.navbar.scrolled .nav-logo {
    height: 40px;
}

/* Nav Links */
.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0 !important;
    position: relative;
    transition: color var(--transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width var(--transition-medium);
}

.navbar-nav .nav-link:hover {
    color: #ffffff;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Book Now Button */
.btn-book-now {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.65rem 1.8rem;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
    z-index: 1;
}

.btn-book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-gold);
    transition: width var(--transition-medium);
    z-index: -1;
}

.btn-book-now:hover {
    color: var(--color-dark);
    border-color: var(--color-gold);
}

.btn-book-now:hover::before {
    width: 100%;
}

/* Mobile Toggler */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-line {
    display: block;
    width: 26px;
    height: 1.5px;
    background-color: #ffffff;
    transition: all var(--transition-fast);
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO SECTION ───────────────────────────────────────── */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.05);
    animation: heroZoom 20s var(--ease-out-quart) forwards;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.45) 0%,
        rgba(10, 10, 10, 0.15) 40%,
        rgba(10, 10, 10, 0.2) 60%,
        rgba(10, 10, 10, 0.55) 100%
    );
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    padding: 0 var(--space-md);
    animation: fadeUp 1.2s var(--ease-out-expo) 0.4s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading);
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
}

.hero-title-line {
    display: block;
}

.hero-title-line:first-child {
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 400;
}

.hero-title-italic {
    font-style: italic;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 400;
    color: var(--color-gold-light);
    margin-top: 0.1em;
}

/* Explore Button — Liquid Glass */
.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;

    /* Liquid Glass Core */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(255, 255, 255, 0.02) 60%,
        rgba(255, 255, 255, 0.1) 100%
    );
    backdrop-filter: blur(20px) saturate(180%) brightness(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(1.1);

    /* Glass Border — top-left highlight, bottom-right subtle */
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-top-color: rgba(255, 255, 255, 0.45);
    border-left-color: rgba(255, 255, 255, 0.35);

    /* Inner glow */
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.2),
        inset 0 -1px 1px rgba(0, 0, 0, 0.05),
        0 4px 24px rgba(0, 0, 0, 0.12),
        0 1px 3px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.4s var(--ease-out-expo),
        box-shadow 0.4s var(--ease-out-expo),
        background 0.4s var(--ease-out-expo),
        border-color 0.4s var(--ease-out-expo);
}

/* Specular highlight — the "light refraction" streak */
.btn-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0.25) 45%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.25) 55%,
        transparent 80%
    );
    transform: skewX(-20deg);
    transition: left 0.8s var(--ease-out-expo);
    z-index: 1;
    pointer-events: none;
}

/* Soft radial glow behind on hover */
.btn-explore::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50px;
    background: radial-gradient(
        ellipse at 30% 0%,
        rgba(255, 255, 255, 0.12) 0%,
        transparent 70%
    );
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

/* Hover */
.btn-explore:hover {
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.45);
    border-top-color: rgba(255, 255, 255, 0.6);
    border-left-color: rgba(255, 255, 255, 0.5);

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.22) 0%,
        rgba(255, 255, 255, 0.08) 40%,
        rgba(255, 255, 255, 0.04) 60%,
        rgba(255, 255, 255, 0.16) 100%
    );

    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -1px 1px rgba(0, 0, 0, 0.06),
        0 8px 32px rgba(0, 0, 0, 0.18),
        0 2px 6px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(201, 169, 110, 0.08);
}

/* Shimmer sweep on hover */
.btn-explore:hover::before {
    left: 125%;
}

/* Active / Press */
.btn-explore:active {
    transform: translateY(0px) scale(0.98);
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.12),
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-explore-arrow {
    display: inline-flex;
    transition: transform var(--transition-fast);
    position: relative;
    z-index: 2;
}

.btn-explore:hover .btn-explore-arrow {
    transform: translateX(5px);
}

.btn-explore-text {
    transition: transform var(--transition-fast);
    position: relative;
    z-index: 2;
}

.btn-explore:hover .btn-explore-text {
    transform: translateX(-3px);
}

/* ── Scroll Indicator ───────────────────────────────────── */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: scrollFadeUp 1.2s var(--ease-out-expo) 1s both;
}

@keyframes scrollFadeUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% {
        top: -100%;
    }
    100% {
        top: 100%;
    }
}

.scroll-text {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ── ABOUT SECTION ──────────────────────────────────────── */
.about-section {
    padding: var(--space-2xl) 0;
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: var(--color-warm-white);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.about-label {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-charcoal);
    margin-bottom: 2.5rem;
}

.about-text {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.55;
    color: var(--color-charcoal);
    margin: 0;
    letter-spacing: -0.01em;
}

/* Word-by-word scroll reveal */
.about-text .word {
    color: #d0d0d0;
    transition: color 0.35s ease;
    display: inline;
}

.about-text .word.revealed {
    color: var(--color-charcoal);
}

/* ── What You'll Find Here ─────────────────────────────── */
.about-find {
    margin-top: 5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.about-find.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-find-heading {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.3rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-charcoal);
    margin-bottom: 3rem;
    text-align: center;
}

/* Premium Bullet List */
.about-bullets {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-bullet-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.about-bullet-item:first-child {
    border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.about-find.visible .about-bullet-item {
    opacity: 1;
    transform: translateY(0);
}

.about-find.visible .about-bullet-item:nth-child(1) {
    transition-delay: 0.15s;
}

.about-find.visible .about-bullet-item:nth-child(2) {
    transition-delay: 0.3s;
}

.about-find.visible .about-bullet-item:nth-child(3) {
    transition-delay: 0.45s;
}

/* Gold dash marker */
.bullet-dash {
    flex-shrink: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    border-radius: 1px;
}

.bullet-text {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.5;
    color: var(--color-charcoal);
    letter-spacing: 0.01em;
}

/* Closing Line — Line Reveal on Scroll */
.about-closing {
    margin-top: 4rem;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    line-height: 1.6;
    color: var(--color-charcoal);
    text-align: center;
}

.about-closing .line-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 0.15em;
}

.about-closing .line-inner {
    display: inline-block;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 1.1s var(--ease-out-expo), opacity 0.9s ease;
    will-change: transform, opacity;
}

.about-closing.revealed .line-inner {
    transform: translateY(0);
    opacity: 1;
}

.closing-italic {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
    font-size: 1.05em;
    margin-left: 0.15em;
}

/* ==========================================================
   SECTION 3: LANDSCAPE PANORAMA
   (Framed image with monumental typography below, inspired by reference)
   ========================================================== */
.landscape-section {
    position: relative;
    width: 100%;
    background-color: var(--color-dark);
    padding: 5rem 3vw 6rem;
    overflow: hidden;
}

.landscape-container {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Framed Landscape Container */
.landscape-frame {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background-color: #050505;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
    position: relative;
}

.landscape-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 2.3 / 1;
    max-height: 75vh;
    transition: transform 1.2s var(--ease-out-expo);
    will-change: transform;
}

.landscape-frame:hover .landscape-img {
    transform: scale(1.025);
}

/* Typography Underneath Image (Reference Style) */
.landscape-typography {
    width: 100%;
    margin-top: 2rem;
    text-align: center;
}

.landscape-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2.8rem, 6.8vw, 6.4rem);
    line-height: 1.05;
    color: var(--color-warm-white);
    letter-spacing: -0.02em;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.landscape-title-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding: 0.1em 0.2em;
}

.landscape-title-inner {
    display: inline-block;
    transform: translateY(115%);
    opacity: 0;
    transition: transform 1.2s var(--ease-out-expo), opacity 0.9s ease;
    will-change: transform, opacity;
}

.landscape-section.in-view .landscape-title-inner {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================================
   SECTION 4: STAY WITH US (Editorial Layout & Minimal Carousel)
   ========================================================== */
.stay-section {
    position: relative;
    width: 100%;
    background-color: var(--color-warm-white);
    padding: 7.5rem 3vw 8.5rem;
    overflow: hidden;
}

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

.stay-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem 6vw;
    align-items: start;
}

/* ── Left Column: Intro ─────────────────────────────────── */
.stay-intro {
    max-width: 480px;
}

.stay-title {
    font-family: 'OrpheusPro', serif;
    font-weight: 700;
    font-size: clamp(3.2rem, 5.5vw, 5.6rem);
    line-height: 1.04;
    color: var(--color-charcoal);
    letter-spacing: -0.025em;
    margin: 0 0 2.6rem;
}

.stay-title-line {
    display: block;
}

.stay-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1.02rem, 1.2vw, 1.14rem);
    line-height: 1.76;
    color: #383838;
    margin: 0;
    letter-spacing: 0.005em;
}

/* ── Right Column: Rectangular Minimal Carousel ─────────── */
.stay-carousel-wrapper {
    width: 100%;
    max-width: 620px;
    margin-left: auto;
}

.stay-carousel-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 4px;
    background-color: #0d0d0d;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.12);
    user-select: none;
    cursor: grab;
}

.stay-carousel-frame:active {
    cursor: grabbing;
}

.stay-carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.stay-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.85s;
    will-change: opacity, transform;
}

.stay-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.stay-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Swipe / Navigation Buttons on Image ────────────────── */
.stay-carousel-nav {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.stay-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.stay-nav-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-charcoal);
    border-color: rgba(255, 255, 255, 0.95);
    transform: scale(1.06);
}

.stay-nav-btn:active {
    transform: scale(0.96);
}

/* Progress track at bottom of image */
.stay-progress-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 9;
}

.stay-progress-fill {
    height: 100%;
    width: 20%;
    background: var(--color-gold);
    transition: width 0.4s ease;
}

/* ── Dynamic Caption Area Below Image ───────────────────── */
.stay-caption-box {
    margin-top: 1.8rem;
    padding-right: 1rem;
}

.stay-caption-heading {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.7rem, 2.2vw, 2.25rem);
    line-height: 1.2;
    color: var(--color-charcoal);
    margin: 0 0 0.85rem;
    letter-spacing: -0.01em;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.stay-caption-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(0.92rem, 1.05vw, 1.02rem);
    line-height: 1.68;
    color: #555555;
    margin: 0;
    letter-spacing: 0.005em;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.stay-caption-heading.fade-out,
.stay-caption-desc.fade-out {
    opacity: 0;
    transform: translateY(6px);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* ── Tablet ─────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        margin-top: 1rem;
        padding: 2rem 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar-nav {
        text-align: center;
        gap: 0 !important;
    }

    .navbar-nav .nav-link {
        padding: 0.85rem 0 !important;
        font-size: 0.9rem;
    }

    .btn-book-now {
        margin-top: 1.5rem;
        display: block;
        text-align: center;
        width: 100%;
    }

    .hero-title-line:first-child {
        font-size: clamp(2.8rem, 10vw, 5rem);
    }

    .hero-title-italic {
        font-size: clamp(2.4rem, 9vw, 4.2rem);
    }

    .landscape-section {
        padding: 4rem 1.5rem 4.5rem;
    }

    .landscape-title {
        font-size: clamp(2.4rem, 6vw, 4.5rem);
    }

    .stay-section {
        padding: 5rem 1.5rem 6rem;
    }

    .stay-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .stay-intro {
        max-width: 100%;
    }

    .stay-title {
        font-size: clamp(2.8rem, 8vw, 4.2rem);
        margin-bottom: 1.8rem;
    }

    .stay-carousel-wrapper {
        max-width: 100%;
    }
}

/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 575.98px) {
    .nav-logo {
        height: 38px;
    }

    .navbar {
        padding: 1rem 0;
    }

    .hero-title-line:first-child {
        font-size: 2.8rem;
    }

    .hero-title-italic {
        font-size: 2.3rem;
    }

    .landscape-section {
        padding: 3rem 1rem 3.5rem;
    }

    .landscape-img {
        aspect-ratio: 16 / 9;
    }

    .landscape-typography {
        margin-top: 1.25rem;
    }

    .landscape-title {
        font-size: clamp(1.85rem, 8vw, 2.8rem);
    }

    .stay-section {
        padding: 4rem 1rem 4.5rem;
    }

    .stay-title {
        font-size: 2.6rem;
    }

    .stay-carousel-frame {
        aspect-ratio: 16 / 11;
    }

    .stay-nav-btn {
        width: 38px;
        height: 38px;
    }

    .stay-caption-heading {
        font-size: 1.5rem;
    }

    .btn-explore {
        padding: 0.85rem 2rem;
        font-size: 0.75rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
    }

    .scroll-line {
        height: 35px;
    }
}

/* ── Large Desktops ─────────────────────────────────────── */
@media (min-width: 1400px) {
    .hero-title-line:first-child {
        font-size: 8rem;
    }

    .hero-title-italic {
        font-size: 7rem;
    }
}
