/* ==========================================================================
   MOKSHAM VEG - NEO-HERITAGE MASTER STYLESHEET
   Authentic Udupi Tradition × World-Class International Editorial Feel
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;0,6..72,700;1,6..72,400;1,6..72,500;1,6..72,600&family=Outfit:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Refined Luxury Charcoal & Warm Brass */
    --bg-dark: #110E0C;
    --bg-dark-card: #181411;
    --bg-dark-elevated: #201A16;
    --bg-dark-border: rgba(201, 149, 71, 0.18);
    --bg-card-hover: #1E1814;
    
    --bg-paper: #FAF7F2;
    --bg-paper-card: #FFFFFF;
    
    --gold-primary: #C99547;
    --gold-light: #E8C182;
    --gold-dark: #8F6322;
    --gold-subtle: rgba(201, 149, 71, 0.14);
    
    --terracotta: #D45E2A;
    --leaf-green: #256B43;
    --leaf-green-light: #32965E;
    
    --text-editorial-title: #FFFFFF;
    --text-editorial-body: #D4C9C1;
    --text-editorial-muted: #8E827A;
    --text-editorial-accent: #E8C182;
    
    --whatsapp-green: #25D366;
    --whatsapp-hover: #1EBE5D;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-literary: 'Newsreader', Georgia, serif;
    --font-royal: 'Cinzel', serif;
    --font-sans: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif;
    
    /* Radii & Shadows */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 12px 35px rgba(0, 0, 0, 0.28);
    --shadow-floating: 0 12px 32px rgba(0, 0, 0, 0.7);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-editorial-body);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Scroll Reading Progress Bar */
#readingProgressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    z-index: 1000;
    width: 0%;
    transition: width 0.1s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* 2-Column Responsive Form Row */
.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 540px) {
    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* ==========================================================================
   1. NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 1140px;
    z-index: 100;
    padding: 0.7rem 1.4rem;
    background: rgba(17, 14, 12, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--bg-dark-border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    top: 0.5rem;
    padding: 0.55rem 1.2rem;
    background: rgba(14, 11, 9, 0.96);
    border-color: rgba(201, 149, 71, 0.25);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--terracotta));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.brand-subtitle {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--text-editorial-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
}

.nav-link {
    color: var(--text-editorial-body);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-primary);
    transition: width var(--transition-smooth);
    border-radius: 2px;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: rgba(201, 149, 71, 0.18);
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-light);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    user-select: none;
}

.mobile-toggle:hover, .mobile-toggle:active {
    background: var(--gold-primary);
    color: #110E0C;
    transform: scale(1.05);
}

.mobile-nav-link {
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.75rem 0;
    font-size: 1.15rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--gold-light);
}

/* ==========================================================================
   2. BUTTONS & GENERAL BADGES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-smooth);
    position: relative;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #110E0C;
    box-shadow: 0 4px 15px rgba(201, 149, 71, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: #FFFFFF;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    color: #FFFFFF;
    border: 1px solid rgba(201, 149, 71, 0.35);
}

.btn-outline:hover {
    background: rgba(201, 149, 71, 0.12);
    border-color: var(--gold-primary);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.45rem 0.95rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

/* ==========================================================================
   3. HERO SECTION & FLOATING MICRO-ANIMATIONS
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    padding: 8.5rem 0 5rem;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 75% 25%, rgba(201, 149, 71, 0.14), transparent 50%),
                var(--bg-dark);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    background: var(--gold-subtle);
    border: 1px solid rgba(201, 149, 71, 0.35);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.12;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    color: var(--gold-light);
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-editorial-body);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.hero-quick-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-dark-border);
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-light);
}

.stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-editorial-muted);
}

/* Hero Visual Showcase */
.hero-visual {
    position: relative;
    width: 100%;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--bg-dark-border);
    box-shadow: var(--shadow-soft);
    background: var(--bg-dark-card);
}

.hero-image-card img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

/* Subtle Floating Sticker Badges */
.hero-badge-float {
    position: absolute;
    z-index: 25;
    pointer-events: auto;
}

.hero-badge-1 {
    top: 1.2rem;
    left: -0.25rem;
    animation: floatBadge1 5.2s ease-in-out infinite alternate;
}

.hero-badge-2 {
    bottom: 2rem;
    right: -0.25rem;
    animation: floatBadge2 5.8s ease-in-out infinite alternate;
}

.hero-badge-3 {
    bottom: -0.35rem;
    left: 1.5rem;
    animation: floatBadge3 4.8s ease-in-out infinite alternate;
}

/* Subtle & Gentle Micro-Floating Animations */
@keyframes floatBadge1 {
    0% {
        transform: translateY(0px) rotate(-1deg);
    }
    100% {
        transform: translateY(-6px) rotate(0.5deg);
    }
}

@keyframes floatBadge2 {
    0% {
        transform: translateY(0px) rotate(1deg);
    }
    100% {
        transform: translateY(-7px) rotate(-0.5deg);
    }
}

@keyframes floatBadge3 {
    0% {
        transform: translateY(0px) rotate(-0.5deg);
    }
    100% {
        transform: translateY(-5px) rotate(0.8deg);
    }
}

/* Subtle Luxury Frosted Badges */
.badge-sticker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.38rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    letter-spacing: 0.3px;
    user-select: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
    white-space: nowrap;
    opacity: 1 !important;
}

.badge-sticker.hot {
    background: rgba(32, 18, 14, 0.88) !important;
    color: #FFA585 !important;
    border: 1px solid rgba(212, 94, 42, 0.45) !important;
}

.badge-sticker.gold {
    background: rgba(28, 22, 16, 0.88) !important;
    color: var(--gold-light) !important;
    border: 1px solid rgba(201, 149, 71, 0.45) !important;
}

.badge-sticker.leaf {
    background: rgba(16, 28, 20, 0.88) !important;
    color: #86EFAC !important;
    border: 1px solid rgba(37, 107, 67, 0.45) !important;
}

.badge-sticker.accent {
    background: rgba(26, 16, 36, 0.88) !important;
    color: #D8B4FE !important;
    border: 1px solid rgba(168, 85, 247, 0.45) !important;
}

.badge-sticker.neutral {
    background: rgba(24, 20, 18, 0.88) !important;
    color: #FFFFFF !important;
    border: 1px solid var(--bg-dark-border) !important;
}



/* ==========================================================================
   4. CRAVING MATCHER & CATEGORY PILLS
   ========================================================================== */
.craving-matcher-section {
    padding: 3rem 0;
    background: var(--bg-dark-card);
    border-top: 1px solid var(--bg-dark-border);
    border-bottom: 1px solid var(--bg-dark-border);
}

.craving-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.craving-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.craving-sub {
    font-size: 0.9rem;
    color: var(--text-editorial-muted);
    margin-bottom: 1.5rem;
}

.craving-pills, .category-tabs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin: 0.5rem 0 1.5rem;
}

.craving-pill-btn, .category-tab-btn {
    background: var(--bg-dark-elevated);
    border: 1px solid var(--bg-dark-border);
    color: var(--text-editorial-body);
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    user-select: none;
}

.craving-pill-btn:hover, .category-tab-btn:hover {
    background: var(--bg-dark-card);
    border-color: rgba(201, 149, 71, 0.45);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.craving-pill-btn.active, .category-tab-btn.active {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #110E0C;
    font-weight: 700;
    border-color: var(--gold-light);
    box-shadow: 0 4px 18px rgba(201, 149, 71, 0.35);
    transform: translateY(-2px);
}

.craving-result-card {
    background: var(--bg-dark-elevated);
    border: 1.5px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 680px;
    width: 100%;
    margin-top: 1.5rem;
    animation: fadeIn 0.3s ease;
}

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

/* ==========================================================================
   5. BENTO GRID DISHES & MENU
   ========================================================================== */
.section {
    padding: 4.5rem 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-editorial-body);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

.dish-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--bg-dark-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.dish-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 149, 71, 0.4);
    background: var(--bg-card-hover);
}

.dish-image-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.dish-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dish-card:hover .dish-image-wrap img {
    transform: scale(1.05);
}

.dish-badge-pos {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
}

.dish-price-tag {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    background: rgba(17, 14, 12, 0.9);
    border: 1px solid rgba(201, 149, 71, 0.6);
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    z-index: 2;
}

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

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

.dish-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
}

.dish-kannada {
    font-size: 0.78rem;
    color: var(--gold-light);
    opacity: 0.8;
}

.dish-desc {
    font-size: 0.85rem;
    color: var(--text-editorial-body);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.dish-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    color: var(--text-editorial-muted);
}

.dish-indicators {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.meter-pill {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

/* ==========================================================================
   6. HERITAGE PILLARS & SERVICES
   ========================================================================== */
.heritage-section {
    background: var(--bg-dark-card);
    border-top: 1px solid var(--bg-dark-border);
    border-bottom: 1px solid var(--bg-dark-border);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pillar-card {
    background: var(--bg-dark-elevated);
    border: 1px solid var(--bg-dark-border);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all var(--transition-smooth);
}

.pillar-card:hover {
    border-color: rgba(201, 149, 71, 0.4);
    transform: translateY(-2px);
}

.pillar-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gold-subtle);
    border: 1px solid rgba(201, 149, 71, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.pillar-desc {
    font-size: 0.85rem;
    color: var(--text-editorial-body);
    line-height: 1.6;
}

/* Location Banner */
.location-banner {
    background: linear-gradient(135deg, var(--bg-dark-elevated), var(--bg-dark-card));
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-xl);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* ==========================================================================
   7. INTERNATIONAL EDITORIAL ARTICLE LAYOUT
   ========================================================================== */
.editorial-hero-header {
    padding: 7.5rem 0 3.5rem;
    text-align: center;
    background: radial-gradient(circle at 50% 20%, rgba(201, 149, 71, 0.08), transparent 60%);
    border-bottom: 1px solid var(--bg-dark-border);
}

.editorial-tagline {
    font-family: var(--font-literary);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--bg-dark-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-smooth);
    text-decoration: none;
    color: inherit;
}

.article-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 149, 71, 0.35);
    background: var(--bg-card-hover);
}

.article-thumb {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-thumb img {
    transform: scale(1.04);
}

.article-type-pill {
    position: absolute;
    bottom: 0.85rem;
    left: 0.85rem;
    background: rgba(17, 14, 12, 0.9);
    border: 1px solid rgba(201, 149, 71, 0.4);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
}

.article-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.78rem;
    color: var(--text-editorial-muted);
    margin-bottom: 0.6rem;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.35;
    margin-bottom: 0.65rem;
}

.article-excerpt {
    font-size: 0.88rem;
    color: var(--text-editorial-body);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-light);
}

.editorial-article-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 7rem 1.5rem 5rem;
}

.editorial-eyebrow-masthead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--bg-dark-border);
    margin-bottom: 2rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
}

.editorial-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.18;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
}

.editorial-deck {
    font-family: var(--font-literary);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    line-height: 1.6;
    color: var(--text-editorial-body);
    font-style: italic;
    margin-bottom: 2rem;
    border-left: 2px solid var(--gold-primary);
    padding-left: 1.25rem;
}

.editorial-byline-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2.5rem;
}

.editorial-author-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.editorial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--gold-primary);
}

.editorial-author-meta {
    display: flex;
    flex-direction: column;
}

.editorial-author-name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.editorial-author-role {
    font-size: 0.78rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.editorial-article-stats {
    font-size: 0.82rem;
    color: var(--text-editorial-muted);
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.editorial-lead-media {
    margin-bottom: 3.5rem;
}

.editorial-lead-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    display: block;
    box-shadow: var(--shadow-soft);
}

.editorial-caption {
    font-family: var(--font-literary);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-editorial-muted);
    padding-top: 0.65rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.5rem;
}

.editorial-prose {
    font-family: var(--font-literary);
    font-size: 1.18rem;
    line-height: 1.85;
    color: #DFD7CF;
}

.editorial-prose p {
    margin-bottom: 1.75rem;
}

.editorial-dropcap::first-letter {
    font-family: var(--font-heading);
    float: left;
    font-size: 4.8rem;
    line-height: 0.8;
    padding-top: 4px;
    padding-right: 12px;
    padding-bottom: 2px;
    color: var(--gold-light);
    font-weight: 700;
}

.editorial-prose h3 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 2.8rem 0 1rem;
    line-height: 1.25;
}

.editorial-prose h4 {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light);
    margin: 2rem 0 0.75rem;
    letter-spacing: 0.5px;
}

.editorial-prose blockquote {
    font-family: var(--font-literary);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--gold-light);
    border-left: 3px solid var(--gold-primary);
    padding: 1rem 0 1rem 1.75rem;
    margin: 2.5rem 0;
}

.editorial-prose ul, .editorial-prose ol {
    margin: 1.5rem 0 1.75rem 1.5rem;
}

.editorial-prose li {
    margin-bottom: 0.65rem;
}

.editorial-recipe-callout-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(201, 149, 71, 0.35);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin: 3.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: var(--shadow-card);
}

.editorial-callout-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    margin-bottom: 0.35rem;
}

.editorial-callout-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.editorial-callout-desc {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--text-editorial-body);
}

.editorial-founder-card {
    background: var(--bg-dark-card);
    border-top: 1px solid var(--gold-primary);
    border-bottom: 1px solid var(--bg-dark-border);
    padding: 2.5rem 2rem;
    margin-top: 4rem;
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.editorial-founder-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
    flex-shrink: 0;
}

.editorial-founder-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.editorial-founder-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
    margin-bottom: 0.65rem;
}

.editorial-founder-bio {
    font-size: 0.9rem;
    color: var(--text-editorial-body);
    line-height: 1.6;
}

/* ==========================================================================
   8. RECIPE READER & COOK MODE VIEW
   ========================================================================== */
.recipe-reader-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    padding: 2rem 0;
}

.recipe-header-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--bg-dark-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 2rem;
}

.recipe-hero-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.recipe-info-box {
    padding: 2rem;
}

.recipe-quick-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    background: var(--bg-dark-elevated);
    border: 1px solid var(--bg-dark-border);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: center;
}

.metric-item-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold-light);
}

.metric-item-lbl {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-editorial-muted);
}

.cook-mode-banner {
    background: var(--bg-dark-elevated);
    border: 1px solid rgba(201, 149, 71, 0.35);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.cook-mode-status {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.cook-timer-display {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
    background: #0E0B09;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201, 149, 71, 0.3);
    letter-spacing: 1px;
}

.serving-scaler-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.serving-scaler-pills {
    display: flex;
    gap: 0.4rem;
}

.scaler-btn {
    background: var(--bg-dark-elevated);
    border: 1px solid var(--bg-dark-border);
    color: var(--text-editorial-body);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.scaler-btn.active, .scaler-btn:hover {
    background: var(--gold-primary);
    color: #110E0C;
}

.ingredients-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.ingredient-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-dark-elevated);
    border: 1px solid var(--bg-dark-border);
    padding: 0.75rem 1.1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    user-select: none;
    transition: all var(--transition-fast);
}

.ingredient-item.checked {
    opacity: 0.45;
    text-decoration: line-through;
}

.ingredient-item input[type="checkbox"] {
    accent-color: var(--gold-primary);
    width: 16px;
    height: 16px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--bg-dark-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    position: relative;
    transition: all var(--transition-smooth);
}

.step-card.active-step {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(201, 149, 71, 0.15);
}

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

.step-num-badge {
    background: var(--gold-subtle);
    border: 1px solid rgba(201, 149, 71, 0.4);
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
}

.step-timer-trigger {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 149, 71, 0.25);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.step-timer-trigger:hover {
    background: var(--gold-primary);
    color: #110E0C;
}

/* ==========================================================================
   9. MODALS, DRAWER & FAB
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 7, 5, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--bg-dark-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transform: scale(0.95);
    transition: all var(--transition-smooth);
}

.modal-backdrop.active .modal-card {
    transform: scale(1);
}

.modal-header {
    background: var(--bg-dark-elevated);
    border-bottom: 1px solid var(--bg-dark-border);
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #FFFFFF;
}

.modal-close-btn {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #FFFFFF;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 1.75rem;
}

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

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-editorial-muted);
    margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: var(--bg-dark-elevated);
    border: 1px solid var(--bg-dark-border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.1rem;
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold-primary);
}

.floating-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--whatsapp-green);
    color: #FFFFFF;
    padding: 0.8rem 1.3rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.floating-fab:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
}

/* ==========================================================================
   10. SITE FOOTER
   ========================================================================== */
.site-footer {
    background: #0B0806;
    border-top: 1px solid var(--bg-dark-border);
    padding: 4.5rem 0 2rem;
    margin-top: 4.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.footer-brand-desc {
    color: var(--text-editorial-body);
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 1rem 0;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: var(--text-editorial-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
    color: var(--text-editorial-muted);
}

/* ==========================================================================
   11. COMPREHENSIVE RESPONSIVE BREAKPOINTS (Mobile & Tablet Ergonomics)
   ========================================================================== */
@media (max-width: 992px) {
    /* Switch navbar to mobile hamburger at 992px (Tablets & Mobile) */
    .nav-links, .nav-actions .btn {
        display: none !important;
    }
    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
        font-size: 1.5rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .location-banner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .editorial-recipe-callout-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .recipe-reader-layout {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Base Container & Viewport Lock */
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Navbar - Aligned with Container Margins */
    .navbar {
        top: 0.65rem;
        width: calc(100% - 2rem);
        padding: 0.45rem 0.85rem;
        box-sizing: border-box;
    }
    .nav-actions {
        gap: 0;
    }
    .brand-title {
        font-size: 1.1rem;
    }
    .brand-subtitle {
        font-size: 0.55rem;
        letter-spacing: 1.2px;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 5.5rem 0 2.2rem;
        min-height: auto;
        overflow: hidden;
        width: 100%;
    }
    .hero-grid {
        gap: 1.75rem;
        width: 100%;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    .hero-pill-badge {
        font-size: 0.72rem;
        padding: 0.3rem 0.75rem;
        margin-bottom: 0.75rem;
    }
    .hero-title {
        font-size: clamp(1.9rem, 7.5vw, 2.5rem);
        line-height: 1.15;
        margin-bottom: 0.75rem;
        width: 100%;
    }
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
        width: 100%;
        max-width: 100%;
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.65rem;
        margin-bottom: 1.5rem;
    }
    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-quick-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
        padding-top: 1rem;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    .stat-value {
        font-size: 1.1rem;
    }
    .stat-label {
        font-size: 0.62rem;
        letter-spacing: 0.3px;
    }
    .hero-visual {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        position: relative;
    }
    .hero-image-card {
        width: 100%;
        max-width: 100%;
    }
    .hero-image-card img {
        height: 250px;
        width: 100%;
    }
    .hero-badge-1 {
        left: 0.5rem;
        top: 0.5rem;
    }
    .hero-badge-2 {
        right: 0.5rem;
        bottom: 1.5rem;
    }
    .hero-badge-3 {
        left: 0.5rem;
        bottom: 0.5rem;
    }
    .badge-sticker {
        padding: 0.3rem 0.65rem;
        font-size: 0.72rem;
    }

    /* Swipeable Horizontal Filter Pills for Touch Devices */
    .craving-pills, .category-tabs-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.5rem 0.25rem;
        gap: 0.5rem;
        justify-content: flex-start;
        max-width: 100%;
    }
    .craving-pills::-webkit-scrollbar, .category-tabs-row::-webkit-scrollbar {
        display: none;
    }
    .craving-pill-btn, .category-tab-btn {
        flex-shrink: 0;
        padding: 0.5rem 1rem;
        font-size: 0.82rem;
        white-space: nowrap;
    }
    .craving-result-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }
    .craving-result-card a {
        width: 100%;
    }

    /* Sections & Grids */
    .section {
        padding: 3rem 0;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .section-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .dish-image-wrap {
        height: 190px;
    }
    .dish-body {
        padding: 1.1rem;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .pillar-card {
        padding: 1.35rem;
    }

    /* Location Banner */
    .location-banner {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Editorial Journal & Article Layout */
    .editorial-hero-header {
        padding: 5.5rem 0 2.5rem;
    }
    .editorial-article-container {
        padding: 5.5rem 1rem 3.5rem;
    }
    .editorial-headline {
        font-size: clamp(1.85rem, 7vw, 2.3rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    .editorial-deck {
        font-size: 1.05rem;
        line-height: 1.6;
        padding-left: 0.85rem;
        margin-bottom: 1.5rem;
    }
    .editorial-byline-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
        padding: 1rem 0;
        margin-bottom: 1.75rem;
    }
    .editorial-lead-media {
        margin-bottom: 2rem;
    }
    .editorial-lead-image {
        max-height: 260px;
    }
    .editorial-prose {
        font-size: 1.05rem;
        line-height: 1.75;
    }
    .editorial-dropcap::first-letter {
        font-size: 3.6rem;
        line-height: 0.85;
        padding-right: 8px;
    }
    .editorial-recipe-callout-card {
        padding: 1.25rem;
        margin: 2.2rem 0;
        gap: 1rem;
    }
    .editorial-founder-card {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem 1.25rem;
        margin-top: 2.5rem;
    }
    .editorial-founder-avatar {
        width: 64px;
        height: 64px;
        margin: 0 auto;
    }

    /* Recipe Reader & Cook Mode Mobile */
    .recipe-header-card .recipe-hero-image {
        height: 220px;
    }
    .recipe-info-box {
        padding: 1.25rem;
    }
    .recipe-quick-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }
    .cook-mode-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }
    .cook-mode-banner > div:last-child {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .cook-timer-display {
        font-size: 1.3rem;
    }
    .serving-scaler-wrap {
        width: 100%;
        justify-content: space-between;
        margin-top: 0.5rem;
    }
    .scaler-btn {
        min-width: 44px;
        min-height: 36px;
        font-size: 0.85rem;
    }

    /* Inputs (iOS Safari Auto-Zoom Fix >= 16px) */
    .form-input, .form-select, .form-textarea {
        font-size: 16px;
    }

    /* Footer & Floating FAB */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    .floating-fab {
        bottom: 1.2rem;
        right: 1.2rem;
        padding: 0.75rem 1rem;
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   12. ULTRA-COMPACT MOBILE BREAKPOINTS (< 480px & < 360px)
   ========================================================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 0.85rem;
    }
    .navbar {
        top: 0.5rem;
        width: calc(100% - 1.25rem);
        padding: 0.4rem 0.75rem;
    }
    .brand-title {
        font-size: 1rem;
    }
    .brand-subtitle {
        font-size: 0.5rem;
        letter-spacing: 0.8px;
    }
    .hero-title {
        font-size: clamp(1.75rem, 7.5vw, 2.2rem);
    }
    .hero-image-card img {
        height: 220px;
    }
    .badge-sticker {
        padding: 0.26rem 0.55rem;
        font-size: 0.68rem;
    }
    .stat-value {
        font-size: 1rem;
    }
    .stat-label {
        font-size: 0.56rem;
    }
    .dish-image-wrap {
        height: 175px;
    }
    .dish-body {
        padding: 0.95rem;
    }
    .dish-name {
        font-size: 1.05rem;
    }
    .pillar-card {
        padding: 1.1rem;
    }
    .location-banner {
        padding: 1.15rem;
    }
}

@media (max-width: 360px) {
    .hero-quick-stats {
        gap: 0.2rem;
    }
    .stat-value {
        font-size: 0.9rem;
    }
    .stat-label {
        font-size: 0.5rem;
        letter-spacing: 0px;
    }
    .craving-pill-btn, .category-tab-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
    .floating-fab .fab-text {
        display: none;
    }
    .floating-fab {
        padding: 0.75rem;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        justify-content: center;
    }
}

