:root {
    --black: #060503;
    --chalk: #f7f1e4;
    --muted: #cbbf9d;
    --orange: #f97316;
    --red: #dc2626;
    --green: #78b82a;
    --gold: #f3b13e;
    --blue: #1eb7d8;
    --ink: #15110b;
    --panel: rgba(12, 10, 7, 0.88);
    --line: rgba(249, 115, 22, 0.35);
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(120, 184, 42, 0.18), transparent 24rem),
        radial-gradient(circle at 80% 12%, rgba(220, 38, 38, 0.16), transparent 22rem),
        linear-gradient(180deg, #0a0704 0%, #160d07 44%, #080604 100%);
    color: var(--chalk);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

body.has-status-strip .site-header {
    top: var(--strip-height, 34px);
}

body.has-status-strip main {
    padding-top: calc(78px + var(--strip-height, 34px));
}

main {
    padding-top: 78px;
}

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

a {
    color: inherit;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
    padding: 14px clamp(16px, 4vw, 52px);
    background: rgba(6, 5, 3, 0.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 2px solid var(--orange);
    background: var(--black);
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 0;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1rem;
    text-transform: uppercase;
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a,
.nav-toggle,
.btn,
.floating-order,
.text-link,
.order-link {
    min-height: 42px;
}

.site-nav a,
.nav-toggle {
    border: 1px solid transparent;
    padding: 10px 14px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--chalk);
    border-color: rgba(247, 241, 228, 0.18);
}

.site-nav .nav-order-btn,
.btn-primary,
.floating-order {
    background: var(--orange);
    color: #180804;
    border-color: var(--orange);
}

.nav-toggle {
    display: none;
    background: transparent;
    color: var(--chalk);
}

.hero {
    position: relative;
    min-height: calc(100vh - 78px);
    padding-top: clamp(32px, 8vh, 96px);
    display: grid;
    align-items: end;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

body.has-status-strip .hero {
    min-height: calc(100vh - 78px - var(--strip-height, 34px));
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 5, 3, 0.92) 0%, rgba(6, 5, 3, 0.64) 48%, rgba(6, 5, 3, 0.26) 100%),
        linear-gradient(0deg, rgba(6, 5, 3, 0.96) 0%, transparent 45%);
    pointer-events: none;
}

.hero-media,
.page-hero-media {
    position: absolute;
    inset: 0;
}

.hero-media picture {
    display: contents;
}

.hero-media img,
.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content,
.page-hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    width: min(760px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 clamp(52px, 12vh, 110px);
    justify-self: start;
    margin-left: max(16px, calc((100vw - 1160px) / 2));
}

.eyebrow,
.mini-label {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

h1,
h2,
h3 {
    line-height: 1;
}

h1 {
    margin-bottom: 16px;
    font-size: clamp(3rem, 8vw, 6.5rem);
    text-transform: uppercase;
    text-shadow: 0 8px 0 rgba(0, 0, 0, 0.22);
    overflow-wrap: break-word;
    word-break: break-word;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    text-transform: uppercase;
}

h3 {
    font-size: 1.1rem;
}

.hero-copy,
.page-hero p,
.split-section p,
.hours-home p,
.site-footer p {
    color: var(--muted);
}

.hero-copy {
    max-width: 48rem;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn,
.text-link,
.floating-order,
.order-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.btn {
    border: 1px solid rgba(247, 241, 228, 0.22);
    padding: 13px 20px;
}

.btn-secondary {
    background: rgba(247, 241, 228, 0.08);
}

.text-link,
.order-link {
    color: var(--orange);
}

.hero-rating {
    min-height: 42px;
    margin-top: 24px;
}

.status-band {
    background: #110b07;
    border-bottom: 1px solid var(--line);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.status-grid article {
    min-height: 160px;
    padding: 26px;
    background: #0b0704;
}

.status-grid strong {
    display: block;
    margin: 8px 0;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.status-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.section {
    padding: clamp(64px, 9vw, 110px) 0;
}

.split-grid,
.hours-layout,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.image-stack {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    align-items: end;
    gap: 16px;
}

.image-stack img,
.board-grid img {
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.image-stack img:first-child {
    transform: translateY(28px);
}

.section-heading,
.menu-controls {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.items-grid,
.api-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.menu-card {
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.menu-image-container,
.menu-card-img {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #0a0704;
}

.menu-image-container img,
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-fallback {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(120, 184, 42, 0.13)),
        #0a0704;
    color: rgba(247, 241, 228, 0.28);
    font-size: 5rem;
    font-weight: 950;
}

.menu-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    background: var(--green);
    color: #071004;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.menu-details,
.menu-card-body {
    padding: 20px;
}

.menu-details h3,
.menu-card-body h3 {
    margin-bottom: 10px;
    color: var(--chalk);
    text-transform: uppercase;
    font-size: 1.18rem;
    line-height: 1.15;
}

.menu-details p,
.menu-card-body p {
    min-height: 3rem;
    color: var(--muted);
}

.menu-price,
.price {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 950;
    white-space: nowrap;
}

.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
}

.menu-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 28px;
}

.menu-tags span {
    border: 1px solid rgba(120, 184, 42, 0.45);
    color: var(--green);
    padding: 3px 7px;
    font-size: 0.72rem;
    font-weight: 900;
}

.hours-table,
.contact-panel,
.hours-panel {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hours-table {
    padding: 18px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px dotted rgba(247, 241, 228, 0.28);
}

.hours-row:last-child {
    border-bottom: 0;
}

.hours-row.today {
    color: var(--gold);
}

.hours-row .day,
.footer-hours .day {
    font-weight: 900;
}

.hours-row .time,
.footer-hours .time {
    text-align: right;
    color: var(--muted);
}

.closed-day {
    color: #fb7185;
}

.page-hero {
    position: relative;
    min-height: 430px;
    display: grid;
    align-items: end;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.page-hero-content {
    padding-bottom: 56px;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    max-width: 720px;
    font-size: 1.15rem;
}

.menu-tabs {
    display: flex;
    gap: 10px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    overflow-x: auto;
}

.menu-tab {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    background: rgba(247, 241, 228, 0.06);
    color: var(--muted);
    min-height: 42px;
    padding: 10px 14px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.menu-tab.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #180804;
}

.loading-copy {
    color: var(--muted);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.board-grid img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top center;
}

.contact-grid {
    align-items: start;
}

.contact-panel,
.hours-panel {
    padding: clamp(24px, 4vw, 42px);
}

.contact-list {
    display: grid;
    gap: 18px;
    margin: 28px 0;
}

.contact-list div {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px dotted rgba(247, 241, 228, 0.28);
}

.contact-list dt {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.contact-list dd {
    margin: 0;
    color: var(--chalk);
}

.site-footer {
    background: #070503;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    padding: 48px 0;
}

.site-footer h3 {
    margin-bottom: 14px;
    color: var(--gold);
    text-transform: uppercase;
}

.site-footer p {
    margin-bottom: 10px;
}

.footer-hours {
    list-style: none;
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.footer-hours .today {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    padding: 18px 16px 76px;
    color: var(--muted);
    text-align: center;
}

.footer-credit {
    display: block;
    margin-top: 6px;
    font-size: 0.82rem;
}

.footer-credit a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-credit a:hover {
    color: var(--gold);
}

.floating-order {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 900;
    padding: 13px 18px;
    box-shadow: var(--shadow);
}

.google-rating-badge {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--chalk);
    text-decoration: none;
}

.rating-stars {
    color: var(--gold);
}

.rating-label {
    color: var(--muted);
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        background: rgba(6, 5, 3, 0.96);
        border: 1px solid var(--line);
    }

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

    .site-nav a {
        width: 100%;
    }

    .hero,
    body.has-status-strip .hero {
        min-height: 0;
        padding-top: 16vh;
    }

    .hero::after,
    .page-hero::after {
        background:
            linear-gradient(0deg, rgba(6, 5, 3, 0.96) 0%, rgba(6, 5, 3, 0.55) 72%, rgba(6, 5, 3, 0.22) 100%);
    }

    .hero-content {
        width: calc(100% - 32px);
        margin-left: 16px;
        padding-bottom: 64px;
    }

    h1 {
        font-size: clamp(2.4rem, 11vw, 5rem);
    }

    .status-grid,
    .split-grid,
    .hours-layout,
    .contact-grid,
    .footer-grid,
    .board-grid {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .menu-controls {
        align-items: start;
        flex-direction: column;
    }

    .board-grid img {
        height: auto;
        max-height: 760px;
    }

    .contact-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 560px) {
    .site-header {
        min-height: 70px;
    }

    main {
        padding-top: 70px;
    }

    body.has-status-strip main {
        padding-top: calc(70px + var(--strip-height, 34px));
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand strong {
        font-size: 0.9rem;
    }

    .hero-actions,
    .contact-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .image-stack {
        grid-template-columns: 1fr;
    }

    .image-stack img:first-child {
        transform: none;
    }

    .hours-row {
        align-items: start;
    }
}
