:root {
    --color-bg: #f6f2e9;
    --color-surface: #ffffff;
    --color-ink: #1f2a2b;
    --color-brand: #b52a2a;
    --color-brand-dark: #8f1f1f;
    --color-accent: #196f3d;
    --color-border: #d8d0c2;
    --shadow-soft: 0 8px 24px rgba(20, 20, 20, 0.12);
    --content-width: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    background: linear-gradient(160deg, #f6f2e9 0%, #fdfbf6 70%, #efe5d0 100%);
    color: var(--color-ink);
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #111111;
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    padding: 0.65rem 1rem;
    background: #111111;
    color: #ffffff;
    z-index: 1000;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.container {
    width: min(100% - 2rem, var(--content-width));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(246, 242, 233, 0.96);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(8px);
}

.nav-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    min-height: 4.75rem;
}

.brand {
    font-family: "Bebas Neue", "Trebuchet MS", sans-serif;
    font-size: clamp(1.85rem, 2vw + 1rem, 2.35rem);
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--color-brand);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 700;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    background: #efe4d2;
    color: var(--color-brand-dark);
}

body.sidebar-open {
    overflow: hidden;
}

.sidebar-toggle {
    display: none;
    border: 1px solid var(--color-border);
    background: #ffffff;
    color: var(--color-ink);
    border-radius: 10px;
    padding: 0.5rem 0.45rem;
    width: 2.5rem;
    height: 2.25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.sidebar-toggle:hover {
    background: #f2ece0;
}

.sidebar-toggle .bar {
    display: block;
    width: 1.2rem;
    height: 2px;
    background: var(--color-ink);
    border-radius: 2px;
}

.sidebar-backdrop {
    display: none;
}

.sidebar {
    display: none;
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    padding: 1.2rem;
}

.sidebar-close {
    align-self: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #ffffff;
    border-radius: 10px;
    width: 2rem;
    height: 2rem;
    padding: 0;
    font-size: 1.3rem;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
}

.sidebar-title {
    margin: 0;
    font-family: "Bebas Neue", "Trebuchet MS", sans-serif;
    letter-spacing: 0.03em;
    font-size: 2rem;
}

.sidebar-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.sidebar-links a {
    display: block;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.sidebar-links a:hover,
.sidebar-links a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.18);
}


.hero {
    position: relative;
    min-height: 70vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.66);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-align: center;
    padding-block: 5rem;
}

.eyebrow {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

h1,
h2,
h3 {
    font-family: "Bebas Neue", "Trebuchet MS", sans-serif;
    letter-spacing: 0.03em;
    margin: 0;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 0.75rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.1;
}

p {
    margin-top: 0;
}

.hero-text {
    max-width: 40ch;
    font-size: clamp(1rem, 1.2vw + 0.8rem, 1.3rem);
    margin-bottom: 1.25rem;
    margin-left: auto;
    margin-right: auto;
}

.button {
    display: inline-block;
    border: 2px solid transparent;
    border-radius: 999px;
    padding: 0.65rem 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--color-brand);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

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

.button-secondary {
    background: var(--color-accent);
    color: #000000;
}

.button-secondary:hover {
    background: #000000;
}

.visit-us-section,
.content-section {
    padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.section-header {
    margin-bottom: 1.4rem;
}

.section-header p {
    margin-top: 0.5rem;
    max-width: 58ch;
}

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

.map-card,
.content-card,
.hours-card,
.details-card,
.gallery-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
}

.map-card p {
    margin: 0.25rem 0 0.85rem;
}

.map-card iframe {
    width: 100%;
    min-height: 300px;
    border: 0;
    border-radius: 10px;
}

.site-footer {
    background: #112325;
    color: #ffffff;
    padding-block: 2.4rem;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.footer-brand {
    margin: 0;
    font-family: "Bebas Neue", "Trebuchet MS", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
}

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

.footer-social-icon {
    width: 52px;
    height: 52px;
}

.facebook-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.page-main {
    padding-top: 0.6rem;
}

.page-intro {
    padding-block: clamp(2.4rem, 5vw, 4rem) 1.5rem;
}

.page-intro p {
    max-width: 64ch;
}

.menu-page-intro {
    position: relative;
    padding-bottom: 2.25rem;
}

.menu-page-intro::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(31, 42, 43, 0), rgba(31, 42, 43, 0.18), rgba(31, 42, 43, 0));
}

.menu-kicker {
    margin: 0 0 0.6rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(31, 42, 43, 0.64);
}

.menu-showcase {
    position: relative;
}

.menu-showcase::before,
.street-taco-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 20%, rgba(31, 42, 43, 0.03) 0, rgba(31, 42, 43, 0.03) 90px, transparent 91px),
        radial-gradient(circle at 84% 18%, rgba(31, 42, 43, 0.025) 0, rgba(31, 42, 43, 0.025) 72px, transparent 73px),
        radial-gradient(circle at 55% 78%, rgba(31, 42, 43, 0.025) 0, rgba(31, 42, 43, 0.025) 120px, transparent 121px);
}

.menu-editorial-grid {
    display: grid;
    gap: clamp(2.5rem, 6vw, 5rem);
}

.menu-feature,
.street-taco-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
}

.menu-feature--right .menu-copy {
    order: 1;
}

.menu-feature--right .menu-photo-frame {
    order: 2;
}

.menu-copy {
    max-width: 25rem;
}

.menu-copy h2,
.street-taco-copy h2 {
    font-size: clamp(2.9rem, 5vw, 4.4rem);
    line-height: 1.05;
    margin-bottom: 0.9rem;
}

.menu-copy p,
.street-taco-copy p {
    font-size: clamp(1.05rem, 1.2vw + 0.8rem, 1.35rem);
    line-height: 1.55;
    color: rgba(31, 42, 43, 0.9);
    margin-bottom: 0;
}

.menu-photo-frame {
    position: relative;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    color: rgba(31, 42, 43, 0.58);
    text-align: center;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(249, 244, 234, 0.94)),
        repeating-linear-gradient(135deg, rgba(17, 35, 37, 0.03) 0 10px, rgba(17, 35, 37, 0.05) 10px 20px);
    border: 1px solid rgba(31, 42, 43, 0.12);
    box-shadow: 0 18px 45px rgba(31, 42, 43, 0.08);
    overflow: hidden;
}

.menu-photo-frame::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px dashed rgba(31, 42, 43, 0.22);
    border-radius: inherit;
}

.menu-photo-frame span {
    position: relative;
    z-index: 1;
    max-width: 10ch;
}

.menu-photo-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.menu-photo-frame--round {
    width: min(100%, 320px);
    aspect-ratio: 1;
    border-radius: 50%;
    justify-self: end;
}

.menu-photo-frame--oval {
    width: min(100%, 320px);
    aspect-ratio: 4 / 5;
    border-radius: 48% 48% 46% 46% / 42% 42% 58% 58%;
    justify-self: center;
}

.menu-photo-frame--wide {
    width: min(100%, 340px);
    aspect-ratio: 16 / 10;
    border-radius: 999px;
    justify-self: end;
}

.street-taco-section {
    position: relative;
    padding-top: 0;
}

.street-taco-feature {
    padding-top: clamp(1rem, 2vw, 2rem);
    border-top: 1px solid rgba(31, 42, 43, 0.12);
}

.street-taco-copy {
    max-width: 34rem;
}

.street-taco-meats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.street-taco-meats li {
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(31, 42, 43, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    font-weight: 600;
}

.menu-photo-frame--hero {
    width: 100%;
    max-width: 430px;
    min-height: 360px;
    border-radius: 44px;
    justify-self: end;
}

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

.content-card ul {
    margin: 0.55rem 0 0;
    padding-left: 1.2rem;
}

.content-card li {
    margin-bottom: 0.3rem;
}

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

.photo-placeholder {
    border-radius: 10px;
    min-height: 190px;
    background:
        linear-gradient(125deg, rgba(181, 42, 42, 0.88), rgba(25, 111, 61, 0.84)),
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
}

.gallery-photo {
    width: 100%;
    min-height: 190px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.gallery-card figcaption {
    margin-top: 0.65rem;
    font-weight: 600;
}

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

.hours-list {
    margin: 0.75rem 0 0;
    padding-left: 1.15rem;
}

.story-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 1rem;
    align-items: start;
}

.story-feature {
    padding: 1.4rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 234, 0.98));
}

.story-kicker {
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}

.story-feature h2 {
    margin-bottom: 0.85rem;
}

.story-feature p:last-child {
    margin-bottom: 0;
}

.story-highlights {
    display: grid;
    gap: 1rem;
}

.story-note {
    position: relative;
    overflow: hidden;
}

.story-note::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: var(--color-brand);
}

.story-note h3 {
    margin-bottom: 0.45rem;
}

.story-note p {
    margin-bottom: 0;
}

.accent-note {
    background: linear-gradient(145deg, #fff1de, #ffffff);
    border-color: #e3c89c;
}

@media (max-width: 920px) {
    .nav-layout {
        flex-direction: row;
        justify-content: space-between;
        padding-block: 0.65rem;
        min-height: 4rem;
    }

    .nav-links {
        display: none;
    }

    .sidebar-toggle {
        display: inline-flex;
    }

    .sidebar-backdrop:not([hidden]) {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 65;
    }

    .sidebar:not([hidden]) {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: min(20rem, 90vw);
        height: 100vh;
        background: #112325;
        color: #ffffff;
        z-index: 70;
        border-left: 1px solid rgba(255, 255, 255, 0.24);
    }

    .map-grid,
    .content-grid,
    .gallery-grid,
    .details-grid,
    .story-layout {
        grid-template-columns: 1fr;
    }

    .menu-feature,
    .street-taco-feature {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .menu-feature--right .menu-copy,
    .menu-feature--right .menu-photo-frame {
        order: initial;
    }

    .menu-copy,
    .street-taco-copy {
        max-width: none;
    }

    .menu-photo-frame--round,
    .menu-photo-frame--oval,
    .menu-photo-frame--wide,
    .menu-photo-frame--hero {
        justify-self: start;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 1.4rem, var(--content-width));
    }

    .hero {
        min-height: 62vh;
    }

    .map-card iframe {
        min-height: 240px;
    }

    .menu-copy h2,
    .street-taco-copy h2 {
        font-size: clamp(2.4rem, 13vw, 3.25rem);
    }

    .menu-photo-frame--round,
    .menu-photo-frame--oval,
    .menu-photo-frame--wide,
    .menu-photo-frame--hero {
        width: 100%;
        max-width: none;
    }

    .menu-photo-frame--hero {
        min-height: 280px;
    }
}

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