/* ===========================
   CSS Custom Properties
=========================== */
:root {
    --primary: #CC1F1F;
    --primary-light: #E53535;
    --primary-dark: #A01515;
    --primary-glow: rgba(204, 31, 31, 0.28);
    --primary-glow-soft: rgba(204, 31, 31, 0.12);
    --accent: #F5C518;
    --accent-glow: rgba(245, 197, 24, 0.2);
    --dark: #3B1F0E;
    --dark-deep: #1C0C05;
    --dark-card: rgba(255, 255, 255, 0.03);
    --dark-border: rgba(255, 255, 255, 0.08);
    --white: #FFFFFF;
    --off-white: #FAF8F5;
    --grey-light: #EEEBE5;
    --grey: #D4CFC9;
    --text: #1A1209;
    --text-light: #7A6B5A;
    --text-on-dark: rgba(255, 255, 255, 0.88);
    --text-on-dark-muted: rgba(255, 255, 255, 0.45);

    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --ticker-h: 36px;
    --header-h: 68px;
    --cat-nav-h: 54px;
    --radius: 14px;
    --radius-sm: 8px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.14);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.20);
    --glow-red: 0 0 30px var(--primary-glow), 0 0 60px rgba(204, 31, 31, 0.08);

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t: 0.25s var(--ease);
    --t-slow: 0.5s var(--ease);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--text);
    line-height: 1.6;
    padding-top: calc(var(--ticker-h) + var(--header-h));
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===========================
   Scroll Entrance Animations
=========================== */
[data-anim] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

[data-anim].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-anim][data-delay="1"] { transition-delay: 0.08s; }
[data-anim][data-delay="2"] { transition-delay: 0.16s; }
[data-anim][data-delay="3"] { transition-delay: 0.24s; }
[data-anim][data-delay="4"] { transition-delay: 0.32s; }

@keyframes fade-up {
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   Ticker Bar
=========================== */
.ticker-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--ticker-h);
    background: var(--dark-deep);
    overflow: hidden;
    z-index: 1000;
    border-bottom: 1px solid rgba(245, 197, 24, 0.12);
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 32s linear infinite;
}

.ticker-content {
    display: inline-block;
    padding: 0 2.5rem;
    line-height: var(--ticker-h);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===========================
   Header
=========================== */
.site-header {
    position: fixed;
    top: var(--ticker-h);
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 999;
    transition: box-shadow var(--t), background var(--t);
}

.site-header.scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.99);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
    transition: opacity var(--t);
}

.logo:hover { opacity: 0.85; }

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s var(--ease-spring);
    background: transparent;
}

.logo:hover .logo-img { transform: scale(1.06); }

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.45rem 0.875rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    transition: color var(--t), background var(--t);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-glow-soft);
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.375rem !important;
    font-weight: 700 !important;
    border-radius: var(--radius-sm) !important;
    box-shadow: 0 2px 14px var(--primary-glow);
    transition: all var(--t) !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    box-shadow: 0 4px 22px rgba(204, 31, 31, 0.38) !important;
    transform: translateY(-1px);
}

/* Burger */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--t);
}

.burger-btn:hover { background: var(--grey-light); }

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--t);
}

.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--grey-light);
}

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

.mobile-nav-link {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px solid var(--grey-light);
    transition: background var(--t), color var(--t);
}

.mobile-nav-link:hover {
    background: var(--primary-glow-soft);
    color: var(--primary);
}

/* ===========================
   Hero
=========================== */
.hero {
    position: relative;
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    overflow: hidden;
}

/* Deep atmospheric background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 90% 70% at 50% 65%, rgba(204, 31, 31, 0.2) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 15% 85%, rgba(245, 197, 24, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 85% 15%, rgba(204, 31, 31, 0.07) 0%, transparent 55%),
        linear-gradient(180deg, var(--dark-deep) 0%, var(--dark) 100%);
}

/* Grid overlay for "2035" tech feel */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
    pointer-events: none;
}

/* Ember particles container */
.hero-embers {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.ember {
    position: absolute;
    bottom: -8px;
    border-radius: 50%;
    animation: ember-rise var(--dur, 9s) var(--delay, 0s) ease-out infinite;
    opacity: 0;
}

@keyframes ember-rise {
    0%   { opacity: 0; transform: translateY(0) translateX(0) scale(1); }
    12%  { opacity: 0.9; }
    80%  { opacity: 0.15; }
    100% { opacity: 0; transform: translateY(-75vh) translateX(var(--drift, 30px)) scale(0.15); }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    padding: 3.5rem 2rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(16px);
    animation: fade-up 0.7s 0.15s var(--ease) forwards;
}

.hero-eyebrow-line {
    display: block;
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: 0.45;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.8rem, 13vw, 7.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 0.92;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    opacity: 0;
    transform: translateY(28px);
    animation: fade-up 0.75s 0.3s var(--ease) forwards;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2.75rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(16px);
    animation: fade-up 0.75s 0.45s var(--ease) forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.95rem 2.5rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 32px rgba(204, 31, 31, 0.45), 0 0 0 1px rgba(204, 31, 31, 0.3);
    transition: all 0.35s var(--ease-spring);
    opacity: 0;
    animation: fade-up 0.75s 0.6s var(--ease) forwards;
}

.hero-cta:hover {
    background: var(--primary-light);
    box-shadow: 0 8px 48px rgba(204, 31, 31, 0.55), 0 0 0 2px rgba(204, 31, 31, 0.35);
    transform: translateY(-3px) scale(1.02);
}

.hero-cta-arrow {
    display: inline-block;
    transition: transform 0.25s var(--ease);
}

.hero-cta:hover .hero-cta-arrow { transform: translateX(4px); }

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fade-up 0.7s 1.2s var(--ease) forwards;
}

.scroll-line {
    width: 1px;
    height: 42px;
    background: linear-gradient(to bottom, rgba(245, 197, 24, 0.5), transparent);
    animation: scroll-pulse 2.4s 1.5s ease-in-out infinite;
}

.scroll-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
    animation: scroll-pulse 2.4s 1.5s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.25; }
    50%       { opacity: 0.7; }
}

/* ===========================
   Features Section
=========================== */
.features {
    padding: 7rem 2rem 6rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 160px;
    background: radial-gradient(ellipse, var(--primary-glow-soft) 0%, transparent 70%);
    pointer-events: none;
}

.section-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.875rem;
}

.section-tag::before, .section-tag::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: 0.35;
}

.section-heading {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

.section-subheading {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto 3.5rem;
    line-height: 1.75;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--grey-light);
    text-align: center;
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s var(--ease);
    animation: gradient-shift 3s linear infinite paused;
}

.feature-card:hover {
    border-color: rgba(204, 31, 31, 0.14);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px var(--primary-glow-soft);
    transform: translateY(-5px);
}

.feature-card:hover::after {
    transform: scaleX(1);
    animation-play-state: running;
}

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

.feature-icon {
    font-size: 2.25rem;
    margin-bottom: 1.125rem;
    display: block;
    line-height: 1;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.625rem;
    color: var(--dark);
    letter-spacing: -0.015em;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   Category Nav (Menu Page)
=========================== */
.category-nav {
    position: sticky;
    top: calc(var(--ticker-h) + var(--header-h));
    z-index: 100;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--grey-light);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-nav::-webkit-scrollbar { display: none; }

.category-nav-inner {
    display: flex;
    gap: 0.25rem;
    padding: 0.625rem 2rem;
    min-width: max-content;
    max-width: 1280px;
    margin: 0 auto;
}

.cat-nav-btn {
    padding: 0.375rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    transition: all var(--t);
    border: 1.5px solid transparent;
    letter-spacing: 0.015em;
}

.cat-nav-btn:hover {
    color: var(--primary);
    background: var(--primary-glow-soft);
    border-color: rgba(204, 31, 31, 0.15);
}

.cat-nav-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 2px 12px var(--primary-glow);
}

/* ===========================
   Menu Page
=========================== */
.menu-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.menu-section {
    margin-bottom: 4rem;
    scroll-margin-top: calc(var(--ticker-h) + var(--header-h) + var(--cat-nav-h) + 1rem);
}

.section-title-wrap {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--grey-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    letter-spacing: -0.025em;
    font-weight: 900;
}

.section-emoji {
    font-size: 1.5rem;
    line-height: 1;
}

.pizza-size-legend {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 700;
    background: var(--grey-light);
    padding: 0.3rem 0.875rem;
    border-radius: var(--radius-pill);
    letter-spacing: 0.03em;
    margin-left: auto;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
    gap: 1rem;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--grey-light);
    display: flex;
    flex-direction: column;
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}

.menu-card:hover {
    border-color: rgba(204, 31, 31, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
}

.menu-card.popular {
    border-color: rgba(245, 197, 24, 0.35);
}

.menu-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--accent), #FFD700, var(--accent));
    background-size: 200% 100%;
    animation: shimmer 2.5s linear infinite;
}

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

.menu-card-img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
    display: block;
}

.menu-card-body {
    padding: 1.25rem 1.25rem 0.875rem;
    flex: 1;
}

.menu-card-labels {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.625rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.18rem 0.6rem;
    border-radius: var(--radius-pill);
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.badge-popular {
    background: rgba(245, 197, 24, 0.12);
    color: #9A7200;
    border: 1px solid rgba(245, 197, 24, 0.3);
}

.badge-new {
    background: rgba(204, 31, 31, 0.08);
    color: var(--primary);
    border: 1px solid rgba(204, 31, 31, 0.2);
}

.menu-item-name {
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.menu-item-desc {
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.55;
}

.menu-card-footer {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--grey-light);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.01em;
}

/* ===========================
   Footer
=========================== */
.site-footer {
    background: var(--dark);
    color: var(--text-on-dark-muted);
    padding: 4.5rem 2rem 0;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 220px;
    background: radial-gradient(ellipse, rgba(204, 31, 31, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.footer-logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: transparent;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
    line-height: 1;
}

.footer-tagline {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
}

.footer-social {
    display: flex;
    gap: 0.625rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-on-dark-muted);
    transition: all var(--t);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 18px var(--primary-glow);
}

.social-link.whatsapp-link:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
}

.footer-col-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.25rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-on-dark-muted);
    transition: color var(--t);
}

.footer-info-row:hover { color: var(--text-on-dark); }

.footer-info-row a { color: inherit; transition: color var(--t); }
.footer-info-row a:hover { color: var(--accent); }

.fi-icon { flex-shrink: 0; margin-top: 1px; font-size: 1rem; }

.footer-map-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-map-wrap iframe {
    border-radius: 10px;
    display: block;
    opacity: 0.88;
    transition: opacity var(--t);
    filter: grayscale(20%) contrast(1.05);
}

.footer-map-wrap iframe:hover { opacity: 1; }

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    transition: color var(--t), gap var(--t);
    letter-spacing: 0.01em;
}

.map-directions-btn:hover {
    color: var(--white);
    gap: 0.65rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===========================
   WhatsApp FAB
=========================== */
.whatsapp-fab {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45), 0 0 0 4px rgba(37, 211, 102, 0.1);
    z-index: 500;
    transition: all 0.35s var(--ease-spring);
}

.whatsapp-fab:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.55), 0 0 0 8px rgba(37, 211, 102, 0.1);
}

/* ===========================
   Error Pages
=========================== */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
}

.error-code {
    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 40px var(--primary-glow);
}

.error-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
    color: var(--dark);
}

.error-msg { color: var(--text-light); }

/* ===========================
   Responsive
=========================== */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-map-col { grid-column: 1 / -1; }
    .footer-map-wrap iframe { height: 200px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .burger-btn { display: flex; }

    body { padding-top: calc(var(--ticker-h) + var(--header-h)); }

    .hero { min-height: 100svh; }
    .hero-title { letter-spacing: -0.025em; }

    .features { padding: 4.5rem 1.25rem 3.5rem; }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand { grid-column: auto; }

    .menu-page { padding: 1.5rem 1rem; }

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

    .category-nav-inner { padding: 0.5rem 1rem; }

    .nav-container { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
    .menu-grid { grid-template-columns: 1fr; }
    .hero-content { padding: 2.5rem 1.25rem; }
}
