:root {
    --ink: #0f172a;
    --muted: #64748b;
    --paper: #eceff3;
    --surface: #ffffff;
    --clay: #13253b;
    --spice: #dc2626;
    --gold: #f5d547;
    --line: #d5dbe3;
    --soft: #fee2e2;
    --radius: .4rem;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "IBM Plex Sans", system-ui, sans-serif;
    background:
        repeating-linear-gradient(
            -12deg,
            transparent,
            transparent 11px,
            rgba(19, 37, 59, .03) 11px,
            rgba(19, 37, 59, .03) 12px
        ),
        var(--paper);
    color: var(--ink);
    line-height: 1.55;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main { flex: 1; }
a { color: var(--clay); }
img { max-width: 100%; height: auto; }
.wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

.site-header {
    padding: 0;
    background: var(--clay);
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 20;
}
.site-header .header-inner {
    padding-top: .85rem;
    padding-bottom: .85rem;
}
.site-footer { padding: 0; }

.brand {
    font-family: Sora, "IBM Plex Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -.03em;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
}
.brand-mark {
    width: 2rem;
    height: 2rem;
    border-radius: .35rem;
    display: block;
}
.nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .92rem;
    align-items: center;
    font-weight: 600;
}
.nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, .88);
}
.nav a:hover,
.nav a.is-current { color: var(--gold); }
.nav a.is-current {
    border-bottom: 2px solid var(--gold);
    padding-bottom: .1rem;
}
.nav a.btn,
.nav a.btn:hover {
    color: var(--ink);
    background: var(--gold);
    border-bottom: 0;
    padding-bottom: .55rem;
}
.nav .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .45);
}
.nav .btn-ghost:hover {
    background: #fff;
    color: var(--clay);
    border-color: #fff;
}

.hero { padding: 2.6rem 0 1.6rem; }
.hero h1 {
    font-family: Sora, "IBM Plex Sans", sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.05;
    max-width: 14ch;
    margin: 0 0 1rem;
    font-weight: 700;
    letter-spacing: -.04em;
}
.hero .product-card--feature h1 {
    font-size: clamp(1.6rem, 3.4vw, 2.3rem);
    max-width: none;
    margin: 0 0 .6rem;
}
.eyebrow {
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .68rem;
    font-weight: 700;
    color: var(--spice);
}
.lede { max-width: 36rem; color: var(--muted); font-size: 1.05rem; }

.btn {
    display: inline-block;
    background: var(--spice);
    color: #fff;
    text-decoration: none;
    padding: .85rem 1.15rem;
    border: 0;
    border-radius: var(--radius);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: filter .15s ease, opacity .15s ease, transform .15s ease;
}
.btn:hover { filter: brightness(1.06); color: #fff; }
.btn:disabled,
.btn[disabled] {
    opacity: .45;
    cursor: not-allowed;
    filter: none;
}
.btn-ghost {
    background: transparent;
    color: var(--clay);
    border: 2px solid var(--clay);
}
.btn-ghost:hover {
    background: var(--clay);
    color: #fff;
    filter: none;
}

.grid { display: grid; gap: 1.15rem; align-items: stretch; }
.grid-3 > .empty-state { grid-column: 1 / -1; }
.days,
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
    .days,
    .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 800px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
    .days,
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 1.3rem;
    border-radius: var(--radius);
}
.panel h3 {
    font-family: Sora, "IBM Plex Sans", sans-serif;
    margin: 0 0 .4rem;
    font-weight: 700;
}
.panel-ink {
    background: var(--clay);
    color: #fff;
    border-color: transparent;
}
.panel-ink .eyebrow { color: var(--gold); }
.panel-ink h3 { color: #fff; }
.panel-ink .item-list { color: rgba(255, 255, 255, .82); }

.item-list { margin: 0; padding-left: 1.1rem; color: var(--muted); }
label { display: block; margin: .7rem 0 .3rem; font-weight: 600; }
input, select, textarea {
    width: 100%;
    font: inherit;
    padding: .75rem .85rem;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    max-width: 100%;
    border-radius: var(--radius);
}
input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--gold);
    outline-offset: 1px;
}
input[type="checkbox"],
input[type="radio"] {
    width: auto;
    padding: 0;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--spice);
    outline-offset: 2px;
}
.flash {
    background: #ecfdf5;
    border-left: 4px solid #059669;
    padding: .8rem 1rem;
    margin: 1rem 0;
    border-radius: var(--radius);
}
.errors {
    background: var(--soft);
    border-left: 4px solid var(--spice);
    padding: .8rem 1rem;
    margin: 1rem 0;
    border-radius: var(--radius);
}
.table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 40rem; }
.table th, .table td {
    text-align: left;
    padding: .7rem .45rem;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
.tabs { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.1rem 0 0; }
.tabs a, .tabs button {
    background: var(--surface);
    border: 1px solid var(--line);
    padding: .4rem .85rem;
    text-decoration: none;
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
}
.tabs .is-active {
    background: var(--clay);
    border-color: var(--clay);
    color: #fff;
}
.status {
    font-size: .76rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--spice);
    font-weight: 700;
}
.ops { font-size: .95rem; }
.ops-nav { display: flex; gap: .7rem; flex-wrap: wrap; margin: 1rem 0 1.5rem; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 40;
    background: var(--spice);
    color: #fff;
    padding: .6rem 1rem;
    text-decoration: none;
    border-radius: var(--radius);
}
.skip-link:focus { top: .75rem; }
h1, h2, h3, .page-title, .lede, .brand { overflow-wrap: anywhere; }
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
    min-width: 0;
}
.nav-toggle {
    display: none;
    width: 2.6rem;
    height: 2.4rem;
    border: 1px solid rgba(255, 255, 255, .35);
    background: transparent;
    padding: .45rem;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius);
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
}
.btn-nav { padding: .5rem .95rem; font-size: .88rem; }
.nav form { display: inline; }

/* Stamp-board hero: full-bleed photo + type on ink wash (no floating card) */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: #0a1420;
}
.hero-slider .slides { min-height: inherit; }
.hero-slider .slide {
    display: none;
    position: relative;
    min-height: min(78vh, 640px);
    background-size: cover;
    background-position: center;
}
.hero-slider .slide.is-active { display: block; }
.slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4.5rem 0 3.5rem;
    background:
        linear-gradient(90deg, rgba(10, 20, 32, .88) 0%, rgba(10, 20, 32, .62) 48%, rgba(10, 20, 32, .25) 100%);
    z-index: 1;
}
.slide-overlay .wrap {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}
.hero-stamp-copy {
    max-width: 34rem;
    margin: 0;
    text-align: left;
}
.brand-mega {
    font-family: Sora, "IBM Plex Sans", sans-serif;
    font-size: clamp(2.8rem, 8vw, 5.2rem);
    font-weight: 700;
    letter-spacing: -.06em;
    line-height: .92;
    margin: 0 0 .85rem;
    color: var(--gold);
    text-transform: uppercase;
    text-align: left;
}
.hero-stamp .eyebrow {
    color: var(--gold);
    margin: 0 0 .55rem;
    text-align: left;
}
.hero-stamp h1 {
    font-family: Sora, "IBM Plex Sans", sans-serif;
    font-size: clamp(1.7rem, 3.8vw, 2.6rem);
    line-height: 1.08;
    max-width: 14ch;
    margin: 0 0 .85rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -.03em;
    text-align: left;
}
.hero-stamp .lede {
    color: rgba(255, 255, 255, .82);
    margin: 0 0 1.15rem;
    text-align: left;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    justify-content: flex-start;
}
.btn-ghost.light {
    color: #fff;
    border-color: rgba(255, 255, 255, .7);
    background: transparent;
}
.btn-ghost.light:hover {
    background: #fff;
    color: var(--clay);
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    cursor: pointer;
    font-size: 1.35rem;
    z-index: 2;
}
.slider-btn.prev { left: 1rem; }
.slider-btn.next { right: 1rem; }
.slider-dots {
    position: absolute;
    bottom: 1.1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: .4rem;
    z-index: 2;
}
.slider-dots .dot {
    width: .7rem;
    height: .7rem;
    border-radius: 2px;
    border: 0;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
}
.slider-dots .dot.is-active { background: var(--gold); }

.ticket-strip {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    margin: 0 0 2.2rem;
    padding: 0;
}
.ticket-rail {
    display: grid;
    gap: 0;
}
.ticket-row {
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.25rem 0;
    border-bottom: 1px dashed var(--line);
}
.ticket-row:last-child { border-bottom: 0; }
.ticket-mark {
    font-family: Sora, "IBM Plex Sans", sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--clay);
    border: 2px solid var(--clay);
    border-radius: 999px;
    width: 3.6rem;
    height: 3.6rem;
    display: grid;
    place-items: center;
    transform: rotate(-8deg);
    background: var(--gold);
}
.ticket-row h3 {
    margin: 0 0 .25rem;
    font-family: Sora, "IBM Plex Sans", sans-serif;
    font-weight: 700;
}
.ticket-row p { color: var(--muted); margin: 0; }
.section-title {
    font-family: Sora, "IBM Plex Sans", sans-serif;
    font-weight: 700;
    letter-spacing: -.02em;
}

.product-card,
.day-card,
.day-card.panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    height: 100%;
    padding: 0 0 1.15rem;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: none;
}
.product-card .card-body,
.day-card > *:not(.card-photo):not(.day-photo):not(.day-card-media) {
    margin-left: 1rem;
    margin-right: 1rem;
}
.product-card .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: .85rem;
    margin-left: 1.1rem;
    margin-right: 1.1rem;
}
.product-card h3,
.day-card h3 {
    font-family: Sora, "IBM Plex Sans", sans-serif;
    margin: .2rem 0 .45rem;
    font-weight: 700;
}
.day-card-media { position: relative; }
.date-suite {
    position: absolute;
    left: .8rem;
    bottom: .8rem;
    margin: 0;
    padding: .5rem .75rem .45rem;
    background: var(--clay);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    line-height: 1.1;
    max-width: calc(100% - 1.6rem);
    color: #fff;
}
.date-suite time {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}
.date-suite-weekday {
    font-family: Sora, "IBM Plex Sans", sans-serif;
    font-size: .92rem;
    font-weight: 700;
    color: #fff;
}
.date-suite-when {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
}
.day-card-media + h3,
.day-card-media + .item-list { margin-top: .9rem; }
.product-card .btn,
.day-card .btn { margin-top: auto; }
.product-card--feature .btn { align-self: flex-start; }
.card-price {
    font-weight: 700;
    color: var(--spice);
    margin: 0 0 .35rem;
}
.card-photo,
.day-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
    flex-shrink: 0;
}
.product-card--feature {
    display: grid;
    padding-bottom: 0;
    height: auto;
    margin-bottom: 1.5rem;
}
.product-card--feature .card-photo {
    height: 200px;
    margin-bottom: 0;
}
.product-card--feature .card-body {
    padding: 1.25rem 1.35rem 1.4rem;
    margin: 0;
}
.cart-line {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0;
    overflow: hidden;
    align-items: stretch;
}
.cart-line .card-photo {
    height: 120px;
    margin: 0;
}
.cart-line .card-body { margin: 1rem 1rem .2rem; }
.cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: flex-end;
    padding: 0 1rem 1rem;
}

.footer-grid {
    display: grid;
    gap: 1.25rem;
    padding: 2rem 0 2.2rem;
}
.footer-grid a {
    display: block;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}
.footer-grid a:hover { color: #fff; }
.footer-meta { color: rgba(255, 255, 255, .65); font-size: .9rem; margin: .35rem 0 0; }
.site-footer {
    border-top: 0;
    background: var(--clay);
    color: #fff;
}
.site-footer .brand { color: #fff; }
.empty-state { text-align: left; padding: 1.6rem; }
.empty-state h2 {
    font-family: Sora, "IBM Plex Sans", sans-serif;
    margin: 0 0 .4rem;
}
.empty-state p { color: var(--muted); margin: 0 0 1rem; }
.error-page .lede { margin-bottom: 1.25rem; }

.menu-week-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.15rem;
}
.menu-week-head .section-title { margin: .2rem 0 0; }
.menu-week-nav { display: flex; gap: .4rem; flex-shrink: 0; }
.menu-week-nav button {
    width: 2.4rem;
    height: 2.4rem;
    border: 0;
    background: var(--clay);
    color: #fff;
    font: inherit;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    border-radius: var(--radius);
}
.menu-week-nav button:hover { filter: brightness(1.06); }
.menu-week-nav button:disabled {
    opacity: .35;
    cursor: not-allowed;
    filter: none;
}
.menu-slider-viewport { overflow: hidden; }
.menu-slider-track {
    display: flex;
    gap: 1.15rem;
    transition: transform .35s ease;
}
.menu-slider-track .day-card {
    flex: 0 0 100%;
    max-width: 100%;
    height: auto;
}
.menu-slider-dots {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: 1rem;
}
.menu-slider-dots .dot {
    width: .65rem;
    height: .65rem;
    border: 0;
    border-radius: 2px;
    background: var(--line);
    cursor: pointer;
}
.menu-slider-dots .dot.is-active { background: var(--spice); }
@media (min-width: 640px) {
    .menu-slider-track .day-card { flex-basis: calc((100% - 1.15rem) / 2); }
}
@media (min-width: 960px) {
    .menu-slider-track .day-card { flex-basis: calc((100% - 2.3rem) / 3); }
    .ticket-rail { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .ticket-row {
        border-bottom: 0;
        border-right: 1px dashed var(--line);
        padding: 1.5rem 1.25rem 1.5rem 0;
    }
    .ticket-row:last-child { border-right: 0; padding-right: 0; }
}

@media (min-width: 800px) {
    .footer-grid { grid-template-columns: 1.4fr .7fr .7fr; }
}
@media (max-width: 1079px) {
    .nav-toggle { display: flex; }
    .nav {
        display: none;
        position: absolute;
        top: calc(100% + .4rem);
        right: 0;
        left: 0;
        background: var(--clay);
        border: 1px solid rgba(255, 255, 255, .15);
        padding: 1rem;
        flex-direction: column;
        z-index: 21;
        border-radius: var(--radius);
        box-shadow: 0 16px 32px rgba(15, 23, 42, .25);
    }
    .nav.is-open { display: flex; }
    .nav .btn,
    .nav .btn-ghost { width: 100%; text-align: center; }
    .nav a.is-current {
        border-bottom: 0;
        color: var(--gold);
    }
}
@media (max-width: 799px) {
    .hero { padding: 2rem 0 1.5rem; }
    .hero h1,
    .hero-stamp h1 { max-width: none; }
    .hero-slider .slider-btn { display: none; }
    .slide-overlay { padding: 3.2rem 0 2.6rem; align-items: flex-end; }
    .brand-mega { font-size: clamp(2.4rem, 12vw, 3.4rem); }
    .cart-line { grid-template-columns: 1fr; }
    .cart-line .card-photo { height: 180px; }
    .cart-actions { padding: 0 1rem 1rem; }
}
@media (max-width: 479px) {
    .hero-actions .btn { width: 100%; text-align: center; }
}

.qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    margin: .6rem 0;
    border-radius: var(--radius);
    overflow: hidden;
}
.qty-stepper button {
    width: 2.4rem;
    height: 2.4rem;
    border: 0;
    background: var(--surface);
    font: inherit;
    cursor: pointer;
    color: var(--ink);
}
.qty-stepper button:hover { background: var(--soft); }
.qty-stepper input {
    width: 3rem;
    text-align: center;
    border: 0;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    padding: .4rem 0;
    border-radius: 0;
}
.alacarte-form {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}
.alacarte-form .btn { width: 100%; }
.page { padding: 2rem 0 4rem; }
.page-title {
    font-family: Sora, "IBM Plex Sans", sans-serif;
    margin: 0 0 1rem;
    font-weight: 700;
    letter-spacing: -.02em;
}
.table-wrap { overflow-x: auto; }
.table button,
.btn-compact {
    font: inherit;
    background: var(--soft);
    border: 0;
    color: var(--spice);
    padding: .35rem .75rem;
    cursor: pointer;
    border-radius: var(--radius);
    font-weight: 700;
}
form > .btn,
form > p > .btn { margin-top: .35rem; }
.nav .btn-ghost {
    padding: .4rem .85rem;
    font-size: .88rem;
}
.ops-nav a {
    text-decoration: none;
    color: var(--muted);
    border: 1px solid var(--line);
    padding: .4rem .8rem;
    background: var(--surface);
    border-radius: var(--radius);
    font-weight: 700;
}
.ops-nav a:hover,
.ops-nav a.is-active {
    border-color: var(--clay);
    color: var(--clay);
}
@media (min-width: 800px) {
    .product-card--feature {
        grid-template-columns: 280px 1fr;
        align-items: stretch;
    }
    .product-card--feature .card-photo {
        height: 100%;
        min-height: 240px;
    }
    .cart-line {
        grid-template-columns: 140px 1fr auto;
        align-items: center;
    }
    .cart-line .card-photo { height: 140px; }
    .cart-actions { padding: 1rem 1rem 1rem 0; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .btn { transition: none; }
}
