:root {
    /* Colors */
    --background: #F5F1E8;
    --foreground: #2C2C2C;
    --primary: #8B0000;
    --primary-foreground: #F5F1E8;
    --secondary: #D4AF37;
    --secondary-foreground: #2C2C2C;
    --accent: #E67E22;
    --accent-foreground: #F5F1E8;
    --card: #F9F6F0;
    --card-foreground: #2C2C2C;
    --muted: #EBE4D5;
    --muted-foreground: #5A5A5A;
    --border: #E0D7C6;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px -5px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.15);
    --shadow-premium: 0 25px 50px -12px rgba(139, 0, 0, 0.15);
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.1;
    color: var(--foreground);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

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

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--background);
    transition: var(--transition);
    padding: 1.25rem 0;
}

header.scrolled {
    padding: 0.75rem 0;
    background: rgba(245, 241, 232, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo img {
    width: 150px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .logo img {
        width: 100px;
    }
}

nav.desktop-nav {
    display: flex;
    gap: 2.25rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    nav.desktop-nav {
        display: none;
    }
}

nav.desktop-nav a {
    font-weight: 500;
    font-size: 0.98rem;
    position: relative;
}

nav.desktop-nav a:hover {
    color: var(--primary);
}

nav.desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.98rem;
    transition: var(--transition);
}

.header-social {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #1877f2;
    background: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
}

.header-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(24, 119, 242, 0.16);
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
    box-shadow: 0 10px 22px rgba(212, 175, 55, 0.28);
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 3rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.36) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.14) 45%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1150px;
    padding: 0 1.5rem;
    transform: translateY(28px);
}

.hero-badge {
    display: inline-block;
    padding: 0.85rem 1.9rem;
    background: linear-gradient(90deg, rgba(168, 116, 19, 0.62) 0%, rgba(41, 24, 9, 0.6) 100%);
    border: 1px solid rgba(214, 166, 63, 0.35);
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    color: white;
    font-size: clamp(3.4rem, 6vw, 5.1rem);
    line-height: 1.04;
    margin-bottom: 1.7rem;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.72);
}

.hero p {
    font-size: clamp(1.12rem, 1.8vw, 1.34rem);
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 3rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.68);
}

.hero-btns {
    display: flex;
    gap: 1.1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btns .btn {
    min-width: 182px;
    padding: 1.05rem 2.1rem;
    font-size: 0.98rem;
}

.hero-footer-text {
    margin-top: 2.6rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    color: rgba(255, 255, 255, 0.9);
}

.hero-footer-text .dot {
    color: #f2a23e;
    margin: 0 0.5rem;
}

@media (max-width: 640px) {
    .hero {
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .hero-content {
        transform: none;
    }

    .hero-badge {
        margin-bottom: 1.25rem;
        padding: 0.6rem 1.4rem;
        font-size: 0.65rem;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
        margin-bottom: 1rem;
    }

    .hero p {
        max-width: 34rem;
        font-size: clamp(1rem, 4vw, 1.15rem);
        margin-bottom: 1.75rem;
    }

    .hero-btns {
        gap: 0.8rem;
    }

    .hero-btns .btn {
        width: 100%;
        min-width: 0;
        padding: 0.8rem 1.5rem;
    }

    .hero-footer-text {
        margin-top: 1.75rem;
    }
}

/* ---- Page Hero (About / Menu / Contact) ---- */
/* Sits BELOW the fixed status-strip (30px) + header (~72px) */
.page-hero {
    position: relative;
    height: 55vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    /* Push content clear of fixed strip + header */
    padding-top: 102px;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 60%, rgba(44,44,44,0.85) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 0 1.5rem;
}

.page-hero-content h1 {
    color: white;
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin: 1rem 0 0.75rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.page-hero-content p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.9);
    max-width: 560px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 300px;
        padding-top: 100px;
    }
    .page-hero-content h1 {
        font-size: 2rem;
    }
}


/* Sections */
.section-title {
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--muted-foreground);
    max-width: 700px;
}

/* Welcome Section */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.welcome-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.welcome-content h2 {
    margin-bottom: 1.5rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background: #2b2b2b;
    color: var(--background);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1.05fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1rem;
        position: relative;
        padding-top: 180px;
    }
    
    .footer-brand-card {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 0;
    }
}

.footer-logo img {
    width: 120px;
    margin-bottom: 0;
}

.footer-brand-card {
    width: 180px;
    max-width: 100%;
    min-height: 142px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #f1ece2;
    margin-bottom: 2rem;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
}

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

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

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

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact a,
.footer-links a,
.footer-bottom a,
footer .api-hours p {
    color: rgba(245, 241, 232, 0.88);
}

.footer-social {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    margin-top: 1rem;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-cta-btn {
    width: 100%;
    justify-content: space-between;
    padding: 1.05rem 1.3rem;
    font-size: 0.98rem;
}

.footer-cta-outline {
    border-color: rgba(212, 175, 55, 0.8);
    color: var(--secondary);
    background: transparent;
}

.footer-cta-outline:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--background);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* API Status Strip — fixed at very top */
.status-strip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.4s ease;
}

.status-strip.open {
    background: linear-gradient(90deg, #064e3b 0%, #059669 50%, #064e3b 100%);
}

.status-strip.closed {
    background: linear-gradient(90deg, #7f1d1d 0%, #dc2626 50%, #7f1d1d 100%);
}

.status-strip.error {
    background: linear-gradient(90deg, #78350f 0%, #d97706 50%, #78350f 100%);
}

.status-strip-inner {
    padding: 0.45rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: #fff;
    min-height: 30px;
}

.status-strip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    animation: statusPulse 2s infinite;
}

.status-strip.open .status-strip-dot {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.status-strip-text {
    color: rgba(255,255,255,0.95);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.countdown-timer {
    font-weight: 800;
    color: #fff;
    background: rgba(0,0,0,0.2);
    padding: 1px 6px;
    border-radius: 4px;
    font-variant-numeric: tabular-nums;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

/* Adjust header when strip is present */
body.has-status-strip #main-header {
    top: 30px;
}

body.has-status-strip .inner-page-header {
    padding-top: calc(132px + 2.5rem);
}

body.has-status-strip .hero {
    padding-top: 170px;
}

body.has-status-strip .menu-nav {
    top: 132px;
}

@media (max-width: 768px) {
    body.has-status-strip #main-header {
        top: 30px;
    }

    body.has-status-strip .inner-page-header {
        padding-top: calc(130px + 2rem);
    }

    body.has-status-strip .hero {
        padding-top: 160px;
    }

    body.has-status-strip .menu-nav {
        top: 130px;
    }
}

/* ---- SIPO Modals (closed, offer, welcome) ---- */
.sipo-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.sipo-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.sipo-modal {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 440px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    transform: translateY(20px);
    transition: transform 0.35s ease;
}

.sipo-modal-overlay.active .sipo-modal {
    transform: translateY(0);
}

.sipo-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 1.6rem;
    line-height: 1;
    color: #9ca3af;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
}
.sipo-modal-close:hover { color: #374151; }

.sipo-modal-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.sipo-modal-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.sipo-modal-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sipo-modal-btn {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.sipo-modal-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.sipo-modal-actions .btn {
    flex: 1;
    min-width: 120px;
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
}

.sipo-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.sipo-status-badge.open-badge {
    background: #d1fae5;
    color: #065f46;
}

.sipo-status-badge.closed-badge {
    background: #fee2e2;
    color: #991b1b;
}

.sipo-status-dot-sm {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Offer Popup */
.offer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.offer-popup {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.offer-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
}

.offer-content h3 {
    color: #8B0000;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.offer-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* =============================================
   OPENING / LOADING SCREEN ANIMATION
   Ported from swagat india page2 (LoadingScreen.jsx)
   ============================================= */
#loading-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* Exit transition */
    transition: opacity 0.5s ease-out;
}

#loading-screen.hide {
    opacity: 0;
    pointer-events: none;
}

#loading-screen.hidden {
    display: none;
}

/* Center content wrapper */
.ls-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Logo */
.ls-logo {
    width: 110px;
    height: auto;
    object-fit: contain;
    margin-bottom: 1.75rem;
    drop-shadow: 0 4px 12px rgba(0,0,0,0.12);
    opacity: 0;
    transform: scale(0.88);
    animation: lsLogoIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

@media (min-width: 768px) {
    .ls-logo {
        width: 140px;
    }
}

@keyframes lsLogoIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Title */
.ls-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 6vw, 3.25rem);
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(28px);
    animation: lsTitleIn 0.55s ease-out 0.82s forwards;
}

@keyframes lsTitleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle */
.ls-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    opacity: 0;
    animation: lsFadeIn 0.45s ease-out 1.25s forwards;
}

@keyframes lsFadeIn {
    to {
        opacity: 1;
    }
}

/* Gold divider line */
.ls-line {
    height: 2px;
    width: 90px;
    background: var(--secondary);
    border-radius: 2px;
    margin-top: 1.5rem;
    transform: scaleX(0);
    opacity: 0;
    transform-origin: center;
    animation: lsLineIn 0.65s ease-out 1.35s forwards;
}

@keyframes lsLineIn {
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* Skip button */
.ls-skip {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
    opacity: 0;
    animation: lsFadeIn 0.4s ease-out 1.5s forwards;
}

.ls-skip:hover {
    color: var(--foreground);
}

/* =============================================
   MOBILE ACTION BAR (bottom bar like old site)
   ============================================= */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 1024px) {
    .mobile-action-bar { display: flex; }
    body { padding-bottom: 70px; }
}

.mobile-action-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.6rem 0;
    color: white;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: background 0.2s ease;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.mobile-action-item:last-child { border-right: none; }
.mobile-action-item:hover, .mobile-action-item:active {
    background: rgba(255,255,255,0.15);
    color: white;
}

/* =============================================
   INNER PAGE HEADER (replaces dark page-hero)
   ============================================= */
.inner-page-header {
    background: var(--background);
    padding-top: calc(102px + 2.5rem);
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}
.inner-page-header h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--foreground);
    margin-bottom: 0.75rem;
}
.inner-page-sub {
    color: var(--muted-foreground);
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   OLD-STACK: image + text side by side
   ============================================= */
.old-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 900px) {
    .old-stack {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.old-img-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--secondary);
}
.old-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =============================================
   SECTION HEADINGS & LABELS
   ============================================= */
.section-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    display: block;
}
.section-sub {
    color: var(--muted-foreground);
    max-width: 600px;
    margin-bottom: 2.5rem;
}
.bg-muted { background-color: var(--muted); }

/* =============================================
   HOME HERO — STACKED BUTTONS
   ============================================= */
.home-hero-btns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
}
.hero-footer-text {
    margin-top: 2.6rem;
    font-size: 0.82rem;
    letter-spacing: 0.09em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}
.hero-footer-text .dot {
    color: #f2a23e;
    margin: 0 0.5rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}
.btn-ghost {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.4);
    color: white;
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.7);
    color: white;
    transform: translateY(-2px);
}

/* =============================================
   SERVICE LIST (checkmarks)
   ============================================= */
.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
}
.service-list li svg { color: var(--primary); flex-shrink: 0; }

/* =============================================
   FOOD GALLERY GRID
   ============================================= */
.food-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .food-gallery { grid-template-columns: repeat(4, 1fr); }
}
.food-img-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    border: 2px solid var(--secondary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.food-img-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.food-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

#story .old-stack {
    align-items: center;
}

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

.featured-placeholder-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
}

.featured-placeholder-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
}

.featured-placeholder-card p {
    color: var(--muted-foreground);
    margin: 0;
}

@media (max-width: 992px) {
    .featured-products-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .featured-products-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand-card {
        width: 160px;
        min-height: 126px;
    }
}

/* =============================================
   VISIT US CARD
   ============================================= */
.visit-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}
.visit-info { display: flex; flex-direction: column; gap: 1rem; }
.visit-info-row { display: flex; align-items: flex-start; gap: 0.75rem; }
.visit-link { color: var(--foreground); text-decoration: none; font-size: 0.95rem; line-height: 1.5; transition: color 0.2s; }
.visit-link:hover { color: var(--primary); }

/* =============================================
   CONTACT INFO CARDS
   ============================================= */
.contact-info-card {
    background: var(--card);
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin-bottom: 1.25rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}
.contact-info-icon { color: var(--primary); flex-shrink: 0; margin-top: 0.1rem; }
.contact-card-title { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--foreground); }
.contact-hours-list {
    list-style: none;
    margin: 0.35rem 0 0;
    padding: 0;
    width: 100%;
}
.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(44, 44, 44, 0.08);
    color: var(--foreground);
    font-size: 0.95rem;
}
.contact-hours-list p {
    margin: 0;
    padding: 0.35rem 0;
    color: var(--foreground);
}
.contact-hours-list li:last-child {
    border-bottom: none;
}
.contact-hours-list .time {
    color: var(--muted-foreground);
    text-align: right;
}
.contact-hours-list li.today span {
    color: var(--primary);
    font-weight: 700;
}
.api-hours {
    list-style: none;
    margin: 0;
    padding: 0;
}
.api-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;
    color: rgba(245, 241, 232, 0.88);
}
.api-hours li .time {
    text-align: right;
    color: rgba(245, 241, 232, 0.88);
}
.map-container { width: 100%; height: 380px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); margin-top: 0.5rem; }

