:root {
    --ink: #2c1810;
    --muted: #6b5346;
    --paper: #f6f0e6;
    --surface: #fff8ef;
    --clay: #7a3e1d;
    --spice: #c45c26;
    --gold: #c4a35a;
    --line: #e4d6c4;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "Source Sans 3", Georgia, sans-serif;
    background: 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, .site-footer {
    padding: 1.1rem 0;
}
.site-header {
    border-bottom: 1px solid var(--line);
}
.brand {
    font-family: Fraunces, Georgia, serif;
    font-size: 1.35rem;
    text-decoration: none;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: .55rem;
}
.brand-mark {
    width: 2rem;
    height: 2rem;
    border-radius: .45rem;
    display: block;
}
.nav { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.95rem; align-items: center; }
.nav a {
    text-decoration: none;
    color: var(--ink, #2c1810);
    font-weight: 500;
}
.nav a:hover,
.nav a.is-current { color: var(--clay, #7a3e1d); }
.nav a.is-current { font-weight: 600; }
.nav a.btn,
.nav a.btn:hover {
    color: var(--surface, #fff8ef);
    font-weight: 600;
}
.hero { padding: 3.5rem 0 2.5rem; }
.hero h1 {
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    line-height: 1.05;
    max-width: 12ch;
    margin: 0 0 1rem;
}
.hero .product-card--feature h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    max-width: none;
    margin: 0 0 .6rem;
}
.eyebrow { letter-spacing: .18em; text-transform: uppercase; font-size: .72rem; color: var(--spice); }
.lede { max-width: 38rem; color: var(--muted); font-size: 1.15rem; }
.btn {
    display: inline-block;
    background: var(--clay);
    color: var(--surface);
    text-decoration: none;
    padding: .85rem 1.2rem;
    border: 0;
    font: inherit;
    cursor: pointer;
    transition: filter .15s ease, opacity .15s ease;
}
.btn:hover { filter: brightness(1.08); color: var(--surface); }
.btn:disabled,
.btn[disabled] {
    opacity: .45;
    cursor: not-allowed;
    filter: none;
}
.btn-ghost { background: transparent; color: var(--clay); border: 1px solid var(--clay); }
.btn-ghost:hover { background: var(--surface); color: var(--clay); filter: none; }
.grid { display: grid; gap: 1.25rem; 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: 1.1fr .9fr; }
}
@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.25rem;
}
.panel h3 { font-family: Fraunces, Georgia, serif; margin: 0 0 .4rem; }
.item-list { margin: 0; padding-left: 1.1rem; color: var(--muted); }
label { display: block; margin: .7rem 0 .3rem; }
input, select, textarea {
    width: 100%;
    font: inherit;
    padding: .7rem .8rem;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    max-width: 100%;
}
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: #eef5e8; border-left: 3px solid #6d8a4e; padding: .8rem 1rem; margin: 1rem 0; }
.errors { background: #f8ece6; border-left: 3px solid var(--spice); padding: .8rem 1rem; margin: 1rem 0; }
.table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 40rem; }
.table th, .table td { text-align: left; padding: .6rem .4rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.tabs a, .tabs button {
    background: transparent;
    border: 1px solid var(--line);
    padding: .4rem .8rem;
    text-decoration: none;
    color: var(--ink);
    font: inherit;
    cursor: pointer;
}
.tabs .is-active { border-color: var(--clay); color: var(--clay); }
.status { font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; color: var(--spice); }
.ops { font-size: .95rem; }
.ops-nav { display: flex; gap: .8rem; 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(--clay);
    color: var(--surface);
    padding: .6rem 1rem;
    text-decoration: none;
}
.skip-link:focus {
    top: .75rem;
}
.site-header {
    background: var(--surface);
    position: sticky;
    top: 0;
    z-index: 20;
}
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;
}
.hero-slider,
.hero-slider .slide {
    max-width: 100%;
}
.nav-toggle {
    display: none;
    width: 2.6rem;
    height: 2.4rem;
    border: 1px solid var(--line);
    background: var(--surface);
    padding: .45rem;
    flex-direction: column;
    justify-content: space-between;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
}
.btn-nav { padding: .45rem .8rem; font-size: .9rem; }
.nav form { display: inline; }
.hero-slider {
    position: relative;
    min-height: min(78vh, 640px);
    overflow: hidden;
    background: #1c100c;
}
.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;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0;
    color: #fff8ef;
    background: linear-gradient(90deg, rgba(28,16,12,.78) 0%, rgba(28,16,12,.38) 58%, rgba(28,16,12,.14) 100%);
    z-index: 1;
}
.slide-overlay .wrap {
    position: relative;
    z-index: 1;
    padding-left: 2.75rem;
    padding-right: 2.75rem;
}
.slide-overlay h1 {
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    line-height: 1.08;
    max-width: 14ch;
    margin: 0 0 1rem;
    color: #fff8ef;
}
.slide-overlay .lede { color: #f3e4d4; }
.slide-overlay .eyebrow { color: #e8b07a; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.btn-ghost.light { color: #fff8ef; border-color: #fff8ef; }
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 2.4rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255,248,239,.9);
    cursor: pointer;
    font-size: 1.4rem;
    z-index: 2;
}
.slider-btn.prev { left: 1rem; }
.slider-btn.next { right: 1rem; }
.slider-dots {
    position: absolute;
    bottom: 1.2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: .4rem;
    z-index: 2;
}
.slider-dots .dot {
    width: .7rem;
    height: .7rem;
    border-radius: 999px;
    border: 0;
    background: rgba(255,248,239,.45);
    cursor: pointer;
}
.slider-dots .dot.is-active { background: #fff8ef; }
.feature-strip {
    display: grid;
    gap: 1.25rem;
    padding: 2.5rem 0;
}
.feature-strip article {
    background: var(--surface);
    border: 1px solid var(--line);
    overflow: hidden;
}
.feature-strip img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.feature-strip h3, .feature-strip p { padding: 0 1rem; }
.feature-strip h3 { padding-top: 1rem; margin: 0 0 .35rem; font-family: Fraunces, Georgia, serif; }
.feature-strip p { padding-bottom: 1.1rem; color: var(--muted); }
.section-title { font-family: Fraunces, Georgia, serif; }
.product-card,
.day-card,
.day-card.panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    height: 100%;
    padding: 0 0 1.2rem;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
}
.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: Fraunces, Georgia, serif;
    margin: .2rem 0 .45rem;
}
.day-card-media {
    position: relative;
}
.date-suite {
    position: absolute;
    left: .85rem;
    bottom: .85rem;
    margin: 0;
    padding: .45rem .75rem .4rem;
    background: var(--surface, #fff8ef);
    border: 1px solid var(--line, #e4d6c4);
    line-height: 1.15;
    max-width: calc(100% - 1.7rem);
}
.date-suite time {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.date-suite-weekday {
    font-family: Fraunces, Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink, #2c1810);
}
.date-suite-when {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--clay, #7a3e1d);
}
.day-card-media + h3,
.day-card-media + .item-list {
    margin-top: .95rem;
}
.product-card .btn,
.day-card .btn { margin-top: auto; }
.product-card--feature .btn { align-self: flex-start; }
.card-price {
    font-weight: 600;
    color: var(--clay);
    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: 1.4rem 0 2rem;
}
.footer-grid a { display: block; color: var(--ink, #2c1810); text-decoration: none; }
.footer-grid a:hover { color: var(--clay, #7a3e1d); }
.footer-meta { color: var(--muted); font-size: .9rem; margin: .35rem 0 0; }
.site-footer { border-top: 1px solid var(--line); background: var(--surface); }
.empty-state { text-align: left; padding: 1.6rem; }
.empty-state h2 { font-family: Fraunces, Georgia, serif; margin: 0 0 .4rem; }
.empty-state p { color: var(--muted); margin: 0 0 1rem; }
.error-page .lede { margin-bottom: 1.25rem; }

@media (min-width: 800px) {
    .feature-strip { grid-template-columns: repeat(3, 1fr); }
    .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(--surface);
        border: 1px solid var(--line);
        padding: 1rem;
        flex-direction: column;
        z-index: 21;
        box-shadow: 0 10px 24px rgba(44, 24, 16, .08);
    }
    .nav.is-open { display: flex; }
    .nav .btn,
    .nav .btn-ghost { width: 100%; text-align: center; }
}
@media (max-width: 799px) {
    .hero { padding: 2rem 0 1.5rem; }
    .hero h1,
    .slide-overlay h1 { max-width: none; }
    .slider-btn { display: none; }
    .slide-overlay { padding: 2.4rem 0; }
    .slide-overlay .wrap {
        padding-left: 0;
        padding-right: 0;
    }
    .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;
}
.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(--paper); }
.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;
}
.alacarte-form {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}
.alacarte-form .btn { width: 100%; }
.page { padding: 2rem 0 4rem; }
.page-title {
    font-family: Fraunces, Georgia, serif;
    margin: 0 0 1rem;
}
.table-wrap { overflow-x: auto; }
.table button,
.btn-compact {
    font: inherit;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--clay);
    padding: .35rem .7rem;
    cursor: pointer;
}
form > .btn,
form > p > .btn {
    margin-top: .35rem;
}
.nav .btn-ghost {
    padding: .35rem .75rem;
    font-size: .9rem;
}
.ops-nav a {
    text-decoration: none;
    color: var(--muted);
    border: 1px solid var(--line);
    padding: .4rem .8rem;
    background: var(--surface);
}
.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; }
}
