:root {
    --bg: #fffaf0;
    --surface: #ffffff;
    --surface-soft: #fff2dd;
    --charcoal: #171717;
    --text: #2b2a28;
    --muted: #6d665d;
    --brand: #f45b00;
    --brand-dark: #cb4600;
    --accent: #ffb703;
    --success: #0f9d58;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background: radial-gradient(circle at 10% 15%, #ffe8c8 0%, transparent 36%),
        radial-gradient(circle at 90% 85%, #ffe6bf 0%, transparent 34%),
        var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

h1,
h2,
h3,
.brand,
.eyebrow {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.04em;
    margin: 0;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.section {
    padding: 4.5rem 0;
}

.section-alt {
    background: linear-gradient(180deg, #fffaf0, #fff2dd);
}

.section-dark {
    background: linear-gradient(120deg, #1f1c1a 0%, #2f2620 100%);
    color: #f2ebe2;
}

.section-head {
    margin-bottom: 2rem;
}

.section-tools {
    margin-top: 0.8rem;
}

.section-head h2 {
    font-size: clamp(2rem, 5vw, 3.1rem);
    line-height: 1;
}

.eyebrow {
    display: inline-block;
    font-size: 1.05rem;
    color: var(--brand);
    margin-bottom: 0.4rem;
}

.site-bg-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.shape-one {
    width: 180px;
    height: 180px;
    right: -55px;
    top: 16%;
    background: radial-gradient(circle, rgba(244, 91, 0, 0.26), transparent 68%);
}

.shape-two {
    width: 220px;
    height: 220px;
    left: -65px;
    top: 50%;
    background: radial-gradient(circle, rgba(255, 183, 3, 0.25), transparent 68%);
}

.shape-three {
    width: 280px;
    height: 280px;
    right: 24%;
    bottom: -110px;
    background: radial-gradient(circle, rgba(244, 91, 0, 0.16), transparent 70%);
}

.header {
    background: linear-gradient(120deg, #1a1a1a 0%, #1f1f1f 50%, #1a1a1a 100%);
    color: #fff9f0;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
    line-height: 1;
    color: #fff6ea;
}

.brand-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 2px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.brand span {
    color: var(--brand);
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #fff;
    padding: 0.45rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

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

.btn {
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--brand), #ff7b1d);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    padding: 0.75rem 1.4rem;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(244, 91, 0, 0.35);
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-nav {
    padding: 0.5rem 1rem;
}

.demo-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.09);
    color: #ffe8d2;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin: 0.4rem 0 0;
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0 3.4rem;
}

.hero-copy h1 {
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 0.92;
    margin: 0.35rem 0 0.8rem;
    color: #ffefe2;
}

.hero-copy p {
    color: #f4dfca;
    line-height: 1.6;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.hero-highlights {
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-highlights li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.85rem;
}

.hero-media {
    position: relative;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #ece5db;
}

.hero-media .cover-image {
    min-height: 380px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.floating-card {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(18, 18, 18, 0.86);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    padding: 0.65rem 0.85rem;
    font-weight: 700;
    font-size: 0.85rem;
}

.category-grid,
.special-grid,
.feature-grid,
.media-grid {
    display: grid;
    gap: 1.1rem;
}

.category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card,
.special-card,
.feature-card,
.reservation-form,
.media-grid video,
.about-media,
.map-wrap iframe {
    border-radius: var(--radius-md);
}

.category-card {
    background: var(--surface);
    box-shadow: 0 10px 20px rgba(32, 22, 10, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.category-card .cover-image {
    height: 170px;
}

.category-card h3 {
    padding: 0.9rem 0.9rem 1rem;
    font-size: 1.5rem;
}

.special-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.special-card {
    overflow: hidden;
    background: #1e1c1a;
    color: #fff;
    box-shadow: 0 15px 30px rgba(40, 20, 0, 0.2);
}

.special-card .cover-image {
    height: 210px;
}

.special-content {
    padding: 1rem;
}

.special-content h3 {
    font-size: 1.7rem;
    margin-bottom: 0.35rem;
}

.special-content p {
    color: #d7d0c8;
    font-size: 0.92rem;
}

.special-meta {
    margin-top: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 800;
    color: var(--accent);
}

.tag {
    background: #ff5f14;
    color: #fff;
    border-radius: 999px;
    padding: 0.28rem 0.6rem;
    font-size: 0.74rem;
    font-weight: 700;
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
    background: var(--surface);
    padding: 1.2rem;
    border: 1px solid #f0e5d5;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--muted);
    line-height: 1.55;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    align-items: center;
}

.about-media {
    overflow: hidden;
    min-height: 330px;
}

.about-copy h2 {
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    margin: 0.5rem 0 0.8rem;
}

.about-copy p {
    color: #ddd4c9;
    line-height: 1.7;
    margin-bottom: 0.9rem;
}

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

.media-grid video {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    background: #1f1f1f;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.13);
}

.hover-preview {
    cursor: pointer;
}

.reservation-wrap {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 1.5rem;
    align-items: start;
}

.reservation-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0.45rem 0 0.7rem;
}

.reservation-copy p {
    color: var(--muted);
    max-width: 420px;
    line-height: 1.65;
}

.reservation-form {
    background: var(--surface);
    border: 1px solid #eedec7;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.reservation-form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: #4a443c;
    font-size: 0.88rem;
    font-weight: 700;
}

.reservation-form label:last-of-type,
.reservation-form .btn {
    grid-column: 1 / -1;
}

.reservation-status {
    grid-column: 1 / -1;
    margin-top: -0.1rem;
    color: var(--success);
    font-size: 0.88rem;
    font-weight: 700;
    min-height: 1.2rem;
}

.reservation-status.error {
    color: #c84032;
}

.reservation-form input,
.reservation-form textarea {
    width: 100%;
    border: 1px solid #e2d4c0;
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
    font: inherit;
    color: #232323;
    background: #fffdf9;
}

.reservation-form input:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: #ff8b47;
    box-shadow: 0 0 0 3px rgba(255, 139, 71, 0.2);
}

.footer {
    background: #151515;
    color: #ebe2d8;
    padding: 3.2rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.4rem;
}

.brand-footer {
    color: #fff;
}

.footer h3 {
    font-size: 1.3rem;
    margin-bottom: 0.55rem;
}

.footer p {
    color: #cbbfb1;
    line-height: 1.6;
}

.map-wrap iframe {
    width: 100%;
    min-height: 240px;
    border: 0;
}

.copyright {
    text-align: center;
    margin-top: 1rem;
    color: #b4a391;
    font-size: 0.9rem;
}

.demo-note {
    text-align: center;
    color: #9f8e7d;
    font-size: 0.82rem;
    margin-top: 0.4rem;
}

.cover-image.is-missing {
    object-fit: contain;
    padding: 1rem;
    background: linear-gradient(145deg, #f5ebe0, #ece0d1);
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 20;
    background: #1fae4b;
    color: #fff;
    border-radius: 999px;
    padding: 0.75rem 1.1rem;
    font-weight: 800;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    background: #17853a;
}

.menu-page .header {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.menu-hero {
    padding-bottom: 2.6rem;
}

.menu-group {
    margin-bottom: 2.2rem;
}

.menu-group h2 {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    margin-bottom: 1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.menu-item-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #efdfca;
    box-shadow: 0 10px 24px rgba(31, 17, 2, 0.08);
}

.menu-item-card .cover-image {
    height: 185px;
}

.menu-item-card h3 {
    font-size: 1.45rem;
    padding: 0.8rem 0.8rem 0.3rem;
}

.menu-item-card p {
    padding: 0 0.8rem;
    color: var(--muted);
    line-height: 1.55;
    min-height: 3.2em;
}

.menu-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
}

.menu-item-footer span {
    color: #171717;
    font-weight: 800;
}

.menu-item-footer a {
    background: var(--brand);
    color: #fff;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    font-weight: 700;
    font-size: 0.88rem;
}

.menu-item-footer a:hover {
    background: var(--brand-dark);
}

.checkout-page {
    background: #f4efe8;
}

.checkout-header {
    background: #171717;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 0 1rem;
}

.checkout-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.checkout-steps {
    background: #fff;
    border: 1px solid #e9dbc6;
    border-radius: 16px;
    padding: 0.9rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #766b5f;
}

.step span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbc9b4;
    font-weight: 800;
}

.step p {
    font-size: 0.84rem;
    color: #6a6056;
    font-weight: 700;
}

.step.is-active span {
    background: #8f2818;
    border-color: #8f2818;
    color: #fff;
}

.step.is-active p {
    color: #2a241e;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.14fr 1fr 0.95fr;
    gap: 0.9rem;
}

.checkout-card {
    background: #fff;
    border: 1px solid #e8dac6;
    border-radius: 16px;
    padding: 0.9rem;
}

.checkout-card h2 {
    font-size: 1.45rem;
    margin-bottom: 0.8rem;
}

.checkout-categories {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.45rem;
    margin-bottom: 0.9rem;
}

.cat-btn {
    border: 1px solid #ead8c1;
    background: #fff;
    border-radius: 10px;
    padding: 0.48rem 0.25rem;
    color: #4f473f;
    font-weight: 700;
    cursor: pointer;
}

.cat-btn.is-active {
    border-color: #8f2818;
    color: #8f2818;
    box-shadow: inset 0 -2px 0 #8f2818;
}

.checkout-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.product-card {
    border: 1px solid #efe2d1;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.product-card .cover-image {
    height: 90px;
}

.product-card h3 {
    font-size: 0.85rem;
    padding: 0.5rem 0.5rem 0.15rem;
    min-height: 2.5em;
}

.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0.5rem 0.5rem;
}

.product-row strong {
    font-size: 0.84rem;
}

.add-btn {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    border: none;
    background: #8f2818;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.checkout-cart {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 0.8rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 0.55rem;
    align-items: center;
    border: 1px solid #f0e2d0;
    border-radius: 10px;
    padding: 0.4rem;
}

.cart-item .cover-image {
    height: 58px;
    border-radius: 8px;
}

.cart-item-copy h3 {
    font-size: 0.84rem;
}

.cart-item-copy p {
    color: #61594f;
    font-size: 0.8rem;
}

.qty-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.qty-btn {
    width: 23px;
    height: 23px;
    border: 1px solid #decab0;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.empty-cart {
    font-size: 0.86rem;
    color: #7b7064;
    border: 1px dashed #e4d2bc;
    border-radius: 10px;
    padding: 0.7rem;
}

.checkout-summary-lines,
.checkout-summary-box {
    border: 1px solid #efdfc9;
    border-radius: 11px;
    padding: 0.65rem;
    margin-bottom: 0.8rem;
}

.checkout-summary-lines p,
.checkout-summary-box p {
    display: flex;
    justify-content: space-between;
    color: #594f45;
    font-size: 0.88rem;
    margin-bottom: 0.42rem;
}

.checkout-summary-lines p:last-child,
.checkout-summary-box p:last-child {
    margin-bottom: 0;
}

.checkout-total {
    border-top: 1px solid #ead9c3;
    padding-top: 0.45rem;
    color: #1e1b18;
    font-weight: 800;
}

.delivery-mode {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    margin-bottom: 0.7rem;
}

.mode-btn {
    border: 1px solid #e2d0bb;
    background: #fff;
    border-radius: 10px;
    padding: 0.48rem 0.5rem;
    font-weight: 700;
    color: #61574d;
    cursor: pointer;
}

.mode-btn.is-active {
    border-color: #8f2818;
    color: #8f2818;
    background: #fef7f5;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: #51493f;
    margin-bottom: 0.65rem;
}

.checkout-field input {
    border: 1px solid #e2d2bc;
    border-radius: 9px;
    padding: 0.58rem 0.65rem;
    font: inherit;
}

.payment-group {
    border: 1px solid #ebdbc6;
    border-radius: 11px;
    padding: 0.65rem;
    margin-bottom: 0.8rem;
}

.payment-label {
    font-size: 0.84rem;
    color: #6a5f54;
    margin-bottom: 0.45rem;
    font-weight: 700;
}

.pay-option {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: #38312a;
    margin-bottom: 0.45rem;
}

.pay-option:last-child {
    margin-bottom: 0;
}

.checkout-submit {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 0.55rem;
    background: #8f2818;
}

.checkout-note {
    color: #6f6458;
    font-size: 0.8rem;
}

.reveal-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.22s;
}

@media (max-width: 980px) {
    .hero,
    .about-layout,
    .reservation-wrap {
        grid-template-columns: 1fr;
    }

    .category-grid,
    .special-grid,
    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .hero-copy h1 {
        font-size: clamp(2.8rem, 8vw, 4.7rem);
    }

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

    .checkout-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .checkout-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .nav {
        position: relative;
        z-index: 50;
    }

    .nav-toggle {
        display: inline-flex;
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.5rem);
        right: 0;
        z-index: 60;
        background: #1f1f1f;
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 12px;
        width: min(280px, 95vw);
        padding: 0.9rem;
        flex-direction: column;
        align-items: stretch;
        display: none;
        box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
        pointer-events: auto;
    }

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

    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        display: block;
        width: 100%;
        color: #fff8ee;
        padding: 0.62rem 0.72rem;
        border-radius: 9px;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
        color: #fff;
        background: rgba(244, 91, 0, 0.25);
    }

    .nav-links .btn-nav {
        margin-top: 0.3rem;
        text-align: center;
        background: linear-gradient(135deg, var(--brand), #ff7b1d);
        border: none;
    }

    .header {
        overflow: visible;
    }

    .btn-nav {
        width: 100%;
    }

    .category-grid,
    .special-grid,
    .feature-grid,
    .media-grid,
    .footer-grid,
    .reservation-form,
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-item-card p {
        min-height: auto;
    }

    .whatsapp-float {
        right: 0.7rem;
        bottom: 0.7rem;
        padding: 0.65rem 0.95rem;
        font-size: 0.88rem;
    }

    .hero-highlights {
        gap: 0.5rem;
    }

    .section {
        padding: 3.6rem 0;
    }

    .checkout-categories,
    .checkout-products {
        grid-template-columns: 1fr;
    }

    .checkout-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

