/**
 * Randiwa Restaurant - Main Stylesheet
 * Vanilla CSS rebuild
 */

/* ========================================
   CSS Variables / Theme
======================================== */
:root {
    /* PRIMARY BURGUNDY - from restaurant wainscoting */
    --color-primary: #7A2E34;           /* Deep burgundy/maroon */
    --color-primary-light: #8D3A41;     /* Hover states */
    --color-primary-dark: #5E2329;      /* Pressed states */

    /* ACCENT */
    --color-gold: #C9A88E;              /* Gold for stars, highlights, secondary accents */

    /* BACKGROUNDS - simplified palette */
    --color-white: #ffffff;             /* Cards, content backgrounds */
    --color-off-white: #FAFAFA;         /* Subtle alternating sections */

    /* TEXT */
    --color-text: #2D2D2D;              /* Charcoal - body text */
    --color-text-secondary: #4A4A4A;    /* Slate */
    --color-text-muted: #7A7A7A;        /* Stone */

    /* Legacy mappings for compatibility */
    --color-dark: #2D2D2D;
    --color-darker: #1a1a1a;
    --color-light: #FAFAFA;
    --color-text-light: #4A4A4A;

    /* Overlays */
    --overlay-dark: rgba(45, 45, 45, 0.85);
    --overlay-light: rgba(255, 255, 255, 0.9);

    --font-heading: 'Cinzel', serif;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lora', serif;

    --header-height: 80px;
    --top-bar-height: 40px;

    /* Modern border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;

    /* Modern transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows (softer for light theme) */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08), 0 6px 10px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.12);
    --shadow-burgundy: 0 4px 15px rgba(122, 46, 52, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow), var(--shadow-burgundy);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), 0 8px 25px rgba(122, 46, 52, 0.35);
}

/* Burgundy outline button variant */
.btn-outline-burgundy {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline-burgundy:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 22px;
    font-size: 11px;
    letter-spacing: 1px;
}

/* Button focus states for accessibility */
.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(122, 46, 52, 0.3);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

/* Link focus states */
a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Input focus states */
input:focus,
textarea:focus,
button:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Smooth reveal animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header,
.category-card,
.dish-card,
.testimonial-card,
.menu-item,
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   Top Bar
======================================== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 0;
    font-size: 14px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar i {
    color: var(--color-gold);
    margin-right: 8px;
}

/* ========================================
   Header
======================================== */
.main-header {
    position: fixed;
    top: var(--top-bar-height);
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: none;
}

.main-header.scrolled {
    top: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    box-shadow: var(--shadow-md);
}

/* Hide top bar when scrolled */
.top-bar.hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    display: block;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    color: var(--color-gold);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: -10px;
    background-color: var(--color-white);
    min-width: 200px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(122, 46, 52, 0.1);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 16px;
    color: var(--color-text);
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.dropdown li a:hover {
    background: linear-gradient(135deg, rgba(122, 46, 52, 0.1) 0%, rgba(122, 46, 52, 0.05) 100%);
    color: var(--color-primary);
    transform: translateX(4px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-white);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hamburger to X animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    margin-top: calc(var(--header-height) + var(--top-bar-height));
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    height: 100%;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

/* Glassmorphism Welcome Card */
.hero-welcome-card {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 60px 80px;
    text-align: center;
    max-width: 700px;
    margin: 0 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-welcome-card h1 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-welcome-card .welcome-subtitle {
    color: var(--color-primary);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
}

.hero-welcome-card .welcome-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hero-welcome-card .welcome-address {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 30px;
}

.hero-welcome-card .welcome-address i {
    color: var(--color-primary);
    margin-right: 8px;
}

.hero-welcome-card .btn {
    padding: 15px 40px;
    font-size: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Light Hero Section (New Design) */
.hero-light {
    background: url('../images/randiwa_yellow_wall.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-light .hero-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-gold);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 24px;
}

.text-burgundy {
    color: var(--color-primary);
}

.hero-tagline {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    max-width: 500px;
}

.hero-address {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.hero-address i {
    color: var(--color-primary);
    margin-right: 8px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(122, 46, 52, 0.08) 0%, rgba(122, 46, 52, 0.03) 100%);
    border-radius: var(--radius-xl);
    border: 2px dashed rgba(122, 46, 52, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-placeholder-inner {
    text-align: center;
    color: var(--color-primary);
}

.hero-placeholder-inner i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    opacity: 0.5;
}

.hero-placeholder-inner span {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero-light .scroll-indicator {
    color: var(--color-text-muted);
}

/* Hero Light Responsive */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 3.5rem;
    }

    .hero-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-headline {
        font-size: 2.75rem;
    }

    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-eyebrow {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ========================================
   Section Headers
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* ========================================
   Menu Categories Slider
======================================== */
.menu-categories {
    background: var(--color-off-white);
    position: relative;
    overflow: hidden;
}

.menu-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(122, 46, 52, 0.2), transparent);
}

.category-card {
    text-align: center;
    padding: 0;
    background: transparent;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-image {
    width: 100%;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--color-dark);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.category-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-image::after {
    opacity: 1;
}

.category-card:hover .category-image {
    box-shadow: var(--shadow-lg), 0 0 30px rgba(122, 46, 52, 0.15);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1rem;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.category-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transition: var(--transition);
}

.category-card:hover h3::after {
    width: 100%;
}

a.category-card {
    display: block;
    text-decoration: none;
}

/* ========================================
   Parallax / About Section
======================================== */
.parallax-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 120px 0;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(17, 17, 17, 0.75) 100%);
}

.about-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    max-width: 700px;
    margin: 0 auto;
    padding: 48px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content h2 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 28px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ========================================
   Featured Dishes / Chef Recommends
======================================== */
.featured-dishes {
    background: linear-gradient(135deg, rgba(122, 46, 52, 0.08) 0%, rgba(122, 46, 52, 0.04) 100%);
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.dish-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.dish-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.dish-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.dish-card:hover .dish-image::after {
    opacity: 1;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.dish-info {
    padding: 28px 24px;
    text-align: center;
}

.dish-info h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.dish-info p {
    color: var(--color-text-light);
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   Testimonials
======================================== */
.testimonials-section {
    background-color: var(--color-white);
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    opacity: 0.8;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: var(--color-text);
    line-height: 1.8;
}

.testimonial-author {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-full);
}

.testimonial-author strong {
    color: var(--color-white);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* ========================================
   Google Reviews Section
======================================== */
.reviews-section {
    background-color: var(--color-off-white);
    overflow: hidden;
}

.reviews-summary {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 25px 45px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.google-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 5px;
}

.google-badge i {
    font-size: 1.3rem;
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-score {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars i {
    color: var(--color-gold);
    font-size: 1.1rem;
}

.rating-count {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Reviews Carousel */
.reviews-carousel-wrapper {
    position: relative;
    margin-bottom: 40px;
    padding: 10px 0;
}

.reviews-carousel {
    overflow: visible;
}

.reviews-carousel .swiper-wrapper {
    transition-timing-function: linear;
}

.reviews-carousel .swiper-slide {
    width: 380px;
    height: auto;
}

.review-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(122, 46, 52, 0.1) 0%, rgba(122, 46, 52, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.95rem;
    color: var(--color-text);
}

.review-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.review-source {
    font-size: 1.1rem;
    color: #4285F4;
    flex-shrink: 0;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-stars i {
    color: var(--color-gold);
    font-size: 0.85rem;
}

.review-text {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    flex-grow: 1;
}

.reviews-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.reviews-links .btn i {
    margin-right: 8px;
}

/* Reviews Responsive */
@media (max-width: 768px) {
    .reviews-carousel .swiper-slide {
        width: 300px;
    }

    .reviews-rating {
        padding: 20px 35px;
    }

    .rating-score {
        font-size: 2.5rem;
    }

    .review-card {
        padding: 20px;
        min-height: 200px;
    }

    .reviews-links {
        flex-direction: column;
        align-items: center;
    }

    .reviews-links .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .reviews-carousel .swiper-slide {
        width: 280px;
    }
}

/* ========================================
   Locations Preview (Homepage)
======================================== */
.locations-preview {
    background: var(--color-white);
}

.locations-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.location-preview-card {
    background: var(--color-off-white);
    border-radius: var(--radius-lg);
    padding: 35px;
    position: relative;
    transition: var(--transition);
}

.location-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.location-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 15px;
}

.location-badge-secondary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold) 100%);
}

.location-preview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.location-address,
.location-phone {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.location-address i,
.location-phone i {
    color: var(--color-primary);
    margin-right: 10px;
    width: 18px;
}

.location-note {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 15px;
}

.location-note i {
    color: var(--color-gold);
    margin-right: 8px;
}

.location-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.service-tag {
    font-size: 0.8rem;
    padding: 5px 12px;
    background: rgba(122, 46, 52, 0.08);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-weight: 500;
}

.location-coming {
    opacity: 0.85;
}

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

/* Locations Full Page */
.locations-full {
    background: var(--color-white);
}

.location-full-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.location-full-card:last-child {
    margin-bottom: 0;
}

.location-full-info {
    padding: 50px;
}

.location-full-info h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
    color: var(--color-text);
}

.location-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.location-detail > i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(122, 46, 52, 0.1) 0%, rgba(122, 46, 52, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.location-detail h4 {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-detail p {
    color: var(--color-text);
    font-size: 1rem;
}

.location-detail a {
    color: var(--color-text);
}

.location-detail a:hover {
    color: var(--color-primary);
}

.location-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(122, 46, 52, 0.06);
}

.location-hours li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.location-services-full {
    margin: 30px 0;
}

.location-services-full h4 {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag-full {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(122, 46, 52, 0.08) 0%, rgba(122, 46, 52, 0.03) 100%);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-weight: 500;
}

.service-tag-full i {
    font-size: 0.75rem;
}

.location-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.location-actions .btn i {
    margin-right: 8px;
}

.location-full-map {
    min-height: 400px;
}

.location-full-map .map-container {
    width: 100%;
    height: 100%;
}

.location-full-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.location-note-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(122, 46, 52, 0.08);
    border-radius: var(--radius-md);
    margin: 20px 0;
    border-left: 4px solid var(--color-gold);
}

.location-note-box i {
    color: var(--color-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.location-note-box p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.coming-soon-message {
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 20px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(122, 46, 52, 0.06) 0%, rgba(122, 46, 52, 0.02) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.3;
}

.map-placeholder span {
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.4;
}

/* Locations Responsive */
@media (max-width: 1024px) {
    .location-full-card {
        grid-template-columns: 1fr;
    }

    .location-full-info {
        padding: 40px;
    }

    .location-full-map {
        order: -1;
    }
}

@media (max-width: 768px) {
    .locations-preview-grid {
        grid-template-columns: 1fr;
    }

    .location-full-info {
        padding: 30px;
    }

    .location-detail {
        flex-direction: column;
        gap: 10px;
    }

    .location-detail > i {
        width: 40px;
        height: 40px;
    }

    .location-actions {
        flex-direction: column;
    }

    .location-actions .btn {
        width: 100%;
    }
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ========================================
   Page Header (Inner Pages)
======================================== */
.page-header {
    margin-top: calc(var(--header-height) + var(--top-bar-height));
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Light Page Header Variant */
.page-header-light {
    background: url('../images/randiwa_yellow_wall.png') center/cover no-repeat;
    height: auto;
    padding: 120px 0 80px;
}

.page-header-light .page-header-overlay {
    display: none;
}

.page-header-light h1 {
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 3.5rem;
}

.page-header-light p {
    color: var(--color-text-secondary);
}

.page-header-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

/* ========================================
   About Page Styles
======================================== */
.about-story {
    background: var(--color-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title-serif {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 24px;
}

.story-content p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.owner-quote {
    margin: 40px 0;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(122, 46, 52, 0.06) 0%, rgba(122, 46, 52, 0.02) 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.owner-quote p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 15px;
    line-height: 1.7;
}

.owner-quote cite {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-primary);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-placeholder {
    width: 100%;
    aspect-ratio: 5/6;
    background: linear-gradient(135deg, rgba(122, 46, 52, 0.08) 0%, rgba(122, 46, 52, 0.03) 100%);
    border-radius: var(--radius-xl);
    border: 2px dashed rgba(122, 46, 52, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.story-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.4;
}

.story-placeholder span {
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.4;
}

.story-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Section Alt Background */
.section-alt {
    background: var(--color-off-white);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(122, 46, 52, 0.1) 0%, rgba(122, 46, 52, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 2rem;
    color: var(--color-primary);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.value-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.team-photo-placeholder {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(122, 46, 52, 0.08) 0%, rgba(122, 46, 52, 0.03) 100%);
    border-radius: 50%;
    border: 2px dashed rgba(122, 46, 52, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo-placeholder i {
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.3;
}

.team-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.team-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .story-grid {
        gap: 50px;
    }

    .section-title-serif {
        font-size: 2.25rem;
    }

    .values-grid,
    .team-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-header-light {
        padding: 100px 0 60px;
    }

    .page-header-light h1 {
        font-size: 2.5rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-visual {
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }

    .section-title-serif {
        font-size: 2rem;
        text-align: center;
    }

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

    .owner-quote {
        padding: 25px 30px;
    }

    .owner-quote p {
        font-size: 1.15rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .page-header-light h1 {
        font-size: 2rem;
    }

    .section-title-serif {
        font-size: 1.75rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-photo-placeholder {
        width: 150px;
        height: 150px;
    }
}

/* ========================================
   Catering Page Styles
======================================== */
.catering-intro {
    background: var(--color-white);
}

.catering-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md), var(--shadow-burgundy);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.package-serves {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.package-description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.package-includes {
    text-align: left;
    margin-bottom: 30px;
}

.package-includes li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(122, 46, 52, 0.08);
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.package-includes li:last-child {
    border-bottom: none;
}

.package-includes li i {
    color: var(--color-primary);
    margin-right: 10px;
    font-size: 0.85rem;
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.process-step p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Menu Preview Grid */
.menu-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.menu-preview-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.menu-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.menu-preview-item i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.menu-preview-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.menu-preview-item p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.menu-preview-cta {
    text-align: center;
}

/* Contact CTA Grid */
.catering-contact {
    background: var(--color-white);
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-methods {
    margin: 30px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(122, 46, 52, 0.1) 0%, rgba(122, 46, 52, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.contact-method h4 {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-method a {
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 600;
}

.contact-method a:hover {
    color: var(--color-primary);
}

.response-note {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.response-note i {
    color: var(--color-primary);
    margin-right: 8px;
}

.contact-cta-form {
    background: var(--color-off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-cta-form h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    color: var(--color-text);
}

.catering-inquiry-form .form-group {
    margin-bottom: 20px;
}

.catering-inquiry-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.9rem;
}

.catering-inquiry-form input,
.catering-inquiry-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(122, 46, 52, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    background: var(--color-white);
}

.catering-inquiry-form input:focus,
.catering-inquiry-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(122, 46, 52, 0.08);
}

.catering-inquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Catering Page Responsive */
@media (max-width: 1024px) {
    .packages-grid {
        gap: 20px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-step::after {
        display: none;
    }

    .menu-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .package-featured {
        order: -1;
    }

    .contact-cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-cta-form {
        padding: 30px;
    }
}

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

    .menu-preview-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 30px 20px;
    }

    .contact-cta-form {
        padding: 25px 20px;
    }
}

/* ========================================
   Press Page Styles
======================================== */
.press-intro {
    background: var(--color-white);
}

.press-intro .intro-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.award-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.award-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.award-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.award-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Press Grid */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.press-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(122, 46, 52, 0.05);
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(122, 46, 52, 0.1);
}

.press-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.press-source {
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    font-weight: 600;
}

.press-logo {
    max-height: 30px;
    width: auto;
}

.press-date {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.press-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--color-text);
    line-height: 1.4;
}

.press-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.press-link:hover {
    gap: 12px;
}

.press-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.press-coming-soon {
    color: var(--color-text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

.press-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--color-off-white);
    border-radius: var(--radius-lg);
}

.press-empty i {
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.3;
    margin-bottom: 20px;
}

.press-empty p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* Social Proof Grid */
.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.social-proof-card {
    display: block;
    text-align: center;
    padding: 40px 30px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
}

.social-proof-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.social-proof-card i.fab {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.social-proof-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.social-proof-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.social-proof-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.social-proof-action i {
    font-size: 0.75rem;
}

/* Media Contact */
.media-contact {
    background: var(--color-white);
}

.media-contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.media-contact-content h2 {
    margin-bottom: 15px;
}

.media-contact-content p {
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.media-contact-info {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.media-contact-info .btn i {
    margin-right: 8px;
}

/* Press Page Responsive */
@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .press-grid {
        grid-template-columns: 1fr;
    }

    .social-proof-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .media-contact-info {
        flex-direction: column;
        align-items: center;
    }

    .media-contact-info .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ========================================
   Menu Page
======================================== */
/* (Old .menu-nav / .menu-nav-btn removed — replaced by .menu-toc sidebar) */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.menu-item {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.menu-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.menu-item-image {
    height: 200px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item {
    cursor: pointer;
}

.menu-item-info {
    padding: 24px 20px;
}

.menu-item-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.menu-item-info p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.menu-item-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 12px;
}

/* Modal price styling */
.modal-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px !important;
}

/* Menu item hover overlay */
.menu-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(122, 46, 52, 0.9) 0%, rgba(45, 45, 45, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.menu-item-overlay i {
    color: var(--color-white);
    font-size: 2rem;
    transform: scale(0.5) rotate(-90deg);
    transition: var(--transition);
}

.menu-item:hover .menu-item-overlay {
    opacity: 1;
}

.menu-item:hover .menu-item-overlay i {
    transform: scale(1) rotate(0deg);
}

.menu-item-image {
    position: relative;
}

/* ========================================
   Menu Item Modal
======================================== */
.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.menu-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.menu-modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: row;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-modal.active .menu-modal-content {
    transform: scale(1) translateY(0);
}

.menu-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--color-white);
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-dark);
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.menu-modal-close:hover {
    background: var(--color-dark);
    color: var(--color-white);
    transform: rotate(90deg);
}

.menu-modal-image {
    flex: 0 0 45%;
    max-height: 500px;
    overflow: hidden;
}

.menu-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-modal-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.menu-modal-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.menu-modal-info > p {
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.menu-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.menu-modal-tags .tag {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(122, 46, 52, 0.12) 0%, rgba(122, 46, 52, 0.06) 100%);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(122, 46, 52, 0.2);
}

/* Modal responsive */
@media (max-width: 768px) {
    .menu-modal-content {
        flex-direction: column;
        max-height: 85vh;
    }

    .menu-modal-image {
        flex: 0 0 200px;
        max-height: 200px;
    }

    .menu-modal-info {
        padding: 28px 24px;
    }

    .menu-modal-info h2 {
        font-size: 1.5rem;
    }

    .menu-modal-info > p {
        font-size: 0.95rem;
    }

    .menu-modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }
}

/* Lock body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 600;
}

.delivery-info {
    margin-top: 60px;
    padding: 48px 40px;
    background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-white) 100%);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
}

/* ========================================
   Gallery Page
======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(122, 46, 52, 0.85) 0%, rgba(45, 45, 45, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--color-white);
    font-size: 2rem;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ========================================
   Contact Page
======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    width: 30px;
}

.info-item h4 {
    margin-bottom: 5px;
}

.info-item a:hover {
    color: var(--color-primary);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(122, 46, 52, 0.2);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
    background-color: var(--color-white);
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: rgba(122, 46, 52, 0.35);
    background-color: var(--color-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(122, 46, 52, 0.08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.form-success {
    text-align: center;
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(122, 46, 52, 0.1) 0%, var(--color-white) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-primary);
}

.form-success i {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.form-error {
    background: linear-gradient(135deg, rgba(94, 35, 41, 0.15) 0%, rgba(94, 35, 41, 0.08) 100%);
    color: var(--color-primary-dark);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border: 1px solid var(--color-primary-dark);
}

.map-wrapper {
    margin-top: 48px;
}

.map-wrapper h2 {
    margin-bottom: 24px;
}

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

/* ========================================
   Footer
======================================== */
.main-footer {
    background-color: var(--color-darker);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-about p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.footer-contact ul li,
.footer-hours ul li {
    margin-bottom: 10px;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.footer-contact ul li i {
    color: var(--color-primary);
    margin-right: 10px;
    width: 20px;
}

.footer-hours ul li {
    display: flex;
    justify-content: space-between;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(122, 46, 52, 0.4);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: var(--transition);
    background: rgba(122, 46, 52, 0.05);
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(122, 46, 52, 0.25);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* ========================================
   Swiper Customization
======================================== */
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    width: 24px;
    border-radius: 5px;
}

/* Hero slider specific */
.hero-slider .swiper-pagination {
    bottom: 80px;
}

.hero-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
}

/* Hide swiper arrows on mobile */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --top-bar-height: 50px;
    }

    .top-bar {
        padding: 6px 0;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        font-size: 12px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--color-white);
        padding: 100px 30px 30px;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .nav-menu > li {
        width: 100%;
        text-align: center;
    }

    .nav-menu > li > a {
        padding: 18px 0;
        border-bottom: 1px solid rgba(122, 46, 52, 0.1);
        font-size: 16px;
        color: var(--color-text);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 10px 0;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .dropdown li a {
        padding: 12px 0;
        font-size: 14px;
        color: var(--color-text-secondary);
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-slider {
        height: calc(100vh - var(--header-height) - var(--top-bar-height));
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-welcome-card {
        padding: 40px 30px;
        margin: 0 15px;
    }

    .hero-welcome-card h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-welcome-card .welcome-subtitle {
        font-size: 1.1rem;
    }

    .hero-welcome-card .welcome-description {
        font-size: 1rem;
    }

    .hero-welcome-card .welcome-address {
        font-size: 0.9rem;
    }

    .hero-welcome-card .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .scroll-indicator {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dish-image {
        height: 200px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .parallax-section {
        padding: 80px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-hours ul li {
        justify-content: center;
        gap: 20px;
    }

    .social-icons {
        justify-content: center;
    }

    .page-header {
        height: 250px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 70px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    .container {
        padding: 0 15px;
    }

    .section {
        padding: 40px 0;
    }

    .hero-section {
        min-height: 500px;
    }

    .hero-slider {
        min-height: 500px;
    }

    .hero-welcome-card {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .hero-welcome-card h1 {
        font-size: 1.6rem;
    }

    .hero-welcome-card .welcome-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .hero-welcome-card .welcome-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .hero-welcome-card .welcome-address {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    .btn-small {
        padding: 8px 16px;
        font-size: 11px;
    }

    .menu-item-image {
        height: 180px;
    }

    .category-image {
        width: 120px;
        height: 120px;
    }

    .category-card {
        padding: 20px 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .dish-info {
        padding: 20px 15px;
    }

    .logo img {
        height: 40px;
    }

    .footer-logo {
        height: 50px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .info-item i {
        width: auto;
    }
}

/* ========================================
   Mobile Parallax Fix (iOS)
======================================== */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
    }
}

/* ========================================
   Error Pages (404, 500)
======================================== */
.error-page {
    margin-top: calc(var(--header-height) + var(--top-bar-height));
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.error-content {
    max-width: 600px;
}

.error-code {
    font-size: 8rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 20px;
}

.error-content h2 {
    margin-bottom: 15px;
}

.error-content p {
    color: var(--color-text-light);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.error-contact {
    margin-bottom: 30px;
}

.error-contact a {
    color: var(--color-primary);
    font-weight: 600;
}

.error-contact a:hover {
    text-decoration: underline;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}

.btn-outline-dark:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
}

@media (max-width: 480px) {
    .error-code {
        font-size: 5rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
    }
}

/* ========================================
   Footer Credit
======================================== */
.footer-bottom .credit {
    margin-top: 12px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-bottom .credit .beirux-link {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(122, 46, 52, 0.25);
}

.footer-bottom .credit .beirux-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(122, 46, 52, 0.35);
}

/* ========================================
   Parallax Section Subtitle
======================================== */
.about-content .subtitle {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
}

/* ========================================
   Order Online Page
======================================== */
.order-section {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light) 100%);
}

.order-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.order-intro p {
    font-size: 1.15rem;
    color: var(--color-text);
    line-height: 1.7;
}

.order-platforms {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 32px 36px;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: var(--transition);
}

.platform-doordash::before {
    background: linear-gradient(180deg, #FF3008 0%, #ff5a36 100%);
}

.platform-ubereats::before {
    background: linear-gradient(180deg, #06C167 0%, #1dd680 100%);
}

.platform-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.platform-doordash:hover {
    border-color: rgba(255, 48, 8, 0.2);
    box-shadow: var(--shadow-lg), 0 10px 40px rgba(255, 48, 8, 0.12);
}

.platform-ubereats:hover {
    border-color: rgba(6, 193, 103, 0.2);
    box-shadow: var(--shadow-lg), 0 10px 40px rgba(6, 193, 103, 0.12);
}

.platform-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.platform-doordash .platform-icon {
    background: linear-gradient(135deg, rgba(255, 48, 8, 0.1) 0%, rgba(255, 48, 8, 0.05) 100%);
    color: #FF3008;
}

.platform-ubereats .platform-icon {
    background: linear-gradient(135deg, rgba(6, 193, 103, 0.1) 0%, rgba(6, 193, 103, 0.05) 100%);
    color: #06C167;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1);
}

.platform-doordash:hover .platform-icon {
    background: linear-gradient(135deg, #FF3008 0%, #ff5a36 100%);
    color: var(--color-white);
}

.platform-ubereats:hover .platform-icon {
    background: linear-gradient(135deg, #06C167 0%, #1dd680 100%);
    color: var(--color-white);
}

.platform-content {
    flex: 1;
}

.platform-content h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--color-dark);
    font-family: var(--font-heading);
}

.platform-tagline {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
}

.platform-action {
    flex-shrink: 0;
}

.btn-doordash,
.btn-ubereats {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    color: var(--color-white);
    transition: var(--transition);
}

.btn-doordash {
    background: linear-gradient(135deg, #FF3008 0%, #ff5a36 100%);
    box-shadow: 0 4px 15px rgba(255, 48, 8, 0.3);
}

.btn-ubereats {
    background: linear-gradient(135deg, #06C167 0%, #1dd680 100%);
    box-shadow: 0 4px 15px rgba(6, 193, 103, 0.3);
}

.btn-doordash i,
.btn-ubereats i {
    transition: var(--transition);
}

.platform-card:hover .btn-doordash,
.platform-card:hover .btn-ubereats {
    transform: translateX(4px);
}

.platform-card:hover .btn-doordash i,
.platform-card:hover .btn-ubereats i {
    transform: translateX(4px);
}

.order-note {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(122, 46, 52, 0.06);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(122, 46, 52, 0.12);
}

.order-note p {
    color: var(--color-text);
    font-size: 1rem;
    margin: 0;
}

.order-note i {
    color: var(--color-primary);
    margin-right: 10px;
}

.order-note a {
    color: var(--color-primary);
    font-weight: 600;
}

.order-note a:hover {
    text-decoration: underline;
}

/* Order Page Responsive */
@media (max-width: 768px) {
    .platform-card {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
        gap: 20px;
    }

    .platform-card::before {
        width: 100%;
        height: 5px;
        left: 0;
        top: 0;
    }

    .platform-card:hover {
        transform: translateY(-6px);
    }

    .platform-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .platform-content h3 {
        font-size: 1.5rem;
    }

    .platform-tagline {
        font-size: 1rem;
    }

    .order-intro {
        margin-bottom: 35px;
    }

    .order-intro p {
        font-size: 1rem;
    }

    .order-note {
        margin-top: 35px;
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .platform-card {
        padding: 28px 20px;
    }

    .platform-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .platform-content h3 {
        font-size: 1.3rem;
    }

    .btn-doordash,
    .btn-ubereats {
        padding: 12px 24px;
        font-size: 12px;
    }
}

/* ========================================
   UI ENHANCEMENTS
======================================== */

/* ----------------------------------------
   1. Scroll Reveal Animations
---------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Staggered children reveal */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.6s; }

.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------
   2. Section Wave Dividers
---------------------------------------- */
.section-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
    background: transparent;
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-divider-top {
    margin-bottom: -1px;
}

.section-divider-bottom {
    margin-top: -1px;
}

/* Wave fills */
.divider-white svg path { fill: var(--color-white); }
.divider-off-white svg path { fill: var(--color-off-white); }
.divider-burgundy svg path { fill: var(--color-primary); }

/* ----------------------------------------
   3. Reviews Carousel Edge Fade
---------------------------------------- */
.reviews-carousel-wrapper::before,
.reviews-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.reviews-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-off-white) 0%, transparent 100%);
}

.reviews-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-off-white) 0%, transparent 100%);
}

@media (max-width: 768px) {
    .reviews-carousel-wrapper::before,
    .reviews-carousel-wrapper::after {
        width: 40px;
    }
}

/* ----------------------------------------
   4. Navigation Active Indicator
---------------------------------------- */
.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-menu > li > a:hover::after,
.nav-menu > li.active > a::after {
    width: 100%;
}

/* Active dot indicator */
.nav-menu > li.active > a::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: navDotPulse 2s ease-in-out infinite;
}

@keyframes navDotPulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scale(1.2); }
}

/* ----------------------------------------
   5. Button Shine Effect
---------------------------------------- */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

/* Subtle pulse on CTA buttons */
.hero-cta .btn-primary,
.cta-buttons .btn-primary {
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% { box-shadow: var(--shadow), var(--shadow-burgundy); }
    50% { box-shadow: var(--shadow-md), 0 8px 30px rgba(122, 46, 52, 0.4); }
}

.hero-cta .btn-primary:hover,
.cta-buttons .btn-primary:hover {
    animation: none;
}

/* ----------------------------------------
   6. Card Hover Glow Effects
---------------------------------------- */
.dish-card,
.menu-item,
.value-card,
.package-card,
.location-preview-card {
    position: relative;
}

.dish-card::after,
.menu-item::after,
.value-card::after,
.package-card::after,
.location-preview-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    box-shadow: 0 0 30px rgba(122, 46, 52, 0.2);
    z-index: -1;
}

.dish-card:hover::after,
.menu-item:hover::after,
.value-card:hover::after,
.package-card:hover::after,
.location-preview-card:hover::after {
    opacity: 1;
}

/* Review card subtle border glow */
.review-card {
    position: relative;
    z-index: 1;
}

.review-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.review-card:hover::after {
    opacity: 0.2;
}

/* ----------------------------------------
   7. Footer Decorative Top Border
---------------------------------------- */
.main-footer {
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-primary) 0%,
        var(--color-gold) 25%,
        var(--color-primary) 50%,
        var(--color-gold) 75%,
        var(--color-primary) 100%
    );
    background-size: 200% 100%;
    animation: footerGradient 8s linear infinite;
}

@keyframes footerGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* ----------------------------------------
   8. Section Title Flourishes
---------------------------------------- */
.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

.section-header h2::before {
    right: calc(100% + 20px);
    background: linear-gradient(90deg, transparent, var(--color-gold));
}

.section-header h2::after {
    left: calc(100% + 20px);
}

/* Center dot ornament */
.section-header p {
    position: relative;
    display: inline-block;
}

.section-header p::before {
    content: '◆';
    display: block;
    text-align: center;
    color: var(--color-gold);
    font-size: 8px;
    margin-bottom: 10px;
    letter-spacing: 8px;
    padding-left: 8px;
}

@media (max-width: 768px) {
    .section-header h2::before,
    .section-header h2::after {
        width: 30px;
    }

    .section-header h2::before {
        right: calc(100% + 12px);
    }

    .section-header h2::after {
        left: calc(100% + 12px);
    }
}

@media (max-width: 480px) {
    .section-header h2::before,
    .section-header h2::after {
        display: none;
    }
}

/* ----------------------------------------
   9. Mobile Sticky Order Button
---------------------------------------- */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    animation: slideUpFade 0.5s ease;
}

.mobile-sticky-cta .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    box-shadow: var(--shadow-lg), var(--shadow-burgundy);
    font-size: 14px;
}

.mobile-sticky-cta .btn i {
    font-size: 1.1rem;
}

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

/* Only show on mobile when scrolled */
@media (max-width: 768px) {
    .mobile-sticky-cta.visible {
        display: block;
    }
}

/* Hide when at bottom of page near footer */
.mobile-sticky-cta.hidden {
    display: none !important;
}

/* ----------------------------------------
   10. Top Bar Icon Pulse
---------------------------------------- */
.top-bar .fa-phone {
    animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.top-bar .fa-map-marker-alt {
    animation: locationBounce 3s ease-in-out infinite;
}

@keyframes locationBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

/* ----------------------------------------
   11. Image Loading Blur Effect
---------------------------------------- */
.img-loading {
    filter: blur(10px);
    transition: filter 0.5s ease;
}

.img-loading.loaded {
    filter: blur(0);
}

/* ----------------------------------------
   12. Enhanced Focus States
---------------------------------------- */
.btn:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

.nav-menu a:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
    border-radius: 4px;
}

/* ----------------------------------------
   13. Smooth Page Transitions
---------------------------------------- */
.main-content {
    animation: pageEnter 0.6s ease;
}

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

/* ----------------------------------------
   14. Category Card Enhanced Hover
---------------------------------------- */
.category-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card:hover .category-image img {
    transform: scale(1.08) rotate(2deg);
}

/* ----------------------------------------
   15. Hero Visual Decoration
---------------------------------------- */
.hero-visual::before {
    display: none;
}

.hero-visual::after {
    display: none;
}

@media (max-width: 768px) {
    .hero-visual::before,
    .hero-visual::after {
        display: none;
    }
}

/* ----------------------------------------
   16. Quote Block Enhancement
---------------------------------------- */
.owner-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--color-primary);
    opacity: 0.15;
    line-height: 1;
}

/* (Old .menu-nav-btn enhancement removed) */

/* ----------------------------------------
   18. Location Card Sweep Effect
---------------------------------------- */
.location-preview-card {
    overflow: hidden;
}

.location-preview-card .sweep-effect {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.location-preview-card:hover .sweep-effect {
    left: 150%;
}

/* ----------------------------------------
   19. Social Icons Hover Effect
---------------------------------------- */
.social-icons a {
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-primary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-icons a:hover i {
    color: var(--color-white);
}

/* ----------------------------------------
   20. CTA Section Background Glow
---------------------------------------- */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 142, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* ========================================
   ABOUT ATMOSPHERE SECTION
======================================== */
.about-atmosphere {
    position: relative;
    overflow: hidden;
}

.atmosphere-image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.atmosphere-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.atmosphere-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 45, 45, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.atmosphere-text {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
    text-align: center;
    letter-spacing: 2px;
    font-style: italic;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .atmosphere-image-wrapper {
        height: 250px;
    }

    .atmosphere-text {
        font-size: 1.4rem;
    }
}

/* ========================================
   CATERING SHOWCASE SECTION
======================================== */
.catering-showcase {
    background: var(--color-white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.showcase-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.showcase-item-large {
    grid-row: span 2;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--color-white);
}

.showcase-caption h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--color-white);
}

.showcase-caption p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    opacity: 0.85;
    margin: 0;
}

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

    .showcase-item-large {
        grid-row: span 1;
    }

    .showcase-item img {
        height: 250px;
    }
}

/* ========================================
   ROTI SPOTLIGHT SECTION
======================================== */
.roti-spotlight {
    background: var(--color-offwhite);
    padding: 100px 0;
    overflow: hidden;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.spotlight-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.spotlight-visual::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    border: 3px solid var(--color-primary);
    border-radius: var(--radius-md);
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

.spotlight-visual::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    border: 3px solid var(--color-accent);
    border-radius: var(--radius-md);
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

.spotlight-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotlight-visual:hover .spotlight-image {
    transform: scale(1.05);
}

.spotlight-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
}

.spotlight-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transform: translateY(-50%);
}

.spotlight-content h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.spotlight-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.spotlight-content .btn {
    margin-top: 15px;
}

@media (max-width: 768px) {
    .roti-spotlight {
        padding: 60px 0;
    }

    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .spotlight-image {
        height: 300px;
    }

    .spotlight-content h2 {
        font-size: 1.8rem;
    }

    .spotlight-visual::before,
    .spotlight-visual::after {
        width: 50px;
        height: 50px;
        top: -10px;
        left: -10px;
    }

    .spotlight-visual::after {
        bottom: -10px;
        right: -10px;
    }
}

/* ========================================
   PREMIUM ANIMATION SYSTEM
   Breathing, floating, staggering effects
======================================== */

/* ----------------------------------------
   A. Core Keyframes
---------------------------------------- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes floatGentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes breatheSubtle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.92; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes gentleRotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1.5deg); }
    75% { transform: rotate(-1.5deg); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes blurIn {
    from { opacity: 0; filter: blur(8px); transform: translateY(15px); }
    to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes orbitFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -8px) rotate(2deg); }
    50% { transform: translate(-3px, -12px) rotate(-1deg); }
    75% { transform: translate(-6px, -5px) rotate(1deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(122, 46, 52, 0.1); }
    50% { box-shadow: 0 0 35px rgba(122, 46, 52, 0.2); }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}

@keyframes lineGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* ----------------------------------------
   B. Directional Reveal Classes
---------------------------------------- */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-blur {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(15px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

.reveal-blur.revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* ----------------------------------------
   C. Enhanced Stagger System (up to 12 children)
---------------------------------------- */
.reveal-stagger.revealed > *:nth-child(7) { transition-delay: 0.7s; }
.reveal-stagger.revealed > *:nth-child(8) { transition-delay: 0.8s; }
.reveal-stagger.revealed > *:nth-child(9) { transition-delay: 0.9s; }
.reveal-stagger.revealed > *:nth-child(10) { transition-delay: 1.0s; }
.reveal-stagger.revealed > *:nth-child(11) { transition-delay: 1.1s; }
.reveal-stagger.revealed > *:nth-child(12) { transition-delay: 1.2s; }

/* Faster stagger variant */
.reveal-stagger-fast > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger-fast.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger-fast.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger-fast.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger-fast.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger-fast.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger-fast.revealed > *:nth-child(6) { transition-delay: 0.3s; }

.reveal-stagger-fast.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* Scale stagger variant */
.reveal-stagger-scale > * {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-stagger-scale.revealed > *:nth-child(1) { transition-delay: 0.08s; }
.reveal-stagger-scale.revealed > *:nth-child(2) { transition-delay: 0.16s; }
.reveal-stagger-scale.revealed > *:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger-scale.revealed > *:nth-child(4) { transition-delay: 0.32s; }

.reveal-stagger-scale.revealed > * {
    opacity: 1;
    transform: scale(1);
}

/* ----------------------------------------
   D. Breathing & Floating Elements
---------------------------------------- */

/* Hero image floats gently */
.hero-image {
    animation: float 6s ease-in-out infinite;
}

/* Hero eyebrow line grows in */
.hero-eyebrow {
    position: relative;
    overflow: hidden;
}

/* Value icons breathe */
.value-icon {
    animation: breathe 4s ease-in-out infinite;
}

.value-card:nth-child(2) .value-icon {
    animation-delay: 0.8s;
}

.value-card:nth-child(3) .value-icon {
    animation-delay: 1.6s;
}

/* Award icons float */
.award-icon {
    animation: floatGentle 5s ease-in-out infinite;
}

.award-card:nth-child(2) .award-icon {
    animation-delay: 1s;
}

.award-card:nth-child(3) .award-icon {
    animation-delay: 2s;
}

/* Step numbers breathe */
.step-number {
    animation: breathe 3.5s ease-in-out infinite;
}

.process-step:nth-child(2) .step-number {
    animation-delay: 0.4s;
}

.process-step:nth-child(3) .step-number {
    animation-delay: 0.8s;
}

.process-step:nth-child(4) .step-number {
    animation-delay: 1.2s;
}

/* Google badge gently rotates */
.google-badge {
    animation: gentleRotate 6s ease-in-out infinite;
}

/* Rating stars twinkle in sequence */
.rating-stars i:nth-child(1) { animation: starTwinkle 3s ease-in-out infinite 0s; }
.rating-stars i:nth-child(2) { animation: starTwinkle 3s ease-in-out infinite 0.3s; }
.rating-stars i:nth-child(3) { animation: starTwinkle 3s ease-in-out infinite 0.6s; }
.rating-stars i:nth-child(4) { animation: starTwinkle 3s ease-in-out infinite 0.9s; }
.rating-stars i:nth-child(5) { animation: starTwinkle 3s ease-in-out infinite 1.2s; }

/* Rating score container glows */
.reviews-rating {
    animation: glowPulse 4s ease-in-out infinite;
}

/* Story image floats gently */
.story-image {
    animation: floatGentle 7s ease-in-out infinite;
}

/* Spotlight image floats gently */
.spotlight-image {
    animation: floatGentle 6s ease-in-out infinite;
}

/* Spotlight decorative corners breathe (scale only — no opacity override) */
.spotlight-visual::before {
    animation: breathe 4s ease-in-out infinite;
}

.spotlight-visual::after {
    animation: breathe 5s ease-in-out infinite 1s;
}

/* Owner quote left border pulses */
.owner-quote {
    position: relative;
}

/* CTA section glow breathes */
.cta-section::after {
    animation: breathe 5s ease-in-out infinite;
}

/* Footer logo floats subtly */
.footer-logo {
    animation: floatGentle 6s ease-in-out infinite;
}

/* Platform cards icon floats */
.platform-icon {
    animation: floatGentle 4s ease-in-out infinite;
}

.platform-ubereats .platform-icon {
    animation-delay: 1s;
}

/* Contact info icons breathe */
.info-item i {
    animation: breathe 4s ease-in-out infinite;
}

.info-item:nth-child(2) i {
    animation-delay: 0.5s;
}

.info-item:nth-child(3) i {
    animation-delay: 1s;
}

.info-item:nth-child(4) i {
    animation-delay: 1.5s;
}

/* Location detail icons breathe */
.location-detail > i {
    animation: breathe 4.5s ease-in-out infinite;
}

/* Menu preview items float */
.menu-preview-item i {
    animation: floatGentle 5s ease-in-out infinite;
}

.menu-preview-item:nth-child(2) i {
    animation-delay: 0.5s;
}

.menu-preview-item:nth-child(3) i {
    animation-delay: 1s;
}

.menu-preview-item:nth-child(4) i {
    animation-delay: 1.5s;
}

/* Social proof icons float */
.social-proof-card i.fab {
    animation: float 5s ease-in-out infinite;
}

.social-proof-card:nth-child(2) i.fab {
    animation-delay: 0.7s;
}

.social-proof-card:nth-child(3) i.fab {
    animation-delay: 1.4s;
}

/* Gallery items have orbit float on hover */
.gallery-item:hover img {
    animation: orbitFloat 8s ease-in-out infinite;
    transform: scale(1.1);
}

/* Error code breathes */
.error-code {
    animation: breatheSubtle 3s ease-in-out infinite;
}

/* ----------------------------------------
   E. Enhanced Page Enter Sequence
---------------------------------------- */
.main-content {
    animation: pageEnter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Page header enhanced entrance */
.page-header .container,
.page-header-light .container {
    animation: blurIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* Hero text staggered entrance */
.hero-eyebrow {
    animation: blurIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-headline {
    animation: blurIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.hero-tagline {
    animation: blurIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}

.hero-address {
    animation: blurIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}

.hero-cta {
    animation: blurIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.1s both;
}

.hero-visual {
    animation: fadeInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

/* ----------------------------------------
   F. Enhanced Hover Interactions
---------------------------------------- */

/* Card tilt on hover (subtle 3D feel) */
.dish-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
}

.value-card:hover {
    transform: translateY(-8px) rotate(0.5deg);
}

/* Gallery item magnetic hover */
.gallery-item {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
}

/* Package card featured pulsing border */
.package-featured {
    animation: glowPulse 3s ease-in-out infinite;
}

/* Social proof card hover lift with rotate */
.social-proof-card:hover {
    transform: translateY(-10px) rotate(-1deg);
}

/* Press card hover */
.press-card:hover {
    transform: translateY(-6px) rotate(0.5deg);
}

/* Platform card icon rotation on hover */
.platform-card:hover .platform-icon i {
    animation: gentleRotate 1s ease-in-out;
}

/* Review card hover float */
.review-card:hover {
    transform: translateY(-5px) scale(1.01);
}

/* Form inputs focus animation */
.contact-form input:focus,
.contact-form textarea:focus,
.catering-inquiry-form input:focus,
.catering-inquiry-form textarea:focus {
    transform: scale(1.01);
}

/* ----------------------------------------
   G. Section Separator Animations
---------------------------------------- */
.section-divider svg path {
    transition: fill 0.5s ease;
}

/* ----------------------------------------
   H. Scroll-Linked Parallax Hints (CSS only)
---------------------------------------- */
.hero-light {
    position: relative;
    overflow: hidden;
}

/* Decorative floating dots for sections */
.featured-dishes,
.menu-categories,
.reviews-section,
.about-values,
.catering-packages,
.press-awards {
    position: relative;
    overflow: hidden;
}

.featured-dishes::after,
.reviews-section::after,
.about-values::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 46, 52, 0.04) 0%, transparent 70%);
    pointer-events: none;
    animation: orbitFloat 20s ease-in-out infinite;
}

.featured-dishes::after {
    top: -100px;
    right: -100px;
}

.reviews-section::after {
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.about-values::after {
    top: -80px;
    left: -80px;
    animation-delay: 10s;
}

/* ----------------------------------------
   I. Enhanced Mobile Animations
---------------------------------------- */
@media (max-width: 768px) {
    /* Reduce float amplitude on mobile */
    .hero-image {
        animation: floatGentle 6s ease-in-out infinite;
    }

    .story-image {
        animation: floatGentle 7s ease-in-out infinite;
    }

    /* Simplify hero entrance on mobile */
    .hero-eyebrow {
        animation: blurIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    }

    .hero-headline {
        animation: blurIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.35s both;
    }

    .hero-tagline {
        animation: blurIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
    }

    .hero-address {
        animation: blurIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    }

    .hero-cta {
        animation: blurIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
    }

    .hero-visual {
        animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
    }

    /* Disable tilt rotation on mobile (touch-unfriendly) */
    .dish-card:hover,
    .value-card:hover,
    .social-proof-card:hover,
    .press-card:hover {
        transform: translateY(-5px);
    }

    /* Keep floating background orbs smaller */
    .featured-dishes::after,
    .reviews-section::after,
    .about-values::after {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    /* Minimal animations on smallest screens */
    .hero-image,
    .story-image,
    .footer-logo {
        animation-duration: 8s;
    }

    /* Reduce reveal distance */
    .reveal {
        transform: translateY(20px);
    }

    .reveal-left {
        transform: translateX(-20px);
    }

    .reveal-right {
        transform: translateX(20px);
    }

    /* Disable decorative floating orbs */
    .featured-dishes::after,
    .reviews-section::after,
    .about-values::after {
        display: none;
    }
}

/* ----------------------------------------
   J. Reduced Motion Preference
---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.2s !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-blur {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .reveal-stagger > *,
    .reveal-stagger-fast > *,
    .reveal-stagger-scale > * {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ----------------------------------------
   K. Smooth Scroll Offset for Fixed Header
---------------------------------------- */
html {
    scroll-padding-top: calc(var(--header-height) + var(--top-bar-height) + 20px);
}

/* ----------------------------------------
   L. Section Background Gradient Shifts
---------------------------------------- */
.cta-section {
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ----------------------------------------
   M. Enhanced Menu Modal Entrance
---------------------------------------- */
.menu-modal.active .menu-modal-content {
    transform: scale(1) translateY(0);
    animation: modalBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalBounce {
    0% { transform: scale(0.85) translateY(30px); opacity: 0; }
    60% { transform: scale(1.02) translateY(-5px); opacity: 1; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.menu-modal.active .menu-modal-backdrop {
    animation: backdropIn 0.3s ease;
}

@keyframes backdropIn {
    from { opacity: 0; backdrop-filter: blur(0); }
    to { opacity: 1; backdrop-filter: blur(10px); }
}

/* ----------------------------------------
   N. Mobile Menu Enhanced Animation
---------------------------------------- */
.main-nav {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .main-nav.active .nav-menu > li {
        animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
    }

    .main-nav.active .nav-menu > li:nth-child(1) { animation-delay: 0.05s; }
    .main-nav.active .nav-menu > li:nth-child(2) { animation-delay: 0.1s; }
    .main-nav.active .nav-menu > li:nth-child(3) { animation-delay: 0.15s; }
    .main-nav.active .nav-menu > li:nth-child(4) { animation-delay: 0.2s; }
    .main-nav.active .nav-menu > li:nth-child(5) { animation-delay: 0.25s; }
    .main-nav.active .nav-menu > li:nth-child(6) { animation-delay: 0.3s; }
    .main-nav.active .nav-menu > li:nth-child(7) { animation-delay: 0.35s; }
}

/* ----------------------------------------
   O. Enhanced Scroll Indicator
---------------------------------------- */
.scroll-indicator {
    animation: bounce 2s infinite, breatheSubtle 3s ease-in-out infinite;
}

.scroll-indicator span {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
    opacity: 0.7;
}

/* ----------------------------------------
   P. Team Card Hover Enhancement
---------------------------------------- */
.team-card {
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-photo-placeholder {
    transition: var(--transition);
}

.team-card:hover .team-photo-placeholder {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.team-photo-placeholder i {
    transition: var(--transition);
}

.team-card:hover .team-photo-placeholder i {
    color: var(--color-primary);
    opacity: 0.6;
    transform: scale(1.1);
}

/* ----------------------------------------
   Q. Contact Method Hover
---------------------------------------- */
.contact-method {
    transition: var(--transition);
    padding: 15px;
    border-radius: var(--radius-md);
}

.contact-method:hover {
    background: rgba(122, 46, 52, 0.04);
    transform: translateX(5px);
}

.contact-method:hover i {
    animation: breathe 1s ease-in-out;
}

/* ----------------------------------------
   R. Location Card Pulse for Coming Soon
---------------------------------------- */
.location-coming .location-badge-secondary {
    animation: breatheSubtle 2.5s ease-in-out infinite;
}

/* ----------------------------------------
   S. Parallax Data Attribute Support
---------------------------------------- */
[data-parallax] {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* ----------------------------------------
   T. Enhanced Image Reveal
---------------------------------------- */
.dish-image img,
.menu-item-image img,
.gallery-item img,
.category-image img {
    will-change: transform;
}

/* Smooth image scale transitions */
.dish-image,
.menu-item-image,
.category-image {
    will-change: transform;
    backface-visibility: hidden;
}

/* ========================================
   MENU PAGE — Full Redesign Components
======================================== */

/* ----------------------------------------
   Menu Page Layout (TOC sidebar + content)
---------------------------------------- */
.menu-page-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
}

/* ----------------------------------------
   Menu TOC — Sticky Sidebar Navigation
---------------------------------------- */
.menu-toc {
    position: sticky;
    top: calc(var(--header-height) + var(--top-bar-height) + 20px);
    max-height: calc(100vh - var(--header-height) - var(--top-bar-height) - 40px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(122,46,52,0.2) transparent;
}

.menu-toc-inner {
    padding: 24px 0;
}

.menu-toc-title {
    font-family: var(--font-heading);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.menu-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-toc-group-label {
    font-family: var(--font-heading);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    margin-top: 20px;
    margin-bottom: 8px;
    padding-left: 12px;
}

.menu-toc-group-label:first-child {
    margin-top: 0;
}

.menu-toc-link {
    display: block;
    padding: 7px 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    border-left: 2px solid transparent;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: var(--transition);
}

.menu-toc-link:hover {
    color: var(--color-primary);
    background: rgba(122,46,52,0.04);
}

.menu-toc-link.active {
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    background: rgba(122,46,52,0.06);
    font-weight: 600;
}

/* Mobile TOC Toggle */
.menu-toc-toggle {
    display: none;
    width: 100%;
    padding: 14px 20px;
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.menu-toc-toggle i {
    float: right;
    transition: transform 0.3s ease;
}

.menu-toc-toggle.active i {
    transform: rotate(180deg);
}

/* ----------------------------------------
   Menu Category — Shared Base
---------------------------------------- */
.menu-category {
    padding: 48px 0;
    scroll-margin-top: calc(var(--header-height) + var(--top-bar-height) + 20px);
}

.menu-category + .menu-category {
    border-top: 1px solid rgba(0,0,0,0.06);
}

.menu-category:first-child {
    padding-top: 0;
}

.menu-category-header {
    margin-bottom: 32px;
}

.menu-category-label {
    font-family: var(--font-heading);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    display: block;
    margin-bottom: 8px;
}

.menu-category-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.menu-category-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

/* ----------------------------------------
   Type 1: Hero Feature Card (.menu-hero-card)
---------------------------------------- */
.menu-hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--color-off-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
}

.menu-hero-card .menu-category-header {
    margin-bottom: 24px;
}

.menu-hero-card-visual {
    position: relative;
    min-height: 480px;
    overflow: hidden;
}

.menu-hero-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-hero-card:hover .menu-hero-card-visual img {
    transform: scale(1.03);
}

.menu-hero-card-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: var(--font-heading);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow);
}

.menu-hero-card-body {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-hero-card-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-hero-item {
    display: flex;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.menu-hero-item:last-child {
    border-bottom: none;
}

.menu-hero-item-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--color-text);
    white-space: nowrap;
}

.menu-hero-item-dots {
    flex: 1;
    border-bottom: 2px dotted var(--color-gold);
    margin: 0 12px;
    position: relative;
    top: -4px;
}

.menu-hero-item-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}

/* ----------------------------------------
   Type 2: Accent Image Price List (.menu-accent-list)
---------------------------------------- */
.menu-accent-list-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 32px;
}

.menu-accent-list-text {
    flex: 1;
}

.menu-accent-list-image {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.menu-accent-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-accent-list-items {
    max-width: 720px;
}

.menu-list-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    gap: 16px;
}

.menu-list-item:last-child {
    border-bottom: none;
}

.menu-list-item-left {
    flex: 1;
    min-width: 0;
}

.menu-list-item-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--color-text);
    margin: 0;
    font-weight: 500;
}

.menu-list-item-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.menu-list-item-price {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}

/* ----------------------------------------
   Type 3: Protein Variation Grid (.menu-protein-grid)
---------------------------------------- */
.menu-protein-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.menu-protein-tab {
    padding: 10px 24px 12px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    margin-bottom: -1px;
}

.menu-protein-tab:hover {
    color: var(--color-primary);
}

.menu-protein-tab.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    font-weight: 600;
}

.menu-protein-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 20px;
    min-height: 1.2em;
}

.menu-protein-panel {
    display: none;
}

.menu-protein-panel.active {
    display: block;
}

.menu-protein-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.menu-protein-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: default;
}

.menu-protein-option:hover {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 1px var(--color-gold), var(--shadow-sm);
    transform: translateY(-2px);
}

.menu-protein-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
    line-height: 1;
}

.menu-protein-name {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text);
    margin-bottom: 6px;
}

.menu-protein-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* ----------------------------------------
   Type 4: Accordion (.menu-accordion)
---------------------------------------- */
.menu-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-accordion-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}

.menu-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--color-off-white);
    border: none;
    border-left: 3px solid var(--color-primary);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.menu-accordion-trigger:hover {
    background: rgba(122,46,52,0.04);
}

.menu-accordion-trigger-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text);
    flex: 1;
}

.menu-accordion-trigger-count {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.menu-accordion-icon {
    color: var(--color-primary);
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.menu-accordion-trigger[aria-expanded="true"] .menu-accordion-icon {
    transform: rotate(180deg);
}

.menu-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.menu-accordion-panel.open {
    max-height: 600px;
}

.menu-accordion-list {
    padding: 8px 24px 16px 27px;
}

.menu-accordion-list .menu-list-item {
    padding: 10px 0;
}

/* ----------------------------------------
   Type 5: Compact Two-Column Table (.menu-compact-section)
---------------------------------------- */
.menu-compact-banner {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.menu-compact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-compact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.menu-compact-col-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-gold);
    display: inline-block;
}

.menu-compact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-compact-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
}

.menu-compact-item:last-child {
    border-bottom: none;
}

.menu-compact-item span:last-child {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    margin-left: 12px;
}

/* ----------------------------------------
   Type 6: Chip Grid (.menu-chip-section)
---------------------------------------- */
.menu-chip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2px;
    background: rgba(0,0,0,0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.menu-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: var(--color-white);
    border: none;
    border-radius: 0;
    transition: var(--transition);
    cursor: default;
    position: relative;
}

.menu-chip::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-chip:hover {
    background: rgba(122,46,52,0.02);
}

.menu-chip:hover::after {
    width: 100%;
}

.menu-chip-name {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--color-text);
    line-height: 1.3;
}

.menu-chip-price {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-chip--featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(122,46,52,0.03) 0%, rgba(201,168,142,0.06) 100%);
    border-left: 3px solid var(--color-gold);
    flex-wrap: wrap;
    padding: 18px 24px;
}

.menu-chip--featured .menu-chip-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
}

.menu-chip-tag {
    font-family: var(--font-heading);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    width: 100%;
    order: -1;
    margin-bottom: 2px;
}

.menu-chip--mp .menu-chip-price {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    font-style: italic;
    letter-spacing: 0.3px;
}

/* Dark variant for Beverages */
.menu-chip-section--dark {
    background: var(--color-primary-dark);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    margin: 0 -20px;
    position: relative;
    overflow: hidden;
    border-top: none;
}

.menu-chip-section--dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,168,142,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.menu-chip-section--dark .menu-category-label {
    color: var(--color-gold);
}

.menu-chip-section--dark .menu-category-title {
    color: var(--color-white);
}

.menu-chip-section--dark .menu-chip-grid {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.menu-chip-section--dark .menu-chip {
    background: rgba(255,255,255,0.04);
}

.menu-chip-section--dark .menu-chip:hover {
    background: rgba(255,255,255,0.1);
}

.menu-chip-section--dark .menu-chip::after {
    background: linear-gradient(90deg, var(--color-gold), rgba(255,255,255,0.3));
}

.menu-chip-section--dark .menu-chip-name {
    color: rgba(255,255,255,0.9);
}

.menu-chip-section--dark .menu-chip-price {
    color: var(--color-gold);
}

/* ----------------------------------------
   Type 7: Duo Cards (.menu-duo-section)
---------------------------------------- */
.menu-duo-accent-img {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 28px;
}

.menu-duo-accent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.menu-duo-card {
    padding: 24px 24px 24px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    background: var(--color-white);
    transition: var(--transition);
}

.menu-duo-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.menu-duo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-gold));
}

.menu-duo-card-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-text);
    margin: 0 0 4px 0;
    font-weight: 500;
}

.menu-duo-card-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.menu-duo-card-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* ----------------------------------------
   Visual Interlude / Break
---------------------------------------- */
.menu-interlude {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin: 16px 0;
}

.menu-interlude img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-interlude-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(122,46,52,0.75) 0%, rgba(45,45,45,0.55) 100%);
}

.menu-interlude-quote {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-white);
    letter-spacing: 0.3px;
    line-height: 1.6;
}

/* ----------------------------------------
   Menu Page — Responsive Breakpoints
---------------------------------------- */
@media (max-width: 1023px) {
    .menu-page-layout {
        display: block;
    }

    .menu-toc {
        position: relative;
        top: auto;
        max-height: none;
        overflow: visible;
        margin-bottom: 32px;
    }

    .menu-toc-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu-toc-inner {
        display: none;
        padding: 16px 0;
        max-height: 50vh;
        overflow-y: auto;
    }

    .menu-toc.open .menu-toc-inner {
        display: block;
    }

    .menu-toc-title {
        display: none;
    }

    .menu-toc-list {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .menu-toc-group-label {
        width: 100%;
        margin-top: 12px;
        padding-left: 4px;
    }

    .menu-toc-link {
        padding: 6px 14px;
        border: none;
        border-radius: 0;
        border-bottom: 2px solid transparent;
        border-left: none;
        font-size: 0.8rem;
    }

    .menu-toc-link:hover {
        background: none;
        border-bottom-color: rgba(122,46,52,0.3);
    }

    .menu-toc-link.active {
        background: none;
        color: var(--color-primary);
        border-bottom-color: var(--color-primary);
        border-left-color: transparent;
        font-weight: 600;
    }

    .menu-hero-card {
        grid-template-columns: 1fr;
    }

    .menu-hero-card-visual {
        min-height: 280px;
    }

    .menu-hero-card-body {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .menu-compact-columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .menu-duo-grid {
        grid-template-columns: 1fr;
    }

    .menu-protein-options {
        grid-template-columns: 1fr 1fr;
    }

    .menu-accent-list-header {
        flex-direction: column;
    }

    .menu-accent-list-image {
        width: 120px;
        height: 120px;
    }

    .menu-hero-card-visual {
        min-height: 220px;
    }

    .menu-chip-section--dark {
        padding: 32px 20px;
        margin: 0 -15px;
        border-radius: var(--radius-lg);
    }

    .menu-chip-section--dark .menu-chip-grid {
        border-radius: var(--radius-md);
    }

    .menu-interlude {
        height: 180px;
    }

    .menu-interlude-quote {
        font-size: 1.1rem;
        padding: 24px;
    }

    .menu-category-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .menu-category {
        padding: 32px 0;
    }

    .menu-protein-options {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .menu-protein-option {
        padding: 14px 10px;
    }

    .menu-chip-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .menu-chip {
        padding: 14px 16px;
    }

    .menu-chip-name {
        font-size: 0.88rem;
    }

    .menu-compact-banner {
        height: 140px;
    }

    .menu-hero-card-body {
        padding: 24px 20px;
    }

    .menu-duo-accent-img {
        height: 150px;
    }

    .menu-accordion-trigger {
        padding: 14px 16px;
    }

    .menu-accordion-list {
        padding: 8px 16px 16px 19px;
    }
}
