:root {
    --bg: #11100e;
    --surface: #1b1916;
    --paper: #fbf4e8;
    --paper-soft: #f2e5d2;
    --text: #fff8ec;
    --muted: #cdbfae;
    --ink: #17120d;
    --ink-soft: #6c5b46;
    --accent: #bf4328;
    --accent-dark: #8f2f1d;
    --line: rgba(255, 248, 236, 0.14);
    --paper-line: rgba(55, 39, 22, 0.14);
    --shadow: 0 22px 64px rgba(0, 0, 0, 0.26);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px clamp(14px, 4vw, 52px);
    background: rgba(17, 16, 14, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    width: min(205px, 48vw);
    padding: 5px 8px;
    background: var(--paper);
    border-radius: 6px;
}

.brand-logo {
    display: block;
    width: 100%;
    height: auto;
}

.site-nav {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    color: var(--muted);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
}

.nav-link.active {
    color: var(--ink);
    background: var(--paper);
}

.nav-link-strong {
    color: #fff;
    background: var(--accent);
}

.home-hero {
    position: relative;
    min-height: min(700px, calc(100svh - 66px));
    display: grid;
    align-items: end;
    padding: clamp(28px, 7vw, 70px);
    overflow: hidden;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 16, 14, 0.9), rgba(17, 16, 14, 0.54) 48%, rgba(17, 16, 14, 0.12)),
        linear-gradient(0deg, rgba(17, 16, 14, 0.9), rgba(17, 16, 14, 0.08) 48%);
}

.home-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 10px;
    color: #eba15b;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    max-width: 10ch;
    margin-bottom: 18px;
    font-size: clamp(3rem, 12vw, 6.6rem);
    line-height: 0.9;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 6vw, 3.65rem);
    line-height: 1;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 560px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: clamp(1rem, 3.4vw, 1.22rem);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    text-decoration: none;
    border-radius: 7px;
    font-weight: 800;
}

.button-primary {
    color: #fff;
    background: var(--accent);
}

.button-primary:hover {
    background: var(--accent-dark);
}

.button-ghost {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
}

.about-minimal {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(48px, 9vw, 90px) clamp(18px, 5vw, 44px);
}

.about-minimal h2 {
    max-width: 780px;
    margin-bottom: 18px;
}

.about-minimal > p:last-child {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(1rem, 3vw, 1.16rem);
    line-height: 1.72;
}

.map-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(300px, 1fr);
    gap: clamp(18px, 4vw, 36px);
    align-items: stretch;
    padding: clamp(18px, 5vw, 52px);
    background: var(--paper);
    color: var(--ink);
}

.map-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: clamp(16px, 4vw, 34px);
}

.map-copy .section-kicker {
    color: var(--accent);
}

.map-copy h2 {
    font-size: clamp(2rem, 6vw, 3.4rem);
}

.map-copy p {
    margin-bottom: 4px;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.map-copy .button {
    width: fit-content;
}

.map-frame {
    min-height: 360px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--paper-line);
    box-shadow: var(--shadow);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 24px clamp(18px, 5vw, 58px);
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.site-footer p {
    margin-bottom: 0;
}

.site-footer a {
    color: var(--text);
    text-decoration: none;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.footer-contact p {
    width: 100%;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
}

.instagram-icon,
.whatsapp-icon {
    width: 22px;
    height: 22px;
}

.instagram-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.whatsapp-icon {
    fill: currentColor;
}

.menu-page {
    background: #14120f;
}

.menu-main {
    width: min(100%, 940px);
    margin: 0 auto;
    padding: 24px clamp(12px, 4vw, 28px) 42px;
}

.menu-title {
    padding: 22px 4px 16px;
    text-align: center;
}

.menu-title h1 {
    max-width: none;
    margin-bottom: 6px;
    font-size: clamp(3.4rem, 16vw, 6.5rem);
}

.menu-title p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
}

.menu-categories {
    display: flex;
    gap: 8px;
    margin: 0 -12px 16px;
    padding: 8px 12px 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.menu-categories::-webkit-scrollbar {
    display: none;
}

.menu-categories a {
    flex: 0 0 auto;
    padding: 10px 13px;
    color: var(--ink);
    background: var(--paper);
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 900;
    text-decoration: none;
}

.menu-sheet {
    display: grid;
    gap: 14px;
}

.menu-section {
    scroll-margin-top: 92px;
    padding: clamp(18px, 4vw, 30px);
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--paper-line);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.menu-section-head {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--paper-line);
}

.menu-section-head h2 {
    color: var(--ink);
    font-size: clamp(1.85rem, 8vw, 3.1rem);
}

.menu-section-head p {
    margin: 8px 0 0;
    color: var(--ink-soft);
    line-height: 1.45;
}

.menu-photos {
    margin: 0 0 14px;
}

.menu-photos img {
    display: block;
    width: 100%;
    height: clamp(170px, 36vw, 260px);
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--paper-line);
}

.two-photos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.menu-list {
    display: grid;
    gap: 0;
}

.menu-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: baseline;
    min-height: 48px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--paper-line);
}

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

.menu-item span {
    color: var(--ink);
    font-size: clamp(1rem, 4.2vw, 1.18rem);
    line-height: 1.28;
}

.menu-item strong {
    color: var(--accent-dark);
    font-size: clamp(1rem, 4.1vw, 1.16rem);
    white-space: nowrap;
}

.menu-item small {
    display: block;
    margin-top: 6px;
    color: var(--ink-soft);
    line-height: 1.45;
}

.stacked {
    display: block;
}

.delivery-box {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    padding: 16px;
    color: #fff;
    background: var(--accent);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.delivery-box p {
    margin-bottom: 0;
    font-weight: 900;
}

.delivery-box div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.delivery-box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 12px;
    color: var(--ink);
    background: var(--paper);
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
}

@media (min-width: 820px) {
    .menu-sheet {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    #carnes,
    #bebidas,
    #tragos {
        grid-row: span 2;
    }
}

@media (max-width: 760px) {
    .site-header {
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

    .brand {
        width: min(285px, 100%);
    }

    .site-nav {
        width: 100%;
    }

    .nav-link {
        flex: 1;
    }

    .home-hero {
        min-height: calc(100svh - 124px);
        padding: 24px 18px;
    }

    .home-hero::after {
        background:
            linear-gradient(0deg, rgba(17, 16, 14, 0.95), rgba(17, 16, 14, 0.18)),
            linear-gradient(90deg, rgba(17, 16, 14, 0.68), rgba(17, 16, 14, 0.08));
    }

    .button {
        width: 100%;
    }

    .map-section {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .map-copy {
        padding: 34px 20px 18px;
    }

    .map-copy .button {
        width: 100%;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 330px;
        border-radius: 0;
    }
}

@media (max-width: 430px) {
    .menu-main {
        padding-inline: 10px;
    }

    .menu-item {
        min-height: 44px;
        gap: 10px;
    }

    .menu-item strong {
        font-size: 0.98rem;
    }

    .two-photos {
        grid-template-columns: 1fr;
    }

    .menu-photos img {
        height: 190px;
    }
}
