/* Everest Grill — logo palette + light mountain atmosphere */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand — prayer-flag / logo inspired (lungta: blue · white · red · green · yellow) */
    --everest-blue: #1d4ed8;
    --everest-blue-deep: #1e3a8a;
    --everest-red: #c81e37;
    --everest-green: #15803d;
    --everest-gold: #ca8a04;
    --everest-cream: #fff8f0;
    --everest-red-soft: rgba(200, 30, 55, 0.14);
    --everest-blue-soft: rgba(29, 78, 216, 0.12);
    --everest-saffron: #ea580c;
    /* Surfaces — warm ivory/pearl vs flat grey */
    --bg: #fffaf5;
    --bg-muted: #fff1e6;
    --surface: #ffffff;
    /* Frosted panels — snowfall/mountain subtly visible underneath */
    --surface-frost: rgba(255, 252, 248, 0.94);
    --bg-muted-frost: rgba(255, 241, 230, 0.93);
    --border: #e8ddd4;
    --text: #162456;
    --text-muted: #5c6578;
    --accent: var(--everest-blue-deep);
    --accent-light: #bfdbfe;
    --accent-warm: var(--everest-red);
    --price-color: var(--everest-red);
    --accent-hover: #991b2d;
    --himalaya-saffron: var(--everest-saffron);
    --himalaya-dawn: #ffedd5;
    --lungta-strip: linear-gradient(
        90deg,
        #1d4ed8 0%,
        #f8fafc 20%,
        #dc2626 40%,
        #16a34a 60%,
        #eab308 80%,
        #1d4ed8 100%
    );
    --shadow-sm: 0 1px 4px rgba(29, 78, 216, 0.07), 0 1px 2px rgba(234, 88, 12, 0.04);
    --shadow-md: 0 16px 44px rgba(29, 78, 216, 0.11), 0 8px 24px rgba(200, 30, 55, 0.06);
    --shadow-lg: 0 28px 64px rgba(22, 36, 86, 0.1), 0 12px 32px rgba(234, 88, 12, 0.05);
    --nav-h: 4.125rem;
    --prayer-flags-h: 22px;
    /* iOS notch / home indicator — use with viewport-fit=cover */
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    font-size: clamp(15px, 1.85vw, 17px);
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    position: relative;
    font-family: 'Outfit', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.62;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-page {
    background-color: transparent;
}

/* Real Himalayan photo — softened + blurred as site-wide ambience */
.mountain-backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background-color: #fdebd8;
}

.mountain-backdrop::before {
    content: '';
    position: absolute;
    inset: -8%;
    background: url('images/himalayas-hero.jpg') center 40% / cover no-repeat;
    filter: blur(42px) saturate(1.12) brightness(1.05);
    opacity: 0.5;
}

.mountain-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 80% at 100% 0%, rgba(253, 186, 116, 0.18), transparent 50%),
        radial-gradient(ellipse 80% 60% at 0% 100%, rgba(147, 197, 253, 0.2), transparent 55%),
        linear-gradient(180deg, rgba(255, 250, 245, 0.82) 0%, rgba(255, 245, 235, 0.58) 45%, rgba(255, 241, 230, 0.9) 100%);
    animation: ridge-light-shift 16s ease-in-out infinite alternate;
}

@keyframes ridge-light-shift {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.94;
        filter: saturate(1.05);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mountain-backdrop::after {
        animation: none;
    }
}

/* Gentle snowfall — sits above mountain tile, below page content (z-index 2) */
.snowfall {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -3vh;
    left: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 4px rgba(30, 58, 138, 0.15), 0 1px 2px rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1;
    animation-name: snowflake-fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

@keyframes snowflake-fall {
    0% {
        transform: translate3d(var(--dx, 0), -5vh, 0) rotate(0deg);
        opacity: 0.85;
    }
    15% {
        opacity: 1;
    }
    100% {
        transform: translate3d(calc(var(--dx, 0) * -1.2), 105vh, 0) rotate(360deg);
        opacity: 0.35;
    }
}

@media (prefers-reduced-motion: reduce) {
    .snowfall {
        display: none;
    }
}

/* Stack page chrome above snowfall; navbar stays at .navbar z-index */
body > main,
body > footer {
    position: relative;
    z-index: 2;
}

#main-content,
body.menu-page main {
    background: transparent;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
}

a {
    color: var(--accent);
    transition: color 0.25s ease;
}

a:hover {
    color: var(--accent-hover);
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding-left: max(1.25rem, var(--safe-left));
    padding-right: max(1.25rem, var(--safe-right));
}

/* ——— Nav + prayer-flag strip ——— */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: var(--safe-top);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: linear-gradient(180deg, rgba(255, 253, 250, 0.97) 0%, rgba(255, 248, 240, 0.94) 100%);
    backdrop-filter: saturate(200%) blur(22px);
    border-bottom: 1px solid rgba(29, 78, 216, 0.1);
    box-shadow:
        var(--shadow-sm),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: box-shadow 0.45s ease, border-color 0.35s ease;
}

.navbar-top {
    position: relative;
    isolation: isolate;
}

.navbar-top::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 90% 120% at 8% -20%, rgba(29, 78, 216, 0.14), transparent 50%),
        radial-gradient(ellipse 70% 100% at 94% 90%, rgba(234, 88, 12, 0.1), transparent 48%),
        radial-gradient(ellipse 55% 80% at 50% 50%, rgba(22, 163, 74, 0.05), transparent 60%);
}

.navbar-shine {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100vw;
    height: 2px;
    z-index: 2;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.35) 18%,
        var(--everest-red) 50%,
        rgba(59, 130, 246, 0.35) 82%,
        transparent 100%
    );
    opacity: 0.65;
    pointer-events: none;
    box-shadow: 0 1px 16px rgba(178, 34, 52, 0.2);
}

.navbar.is-scrolled {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.995) 0%, rgba(255, 255, 255, 0.96) 100%);
    backdrop-filter: saturate(200%) blur(24px);
    box-shadow:
        0 16px 48px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(30, 58, 138, 0.07);
}

.navbar.is-scrolled .navbar-shine {
    opacity: 0.85;
}

.navbar.is-scrolled .brand-logo img {
    height: clamp(38px, 8.5vw, 48px);
}

.navbar-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: var(--nav-h);
    transition: min-height 0.45s var(--ease-out-expo);
}

.navbar-inner > nav {
    margin-left: auto;
}

.navbar.is-scrolled .navbar-inner {
    min-height: 3.625rem;
}

.navbar-lead {
    display: flex;
    align-items: center;
    gap: clamp(0.45rem, 2vw, 0.85rem);
    min-width: 0;
}

/* Full-width repeating prayer flags under the menu bar */
.prayer-flags-strip {
    flex-shrink: 0;
    height: var(--prayer-flags-h);
    margin: 0;
    background-color: rgba(22, 36, 86, 0.06);
    background-image: url('images/prayer-flags-tile.svg');
    background-repeat: repeat-x;
    background-position: 0 50%;
    background-size: 80px 100%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 1px 8px rgba(29, 78, 216, 0.08);
    animation: prayer-flags-drift 90s linear infinite;
}

@keyframes prayer-flags-drift {
    from {
        background-position: 0 50%;
    }
    to {
        background-position: 1600px 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .prayer-flags-strip,
    section.section::before,
    .footer-min::before {
        animation: none !important;
    }
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    transition: opacity 0.25s ease, transform 0.35s var(--ease-out-expo);
    min-width: 0;
}

.brand-logo:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.brand-logo img {
    height: clamp(44px, 10vw, 54px);
    width: auto;
    max-width: min(280px, 58vw);
    object-fit: contain;
    display: block;
    transition: height 0.45s var(--ease-out-expo);
}

/* Screen-reader / fallback when logo missing */
.brand-logo .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.25s ease, transform 0.3s var(--ease-out-expo);
}

.nav-menu a:not(.btn-nav) {
    position: relative;
    padding: 0.42rem 0.15rem;
}

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--everest-blue), var(--everest-red));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.42s var(--ease-out-expo);
    opacity: 0.9;
}

.nav-menu a:not(.btn-nav):hover {
    color: var(--everest-blue);
}

.nav-menu a:not(.btn-nav):hover::after {
    transform: scaleX(1);
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.08rem;
    border-radius: 999px;
    border: 1px solid rgba(178, 34, 52, 0.38);
    background: linear-gradient(135deg, #ffffff 0%, rgba(239, 246, 255, 0.92) 45%, rgba(254, 242, 242, 0.55) 100%);
    background-size: 220% 220%;
    animation: btn-nav-shimmer 7s ease-in-out infinite;
    color: var(--everest-blue) !important;
    font-weight: 600;
    box-shadow:
        var(--shadow-sm),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease, border-color 0.2s ease;
}

@keyframes btn-nav-shimmer {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn-nav:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--everest-red);
    color: var(--everest-red) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    position: relative;
    z-index: 2;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(30, 58, 138, 0.06);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--everest-blue);
    border-radius: 1px;
    transition: transform 0.42s var(--ease-out-expo), opacity 0.25s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
    .btn-nav {
        animation: none;
    }
}

@media (max-width: 880px) {
    .mobile-menu-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }
    body.nav-open {
        overflow: hidden;
        overscroll-behavior: none;
    }
    .nav-menu {
        position: fixed;
        left: 0;
        top: calc(var(--safe-top) + var(--nav-h) + var(--prayer-flags-h));
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0 calc(1.25rem + var(--safe-bottom));
        padding-left: var(--safe-left);
        padding-right: var(--safe-right);
        width: 100%;
        max-height: min(68dvh, 520px);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: rgba(255, 252, 248, 0.98);
        backdrop-filter: saturate(190%) blur(18px);
        border-bottom: 1px solid rgba(30, 58, 138, 0.1);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.45s var(--ease-out-expo), opacity 0.3s ease;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-menu li {
        padding: 0;
    }
    .nav-menu li:not(:last-child) a:not(.btn-nav) {
        border-bottom: 1px solid rgba(226, 232, 240, 0.95);
    }
    .nav-menu li a:not(.btn-nav) {
        padding: 0.95rem 1.25rem;
        font-size: 0.85rem;
        text-align: center;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.1em;
        box-sizing: border-box;
    }
    .nav-menu li:last-child a.btn-nav {
        margin: 0.65rem calc(1rem + max(0px, var(--safe-left) - 0.5rem)) 0;
        width: auto;
        justify-content: center;
        min-height: 48px;
    }
    .navbar.is-scrolled .nav-menu {
        top: calc(var(--safe-top) + 3.625rem + var(--prayer-flags-h));
    }
    .nav-menu a:not(.btn-nav)::after {
        display: none;
    }
}

.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.mobile-nav-backdrop.is-active {
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .mobile-nav-backdrop {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* ——— Hero — real Himalayan photo, layered atmosphere ——— */
.hero {
    position: relative;
    min-height: min(100vh, 920px);
    display: grid;
    place-items: center;
    overflow: clip;
    background: linear-gradient(
        155deg,
        #dbeafe 0%,
        #fef3c7 28%,
        #fde68a 38%,
        #e0e7ff 58%,
        var(--bg) 100%
    );
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-photo {
    position: absolute;
    inset: -6%;
    background: url('images/mount-everest-view.jpg') center 38% / cover no-repeat;
    transform: scale(1.04);
    will-change: transform;
    animation: hero-kenburns 32s ease-in-out infinite alternate;
}

@keyframes hero-kenburns {
    0% {
        transform: scale(1.04) translate3d(-0.4%, 0.2%, 0);
    }
    100% {
        transform: scale(1.14) translate3d(0.5%, -0.8%, 0);
    }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
            172deg,
            rgba(253, 230, 224, 0.35) 0%,
            rgba(239, 246, 255, 0.38) 25%,
            rgba(254, 243, 199, 0.22) 48%,
            rgba(255, 252, 248, 0.72) 100%
        ),
        linear-gradient(to bottom, rgba(29, 78, 216, 0.14) 0%, transparent 45%);
    pointer-events: none;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse 75% 60% at 50% 45%, transparent 35%, rgba(15, 23, 42, 0.16) 100%);
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.85;
}

.hero-aurora {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse 85% 48% at 78% 6%, rgba(251, 191, 36, 0.32), transparent 54%),
        radial-gradient(ellipse 70% 55% at 12% 40%, rgba(56, 189, 248, 0.2), transparent 50%),
        radial-gradient(ellipse 55% 42% at 88% 75%, rgba(248, 113, 113, 0.14), transparent 52%),
        radial-gradient(ellipse 50% 38% at 50% 100%, rgba(29, 78, 216, 0.1), transparent 58%);
    pointer-events: none;
    animation: hero-aurora-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-aurora-drift {
    0% {
        opacity: 0.82;
        transform: scale(1) translate3d(0, 0, 0);
    }
    100% {
        opacity: 1;
        transform: scale(1.04) translate3d(-1.2%, 0.6%, 0);
    }
}

.hero-mist {
    position: absolute;
    left: -20%;
    right: -20%;
    height: min(52%, 460px);
    bottom: -5%;
    z-index: 4;
    background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255, 255, 255, 0.75), transparent 72%);
    filter: blur(28px);
    opacity: 0.55;
    pointer-events: none;
    animation: mist-float 22s ease-in-out infinite;
}

.hero-mist-2 {
    left: -35%;
    right: 15%;
    height: min(42%, 360px);
    bottom: 8%;
    z-index: 4;
    opacity: 0.35;
    animation: mist-float 28s ease-in-out infinite reverse;
    animation-delay: -6s;
}

@keyframes mist-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scaleY(1);
    }
    50% {
        transform: translate3d(4%, -2%, 0) scaleY(1.06);
    }
}

.hero-edge-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: clamp(72px, 14vh, 128px);
    z-index: 5;
    background: linear-gradient(to top, rgba(255, 250, 245, 0.98), rgba(255, 245, 235, 0.55) 50%, transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 6;
    text-align: center;
    padding: calc(var(--safe-top) + var(--nav-h) + var(--prayer-flags-h) + 2.25rem)
        max(1rem, var(--safe-right)) clamp(3rem, 10vh, 4rem)
        max(1rem, var(--safe-left));
    max-width: 42rem;
}

.hero-kicker {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.05rem, 3vw, 1.35rem);
    letter-spacing: 0.42em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--everest-blue-deep);
    margin-bottom: 1rem;
    text-shadow:
        0 0 28px rgba(255, 255, 255, 1),
        0 2px 12px rgba(255, 255, 255, 0.9),
        0 3px 18px rgba(234, 88, 12, 0.12);
    animation: fadeRise 0.9s var(--ease-out-expo) 0.05s backwards, kicker-shimmer 5s ease-in-out infinite;
}

@keyframes kicker-shimmer {
    0%,
    100% {
        letter-spacing: 0.42em;
        opacity: 1;
    }
    50% {
        letter-spacing: 0.44em;
        opacity: 0.94;
    }
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 3.95rem);
    color: var(--text);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.08;
    text-shadow: 0 0 32px rgba(255, 255, 255, 0.95), 0 8px 40px rgba(255, 255, 255, 0.6), 0 2px 4px rgba(15, 23, 42, 0.08);
    animation: fadeRise 0.95s var(--ease-out-expo) 0.12s backwards;
}

.hero-title em {
    font-style: italic;
    font-weight: 650;
    color: var(--everest-red);
    text-shadow:
        0 0 22px rgba(255, 255, 255, 0.95),
        0 0 28px rgba(254, 215, 170, 0.55),
        0 2px 14px rgba(220, 38, 38, 0.2);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .hero-title em {
        background: linear-gradient(118deg, #b91c1c 0%, #ea580c 55%, #c2410c 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: none;
    }
}

.hero-tag {
    margin-top: 1.25rem;
    font-size: clamp(1.02rem, 2.5vw, 1.2rem);
    color: rgb(71, 60, 58);
    font-weight: 400;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.88), 0 1px 2px rgba(255, 255, 255, 0.9);
    animation: fadeRise 1s var(--ease-out-expo) 0.2s backwards;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    animation: fadeRise 1.05s var(--ease-out-expo) 0.28s backwards;
}

@keyframes fadeRise {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-kicker,
    .hero-title,
    .hero-tag,
    .hero-cta {
        animation: fadeRise 0.85s var(--ease-out-expo) backwards;
    }
    .hero-kicker {
        letter-spacing: 0.42em;
    }
    .hero-bg-photo {
        animation: none;
        transform: scale(1.05);
    }
    .hero-mist,
    .hero-mist-2 {
        animation: none;
        opacity: 0.42;
    }
    .hero-aurora {
        animation: none;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--everest-blue-deep) 0%,
        var(--everest-blue) 42%,
        #4338ca 100%
    );
    color: #fff;
    box-shadow:
        0 8px 28px rgba(29, 78, 216, 0.35),
        0 4px 14px rgba(234, 88, 12, 0.12);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 40px rgba(29, 78, 216, 0.4),
        0 8px 20px rgba(220, 38, 38, 0.12);
    color: #fff;
}

.btn-block {
    width: 100%;
}

.btn-outline {
    background: linear-gradient(180deg, #ffffff 0%, var(--everest-cream) 100%);
    border: 2px solid rgba(234, 88, 12, 0.35);
    color: var(--everest-blue-deep);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    transform: translateY(-2px);
    border-color: rgba(220, 38, 38, 0.55);
    color: var(--everest-red);
    background: linear-gradient(180deg, #ffffff 0%, #ffedd5 100%);
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

html.everest-gsap .reveal {
    transition: none;
}

/* These blocks are excluded from the generic .reveal GSAP loop; base .reveal still
   uses opacity:0 so they could stay invisible if a scroll trigger misfires. */
html.everest-gsap .feature-card.reveal,
html.everest-gsap .visit-card.reveal,
html.everest-gsap .reservation-aside.reveal,
html.everest-gsap .reservation-form-panel.reveal {
    opacity: 1;
    transform: none;
}

html.everest-gsap .hero-kicker,
html.everest-gsap .hero-title,
html.everest-gsap .hero-tag,
html.everest-gsap .hero-cta {
    animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none;
    }
}

section.section {
    padding: clamp(3.5rem, 8vw, 5.25rem) 0;
    position: relative;
}

section.section::before {
    content: '';
    display: block;
    width: 100vw;
    max-width: 100vw;
    height: var(--prayer-flags-h);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: clamp(1.6rem, 3.5vw, 2.35rem);
    background-color: rgba(22, 36, 86, 0.05);
    background-image: url('images/prayer-flags-tile.svg');
    background-repeat: repeat-x;
    background-position: 0 50%;
    background-size: 80px 100%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 2px 12px rgba(29, 78, 216, 0.06);
    animation: prayer-flags-drift-reverse 85s linear infinite;
}

@keyframes prayer-flags-drift-reverse {
    from {
        background-position: 0 50%;
    }
    to {
        background-position: -1600px 50%;
    }
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-tag {
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #166534;
    font-weight: 600;
    margin-bottom: 0.65rem;
}

.section-tag::after {
    content: '';
    display: block;
    width: 3.25rem;
    height: 3px;
    margin: 0.55rem auto 0;
    border-radius: 3px;
    background: var(--lungta-strip);
    opacity: 0.95;
    box-shadow: 0 1px 8px rgba(234, 88, 12, 0.15);
}

.section-title {
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    color: var(--text);
}

.section-lead {
    margin-top: 0.9rem;
    color: var(--text-muted);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* About */
.about {
    background:
        radial-gradient(ellipse 70% 50% at 0% 20%, rgba(191, 219, 254, 0.35), transparent 60%),
        var(--surface-frost);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
    align-items: center;
}

.about-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 300px;
    box-shadow:
        var(--shadow-lg),
        0 0 0 1px rgba(29, 78, 216, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.about-visual-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top right, rgba(255, 255, 255, 0.12), transparent 42%),
        url('images/himalayas-hero.jpg');
    background-size: cover;
    background-position: center 40%;
    transition: transform 10s ease;
}

.about-visual:hover .about-visual-bg {
    transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
    .about-visual:hover .about-visual-bg {
        transform: none;
    }
}

.about-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.1rem 1.25rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.75), transparent);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f8fafc;
}

.about-copy .drop-cap::first-letter {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 0.78;
    margin-right: 0.55rem;
    color: var(--everest-red);
}

.about-copy p + p {
    margin-top: 1rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-visual {
        order: -1;
        min-height: 240px;
    }
}

/* Featured */
.featured {
    background:
        linear-gradient(180deg, rgba(255, 247, 237, 0.95) 0%, rgba(224, 231, 255, 0.28) 50%, rgba(255, 250, 245, 0.98) 100%),
        var(--bg-muted-frost);
    border-block: 1px solid rgba(229, 199, 170, 0.55);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.45s var(--ease-out-expo), box-shadow 0.4s ease, border-color 0.25s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--lungta-strip);
    z-index: 1;
    opacity: 0.95;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(29, 78, 216, 0.22);
}

.feature-card:hover::before {
    height: 5px;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}

.feature-card-visual {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-muted);
}

.feature-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.feature-card:hover .feature-card-visual img {
    transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
    .feature-card:hover .feature-card-visual img {
        transform: none;
    }
}

.feature-body {
    padding: 1.2rem 1.25rem 1.35rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-body h3 {
    font-size: 1.12rem;
    margin-bottom: 0.35rem;
}

.feature-body p {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    line-height: 1.58;
    flex-grow: 1;
}

.feature-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--price-color);
}

.featured-grid .reveal:nth-child(1) {
    transition-delay: 0.05s;
}
.featured-grid .reveal:nth-child(2) {
    transition-delay: 0.1s;
}
.featured-grid .reveal:nth-child(3) {
    transition-delay: 0.15s;
}
.featured-grid .reveal:nth-child(4) {
    transition-delay: 0.2s;
}

/* Reservation */
.reservation {
    background: var(--surface-frost);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
    align-items: start;
}

.reservation-aside {
    position: relative;
    padding: 1.65rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(239, 246, 255, 0.6) 0%, var(--bg-muted) 55%);
    border: 1px solid var(--border);
    overflow: hidden;
}

.reservation-aside::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1d4ed8 0%, #dc2626 28%, #16a34a 55%, #eab308 82%, #1d4ed8 100%);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.reservation-aside .section-tag,
.reservation-aside .section-title {
    text-align: left;
}

.reservation-aside .section-tag::after {
    margin-left: 0;
    margin-right: auto;
}

.reservation-aside .section-lead {
    text-align: left;
    margin-left: 0;
}

.reservation-aside ul {
    list-style: none;
    margin-top: 1rem;
}

.reservation-aside li {
    color: var(--text-muted);
    margin-bottom: 0.65rem;
    padding-left: 1.25rem;
    position: relative;
}

.reservation-aside li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--everest-green);
    opacity: 0.85;
}

.reservation-aside code {
    font-size: 0.78em;
    padding: 0.12em 0.38em;
    border-radius: 4px;
    background: var(--accent-light);
    color: var(--accent);
}

.reservation-form-panel {
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid rgba(229, 199, 170, 0.55);
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 251, 244, 0.85) 100%);
    box-shadow: var(--shadow-sm);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.95rem;
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-grid label,
.reservation-form-panel label:not(.chk) {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.form-grid input,
.form-grid textarea,
.reservation-form-panel input,
.reservation-form-panel textarea {
    width: 100%;
    padding: 0.62rem 0.82rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-family: inherit;
    font-size: 0.94rem;
}

.form-grid input:focus,
.form-grid textarea:focus,
.reservation-form-panel input:focus,
.reservation-form-panel textarea:focus {
    outline: 2px solid var(--accent-light);
    outline-offset: 0;
    border-color: var(--accent);
}

.form-span-2 {
    grid-column: 1 / -1;
}

.submit-row {
    margin-top: 1.1rem;
}

#reservation-form-status {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

#reservation-form-status.is-error {
    color: #b91c1c;
}

@media (max-width: 900px) {
    .reservation-grid {
        grid-template-columns: 1fr;
    }
}

/* Visit */
.visit {
    background: var(--bg-muted-frost);
    border-top: 1px solid var(--border);
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.visit-card {
    padding: 1.55rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.35s var(--ease-out-expo), border-color 0.25s ease;
}

.visit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(29, 78, 216, 0.2);
}

.visit-card h3 {
    font-size: 0.68rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.65rem;
}

.visit-card p,
.visit-card a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
}

.visit-card a:hover {
    color: var(--accent);
}

@media (max-width: 840px) {
    .visit-grid {
        grid-template-columns: 1fr;
    }
}

.footer-min {
    padding: 0 max(1.25rem, var(--safe-left)) calc(2rem + var(--safe-bottom))
        max(1.25rem, var(--safe-right));
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: var(--surface-frost);
}

.footer-min::before {
    content: '';
    display: block;
    width: 100vw;
    max-width: 100vw;
    height: var(--prayer-flags-h);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 1.35rem;
    background-color: rgba(22, 36, 86, 0.05);
    background-image: url('images/prayer-flags-tile.svg');
    background-repeat: repeat-x;
    background-position: 0 50%;
    background-size: 80px 100%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
    animation: prayer-flags-drift 95s linear infinite;
}

.footer-min a {
    color: var(--accent);
    text-decoration: none;
}

.social-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding-top: 0.35rem;
}

.social-row a {
    font-weight: 500;
    text-decoration: none;
}

/* Menu page */
.menu-page .navbar {
    background: linear-gradient(180deg, rgba(255, 253, 250, 0.98) 0%, rgba(255, 248, 242, 0.95) 100%);
}

.menu-wrap {
    padding-top: calc(var(--safe-top) + var(--nav-h) + var(--prayer-flags-h) + 2.35rem);
    padding-bottom: calc(4rem + var(--safe-bottom));
}

.menu-wrap .menu-header-block {
    text-align: center;
    margin-bottom: 2.25rem;
}

.menu-navigation {
    position: sticky;
    top: calc(var(--safe-top) + var(--nav-h) + var(--prayer-flags-h));
    z-index: 80;
    background: rgba(255, 252, 248, 0.92);
    backdrop-filter: blur(12px) saturate(165%);
    padding: 0.75rem 0;
    margin-bottom: 2rem;
    border-block: 1px solid rgba(229, 199, 170, 0.6);
}

body:has(.navbar.is-scrolled) .menu-navigation {
    top: calc(var(--safe-top) + 3.625rem + var(--prayer-flags-h));
}

.category-nav-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scroll-padding-inline: max(0.65rem, var(--safe-left)) max(0.65rem, var(--safe-right));
}

.category-nav-list {
    display: flex;
    gap: 0.55rem;
    padding: 0 max(0.15rem, var(--safe-right)) 0 max(0.15rem, var(--safe-left));
    min-width: max-content;
}

.category-nav-link {
    padding: 0.42rem 0.92rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    background: var(--surface);
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.category-nav-link:hover {
    border-color: var(--accent-light);
    color: var(--accent);
    background: var(--accent-light);
}

.category-nav-link.is-active {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, var(--everest-blue-deep) 0%, var(--everest-blue) 50%, #4f46e5 100%);
    font-weight: 600;
    box-shadow:
        0 2px 12px rgba(29, 78, 216, 0.3),
        0 2px 8px rgba(234, 88, 12, 0.1);
}

.category-nav-link.is-active:hover {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, #172554 0%, var(--everest-blue) 55%, #4338ca 100%);
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.menu-category h3 {
    position: relative;
    font-size: 1.28rem;
    color: var(--everest-blue-deep);
    margin-bottom: 1rem;
    padding-bottom: 0.65rem;
}

.menu-category h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 12rem;
    height: 3px;
    border-radius: 3px;
    background: var(--lungta-strip);
    box-shadow: 0 2px 10px rgba(29, 78, 216, 0.15);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.2rem 1.25rem;
    padding: 1rem 1.15rem;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s var(--ease-out-expo), transform 0.5s var(--ease-out-expo), border-color 0.25s ease;
}

.menu-item.menu-row-in {
    opacity: 1;
    transform: translateY(0);
}

.menu-item.menu-row-in:hover {
    border-color: rgba(29, 78, 216, 0.2);
    box-shadow:
        var(--shadow-sm),
        0 0 0 1px rgba(254, 215, 170, 0.35);
}

@media (prefers-reduced-motion: reduce) {
    .menu-item {
        opacity: 1 !important;
        transform: none !important;
    }
}

.menu-item-header {
    grid-column: 1;
}

.menu-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.menu-item p {
    grid-column: 1;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.menu-item .price {
    grid-column: 2;
    grid-row: 1;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.06rem;
    color: var(--price-color);
    white-space: nowrap;
    align-self: start;
}

@media (max-width: 620px) {
    .menu-item {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
    .menu-item .price {
        grid-column: 1;
        grid-row: auto;
    }
}

.menu-note .menu-note-follow {
    margin-top: 0.45rem;
}

.menu-note {
    margin-top: 2.25rem;
    padding: 1.15rem max(0.85rem, var(--safe-right)) 1.15rem max(0.85rem, var(--safe-left));
    text-align: center;
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px dashed rgba(234, 88, 12, 0.35);
    background: linear-gradient(180deg, rgba(255, 251, 235, 0.85) 0%, var(--bg-muted) 100%);
}

.cta-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* ——— Small phones ——— */
@media (max-width: 480px) {
    :root {
        font-size: clamp(15px, 4vw, 16px);
    }

    section.section {
        padding: clamp(2.75rem, 9vw, 4rem) 0;
    }

    .hero-kicker {
        letter-spacing: 0.26em;
        font-size: 0.88rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 9.5vw, 2.85rem);
    }

    .menu-wrap .menu-header-block {
        margin-bottom: 1.5rem;
    }

    .menu-category h3 {
        font-size: 1.1rem;
    }

    .menu-categories {
        gap: 2rem;
    }

    .category-nav-link {
        padding: 0.48rem 0.82rem;
        font-size: 0.74rem;
    }

    .about-copy .drop-cap::first-letter {
        font-size: 2.6rem;
        margin-right: 0.42rem;
    }

    .feature-body {
        padding: 1rem 1.05rem 1.15rem;
    }

    .reservation-aside {
        padding: 1.35rem max(1rem, var(--safe-right)) 1.35rem max(1rem, var(--safe-left));
    }

    .reservation-form-panel {
        padding: 1.4rem max(1rem, var(--safe-right)) 1.4rem max(1rem, var(--safe-left));
    }

    .visit-card {
        padding: 1.35rem max(1rem, var(--safe-right)) 1.35rem max(1rem, var(--safe-left));
    }
}
