/* ============================================================
   KIKA'S KITCHEN — STYLE.CSS
   ============================================================ */

/* ============================================================
   CUSTOM FONTS
   ============================================================ */
@font-face {
    font-family: 'Edosz';
    src: url('/assets/fonts/edosz.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

/* ============================================================
   BRAND VARIABLES
   ============================================================ */
:root {
    /* ---- BRAND COLORS — dark/moody palette ---- */
    --color-primary: #1A1208;       /* near-black charcoal (UI backgrounds) */
    --color-primary-light: #2A1C10;
    --color-bg: #100C07;            /* main page background */
    --color-bg-alt: #171009;        /* alternate section background */
    --color-text: #EDE3CC;          /* warm cream body text */
    --color-text-muted: #A88C68;    /* warm tan secondary text */
    --color-border: #2E1E12;        /* subtle dark border */
    --color-green: #1A8C45;         /* slightly brighter green for dark bg legibility */
    --color-yellow: #F5C518;
    --color-blue: #002776;
    --color-ember: #C8572D;

    /* ---- LEGACY ALIASES ---- */
    --color-primary-dark: #0A0806;
    --color-accent: #1A8C45;
    --color-accent-dark: #116630;
    --color-white: #1E1510;         /* "white" = dark card background */
    --color-text-light: #6E5038;

    /* ---- TYPOGRAPHY ---- */
    --font-heading: 'Anton SC', Impact, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* ---- SPACING ---- */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --max-width: 1200px;

    /* ---- STYLE CHOICES ---- */
    --border-radius: 12px;
    --border-radius-btn: 6px;
}

/* ============================================================
   THEMES — dev-only theme switcher
   html[data-theme="dark"] = Dark & Bold (current, default)
   html[data-theme="brand"] = Brand theme (TBD — awaiting client images)
   ============================================================ */

/* Dark & Bold — explicitly bank the current palette */
html[data-theme="dark"],
html:not([data-theme]) {
    --color-primary: #1A1208;
    --color-primary-light: #2A1C10;
    --color-bg: #100C07;
    --color-bg-alt: #171009;
    --color-text: #EDE3CC;
    --color-text-muted: #A88C68;
    --color-border: #2E1E12;
    --color-green: #1A8C45;
    --color-yellow: #F5C518;
    --color-ember: #C8572D;
    --color-white: #1E1510;
    --color-text-light: #6E5038;
    --font-heading: 'Anton SC', Impact, sans-serif;
}

/* Brand theme — Brazilian flag green + yellow, white backgrounds */
html[data-theme="brand"] {
    --color-primary: #005E28;           /* deep brand green → trust bar, stats bar bg */
    --color-primary-light: #1A8C45;     /* lighter green */
    --color-primary-dark: #EDE8DF;      /* legacy alias — warm parchment */
    --color-bg: #FFFFFF;                /* clean white page background */
    --color-bg-alt: #F4EFE6;           /* warm cream alternate sections */
    --color-text: #1A1208;             /* near-black charcoal */
    --color-text-muted: #6B5B50;       /* warm brown secondary text */
    --color-border: #D8CFBE;           /* warm sand border */
    --color-green: #005E28;            /* brand green for CTAs */
    --color-yellow: #F5C518;           /* brand gold */
    --color-ember: #C8572D;            /* ember accent */
    --color-white: #FFFFFF;            /* actual white — card/section backgrounds */
    --color-text-light: #9E8E7E;       /* light muted text */
    --color-accent: #005E28;
    --color-accent-dark: #003D1A;
    --font-heading: 'Edosz', Impact, sans-serif;
}

/* Brand theme — header: green instead of near-black */
html[data-theme="brand"] .site-header {
    background: rgba(0, 94, 40, 0.97);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

html[data-theme="brand"] .nav-links a {
    color: rgba(255, 255, 255, 0.75);
}

html[data-theme="brand"] .nav-links a:hover {
    color: #FFFFFF;
}

html[data-theme="brand"] .logo-text {
    color: #FFFFFF;
}

html[data-theme="brand"] .menu-toggle span {
    background: rgba(255, 255, 255, 0.85);
}

html[data-theme="brand"] .hero-hl-descriptor {
    font-size: clamp(2rem, 4.5vw, 5rem);
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
}

html[data-theme="brand"] .hero-hl-food {
    font-size: clamp(4.2rem, 11vw, 12rem);
    color: #F5C518;
    text-shadow: 0 2px 40px rgba(245, 197, 24, 0.25);
}

/* Brand theme — signature dish cards: white on green */
html[data-theme="brand"] .dish-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 94, 40, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

html[data-theme="brand"] .dish-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

html[data-theme="brand"] .dish-name-pt {
    color: #1A1A1A;
}

html[data-theme="brand"] .dish-name-en {
    color: rgba(0, 0, 0, 0.45);
}

html[data-theme="brand"] .dish-desc {
    color: rgba(0, 0, 0, 0.65);
}

html[data-theme="brand"] .dish-price {
    color: #005E28;
}

/* ---- Dev theme switcher UI ---- */
.dev-theme-switcher {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: rgba(0,0,0,0.85);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
    font-family: monospace;
    font-size: 0.7rem;
}

.dev-theme-switcher-label {
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.dev-theme-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: monospace;
    font-size: 0.7rem;
    text-align: left;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.dev-theme-btn:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.dev-theme-btn.active {
    background: #1A8C45;
    border-color: #1A8C45;
    color: #fff;
}

/* ============================================================
   BASE STYLES
   ============================================================ */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }

p { margin-bottom: var(--spacing-sm); }
p:last-child { margin-bottom: 0; }

a { color: var(--color-green); }

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

section { padding: var(--spacing-xl) 0; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(16, 12, 7, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.logo-icon {
    height: 44px;
    width: auto;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.header-phone {
    font-weight: 700;
    color: var(--color-green);
    text-decoration: none;
    font-size: 1rem;
    display: none;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--color-text); }

/* Nav CTA button */
.btn-nav-cta {
    background: var(--color-green) !important;
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-btn);
    font-weight: 600 !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-nav-cta:hover {
    background: var(--color-accent-dark) !important;
    transform: translateY(-1px);
    color: white !important;
}

/* ============================================================
   HERO SECTION — full-bleed restaurant atmosphere
   ============================================================ */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* header height */
    background: #1A0F0A; /* fallback while video loads */
    animation: hero-ignite 1.8s ease-out forwards;
}

@keyframes hero-ignite {
    0%   { background-color: #0A0200; }
    40%  { background-color: #2C0D03; }
    100% { background-color: #1A0F0A; }
}

/* Looping background video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Dark gradient overlay — keeps text legible over any video */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            160deg,
            rgba(8, 3, 1, 0.87) 0%,
            rgba(18, 7, 2, 0.78) 45%,
            rgba(35, 12, 4, 0.68) 100%
        );
    z-index: 1;
    animation: ember-breathe 4s ease-in-out infinite alternate;
}

@keyframes ember-breathe {
    0%   { box-shadow: inset 0 0 120px 40px rgba(200, 87, 45, 0.18); }
    100% { box-shadow: inset 0 0 200px 80px rgba(200, 87, 45, 0.32); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Subtle texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='1' height='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.hero h1 {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-size: clamp(3.8rem, 9vw, 9rem);
    margin-bottom: var(--spacing-md);
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 40px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.hero-hl-descriptor,
.hero-hl-food {
    display: block;
    transition: opacity 0.45s ease, filter 0.45s ease;
}

.hero-headline.hl-exit .hero-hl-descriptor,
.hero-headline.hl-exit .hero-hl-food {
    opacity: 0;
    filter: blur(12px);
}

.hero-headline.hl-enter .hero-hl-descriptor,
.hero-headline.hl-enter .hero-hl-food {
    opacity: 0;
    filter: blur(12px);
    transition: none;
}

.hero h1 em {
    font-style: italic;
    color: var(--color-ember);
}

.hero-location-line {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: var(--spacing-lg);
    margin-bottom: 0;
}

.hero-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.hero-social a {
    color: rgba(255,255,255,0.35);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.hero-social a:hover {
    color: rgba(255,255,255,0.85);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* Override btn-secondary for dark hero background */
.hero .btn-secondary {
    border-color: rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.9);
}

.hero .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: white;
    border-color: white;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-ember);
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ============================================================
   OPEN STATUS WIDGET
   ============================================================ */
.open-status-widget {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.open-status-widget:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.open-status-widget .status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* States */
.open-status-widget.loading .status-dot {
    background: rgba(255, 255, 255, 0.4);
    animation: status-pulse 1.2s ease-in-out infinite;
}

.open-status-widget.open .status-dot {
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
    animation: status-pulse 2s ease-in-out infinite;
}

.open-status-widget.closed .status-dot {
    background: #f87171;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2);
}

.open-status-widget.opens-soon .status-dot {
    background: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.25);
    animation: status-pulse 1.5s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.65; transform: scale(1.15); }
}

/* Green theme — widget on video/dark overlay, same styles work fine */
html[data-theme="brand"] .open-status-widget {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--color-primary);
    padding: var(--spacing-md) 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    list-style: none;
}

.trust-item {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Stats bar */
.stats-bar {
    background: var(--color-primary);
    padding: var(--spacing-lg) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    text-align: center;
}

.stat-item { color: white; }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* Editorial eyebrow labels */
.eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-ember);
    margin-bottom: var(--spacing-md);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-btn);
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--color-green);
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text-muted);
}

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

.btn-accent {
    background: var(--color-ember);
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-accent:hover {
    background: #a8451e;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transform: translateY(-2px);
    color: white;
}

.btn-outline-green {
    background: transparent;
    color: var(--color-green);
    border: 2px solid var(--color-green);
}

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

/* ============================================================
   ABOUT / STORY SECTION
   ============================================================ */
.about {
    background: var(--color-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.about-with-photo {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    align-items: center;
    text-align: left;
    max-width: 960px;
    margin: 0 auto;
}

.about-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--color-bg-alt);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.about-photo {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.signature {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--color-border);
}

.signature p {
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 0;
}

.signature span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* ============================================================
   MENU / FOOD SECTION
   ============================================================ */
.menu-section {
    background: var(--color-bg);
    padding: var(--spacing-xl) 0;
}

.menu-tabs-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--color-border);
}

.menu-order-btn {
    margin-bottom: 0.25rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

.menu-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.menu-tab {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    color: var(--color-text-muted);
    font-family: inherit;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.menu-tab:hover {
    color: var(--color-green);
}

.menu-tab.active {
    color: var(--color-green);
    border-bottom-color: var(--color-green);
}

.menu-download-link {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.menu-download-link a {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.menu-download-link a:hover { color: var(--color-green); }

.menu-category {
    margin-bottom: var(--spacing-lg);
}

.menu-category h3 {
    font-size: 1.2rem;
    color: var(--color-text);
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 0.5rem;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4rem;
    row-gap: 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-info {
    flex: 1;
}

.menu-item-name-pt {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-text);
    display: block;
}

.menu-item-name-en {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: block;
    margin-top: 0.1rem;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
    line-height: 1.4;
}

.menu-item-price {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-green);
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
}

/* ============================================================
   LOCATIONS SECTION
   ============================================================ */
.locations {
    background: var(--color-bg-alt);
    padding: var(--spacing-xl) 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.location-card {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 36, 32, 0.1);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(44, 36, 32, 0.15);
}

.location-card h3 {
    color: var(--color-green);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.location-card .address,
.location-card .hours {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.location-card .phone {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.location-card .phone a {
    color: var(--color-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.location-card .phone a:hover {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

.map-embed {
    aspect-ratio: 16/9;
    background: var(--color-bg-alt);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.location-card .card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: var(--spacing-sm);
}

.location-card .card-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews {
    background: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: var(--color-bg);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    border: 2px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.stars {
    color: var(--color-yellow);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
}

.quote {
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.9rem;
}

#reviews-container {
    margin-top: var(--spacing-lg);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery {
    background: var(--color-bg-alt);
    padding: var(--spacing-xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: var(--spacing-lg);
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #E0D6C8;
    cursor: zoom-in;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.93);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    animation: lightbox-fade 0.2s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes lightbox-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    animation: lightbox-scale 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes lightbox-scale {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.15s;
    padding: 0.25rem;
}

.lightbox-close:hover {
    color: #fff;
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-section {
    background: var(--color-bg);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.booking-section .section-inner {
    max-width: 700px;
    margin: 0 auto;
}

.booking-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 2px solid var(--color-border);
    margin-bottom: var(--spacing-md);
}

.booking-tab {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    color: var(--color-text-muted);
    font-family: inherit;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.booking-tab:hover { color: var(--color-green); }

.booking-tab.active {
    color: var(--color-green);
    border-bottom-color: var(--color-green);
}

.resdiary-embed {
    min-height: 400px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.order-link {
    display: block;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-top: var(--spacing-sm);
}

.order-link a {
    color: var(--color-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.order-link a:hover { color: var(--color-accent-dark); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
    background: var(--color-bg-alt);
}

.faq-grid {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    border: 2px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-green), var(--color-ember));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover::before { opacity: 1; }

.faq-item:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-color: var(--color-green);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.faq-item p {
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
    background: var(--color-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-detail strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.contact-detail a,
.contact-detail span {
    font-size: 1rem;
    color: var(--color-text);
    text-decoration: none;
    line-height: 1.4;
}

.contact-detail a:hover { color: var(--color-green); }

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact form {
    background: var(--color-bg);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(44, 36, 32, 0.1);
    margin-top: var(--spacing-lg);
    border: 2px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.contact form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-green), var(--color-ember));
}

.form-group { margin-bottom: var(--spacing-md); }

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.25s ease;
    background: var(--color-white);
    color: var(--color-text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(0, 107, 45, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A88C68' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-submit { width: 100%; padding: 1rem; font-size: 1.05rem; }

.form-message {
    padding: 1rem;
    margin-bottom: var(--spacing-md);
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-message.success { background: #d4edda; border: 2px solid #c3e6cb; color: #155724; }
.form-message.error { background: #f8d7da; border: 2px solid #f5c6cb; color: #721c24; }
.form-message.sending { background: #d1ecf1; border: 2px solid #bee5eb; color: #0c5460; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--color-primary);
    color: rgba(255,255,255,0.7);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.footer-wordmark {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    color: rgba(255,255,255,0.06);
    letter-spacing: -0.03em;
    line-height: 1;
    text-align: center;
    display: block;
    margin-bottom: var(--spacing-lg);
    user-select: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--spacing-md);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.footer-social a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-social a:hover { color: white; }

.footer-locations {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-location-item {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-location-item strong {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.footer-location-item a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-location-item a:hover { color: white; }

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.footer-nav a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover { color: white; }

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

.footer-note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-credit {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    margin-top: var(--spacing-xs);
}

.footer-credit a { color: rgba(255,255,255,0.4); }
.footer-credit a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   DESKTOP STICKY CTA
   ============================================================ */
.desktop-sticky-cta {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 998;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.desktop-sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.desktop-sticky-cta .btn {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    white-space: nowrap;
}

@media (min-width: 769px) {
    .desktop-sticky-cta { display: block; }
}

/* ============================================================
   MOBILE CTA BAR
   ============================================================ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 16px rgba(44, 36, 32, 0.1);
}

.mobile-cta-bar .btn {
    flex: 1;
    text-align: center;
    border-radius: 0;
    padding: 1rem;
    font-size: 0.95rem;
}

.mobile-cta-bar .btn-primary {
    border-radius: 0;
}

.mobile-cta-bar .btn-secondary {
    border-radius: 0;
    border: none;
    border-left: 1px solid var(--color-border);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================================
   MOBILE MENU TOGGLE
   ============================================================ */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
/* Lock hero headline height so CTA doesn't jump when shorter/longer
   headlines rotate. Only needed at mobile where "CHARCOAL-FIRED" wraps. */
@media (max-width: 560px) {
    .hero h1 {
        min-height: calc(3.8rem * 0.95 * 3); /* 3 lines at minimum font size */
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    body {
        padding-bottom: 68px; /* room for mobile CTA bar */
    }

    .mobile-cta-bar { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: var(--spacing-md);
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 4px 12px rgba(44, 36, 32, 0.1);
        gap: var(--spacing-sm);
    }

    .nav-links.active { display: flex; }

    /* Ensure nav links are readable in brand theme (white bg → dark text) */
    html[data-theme="brand"] .nav-links {
        background: var(--color-primary);
        border-bottom-color: rgba(255,255,255,0.15);
    }

    /* Push hamburger to far right by hiding nav from flex flow on mobile */
    .menu-toggle {
        display: block;
        margin-left: auto;
    }
    .site-header .container nav {
        position: static;
        flex: 0 0 auto;
        width: 0;
        overflow: visible;
    }
    .site-header .container { position: relative; }

    .hero {
        min-height: 75vh;
    }

    .about-with-photo {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .contact-layout { grid-template-columns: 1fr; }

    .trust-items { gap: var(--spacing-md); }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .booking-tabs {
        flex-wrap: wrap;
    }

    .booking-tab {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .menu-tabs { flex-wrap: wrap; }
    .menu-tab { padding: 0.6rem 1.25rem; font-size: 0.9rem; }
}

/* ============================================================
   GOOGLE REVIEWS WIDGET
   ============================================================ */
.google-reviews-widget { margin-top: var(--spacing-lg); }

.reviews-summary { text-align: center; margin-bottom: var(--spacing-lg); }

.reviews-summary-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease;
}

.reviews-summary-link:hover { color: var(--color-text); }

.reviews-stars { color: var(--color-yellow); font-size: 1.1rem; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.review-card {
    background: var(--color-bg);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    border: 2px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-sm);
}

.reviewer-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.reviewer-info { flex: 1; min-width: 0; }

.reviewer-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 2px;
    flex-wrap: wrap;
}

.review-stars { color: var(--color-yellow); font-size: 0.85rem; }
.review-time  { font-size: 0.8rem; color: var(--color-text-light); }

.review-location-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(0, 107, 45, 0.1);
    color: var(--color-green);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.review-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.reviews-loading,
.reviews-error {
    text-align: center;
    color: var(--color-text-muted);
    padding: var(--spacing-lg);
}

@media (max-width: 1024px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MENU EXTRAS (sides + sauces)
   ============================================================ */
.menu-extras {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--color-bg-alt);
    border-radius: var(--border-radius);
    border: 2px solid var(--color-border);
}

.menu-extra-group h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-extra-price {
    font-size: 0.85rem;
    color: var(--color-green);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.menu-extra-group p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.menu-availability {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.menu-category-en {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.menu-category-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
    font-style: italic;
}

.menu-error {
    text-align: center;
    color: var(--color-text-muted);
    padding: var(--spacing-lg);
    font-size: 0.95rem;
}

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

/* ============================================================
   BOOKING — phone CTA placeholder
   ============================================================ */
.resdiary-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    text-align: center;
    color: var(--color-text-muted);
}

.resdiary-placeholder p { margin-bottom: 0; }

.booking-phone-cta {
    margin-top: var(--spacing-sm);
    font-size: 1.1rem;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.bg-alt { background: var(--color-bg-alt); }
.bg-primary { background: var(--color-primary); color: white; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mt-lg { margin-top: var(--spacing-lg); }

/* ============================================================
   STATEMENT STRIP
   ============================================================ */
.statement {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.statement p {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 3.8rem);
    color: var(--color-text);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.statement em {
    font-style: italic;
    color: var(--color-ember);
}

/* ============================================================
   SIGNATURE DISHES SECTION
   ============================================================ */
.signature-dishes {
    background: var(--color-primary);
    padding: var(--spacing-xl) 0;
}

.signature-dishes .section-header h2 { color: white; }
.signature-dishes .section-header p { color: rgba(255,255,255,0.65); }

/* eyebrow in dark section */
.signature-dishes .eyebrow { color: var(--color-yellow); }

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: var(--spacing-lg);
}

.dish-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.dish-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.dish-info {
    padding: var(--spacing-md);
}

.dish-name-pt {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.2rem;
}

.dish-name-en {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--spacing-sm);
    font-style: italic;
}

.dish-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.dish-price {
    display: inline-block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-yellow);
    letter-spacing: 0.01em;
}

@media (max-width: 1024px) { .dishes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .dishes-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GALLERY — image polish
   ============================================================ */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

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

/* Gallery: tall left item + 4 grid + full-width cinematic bottom */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px 280px;
    gap: 1rem;
    margin-top: var(--spacing-lg);
}

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: 1 / -1; aspect-ratio: auto; height: 280px; }

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gallery-item:nth-child(1) { grid-row: span 1; }
    .gallery-item:nth-child(6) { grid-column: auto; }
}

/* ============================================================
   ABOUT — photo polish
   ============================================================ */
.about-photo {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 40px rgba(44, 36, 32, 0.2);
    object-fit: cover;
    aspect-ratio: 3/4;
    display: block;
}

/* ============================================================
   MENU BANNER
   ============================================================ */
.menu-banner {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
}

.menu-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.menu-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 5, 3, 0.75) 0%,
        rgba(10, 5, 3, 0.3) 100%
    );
    display: flex;
    align-items: center;
    padding: var(--spacing-lg);
}

.menu-banner-overlay p {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: white;
    font-style: italic;
    margin-bottom: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    max-width: 500px;
}

@media (max-width: 768px) {
    .menu-banner { height: 150px; }
    .menu-banner-overlay { padding: var(--spacing-md); }
}

/* ============================================================
   LOCATION CARDS — extra polish
   ============================================================ */
.location-card h3::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-green);
    margin-right: 0.5rem;
    flex-shrink: 0;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

/* ============================================================
   HERO — ensure background-image CSS vars are overridden
   ============================================================ */
/* (Hero bg is now set via inline style with Unsplash photo) */
/* Remove the static gradient background from .hero so the inline style wins */
.hero {
    background-color: #1A0F0A; /* fallback if image fails to load */
}
