@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;500;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    /* Palette Refined: Classic Burgundy & Cream */
    --color-primary: #8B2323;
    /* Deep Heritage Burgundy */
    --color-primary-dark: #681A1A;
    /* Darker shade for hover/active */
    --color-primary-light: #F9EBEB;
    /* Very light tint for backgrounds */

    --color-bg-body: #FAF8F5;
    /* Warm Cream / Off-White */
    --color-bg-light: #F4EFE6;
    /* Warm Beige/Grey for sections */
    --color-bg-dark: #2D2424;
    /* Dark Brown/Charcoal for footer/header */
    --color-card-bg: #FAF8F5;
    /* Creamy card background to match body or slightly distinguish */

    --color-text: #2D2424;
    /* Dark Charcoal/Brown (Main Text) */
    --color-text-light: #5D534A;
    /* Softer Brown/Grey (Secondary Text) */
    --color-border: #E6E0D4;
    /* Soft Beige Border */
    --color-gold: #C5A059;
    /* Gold for separators */

    --color-white: #FFFFFF;
    --color-accent: #8B2323;
    /* Using Primary as accent for now */
    --color-secondary: #FFFFFF;
    /* Keeping for compatibility */

    /* Typography */
    --font-serif: 'Lora', serif;
    --font-sans: 'DM Sans', sans-serif;

    /* Base spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    /* Increased for section density */

    /* Layout */
    --max-width: 1280px;
    --header-height: 70px;
    /* Border Radius */
    --radius-sm: 4px;
    /* Classic cleaner radius */
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);

    /* Animation */
    --transition: all 0.3s ease;
}

/* [data-theme='dark'] removed/disabled for White Theme enforcement */
[data-theme='dark'] {
    /* Keeping variables but mapping them to light values or ignoring */
    --color-primary: #B23A3A;
    --color-secondary: #FFFCF8;
    --color-text: #2D2D2D;
    --color-card-bg: #FFFFFF;
}

@media (min-width: 768px) {
    :root {
        --spacing-lg: 5rem;
        --spacing-xl: 10rem;
        --header-height: 80px;
    }
}

/* 2. Global Resets & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-body);
    font-family: var(--font-sans);
    color: var(--color-text);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-text);
    /* Use var for dark mode */
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.35rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.25rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--spacing-lg) 0;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--color-primary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-family: var(--font-sans);
}

.text-serif {
    font-family: var(--font-serif);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.25rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    /* Unified radius */
}

.btn-primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.btn-white {
    background-color: #FFFFFF;
    color: var(--color-primary);
    border: 1px solid #FFFFFF;
}

.btn-white:hover {
    background-color: var(--color-bg-body);
    color: var(--color-primary-dark);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
}

.btn-outline-dark:hover {
    background-color: var(--color-text);
    color: #FFFFFF;
}

/* Card Styles */
.card-sleek {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--color-border);
}

.card-sleek:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Utilities */
.hidden {
    display: none !important;
}

/* Header & Footer Specifics (will be refined in dedicated css if needed, but keeping global here) */
/* Footer Static Override */
/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 5rem 0 2rem;
    border-top: 4px solid var(--color-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 4rem;
        /* More breathing room */
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    /* Ensure logo is white on dark bg */
}

.footer-text {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-heading {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.footer-list a {
    color: #a0a0a0;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

.footer-list svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-hours .h-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    /* Remove default margin for better alignment */
}

/* Legal Links (Desktop Default) */
.legal-links {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.legal-links a:hover {
    color: var(--color-primary);
}

/* Header & Mobile Menu Styles  */
/* ============================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 252, 248, 0.95);
    /* Light Theme Scrolled */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: 90px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme='dark'] .header.scrolled {
    background: rgba(255, 252, 248, 0.95);
    /* Force Light */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Force dark elements when scrolled */
.header.scrolled .nav-link,
.header.scrolled .icon-btn {
    color: #000000 !important;
    text-shadow: none;
}

/* Explicit Black for Hamburger on Scroll */
.header.scrolled .mobile-toggle {
    color: #000000 !important;
}

.header.scrolled .mobile-toggle svg {
    stroke: #000000 !important;
}

/* Header text visibility on transparent background */
.header.header-hero:not(.scrolled) .nav-link,
.header.header-hero:not(.scrolled) .icon-btn {
    color: #FFFFFF;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Explicit White for Hamburger on Transparent */
.header.header-hero:not(.scrolled) .mobile-toggle {
    color: #FFFFFF !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.header.header-hero:not(.scrolled) .mobile-toggle svg {
    stroke: #FFFFFF !important;
}

.header.header-hero:not(.scrolled) .nav-link:hover,
.header.header-hero:not(.scrolled) .icon-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.header.header-hero:not(.scrolled) .nav-link:hover,
.header.header-hero:not(.scrolled) .icon-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* White Logo on Transparent Header */
.header.header-hero:not(.scrolled) .logo img {
    filter: brightness(0) invert(1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 60px;
    width: auto;
    transition: height 0.3s;
    margin-top: 15px;
}

.header.scrolled .logo img {
    height: 50px;
    margin-top: 0;
}

/* Desktop Nav - Hidden on Mobile */
.desktop-nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Desktop Controls */
.desktop-controls {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s;
}

.icon-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Mobile Toggle */
.mobile-toggle {
    background: transparent;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10001;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #FDFBF7 !important;
    /* Force solid background */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
    visibility: hidden;
    backdrop-filter: none !important;
    /* Remove any blur */
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.mobile-nav-inner {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    height: 100%;
}

.close-menu {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
}

.mobile-nav-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-list a {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-text);
    font-weight: 500;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-bottom: 3rem;
}

.w-full {
    width: 100%;
    display: flex;
}

/* Desktop Media Query */
@media (min-width: 992px) {
    .logo img {
        height: 85px;
    }

    .header.scrolled .logo img {
        height: 75px;
    }

    .desktop-nav {
        display: block;
    }

    .desktop-controls {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }
}

/* Accordion Menu Styles */
.menu-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--color-primary);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: rgba(0, 0, 0, 0.02);
}

.accordion-header h2 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--color-text);
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: var(--color-primary);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-header[aria-expanded="true"] h2 {
    color: var(--color-primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 2rem;
    opacity: 0;
}

.accordion-content.expanded {
    max-height: 2000px;
    /* Arbitrary large height for transition */
    padding: 0 2rem 2rem;
    opacity: 1;
}

/* Helper for classic list in accordion */
.accordion-content .classic-menu-list {
    margin-top: 1rem;
}

/* Menu Dropdown Styles */
.menu-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.select-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.menu-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 1rem 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.menu-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.select-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-primary);
    width: 20px;
    height: 20px;
}



/* Classic Menu List Styles (Text Only) */
.section-header-simple {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header-simple h2 {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-header-simple h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin: 0.5rem auto 0;
    opacity: 0.3;
}

.classic-menu-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.classic-menu-item {
    display: flex;
    flex-direction: column;
}

.item-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
}

.item-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    flex-shrink: 0;
}

.item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
    margin: 0 1rem;
    position: relative;
    top: -5px;
}

.item-price {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.item-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-top: 0.4rem;
    font-style: italic;
    line-height: 1.5;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-card-bg);
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid var(--color-border);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
}

.modal-header h2 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--color-text);
}

.close-modal {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(198, 40, 40, 0.1);
}

.order-summary-mini {
    background: rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.order-summary-mini p {
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.text-sm {
    font-size: 0.875rem;
}

.text-muted {
    opacity: 0.7;
}

/* Utilities */
.hidden {
    display: none !important;
}

/* --- Homepage Redesign Styles --- */

/* Hero Adjustments */
.hero {
    position: relative;
    height: 85vh;
    /* Slightly reduced for better fold visibility */
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Lighter overlay for warmth */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
}

.hero-text-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    font-size: 3rem;
    font-family: var(--font-serif);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline-white:hover {
    background: white;
    color: var(--color-text);
}

/* Heritage Strip */
.section-heritage {
    background: var(--color-accent);
    /* Warm Stone/Grey */
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.heritage-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.heritage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #FFFFFF;
}

.heritage-icon {
    color: #FFFFFF;
    width: 20px;
    height: 20px;
}

.heritage-text {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.heritage-separator {
    width: 1px;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
    display: none;
}

@media (min-width: 768px) {
    .heritage-separator {
        display: block;
    }
}

/* Mobile Heritage Slider */
@media (max-width: 767px) {
    .heritage-grid {
        display: flex;
        /* Keep flex for centering */
        min-height: 48px;
        /* Prevent collapse during transition */
    }

    .heritage-separator {
        display: none !important;
    }

    .heritage-item {
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        animation: fadeInSlide 0.5s ease-out;
    }

    .heritage-item.active {
        display: flex;
        opacity: 1;
    }

    @keyframes fadeInSlide {
        from {
            opacity: 0;
            transform: translateY(5px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* About Preview */
.section-about-preview {
    padding: 5rem 0;
}

.layout-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .layout-split {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-image-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-outline-dark {
    border: 2px solid var(--color-text);
    color: var(--color-text);
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline-dark:hover {
    background: var(--color-text);
    color: white;
}

/* Menu Preview */
.menu-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.menu-preview-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: block;
}

.menu-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mp-image {
    height: 220px;
    overflow: hidden;
}

.mp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-preview-card:hover .mp-image img {
    transform: scale(1.05);
}

.mp-content {
    padding: 1.5rem;
    text-align: center;
}

.mp-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.mp-link {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* Ordering Section */
.section-ordering {
    background: var(--color-primary-dark);
    padding: 5rem 0;
    color: white;
}

.text-white {
    color: white;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.85);
}

.max-w-2xl {
    max-width: 42rem;
}

.btn-white {
    background: white;
    color: var(--color-primary-dark);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}

.btn-white:hover {
    transform: scale(1.05);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color 0.3s;
}

.service-item:hover {
    border-color: var(--color-primary);
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Gallery Row */
.header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.text-link {
    color: var(--color-text);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-img-wrap {
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.gallery-img-wrap:hover img {
    opacity: 0.9;
}

/* Practical Info */
.section-practical {
    padding: 5rem 0;
    background: var(--color-bg-body);
}

.practical-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    background: var(--color-card-bg);
    /* Use card bg if defined or white */
}

@media (min-width: 992px) {
    .practical-wrapper {
        grid-template-columns: 1fr 1.5fr;
        align-items: stretch;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }
}

.practical-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.practical-info h3 {
    font-size: 2rem;
    margin: 0.5rem 0 2rem;
}

.practical-address p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.practical-address i {
    color: var(--color-primary);
}

.practical-map {
    min-height: 400px;
    background: #eee;
}

/* Mobile Typo Fixes */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

/* Added Utilities for New Sections */
.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 1rem auto 1.5rem;
}

.text-accent-sm {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
}

.section-title-xl {
    font-size: 3rem;
    font-family: var(--font-serif);
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 700;
}

@media (min-width: 992px) {
    .section-title-xl {
        font-size: 4.5rem;
    }
}

.section-separator-decorative {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem auto;
    width: 100%;
    max-width: 300px;
    opacity: 0.4;
}

.section-separator-line {
    height: 1px;
    background-color: var(--color-gold);
    flex-grow: 1;
}

.section-separator-icon {
    margin: 0 1rem;
    color: var(--color-gold);
}

.bg-soft-stone {
    background-color: #fafaf9;
    /* Warm very light grey/stone */
}



.mb-4 {
    margin-bottom: 1rem !important;
}

/* Universe Grid */
.universes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

/* Scroll Hint for Mobile */
.scroll-hint {
    display: none;
}

@keyframes bounceRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

@media (min-width: 992px) {
    .scroll-hint {
        display: none;
    }
}

.universe-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 220px;
    /* Smaller on mobile */
    display: block;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;

    /* Mobile Sizing */
    width: 100%;
}

@media (min-width: 992px) {
    .universes-grid {
        display: grid;
        /* Grid on Desktop */
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        overflow-x: visible;
        padding-bottom: 0;
        padding-left: 4rem;
        /* Side Margins */
        padding-right: 4rem;
    }

    .universe-card {
        width: auto;
        flex: none;
        height: auto;
        /* Let aspect-ratio control height */
        aspect-ratio: 1 / 1;
        /* Square cards on desktop */
    }
}

.universe-card:hover {
    transform: translateY(-8px);
}

.u-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.u-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.universe-card:hover .u-image img {
    transform: scale(1.05);
}

.u-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
    /* Lighter gradient on top */
}

@media (min-width: 992px) {
    .u-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    }

    .u-content {
        padding: 2rem;
    }

    .u-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .u-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }
}

.u-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    color: white;
}

.u-content h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.u-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.u-content .btn-link {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.mb-8 {
    margin-bottom: 2rem !important;
}

.rounded-lg {
    border-radius: var(--radius-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-md) !important;
}

.list-disc {
    list-style-type: disc !important;
    padding-left: 1.25rem !important;
}

.pl-5 {
    padding-left: 1.25rem !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.p-4 {
    padding: 1rem !important;
}

.text-lg {
    font-size: 1.125rem !important;
}

.text-sm {
    font-size: 0.875rem !important;
}

.font-serif {
    font-family: var(--font-serif) !important;
}

.border-gray-200 {
    border-color: #E6E0D4 !important;
}

.border {
    border-width: 1px !important;
    border-style: solid !important;
}

.rounded {
    border-radius: var(--radius-sm) !important;
}

/* Mobile Reverse Layout */
@media (max-width: 768px) {
    .reverse-mobile {
        flex-direction: column-reverse;
    }
}

/* Fix for Mobile Toggle Visibility on Home Page (Mobile Only) */
@media (max-width: 991px) {
    .header.header-hero .mobile-toggle {
        color: #FFFFFF !important;
        display: flex !important;
        position: relative !important;
        z-index: 10001 !important;
    }

    .header.header-hero .mobile-toggle svg {
        stroke: #FFFFFF !important;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
    }
}

/* User Request: Make hero background darker */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)) !important;
    opacity: 0.9 !important;
    /* Forcing stronger darkness */
}

/* Ensure video covers the entire hero area */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Menu Highlights Section */
/* Menu Highlights Section */
.section-menu-preview {
    background-color: var(--color-bg-light);
    /* Warm light beige separation */
    padding: 6rem 0;
}

/* Horizontal Slider Layout (Mobile) */
.menu-highlight-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2.5rem;
    /* Space for shadow/scrollbar */
    padding-left: 1rem;
    padding-right: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

@media (min-width: 992px) {
    .menu-highlight-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        overflow-x: visible;
        padding-bottom: 0;
    }

    .section-menu-preview {
        overflow: visible;
    }
}

.menu-highlight-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.menu-card {
    flex: 0 0 auto;
    /* Fixed width for consistent cards */
    width: 85vw;
    max-width: 320px;
    background: var(--color-card-bg);
    border-radius: 16px;
    /* Larger radius for modern feel */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
    /* Multi-layer shadow for depth */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smoother easing */
    display: flex;
    flex-direction: column;
    height: auto;
    border: 1px solid transparent;
    scroll-snap-align: center;
}

@media (min-width: 768px) {
    .menu-card {
        flex: 0 0 350px;
        /* Slightly wider on desktop slider (tablet) */
        width: 350px;
    }
}

@media (min-width: 992px) {
    .menu-card {
        width: auto;
        flex: none;
        /* Reset flex for grid */
    }
}

.menu-card:hover {
    transform: translateY(-12px) scale(1.02);
    /* More pronounced lift with subtle scale */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    /* Richer, expanded shadow */
    border-color: var(--color-primary);
    /* Primary color glow */
}

.mc-image {
    height: 300px;
    /* Larger image for more impact */
    position: relative;
    overflow: hidden;
}

.mc-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
    /* Gradient overlay for better contrast */
}

.mc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .mc-image img {
    transform: scale(1.08);
    /* Gentle zoom */
}

.mc-price {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    /* Glassmorphism background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    padding: 0.6rem 1.2rem;
    /* Larger padding */
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    /* Larger font */
    color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: var(--font-serif);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Subtle border */
    z-index: 2;
    /* Above gradient */
}

.mc-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.mc-content h3 {
    font-size: 1.6rem;
    /* Larger, more prominent */
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-family: var(--font-serif);
    position: relative;
}

.mc-content h3::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    margin: 0 auto 1rem;
    border-radius: 2px;
    /* Decorative accent line */
}


.list-disc {
    list-style-type: disc !important;
    padding-left: 1.25rem !important;
}

.pl-5 {
    padding-left: 1.25rem !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.p-4 {
    padding: 1rem !important;
}

.text-lg {
    font-size: 1.125rem !important;
}

.text-sm {
    font-size: 0.875rem !important;
}

.font-serif {
    font-family: var(--font-serif) !important;
}

.border-gray-200 {
    border-color: #E6E0D4 !important;
}

.border {
    border-width: 1px !important;
    border-style: solid !important;
}

.rounded {
    border-radius: var(--radius-sm) !important;
}

/* Mobile Reverse Layout */
@media (max-width: 768px) {
    .reverse-mobile {
        flex-direction: column-reverse;
    }
}

/* Fix for Mobile Toggle Visibility on Home Page (Mobile Only) */
@media (max-width: 991px) {
    .header.header-hero .mobile-toggle {
        color: #FFFFFF !important;
        display: flex !important;
        position: relative !important;
        z-index: 10001 !important;
    }

    .header.header-hero .mobile-toggle svg {
        stroke: #FFFFFF !important;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
    }
}

/* User Request: Make hero background darker */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)) !important;
    opacity: 0.9 !important;
    /* Forcing stronger darkness */
}

/* Ensure video covers the entire hero area */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Menu Highlights Section */
/* Menu Highlights Section */
.section-menu-preview {
    background-color: var(--color-bg-body);
    /* Unified Creamy Background */
    padding: 6rem 0;
    overflow: hidden;
    /* Hide overflow from full-width slider */
}

/* Horizontal Slider Layout */
.menu-highlight-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2.5rem;
    /* Space for shadow/scrollbar */
    padding-left: 1rem;
    padding-right: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.menu-highlight-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.menu-card {
    flex: 0 0 320px;
    /* Fixed width for consistent cards */
    width: 320px;
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    border: 1px solid transparent;
    scroll-snap-align: center;
}

@media (min-width: 768px) {
    .menu-card {
        flex: 0 0 350px;
        /* Slightly wider on desktop */
        width: 350px;
    }
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-border);
}

.mc-image {
    height: 260px;
    /* Taller image for better preview */
    position: relative;
    overflow: hidden;
}

.mc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .mc-image img {
    transform: scale(1.08);
    /* Gentle zoom */
}

.mc-price {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: var(--font-serif);
}

.mc-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.mc-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
    font-family: var(--font-serif);
}

.mc-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Utilities for new card layout */
.d-flex {
    display: flex !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.text-white {
    color: white !important;
}

/* Universe Style Override for Menu Cards */
.menu-card.universe-card-style {
    display: block;
    /* Reset flex container from previous style */
    position: relative;
    height: 400px;
    /* Force height match */
    padding: 0;
    border: none;
}

.menu-card.universe-card-style .u-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4) 60%, transparent);
}

.price-tag {
    background: var(--color-bg-body);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    color: var(--color-primary);
}

/* Group Reservation Section */
.section-groups {
    background-image: url('../images/group-party.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax Effect */
    position: relative;
    padding: 10rem 0;
    /* Increased padding */
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-groups .u-overlay {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    /* Radial Gradient for focus */
    position: absolute;
    inset: 0;
}

.section-groups .container {
    position: relative;
    z-index: 2;
}

.section-groups p {
    color: white !important;
    /* Force white text */
}

/* Feature Grid in Groups Section */
.features-grid-3 {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: white;
}

.feature-item .f-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: white;
    /* Changed to White */
}

.feature-item .f-icon i {
    width: 28px;
    height: 28px;
}

.feature-item h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: white !important;
}

/* Desktop Spacing */
@media (min-width: 992px) {
    .features-grid-3 {
        margin-bottom: 5rem;
    }
}

/* Shape Dividers */
.shape-divider-top,
.shape-divider-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.shape-divider-top {
    top: -1px;
    /* Fix sub-pixel gaps */
}

.shape-divider-bottom {
    bottom: -1px;
}

.shape-divider-top svg,
.shape-divider-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.shape-divider-top .shape-fill {
    fill: #fdfaf5;
    /* Matches body background */
}

.shape-divider-bottom .shape-fill {
    fill: var(--color-bg-body);
    /* Matches next section background */
}

@media (max-width: 768px) {
    .features-grid-3 {
        gap: 2rem;
        flex-direction: column;
        margin-bottom: 4rem;
        /* Increased mobile spacing */
    }

    /* Reduce divider height on mobile */
    .shape-divider-top svg,
    .shape-divider-bottom svg {
        height: 30px;
    }
}

/* --- Career Page Styles --- */

.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-color: var(--color-bg-dark);
    /* Fallback */
    overflow: hidden;
    margin-top: 100px;
    /* Pull behind header */
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .page-hero {
        margin-top: 100px;
        padding-top: 0;
        background-attachment: fixed;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================ */
/* Small Mobile Optimization    */
/* ============================ */
@media (max-width: 575px) {
    h1 {
        font-size: 1.75rem;
        /* Reduced from 2rem for better fit on 320px */
    }

    .section-title-xl {
        font-size: 2.25rem;
        /* Reduced from 2.5rem */
    }

    /* Force 1 column for grids on small screens */
    .universes-grid,
    .services-grid,
    .features-grid-3,
    .bento-grid,
    .clean-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        /* Override large 4rem gaps */
    }

    /* Adjust container padding */
    .container {
        padding: 0 1rem;
    }

    /* Reduce massive section paddings */
    .section-groups {
        padding: 4rem 1rem !important;
        /* Reduced from 10rem */
    }

    .features-grid-3 {
        margin-top: 2rem !important;
        /* Reduced margin */
    }

    /* Header adjustments */
    .logo img {
        height: 50px;
        /* Slightly adjusted for balance */
        margin-top: 10px;
    }

    /* Fix overlap with Daveluyville text */
    .hero-content {
        padding-top: 60px;
        /* Push content down on mobile */
    }

    .mobile-toggle {
        width: 40px;
        height: 40px;
    }

    /* Heritage section spacing */
    .heritage-grid {
        gap: 1rem;
    }

    /* Make buttons full width on very small screens */
    .hero-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Language icon preserved on small mobiles */
    .header-actions>.icon-btn {
        display: flex !important;
    }

    /* Footer compactness */
    .footer {
        padding: 3rem 0 1.5rem;
        /* Compact footer */
    }

    .footer-grid {
        gap: 2rem;
        /* Reduce gap between footer columns */
    }

    /* Fix Footer Bottom Squishing on Mobile */
    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-links {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1rem;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.value-card {
    background: var(--color-card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.vc-icon {
    width: 64px;
    height: 64px;
    background: rgba(139, 35, 35, 0.08);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vc-icon i {
    width: 28px;
    height: 28px;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Stack on mobile */
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .job-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2rem;
    }
}

.job-card:hover {
    border-color: var(--color-primary);
    background: white;
    box-shadow: var(--shadow-md);
}

.job-info h4 {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.job-type {
    display: inline-block;
    background: var(--color-bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.section-title-md {
    font-size: 2rem;
    font-family: var(--font-serif);
    margin-bottom: 0.5rem;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.85);
}

.w-16 {
    width: 4rem;
}

.h-1 {
    height: 0.25rem;
}

/* ============================================
   RESTAURANT PAGE COMPONENTS
   ============================================ */

/* Feature Cards */
.feature-card {
    background: var(--color-card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #c41e3a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

.feature-card .icon-wrapper i {
    color: white;
    width: 28px;
    height: 28px;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Promo Card Enhancement */
.promo-card {
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8d6 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.promo-card .promo-title {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hours Block Enhancement */
.hours-block {
    background: var(--color-card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-block h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

/* Gallery Items */
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive Gallery Heights */
.gallery-item {
    height: 12rem;
    /* h-48 equivalent */
}

@media (min-width: 768px) {
    .gallery-item {
        height: 16rem;
        /* h-64 equivalent */
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Gallery Grid Enhancement */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        gap: 2rem;
    }
}

.bg-white {
    background-color: #FFFFFF;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* ============================================
   BENTO GRID LAYOUT (Nos Spécialités)
   ============================================ */

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Hero Card (Full Width) */
.min-card.hero-card {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

@media (min-width: 992px) {
    .min-card.hero-card {
        flex-direction: row;
        height: 450px;
        align-items: stretch;
    }

    .min-card.hero-card .mc-image {
        width: 65%;
        /* Wider image for cinematic feel */
        height: auto;
        flex-shrink: 0;
    }

    .min-card.hero-card .mc-content {
        width: 35%;
        justify-content: center;
        text-align: left;
        padding: 3rem;
        background: var(--color-card-bg);
    }

    .min-card.hero-card .mc-content h3 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .min-card.hero-card .mc-content h3::before {
        margin: 0 0 1rem 0;
        /* Left align divider */
    }

    .min-card.hero-card .mc-price {
        top: 2rem;
        left: 2rem;
        right: auto;
        bottom: auto;
        font-size: 1.4rem;
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
    }
}

/* Badge for Hero */
.badge-featured {
    position: absolute;
    top: 2rem;
    right: 2rem;
    /* Right side on desktop */
    background: #FFD700;
    /* Gold */
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Standard Card Adjustments for Grid */
.bento-grid .menu-card {
    width: 100%;
    /* Override fixed width from slider */
    flex: none;
    height: 100%;
}

/* ============================================
   CLEAN & MINIMAL GRID (V2 Redesign)
   ============================================ */

.clean-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .clean-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1100px) {
    .clean-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.clean-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.clean-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.clean-card .mc-image {
    height: 250px;
    /* Reduced specific height for cleaner look */
    width: 100%;
    position: relative;
    overflow: hidden;
}

.clean-card .mc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.clean-card:hover .mc-image img {
    transform: scale(1.05);
}

.clean-card .mc-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
    /* Modern alignment */
}

/* Featured Badge for Clean Card (Optional usage) */
.clean-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text);
    z-index: 2;
}

.clean-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text);
    font-family: var(--font-serif);
    position: relative;
}

.clean-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.clean-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
}

.clean-price {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.clean-btn {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}


/* ============================================
   SERVICES CLEAN LAYOUT (Poster Grid)
   ============================================ */

.services-clean-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .services-clean-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        /* Larger gap for poster feel */
    }
}

.service-card-clean {
    display: block;
    text-decoration: none;
}

.service-card-clean .sc-image {
    height: 350px;
    /* Tall poster format */
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    /* Slight roundness */
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card-clean:hover .sc-image {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card-clean .sc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-clean:hover .sc-image img {
    transform: scale(1.05);
    /* Gentle zoom */
}

.service-card-clean .sc-content {
    text-align: center;
    padding: 0 1rem;
}

.service-card-clean h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-family: var(--font-serif);
}

.service-card-clean p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-link {
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.service-card-clean:hover .service-link {
    border-bottom-color: var(--color-primary);
}