/* ========================================================================= */
/* BHIMAS LUXURY RESTAURANT - GLOBAL STYLING SYSTEM                          */
/* ========================================================================= */

:root {
    /* Balance Warm Luxury Indian Palette */
    --clr-saffron: #d46f33;      
    --clr-terracotta: #a34e36;   
    --clr-maroon: #682323;       
    --clr-maroon-dark: #2a1111;  
    --clr-bronze: #734329;       
    --clr-gold: #c39a58;         
    --clr-muted-gold: #aa844b;
    --clr-cream: #f4ebdf;        
    --clr-parchment: #f9f4ec;    
    --clr-ivory: #fffdfa;        
    
    /* Elegant Dark Foundations */
    --clr-bg-main: #21100e;      
    --clr-bg-secondary: #311815; 

    /* Typography assignments */
    --clr-text-light: rgba(255, 253, 250, 0.95);
    --clr-text-cream: rgba(244, 235, 223, 0.85); 
    --clr-text-dark: #2a1111;
    
    /* Typography Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing & Transitions */
    --section-padding: 8rem 0;
    --container-width: 1240px;
    --trans-smooth: 0.8s cubic-bezier(0.25, 1, 0.2, 1);
    --trans-fast: 0.3s ease;
}

/* Base Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--clr-bg-main);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-cream);
    background: var(--clr-bg-main);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img, video, canvas {
    max-width: 100%;
    display: block;
}

/* ========================================================================= */
/* UTILITIES & GRID                                                          */
/* ========================================================================= */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: var(--section-padding);
}

.text-gold {
    color: var(--clr-gold);
}

.text-saffron {
    color: var(--clr-saffron);
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.w-100 { width: 100%; }

.mobile-category-fab, .mobile-category-overlay {
    display: none;
}

/* Editorial Grids */
.editorial-grid-50-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.editorial-grid-40-60 {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 4rem;
    align-items: center;
}

/* ========================================================================= */
/* TYPOGRAPHY                                                                */
/* ========================================================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.1;
}

.editorial-h1 {
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    color: var(--clr-ivory);
    letter-spacing: -1px;
}

.editorial-h2 {
    font-size: clamp(2rem, 5.2vw, 4rem);
    color: var(--clr-ivory);
    margin-bottom: 1.5rem;
}

.editorial-h2.dark-text {
    color: var(--clr-maroon-dark);
}

.editorial-h3 {
    font-size: clamp(1.4rem, 3.2vw, 2.2rem);
    color: var(--clr-gold);
}

.editorial-subheading {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--clr-saffron);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.editorial-body {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--clr-text-cream);
    max-width: 600px;
    font-weight: 300;
}

.editorial-body.dark-text {
    color: var(--clr-text-dark);
}

/* ========================================================================= */
/* BUTTONS & CTAS                                                            */
/* ========================================================================= */

.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--trans-fast);
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--clr-saffron);
    color: var(--clr-ivory);
    border: 1px solid var(--clr-saffron);
}

.btn-primary:hover {
    background: var(--clr-terracotta);
    border-color: var(--clr-terracotta);
}

.btn-secondary {
    background: rgba(255, 253, 250, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--clr-ivory);
    border: 1px solid rgba(195, 154, 88, 0.4);
}

.btn-secondary:hover {
    background: rgba(195, 154, 88, 0.15);
    border-color: var(--clr-gold);
}

.btn-outline {
    background: transparent;
    color: var(--clr-maroon-dark);
    border: 1px solid var(--clr-maroon-dark);
}

.btn-outline:hover {
    background: var(--clr-maroon-dark);
    color: var(--clr-ivory);
}

/* ========================================================================= */
/* PREMIUM ANIMATIONS                                                        */
/* ========================================================================= */

.reveal-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.2, 1), transform 1s cubic-bezier(0.25, 1, 0.2, 1);
}

.reveal-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }
.delay-6 { transition-delay: 0.9s; }

/* Image scaling premium reveal */
.image-clip-reveal {
    overflow: hidden;
    position: relative;
}

.image-clip-reveal img,
.image-clip-reveal video {
    transform: scale(1.1);
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.2, 1);
}

.image-clip-reveal.visible img,
.image-clip-reveal.visible video {
    transform: scale(1);
}


/* ========================================================================= */
/* GLOBAL HEADER / NAVBAR                                                    */
/* ========================================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--trans-smooth);
    padding: 2rem 0;
    background: transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(33, 16, 14, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(195, 154, 88, 0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-left: 0;
}

.header-logo-img {
    height: 65px;
    width: auto;
    transition: var(--trans-fast);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.2, 1), transform 0.8s cubic-bezier(0.25, 1, 0.2, 1);
}

.navbar .btn-outline {
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.2, 1), transform 0.8s cubic-bezier(0.25, 1, 0.2, 1);
}

/* Minimalist Logo-Only State for Hero - Removed for GSAP animation */

.nav-links li a {
    color: var(--clr-text-light);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--trans-fast);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--clr-gold);
    transition: var(--trans-fast);
}

.nav-links li a:hover {
    color: var(--clr-gold);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--clr-gold);
}

.nav-links li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--clr-ivory);
    position: absolute;
    transition: var(--trans-fast);
}

.mobile-menu-btn .bar:nth-child(1) { top: 0; }
.mobile-menu-btn .bar:nth-child(2) { top: 9px; }
.mobile-menu-btn .bar:nth-child(3) { top: 18px; }

.mobile-menu-btn.open .bar:nth-child(1) { top: 9px; transform: rotate(45deg); }
.mobile-menu-btn.open .bar:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open .bar:nth-child(3) { top: 9px; transform: rotate(-45deg); }


/* ========================================================================= */
/* HOMEPAGE - HERO COMPONENT (CANVAS)                                        */
/* ========================================================================= */

.hero-section {
    position: relative;
    height: 500vh; /* Expanded to slow down scroll mapping for cinematic feel */
    width: 100%;
    background-color: var(--clr-bg-main);
}

.hero-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

#hero-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 1;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0) 30%,
        rgba(33, 16, 14, 0.7) 85%,
        var(--clr-bg-main) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: 18vh;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0 2rem;
    max-width: min(980px, 100%);
    margin: 0 auto;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* ========================================================================= */
/* HOMEPAGE - SECTIONS                                                       */
/* ========================================================================= */

/* Introduction */
.signature-intro {
    background: var(--clr-bg-main);
    z-index: 20;
    position: relative;
}

.intro-editorial-box {
    border-left: 1px solid rgba(195, 154, 88, 0.2);
    padding-left: 3rem;
    margin-left: max(0px, calc(10% - 2rem));
}

/* Premium 3D Cinematic Video Carousel */
.video-carousel-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    background: radial-gradient(circle at center, #3a160d 0%, #210b07 55%, #120504 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(195, 154, 88, 0.05);
    border-bottom: 1px solid rgba(195, 154, 88, 0.05);
}

.carousel-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(195, 154, 88, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 6rem;
    z-index: 2;
    gap: 20px;
}

.carousel-video-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: transparent;
    z-index: 0;
}

.carousel-video-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at center, rgba(0,0,0,0) 42%, rgba(30, 10, 5, 0.32) 65%, rgba(30, 10, 5, 0.88) 100%),
        linear-gradient(to bottom, rgba(30,10,5,0.2), transparent 22%, transparent 78%, rgba(30,10,5,0.45));
    z-index: 3;
}

.carousel-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 0;
    filter: saturate(1.05) contrast(1.04);
    transform: scale(1.15);
    
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transform-origin: center center;
}

.carousel-video.active-video {
    opacity: 1;
    visibility: visible;
}

.carousel-ui-layer {
    position: absolute;
    inset: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 10;
}

.carousel-arrows {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    pointer-events: auto;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(195, 154, 88, 0.3);
    color: var(--clr-gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--clr-gold);
    color: var(--clr-bg-main);
    transform: scale(1.1);
}

.carousel-menu-btn {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    pointer-events: auto;
    background: #ffffff;
    color: #2a0f08 !important;
    border: 1px solid #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.8rem 2.5rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.carousel-menu-btn,
.hero-cta-group .btn-primary,
.hero-cta-group .btn-secondary {
    min-height: 48px;
}

.carousel-menu-btn:hover {
    background: var(--clr-gold);
    color: var(--clr-bg-main) !important;
    border-color: var(--clr-gold);
    transform: scale(1.05);
}

/* Thali Feature Section */
.thali-feature-section {
    background: var(--clr-parchment);
    padding: 10rem 0;
    position: relative;
}

.thali-layout {
    display: grid;
    grid-template-columns: 5fr 5fr;
    gap: 6rem;
    align-items: center;
}

.thali-feature-text {
    padding-right: 2rem;
}

/* ========================================================================= */
/* PREMIUM REVIEWS TRAIN (Used on Home & About)                              */
/* ========================================================================= */

.premium-reviews-section {
    background: var(--clr-parchment); 
    position: relative;
    padding: 8rem 0;
    border-top: 1px solid rgba(115, 67, 41, 0.15);
}

.reviews-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    border-bottom: 1px solid rgba(115, 67, 41, 0.15); 
    padding-bottom: 2rem;
}

.reviews-rating-panel {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: right;
}

.rating-badge { display: flex; flex-direction: column; align-items: flex-end; }
.rating-text { display: flex; flex-direction: column; align-items: flex-end; }

.rating-score {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--clr-bronze);
    line-height: 1;
}

.rating-max {
    font-size: 1.5rem;
    color: var(--clr-muted-gold);
}

.rating-stars {
    color: var(--clr-saffron);
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-top: 0.5rem;
}

.rating-subtitle {
    font-size: 1.35rem;
    font-family: var(--font-heading);
    color: var(--clr-maroon-dark);
    font-weight: 600;
}

.rating-count {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--clr-bronze);
    margin-top: 0.3rem;
}

/* The Train Mechanics */
.reviews-train-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0 3rem 0;
}

/* Gradient fade edges for premium feel */
.reviews-train-wrapper::before,
.reviews-train-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10vw;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.reviews-train-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--clr-parchment) 0%, transparent 100%);
}

.reviews-train-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--clr-parchment) 0%, transparent 100%);
}

.reviews-train-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: scroll-premium-train 45s linear infinite;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.reviews-train-wrapper:hover .reviews-train-track {
    animation-play-state: paused;
}

.structured-review-card {
    width: 420px;
    background: var(--clr-ivory); 
    border: 1px solid rgba(195, 154, 88, 0.2);
    border-top: 3px solid var(--clr-muted-gold);
    padding: 3.5rem 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(115, 67, 41, 0.04);
    transition: var(--trans-smooth);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.structured-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(115, 67, 41, 0.1);
    border-top-color: var(--clr-saffron);
}

.src-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.src-source {
    width: 36px;
    height: 36px;
    background: #f0e6d6;
    color: var(--clr-maroon-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-body);
    font-size: 1.2rem;
}

.src-stars {
    color: var(--clr-saffron);
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.src-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--clr-maroon-dark);
    line-height: 1.7;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.src-footer {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(115, 67, 41, 0.15);
    padding-top: 1.5rem;
}

.src-name {
    font-weight: 600;
    color: var(--clr-maroon-dark);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-family: var(--font-body);
}

.src-role {
    font-size: 0.85rem;
    color: var(--clr-bronze);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@keyframes scroll-premium-train {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.5rem)); }
}

/* ========================================================================= */
/* MENU PAGE - LONG FORM EXPERIENCE                                          */
/* ========================================================================= */
.menu-page-header {
    padding-top: 15rem;
    padding-bottom: 6rem;
    background: radial-gradient(circle at top, var(--clr-bg-secondary) 0%, var(--clr-bg-main) 100%);
    text-align: center;
    border-bottom: 1px solid rgba(195, 154, 88, 0.1);
}

/* Featured Curated Area */
.menu-curated-feature {
    background: var(--clr-parchment);
    padding: 6rem 0;
    border-bottom: 1px solid rgba(195, 154, 88, 0.15);
}

.curated-feature-box {
    background: var(--clr-ivory);
    border: 1px solid rgba(195, 154, 88, 0.2);
    border-top: 3px solid var(--clr-gold);
    padding: 3rem;
    border-radius: 2px;
}

/* Sticky Category Nav */
.sticky-anchor-nav {
    position: sticky;
    top: 90px;
    background: var(--clr-bg-main); /* Matches page perfectly to block scrolling text invisibly */
    z-index: 100;
    padding: 1rem 0;
    margin-bottom: 4rem;
}

.sticky-anchor-nav .menu-nav-tabs {
    pointer-events: auto;
}

/* Provide an offset padding so anchors aren't hidden behind the sticky nav */
.menu-anchor {
    scroll-margin-top: 160px;
}

.menu-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.menu-tab {
    background: none;
    border: none;
    color: var(--clr-text-cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.3rem;
    transition: var(--trans-fast);
}

.menu-tab::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-gold);
    transition: var(--trans-fast);
}

.menu-tab:hover, .menu-tab.active {
    color: var(--clr-gold);
}

.menu-tab.active::after {
    width: 100%;
}

/* Deep Menu Lists */
.menu-category-section {
    padding-bottom: 6rem;
}

.premium-menu-list {
    list-style: none;
    max-width: 800px;
}

.pm-item {
    margin-bottom: 2rem;
}

.pm-title-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0.2rem;
}

.pm-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--clr-gold);
}

.pm-dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(195, 154, 88, 0.2);
    margin: 0 1rem;
}

.pm-price {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--clr-ivory);
}

.pm-desc {
    font-size: 1rem;
    color: var(--clr-text-cream);
    max-width: 650px;
    opacity: 0.9;
    font-weight: 300;
}

/* ========================================================================= */
/* PAYMENT PAGE                                                              */
/* ========================================================================= */

.payment-page-bg {
    background: var(--clr-parchment);
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 8rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.checkout-panel {
    background: var(--clr-ivory);
    border: 1px solid rgba(115, 67, 41, 0.15);
    border-top: 3px solid var(--clr-bronze);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(115, 67, 41, 0.05);
}

.checkout-panel.dark-mode {
    background: var(--clr-bg-secondary);
    border-color: rgba(195, 154, 88, 0.2);
    border-top: 3px solid var(--clr-gold);
    color: var(--clr-ivory);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--clr-bronze);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.checkout-panel.dark-mode .form-group label {
    color: var(--clr-muted-gold);
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(115, 67, 41, 0.3);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--clr-maroon-dark);
    transition: var(--trans-fast);
}

.checkout-panel.dark-mode .form-input {
    border-color: rgba(195, 154, 88, 0.3);
    color: var(--clr-ivory);
}

.form-input:focus {
    outline: none;
    border-color: var(--clr-saffron);
}

.order-item-list {
    list-style: none;
    margin: 2rem 0;
    border-top: 1px solid rgba(195, 154, 88, 0.2);
    border-bottom: 1px solid rgba(195, 154, 88, 0.2);
    padding: 1.5rem 0;
}

.order-item-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-gold);
}

/* ========================================================================= */
/* GLOBAL FOOTER                                                             */
/* ========================================================================= */

.global-footer {
    background: var(--clr-bg-main);
    border-top: 1px solid rgba(195, 154, 88, 0.1);
    padding: 6rem 0 2rem 0;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 2.5rem;
    color: var(--clr-ivory);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--clr-text-cream);
    max-width: 300px;
    opacity: 0.8;
}

.footer-links h4 {
    color: var(--clr-gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--clr-text-cream);
    text-decoration: none;
    transition: var(--trans-fast);
}

.footer-links a:hover {
    color: var(--clr-saffron);
}

.footer-bottom {
    border-top: 1px solid rgba(195, 154, 88, 0.1);
    padding-top: 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    font-size: 0.9rem;
    color: var(--clr-text-cream);
    opacity: 0.6;
}

.footer-bottom .fb-left {
    text-align: left;
}

.footer-bottom .fb-center {
    text-align: center;
}

.footer-bottom .fb-right {
    display: flex;
    justify-content: flex-end;
}

/* ========================================================================= */
/* ABOUT PAGE - EDITORIAL STORYTELLING                                       */
/* ========================================================================= */

.about-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--clr-bg-main) 0%, rgba(33, 16, 14, 0.6) 50%, rgba(33, 16, 14, 0.8) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    padding-top: 5rem;
}

/* Images */
.story-image-tall {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 2px;
}

.story-image-wide {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 2px;
}

/* Philosophy */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.philosophy-card {
    background: var(--clr-parchment);
    padding: 3rem 2rem;
    border-top: 2px solid var(--clr-gold);
    transition: var(--trans-medium);
}

.philosophy-card h3 {
    color: var(--clr-maroon-dark);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: var(--clr-bronze);
    font-size: 0.95rem;
}

.philosophy-card:hover {
    transform: translateY(-5px);
}

/* Masonry Gallery */
.editorial-masonry-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 400px;
    gap: 1.5rem;
    margin-top: 4rem;
}

.masonry-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.masonry-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.masonry-item:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}

.masonry-item:nth-child(3) {
    grid-column: 3;
    grid-row: 2;
}

/* Trust Section */
.trust-section {
    background: radial-gradient(circle at center, var(--clr-bg-secondary) 0%, var(--clr-bg-main) 100%);
    text-align: center;
    padding: 8rem 0;
    border-top: 1px solid rgba(195, 154, 88, 0.1);
    border-bottom: 1px solid rgba(195, 154, 88, 0.1);
}

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

@media (max-width: 1024px) {
    /* Layout */
    .editorial-grid-50-50, .editorial-grid-40-60, .thali-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .intro-editorial-box {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Gallery */
    .editorial-masonry-gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 300px;
    }
    .masonry-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
    }
    .masonry-item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }
    .masonry-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    /* Padding adjustments */
    :root {
        --section-padding: 6rem 0;
    }

    .hero-section {
        height: 420vh;
    }

    .video-carousel-section {
        min-height: 78vh;
        height: 78vh;
    }

}

@media (max-width: 768px) {
    /* Global Typography & Spacing */
    :root {
        --section-padding: 4rem 0;
    }
    
    .container { padding: 0 1.5rem; }
    .nav-container { padding: 0 1.5rem; }

    /* Navigation */
    .nav-links, .navbar .btn-primary, .navbar .btn-outline { display: none; }
    .mobile-menu-btn { display: block; }

    .nav-links.mobile-active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 12, 10, 0.98);
        padding: 4rem 2rem;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(195, 154, 88, 0.2);
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        align-items: center;
        gap: 2.5rem;
        animation: menuFadeIn 0.3s ease forwards;
    }

    .nav-links.mobile-active li a {
        font-size: 1.5rem;
        font-family: var(--font-heading);
        color: var(--clr-ivory);
        text-transform: capitalize;
        letter-spacing: 2px;
        opacity: 0;
        transform: translateY(15px);
        animation: menuItemFadeIn 0.5s cubic-bezier(0.25, 1, 0.2, 1) forwards;
    }

    .nav-links.mobile-active li:nth-child(1) a { animation-delay: 0.1s; }
    .nav-links.mobile-active li:nth-child(2) a { animation-delay: 0.15s; }
    .nav-links.mobile-active li:nth-child(3) a { animation-delay: 0.2s; }
    .nav-links.mobile-active li:nth-child(4) a { animation-delay: 0.25s; }

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

    @keyframes menuItemFadeIn {
        to { opacity: 1; transform: translateY(0); }
    }
    
    /* Hero Section */
    .about-hero {
        align-items: flex-start;
        padding-top: 13rem;
    }
    .about-hero-content {
        padding-top: 0;
    }
    .hero-content {
        bottom: 10vh;
        padding: 0 1.5rem;
    }
    .hero-cta-group {
        flex-direction: column;
        gap: 0.9rem;
    }
    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-secondary {
        width: 100%;
    }
    
    /* Video Carousel */
    .hero-section { height: 360vh; }
    .video-carousel-section { min-height: 72vh; height: 72vh; }
    .carousel-video { object-fit: contain; }
    .carousel-ambient-glow { width: 90vw; height: 90vw; }
    .carousel-btn { width: 50px; height: 50px; }
    .carousel-menu-btn {
        width: auto;
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
        bottom: 1.5rem;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Reviews Section */
    .reviews-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    .reviews-rating-panel, .rating-badge, .rating-text {
        align-items: flex-start;
        text-align: left;
    }
    
    /* Menu & Thali adjustments */
    .thali-feature-section { padding: 5rem 0; }
    .menu-page-header { padding-top: 10rem; padding-bottom: 4rem; }
    .pm-title { font-size: 1.25rem; }
    .pm-price { font-size: 1.1rem; }
    .pm-dots { margin: 0 0.5rem; }
    .pm-desc { font-size: 0.95rem; }

    /* Gallery */
    .editorial-masonry-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .masonry-item { height: 300px; }
    .masonry-item:nth-child(1), .masonry-item:nth-child(2), .masonry-item:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
    }

    /* Footer */
    .global-footer { padding: 4rem 0 2rem 0; text-align: center; }
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .footer-bottom .fb-left,
    .footer-bottom .fb-center,
    .footer-bottom .fb-right {
        text-align: center;
        justify-content: center;
    }

    /* Mobile Menu Page Categories Overlay */
    .sticky-anchor-nav { display: none; }

    .mobile-category-fab {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: fixed;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        background: var(--clr-bg-secondary);
        color: var(--clr-gold);
        border: 1px solid rgba(195, 154, 88, 0.3);
        padding: 0.8rem 1.5rem;
        border-radius: 30px;
        font-family: var(--font-body);
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 0.85rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.6);
        z-index: 999;
        cursor: pointer;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .mobile-category-overlay {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 1005;
        background: rgba(26, 12, 10, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.2, 1);
    }

    .mobile-category-overlay.open {
        transform: translateY(0);
    }

    .mco-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(195, 154, 88, 0.15);
    }

    .mco-header h3 {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        color: var(--clr-gold);
        margin: 0;
    }

    .mco-close-btn {
        background: none;
        border: none;
        color: var(--clr-text-cream);
        cursor: pointer;
        padding: 0.5rem;
    }

    .mco-content {
        flex: 1;
        overflow-y: auto;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .mco-link {
        font-family: var(--font-body);
        font-size: 1.15rem;
        color: var(--clr-text-cream);
        text-decoration: none;
        letter-spacing: 1px;
    }
    
    .mco-link.active {
        color: var(--clr-saffron);
        font-weight: 500;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices */
    .container { padding: 0 1rem; }
    .nav-container { padding: 0 1rem; }
    .hero-content { padding: 0 1rem; bottom: 8vh; }
    .editorial-subheading { font-size: 0.82rem; letter-spacing: 2px; }
    
    /* Video Carousel */
    .hero-section { height: 320vh; }
    .video-carousel-section { min-height: 66vh; height: 66vh; }
    /* removed carousel-video-wrapper size override */
    
    /* Review Cards */
    .structured-review-card {
        width: 300px;
        padding: 2rem 1.5rem;
    }
    .src-text { font-size: 1.1rem; }
    .reviews-train-track { gap: 1.5rem; }
    
    /* Menu & Category */
    .menu-nav-tabs { gap: 1rem; }
    .menu-tab { font-size: 0.85rem; }
    .pm-title-row { flex-direction: column; align-items: flex-start; }
    .pm-dots { display: none; }
    .pm-price { align-self: flex-start; margin-top: 0.2rem; }
    
    /* Buttons */
    .btn-primary, .btn-secondary, .btn-outline {
        padding: 0.8rem 1.5rem;
        width: auto;
        text-align: center;
    }
    
    /* Footer */
    .footer-brand h2 { font-size: 2rem; }
    .footer-brand p { margin: 0 auto; }
}

/* ========================================================================= */
/* PREMIUM MENU SHOWCASE (STICKY SCROLL)                                     */
/* ========================================================================= */



.premium-menu-showcase {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pms-vertical-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}


.special-train-slider {
    width: 100%;
    max-width: 1200px; /* Cinematic wide container */
    height: 500px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.train-card-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.train-card {
    position: absolute;
    width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--clr-bg-main);
    box-shadow: 0 15px 35px rgba(42, 17, 17, 0.15);
    border: 8px solid var(--clr-ivory);
    box-sizing: border-box;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.2, 1), 
                opacity 0.8s cubic-bezier(0.25, 1, 0.2, 1), 
                filter 0.8s cubic-bezier(0.25, 1, 0.2, 1),
                box-shadow 0.8s ease;
    will-change: transform, opacity, filter, box-shadow;
}

.train-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 5 Train Positions */
.train-pos-hidden-left {
    transform: translateX(-140%) scale(0.75);
    opacity: 0;
    z-index: 1;
}

.train-pos-left {
    transform: translateX(-80%) scale(0.85);
    opacity: 0.6;
    z-index: 2;
    filter: blur(2px);
}

.train-pos-center {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 3;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.train-pos-right {
    transform: translateX(80%) scale(0.85);
    opacity: 0.6;
    z-index: 2;
    filter: blur(2px);
}

.train-pos-hidden-right {
    transform: translateX(140%) scale(0.75);
    opacity: 0;
    z-index: 1;
}

@media (max-width: 1024px) {
    .train-card {
        width: 320px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .special-train-slider {
        height: 350px;
        overflow: hidden; /* Prevent horizontal scroll on mobile if cards bleed out */
    }
    .train-card {
        width: 260px;
        height: 350px;
        border-width: 4px;
    }
    .train-pos-left {
        transform: translateX(-65%) scale(0.85);
    }
    .train-pos-right {
        transform: translateX(65%) scale(0.85);
    }
}
