:root {
    color-scheme: light;
    --green: #065f46;
    --green-dark: #022c22;
    --amber: #fbbf24;
    --cream: #fff7ed;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #faf7f2;
}

.hero-bg {
    background: var(--hero-image, url("../img/hero-restaurant-optimized.jpg")) center/cover no-repeat;
}

.nav-link {
    color: #3f3f46;
    transition: color .2s ease;
}


.site-header {
    box-shadow: 0 10px 30px rgba(24, 24, 27, .04);
}

.main-navigation {
    display: none;
}

.order-nav-button {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    background: var(--amber);
    padding: 0 1.1rem;
    color: #18181b;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(251, 191, 36, .28);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.order-nav-button:hover {
    transform: translateY(-1px);
    background: #f59e0b;
    box-shadow: 0 16px 34px rgba(245, 158, 11, .3);
}

.hamburger {
    display: inline-flex;
    height: 2.75rem;
    width: 2.75rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #d4d4d8;
    border-radius: .5rem;
    background: white;
}

.hamburger span {
    display: block;
    width: 1.25rem;
    height: 2px;
    border-radius: 999px;
    background: #18181b;
    transition: transform .25s ease, opacity .2s ease;
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .main-navigation {
        display: flex;
    }
}
.nav-link:hover {
    color: var(--green);
}

.btn-primary,
.btn-secondary,
.btn-whatsapp,
.btn-solid-sm,
.btn-outline-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    font-weight: 800;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn-primary {
    min-height: 3.25rem;
    padding: 0 1.4rem;
    background: var(--amber);
    color: #18181b;
}

.btn-secondary {
    min-height: 3.25rem;
    padding: 0 1.4rem;
    border: 1px solid rgba(255, 255, 255, .7);
    color: white;
}

.btn-whatsapp {
    min-height: 3.25rem;
    padding: 0 1.4rem;
    background: #16a34a;
    color: white;
}

.btn-solid-sm {
    min-height: 2.45rem;
    padding: 0 .9rem;
    background: var(--green);
    color: white;
    font-size: .875rem;
}

.btn-outline-sm {
    min-height: 2.45rem;
    padding: 0 .9rem;
    border: 1px solid var(--green);
    color: var(--green);
    font-size: .875rem;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-whatsapp:hover,
.btn-solid-sm:hover,
.btn-outline-sm:hover {
    transform: translateY(-1px);
}

.btn-secondary:hover {
    background: white;
    color: #18181b;
}

.section-kicker {
    color: var(--green);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.section-title {
    margin-top: .5rem;
    max-width: 48rem;
    color: #18181b;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 950;
    line-height: 1.05;
}

.text-zinc-650 {
    color: #52525b;
}

.feature-tile {
    min-height: 11rem;
    border: 1px solid #e7e5e4;
    border-radius: .5rem;
    background: linear-gradient(180deg, #ffffff, #fff7ed);
    padding: 1.4rem;
}

.feature-tile h3,
.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 900;
}

.feature-tile p {
    margin-top: .75rem;
    color: #57534e;
    font-size: .94rem;
    line-height: 1.6;
}

.benefit-card {
    min-height: 11rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .5rem;
    background: rgba(255, 255, 255, .08);
    padding: 1.5rem;
}

.benefit-card p {
    margin-top: .75rem;
    color: #d4d4d8;
    font-size: .94rem;
    line-height: 1.65;
}

.quick-contact {
    border: 1px solid #fde68a;
}

.link-strong {
    color: var(--green);
    font-weight: 900;
}

.dish-card {
    transition: transform .2s ease, box-shadow .2s ease;
}

.dish-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(24, 24, 27, .12);
}

.whatsapp-float {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 50;
    display: inline-flex;
    min-height: 3.1rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #16a34a;
    padding: 0 1.2rem;
    color: white;
    font-size: .9rem;
    font-weight: 900;
    box-shadow: 0 18px 35px rgba(22, 163, 74, .35);
}

@media (max-width: 767px) {
    .main-navigation {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + .75rem);
        display: grid;
        gap: .75rem;
        border: 1px solid #e4e4e7;
        border-radius: .75rem;
        background: white;
        padding: 1rem;
        box-shadow: 0 18px 44px rgba(24, 24, 27, .16);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px) scale(.98);
        transition: opacity .22s ease, transform .22s ease;
    }

    .main-navigation.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .main-navigation .nav-link,
    .main-navigation .order-nav-button {
        width: 100%;
        min-height: 2.9rem;
        justify-content: center;
    }
.hero-bg {
        background-position: 58% center;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        width: 100%;
    }
}




html {
    scroll-behavior: smooth;
}

body {
    text-rendering: optimizeLegibility;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(251, 191, 36, .75);
    outline-offset: 3px;
}

img {
    background: #f4f4f5;
}

.page-enter {
    animation: pageFade .28s ease both;
}

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

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .45s ease, transform .45s ease;
}

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

.btn-primary,
.order-nav-button,
.btn-whatsapp,
.btn-solid-sm {
    box-shadow: 0 12px 24px rgba(6, 95, 70, .14);
}

.btn-primary:active,
.btn-secondary:active,
.btn-whatsapp:active,
.btn-solid-sm:active,
.btn-outline-sm:active,
.order-nav-button:active {
    transform: translateY(0) scale(.98);
}

.cart-pill,
.cart-desktop {
    display: inline-flex;
    min-height: 2.5rem;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    border: 1px solid #d4d4d8;
    border-radius: .5rem;
    background: #fff;
    padding: 0 .85rem;
    color: #18181b;
    font-size: .85rem;
    font-weight: 900;
}

.cart-desktop {
    min-height: auto;
    border-color: transparent;
    padding: .45rem .65rem;
    color: #3f3f46;
}

.cart-count,
.cart-mobile-count {
    display: grid;
    min-width: 1.35rem;
    height: 1.35rem;
    place-items: center;
    border-radius: 999px;
    background: var(--green);
    color: white;
    font-size: .72rem;
}

.mobile-order-bar {
    display: none;
}

.form-loading button[type="submit"] {
    opacity: .72;
    pointer-events: none;
}

.form-loading button[type="submit"]::after {
    content: "...";
    margin-left: .3rem;
}

.notice-success {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #14532d;
}

.checkout-steps {
    display: grid;
    gap: .75rem;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: .75rem;
    border: 1px solid #e7e5e4;
    border-radius: .5rem;
    background: white;
    padding: .85rem 1rem;
    font-size: .9rem;
    font-weight: 800;
}

.checkout-step span {
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    place-items: center;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-size: .82rem;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 4.6rem;
    }

    .whatsapp-float {
        right: .85rem;
        bottom: 5.25rem;
        min-height: 2.85rem;
        padding: 0 1rem;
    }

    .mobile-order-bar {
        position: fixed;
        left: .75rem;
        right: .75rem;
        bottom: .75rem;
        z-index: 60;
        display: grid;
        grid-template-columns: 1fr 1fr 1.15fr;
        gap: .45rem;
        border: 1px solid rgba(24, 24, 27, .08);
        border-radius: .75rem;
        background: rgba(255, 255, 255, .96);
        padding: .45rem;
        box-shadow: 0 18px 45px rgba(24, 24, 27, .18);
        backdrop-filter: blur(14px);
    }

    .mobile-order-bar a {
        display: grid;
        min-height: 2.8rem;
        place-items: center;
        border-radius: .55rem;
        color: #18181b;
        font-size: .82rem;
        font-weight: 900;
    }

    .mobile-order-bar .primary {
        background: var(--amber);
    }

    .dish-card img {
        height: 13rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
/* Step 25 final polish */
.site-header {
    border-bottom-color: rgba(39, 39, 42, .08);
}

main > section {
    scroll-margin-top: 5.5rem;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 28%;
    background: linear-gradient(180deg, transparent, rgba(250, 247, 242, .08));
    pointer-events: none;
}

.btn-primary,
.order-nav-button {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.btn-primary:hover,
.order-nav-button:hover {
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
}

.btn-secondary,
.btn-outline-sm,
.cart-pill,
.cart-desktop {
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn-outline-sm:hover,
.cart-pill:hover,
.cart-desktop:hover {
    background: #ecfdf5;
    border-color: #047857;
    color: #065f46;
}

.dish-card,
.feature-tile,
.quick-contact,
.checkout-step,
footer .rounded {
    box-shadow: 0 10px 28px rgba(24, 24, 27, .06);
}

.dish-card img {
    transition: transform .35s ease, filter .35s ease;
}

.dish-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.06);
}

.feature-tile,
.quick-contact,
.checkout-step {
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.feature-tile:hover,
.quick-contact:hover,
.checkout-step:hover {
    transform: translateY(-2px);
    border-color: rgba(5, 150, 105, .28);
    box-shadow: 0 16px 36px rgba(24, 24, 27, .09);
}

input,
select,
textarea {
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #059669;
    box-shadow: 0 0 0 4px rgba(5, 150, 105, .12);
}

footer a {
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

@media (max-width: 767px) {
    .site-header nav {
        padding-top: .65rem;
        padding-bottom: .65rem;
    }

    .hero-bg .relative {
        min-height: 620px;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    h1 {
        overflow-wrap: anywhere;
    }

    .section-kicker {
        letter-spacing: .12em;
    }

    .quick-contact,
    .feature-tile,
    .benefit-card {
        padding: 1.25rem;
    }

    footer {
        padding-bottom: 4.5rem;
    }
}
.cart-icon {
    display: block;
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
    color: var(--green);
}

.mobile-order-bar .cart-icon {
    display: block;
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
    color: var(--green);
}

.mobile-order-bar .cart-mobile-count {
    position: absolute;
    top: .28rem;
    right: .6rem;
}