:root {
    --bg: #fff8ef;
    --paper: #fff;
    --ink: #28170d;
    --muted: #76675d;
    --brand: #7a1717;
    --brand-2: #b88a00;
    --accent: #f4b23e;
    --ring: rgba(184, 138, 0, .28);
    --shadow: 0 24px 80px rgba(56, 28, 12, .14);
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(244, 178, 62, .2), transparent 30rem),
        radial-gradient(circle at 90% 10%, rgba(122, 23, 23, .13), transparent 26rem),
        var(--bg);
}
a { color: inherit; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(255, 248, 239, .82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(122, 23, 23, .1);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; text-decoration: none; }
.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), #c44727);
    box-shadow: 0 10px 24px rgba(122, 23, 23, .25);
}
.site-nav { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.site-nav a {
    padding: 10px 12px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 700;
}
.site-nav a.active, .site-nav a:hover { color: var(--ink); background: rgba(184, 138, 0, .14); }
.site-nav .lang { color: var(--brand); border: 1px solid rgba(122, 23, 23, .18); }
.nav-toggle { display: none; border: 0; background: var(--paper); border-radius: 12px; padding: 10px 12px; font-size: 1.2rem; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.section { padding: clamp(42px, 7vw, 90px) 0; }
.hero { padding: clamp(54px, 8vw, 110px) 0; overflow: hidden; }
.hero-grid, .split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 64px); align-items: center; }
.hero-grid.reverse { direction: rtl; }
.hero-grid.reverse > * { direction: ltr; }
.hero-copy h1, .section-title {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 6vw, 5.4rem);
    line-height: .95;
    letter-spacing: -.06em;
}
.section-title { font-size: clamp(2rem, 4vw, 3.8rem); }
.section-subtitle { color: var(--muted); font-size: clamp(1rem, 2vw, 1.18rem); line-height: 1.75; }
.hero-image {
    position: relative;
    min-height: 280px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(122, 23, 23, .16), rgba(244, 178, 62, .22));
    box-shadow: var(--shadow);
    overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; animation: floatPlate 8s ease-in-out infinite; }
.btn, button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--brand), #b83a22);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(122, 23, 23, .22);
    transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(122, 23, 23, .3); }
.btn-outline { background: #fff; color: var(--brand); border: 1px solid rgba(122, 23, 23, .22); box-shadow: none; }
.btn-compact { padding: 8px 13px; font-size: .9rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card, .form-card, .chat-panel, .menu-category {
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(122, 23, 23, .1);
    border-radius: 28px;
    padding: clamp(20px, 3vw, 32px);
    box-shadow: var(--shadow);
}
.menu-list { display: grid; gap: 14px; }
.menu-category { margin-bottom: 22px; }
.menu-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 248, 239, .72);
    border: 1px solid rgba(184, 138, 0, .12);
}
.menu-card { transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.menu-card:hover { transform: translateY(-3px) scale(1.01); background: #fff; box-shadow: 0 18px 42px rgba(56, 28, 12, .13); }
.price { font-weight: 900; color: var(--brand); white-space: nowrap; }
input, textarea, select {
    width: 100%;
    border: 1px solid rgba(122, 23, 23, .16);
    border-radius: 16px;
    padding: 13px 14px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--brand-2); box-shadow: 0 0 0 4px var(--ring); }
textarea { min-height: 120px; resize: vertical; }
form { display: grid; gap: 14px; }
.field-label { display: grid; gap: 8px; font-weight: 700; }
.alert { padding: 12px 14px; border-radius: 16px; background: #edf8ee; color: #155724; font-weight: 700; margin-bottom: 12px; }
.alert.error { background: #fff0f0; color: #8b1515; }
.chat-shell { max-width: 900px; }
.chat-header, .chat-actions { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.chat-status { padding: 7px 10px; border-radius: 999px; background: rgba(184, 138, 0, .14); font-weight: 800; }
.chat-messages { display: grid; gap: 12px; min-height: 260px; max-height: 520px; overflow: auto; padding: 14px 0; }
.chat-message {
    width: min(82%, 620px);
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff8ef;
    animation: messagePop .25s ease both;
}
.chat-message.customer { margin-left: auto; background: #7a1717; color: #fff; }
.chat-message p { margin: 6px 0; line-height: 1.55; }
.chat-message small { opacity: .7; }
.chat-grid, .menu-checkout-grid, .card-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.assistant-fab { position: fixed; right: 22px; bottom: 22px; z-index: 40; }
.assistant-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: #fff;
    font-weight: 1000;
    cursor: pointer;
    box-shadow: 0 18px 50px rgba(122, 23, 23, .34);
}
.assistant-pulse {
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    border: 2px solid rgba(184, 138, 0, .45);
    animation: pulseRing 2.2s ease-out infinite;
}
.assistant-panel {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: min(360px, calc(100vw - 32px));
    padding: 16px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    border: 1px solid rgba(122, 23, 23, .12);
    animation: panelIn .22s ease both;
}
.assistant-panel-head { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.assistant-panel-head small { display: block; color: var(--muted); margin-top: 3px; }
.assistant-panel-head button { border: 0; background: #fff1e0; border-radius: 999px; width: 30px; height: 30px; font-size: 1.1rem; cursor: pointer; }
.assistant-suggestions { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.assistant-suggestions button {
    border: 1px solid rgba(122, 23, 23, .14);
    background: #fff8ef;
    border-radius: 999px;
    padding: 8px 10px;
    cursor: pointer;
    font-weight: 700;
}
.assistant-mini-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.assistant-mini-form button { border: 0; border-radius: 14px; padding: 0 14px; background: var(--brand); color: #fff; font-weight: 900; cursor: pointer; }
.assistant-note { color: var(--muted); font-size: .9rem; line-height: 1.45; }
.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 34px clamp(18px, 4vw, 56px);
    background: #28170d;
    color: #fff8ef;
}
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.hero-animate .hero-copy { animation: riseIn .7s ease both; }
.hero-animate .hero-image { animation: riseIn .8s ease .12s both; }
@keyframes riseIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes floatPlate { 0%, 100% { transform: scale(1.02) translateY(0); } 50% { transform: scale(1.05) translateY(-8px); } }
@keyframes pulseRing { from { opacity: .9; transform: scale(.85); } to { opacity: 0; transform: scale(1.35); } }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes messagePop { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: none; } }
@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; }
    .site-nav { display: none; position: absolute; top: 72px; left: 18px; right: 18px; padding: 14px; background: #fff; border-radius: 22px; box-shadow: var(--shadow); }
    .site-nav.is-open { display: grid; }
    .hero-grid, .split, .grid-3, .chat-grid, .menu-checkout-grid, .card-field-grid { grid-template-columns: 1fr; }
    .menu-item, .site-footer { flex-direction: column; }
}

/* Premium restaurant polish */
:root {
    --brand-dark: #3b0b0b;
    --cream: #fff3df;
    --copper: #c86d31;
    --soft-shadow: 0 14px 40px rgba(56, 28, 12, .1);
}

body {
    background:
        linear-gradient(180deg, rgba(255, 248, 239, .92), rgba(255, 243, 223, .92)),
        radial-gradient(circle at top left, rgba(244, 178, 62, .24), transparent 30rem),
        radial-gradient(circle at 90% 10%, rgba(122, 23, 23, .16), transparent 26rem),
        var(--bg);
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: .32;
    background-image:
        linear-gradient(rgba(122, 23, 23, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122, 23, 23, .04) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.site-header {
    padding: 12px clamp(18px, 4vw, 56px);
    background: rgba(255, 248, 239, .76);
    box-shadow: 0 12px 32px rgba(56, 28, 12, .07);
}

.brand {
    letter-spacing: -.03em;
}

.brand-mark {
    background:
        radial-gradient(circle at 30% 25%, rgba(255,255,255,.36), transparent 24px),
        linear-gradient(135deg, var(--brand), #c44727);
}

.site-nav a {
    transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.site-nav a.active,
.site-nav a:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 1px rgba(184, 138, 0, .08);
}

.hero {
    position: relative;
    margin: clamp(14px, 2vw, 28px) auto 0;
    width: min(1240px, calc(100% - 24px));
    border-radius: clamp(28px, 5vw, 56px);
    color: #fff8ef;
    background:
        radial-gradient(circle at 72% 24%, rgba(244, 178, 62, .32), transparent 24rem),
        radial-gradient(circle at 15% 100%, rgba(200, 109, 49, .26), transparent 22rem),
        linear-gradient(135deg, #35100b, #6f1414 52%, #2a1009);
    box-shadow: 0 34px 110px rgba(59, 11, 11, .32);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .2;
    background-image:
        radial-gradient(circle at 20% 30%, #fff 0 1px, transparent 2px),
        radial-gradient(circle at 70% 70%, #fff 0 1px, transparent 2px);
    background-size: 54px 54px, 82px 82px;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    max-width: 820px;
    text-shadow: 0 12px 36px rgba(0,0,0,.25);
}

.hero-copy .section-subtitle {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: #ffe7b2;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
}

.hero-copy > p:not(.section-subtitle) {
    max-width: 620px;
    color: rgba(255, 248, 239, .86);
    font-size: clamp(1.05rem, 2vw, 1.24rem);
    line-height: 1.8;
}

.hero .btn {
    margin-top: 10px;
    background: linear-gradient(135deg, #ffd36b, #b88a00);
    color: #2a1009;
    box-shadow: 0 18px 46px rgba(0,0,0,.28);
}

.hero-image {
    border-radius: 38px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(244, 178, 62, .22));
    box-shadow: 0 30px 90px rgba(0,0,0,.32);
    transform: rotate(1.2deg);
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.2), transparent 38%, rgba(0,0,0,.18));
}

.hero-image img {
    min-height: 340px;
}

.card,
.form-card,
.chat-panel,
.menu-category {
    position: relative;
    box-shadow: var(--soft-shadow);
    overflow: hidden;
}

.card::before,
.form-card::before,
.chat-panel::before,
.menu-category::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent), var(--copper));
    opacity: .88;
}

.card,
.form-card {
    transition: transform .22s ease, box-shadow .22s ease;
}

.card:hover,
.form-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.card h3,
.form-card h3,
.menu-category h2,
.menu-category h3 {
    margin-top: 0;
    letter-spacing: -.03em;
}

.menu-category h2,
.menu-category h3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.menu-category h2::before,
.menu-category h3::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(244, 178, 62, .16);
}

.menu-item {
    background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255, 248, 239, .82));
}

input,
textarea,
select {
    background: rgba(255, 255, 255, .94);
}

.chat-message {
    background: linear-gradient(135deg, #fff8ef, #fff);
}

.chat-message.customer {
    background: linear-gradient(135deg, #7a1717, #a12b1c);
}

.assistant-button {
    width: 68px;
    height: 68px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 26px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.36), transparent 24px),
        linear-gradient(135deg, var(--brand), var(--accent));
    transition: transform .2s ease, box-shadow .2s ease;
}

.assistant-button:hover {
    transform: translateY(-3px) rotate(-2deg);
}

.assistant-panel {
    width: min(390px, calc(100vw - 32px));
    padding: 18px;
    border-radius: 30px;
}

.site-footer {
    background:
        radial-gradient(circle at 15% 20%, rgba(244, 178, 62, .16), transparent 18rem),
        linear-gradient(135deg, #28170d, #120905);
}

.site-footer a:hover {
    color: #ffd36b;
}

.today-special-section {
    padding-top: clamp(28px, 5vw, 70px);
}

.today-special-card {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
    gap: clamp(22px, 5vw, 58px);
    align-items: center;
    position: relative;
    padding: clamp(22px, 4vw, 46px);
    border-radius: clamp(28px, 5vw, 48px);
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 15%, rgba(244, 178, 62, .22), transparent 18rem),
        linear-gradient(135deg, #fffaf1, #fff1dd);
    border: 1px solid rgba(122, 23, 23, .12);
    box-shadow: var(--shadow);
}

.today-special-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, var(--brand), var(--accent), var(--copper));
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 14px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--brand);
    background: rgba(184, 138, 0, .14);
    font-weight: 1000;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .8rem;
}

.today-special-copy {
    position: relative;
    z-index: 1;
}

.today-special-price {
    margin: 18px 0;
    font-size: clamp(2.2rem, 6vw, 4.8rem);
    line-height: 1;
    font-weight: 1000;
    color: var(--brand);
    letter-spacing: -.07em;
}

.today-special-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.today-special-image {
    position: relative;
    z-index: 1;
    border-radius: 32px;
    overflow: hidden;
    transform: rotate(1.5deg);
    box-shadow: 0 24px 80px rgba(59, 11, 11, .24);
    background: #1a120c;
}

.today-special-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.lunch-featured-special {
    margin: 24px 0 34px;
}

.ai-helper-card,
.ai-quote-card {
    margin: 0 0 22px;
    padding: clamp(18px, 3vw, 28px);
    border: 1px solid rgba(122, 23, 23, .12);
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 12%, rgba(244, 178, 62, .24), transparent 12rem),
        linear-gradient(135deg, #fffaf1, #fff5ea);
    box-shadow: var(--soft-shadow);
}

.ai-helper-card h3,
.ai-quote-card h3 {
    margin: 0 0 8px;
}

.ai-helper-card textarea,
.ai-quote-card textarea {
    min-height: 92px;
}

.ai-helper-actions,
.ai-quote-card .ai-helper-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.ai-helper-note {
    min-height: 1.4em;
    margin: 10px 0 0;
    color: var(--muted);
    font-weight: 700;
}

.ai-quote-card {
    display: grid;
    grid-template-columns: minmax(240px, .8fr) minmax(280px, 1.2fr);
    gap: clamp(18px, 4vw, 36px);
    align-items: start;
    margin-top: 34px;
}

.ai-quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ai-quote-grid textarea {
    grid-column: 1 / -1;
}

.ai-quote-card .btn {
    justify-self: start;
}

@media (max-width: 900px) {
    .hero {
        width: min(100% - 16px, 1240px);
        border-radius: 28px;
    }

    .hero-image {
        transform: none;
    }

    .today-special-card {
        grid-template-columns: 1fr;
    }

    .today-special-image {
        transform: none;
    }

    .ai-quote-card,
    .ai-quote-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation and shape pack */
.section,
.hero,
.today-special-card,
.ai-helper-card,
.ai-quote-card,
.menu-category,
.form-card,
.card,
.chat-panel {
    isolation: isolate;
}

.section {
    position: relative;
    overflow: hidden;
}

.section::before {
    content: "";
    position: absolute;
    width: clamp(120px, 18vw, 260px);
    height: clamp(120px, 18vw, 260px);
    border-radius: 41% 59% 63% 37% / 38% 43% 57% 62%;
    background:
        radial-gradient(circle at 32% 30%, rgba(255,255,255,.38), transparent 30%),
        linear-gradient(135deg, rgba(244, 178, 62, .18), rgba(122, 23, 23, .08));
    filter: blur(.2px);
    opacity: .56;
    pointer-events: none;
    z-index: -1;
    animation: shapeFloat 14s ease-in-out infinite;
}

.section:nth-of-type(odd)::before {
    right: max(-90px, -6vw);
    top: 20px;
}

.section:nth-of-type(even)::before {
    left: max(-100px, -7vw);
    bottom: 22px;
    animation-delay: -5s;
}

.section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: min(100%, 1280px);
    height: 30px;
    transform: translateX(-50%);
    pointer-events: none;
    opacity: .42;
    background:
        radial-gradient(60% 40px at 50% 0, rgba(122, 23, 23, .1), transparent 70%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 4% 4% auto;
    width: clamp(120px, 18vw, 260px);
    height: clamp(120px, 18vw, 260px);
    border-radius: 48% 52% 39% 61% / 55% 35% 65% 45%;
    background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .18), transparent 34%), rgba(244, 178, 62, .14);
    pointer-events: none;
    animation: shapeFloat 12s ease-in-out infinite reverse;
}

.hero-copy h1 {
    background: linear-gradient(95deg, #fff8ef, #ffe2a1 48%, #fff8ef);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleShimmer 6s ease-in-out infinite;
}

.hero .btn,
.today-special-actions .btn,
.ai-quote-card .btn,
.ai-helper-actions .btn {
    position: relative;
    overflow: hidden;
}

.hero .btn::after,
.today-special-actions .btn::after,
.ai-quote-card .btn::after,
.ai-helper-actions .btn::after {
    content: "";
    position: absolute;
    inset: -20% auto -20% -55%;
    width: 42%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
    transition: left .55s ease;
}

.hero .btn:hover::after,
.today-special-actions .btn:hover::after,
.ai-quote-card .btn:hover::after,
.ai-helper-actions .btn:hover::after {
    left: 115%;
}

.card,
.form-card,
.menu-category,
.ai-helper-card,
.ai-quote-card {
    transform-style: preserve-3d;
}

@media (hover: hover) and (pointer: fine) {
    .card:hover,
    .form-card:hover,
    .menu-category:hover,
    .ai-helper-card:hover,
    .ai-quote-card:hover {
        transform: translateY(-5px) rotateX(.8deg);
    }

    .menu-card:hover .price {
        animation: pricePop .42s cubic-bezier(.2, 1.7, .4, 1) both;
    }
}

.menu-card {
    overflow: hidden;
}

.menu-card::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, .48), transparent 65% 100%);
    transform: translateX(-120%);
    transition: transform .55s ease, opacity .25s ease;
}

.menu-card:hover::after,
.menu-card:focus-within::after {
    opacity: 1;
    transform: translateX(120%);
}

.today-special-card {
    animation: chalkboardIn .8s ease both;
}

.today-special-card .eyebrow {
    animation: badgeWiggle 3.8s ease-in-out infinite;
}

.today-special-copy .section-title,
.today-special-copy .section-subtitle,
.today-special-price {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
}

.today-special-card.is-visible .today-special-copy .section-title,
.today-special-card.is-visible .today-special-copy .section-subtitle,
.today-special-card.is-visible .today-special-price,
.today-special-card.chalk-ready .today-special-copy .section-title,
.today-special-card.chalk-ready .today-special-copy .section-subtitle,
.today-special-card.chalk-ready .today-special-price {
    animation: chalkWrite .9s ease forwards;
}

.today-special-card.is-visible .today-special-copy .section-subtitle,
.today-special-card.chalk-ready .today-special-copy .section-subtitle {
    animation-delay: .16s;
}

.today-special-card.is-visible .today-special-price,
.today-special-card.chalk-ready .today-special-price {
    animation-delay: .3s;
}

.today-special-image {
    transition: transform .45s ease, box-shadow .45s ease;
}

.today-special-card:hover .today-special-image {
    transform: rotate(-.5deg) scale(1.025);
}

.reservation-date-picker,
.reservation-time-fields,
input,
textarea,
select {
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.reservation-date-picker:focus-within,
.reservation-time-fields:focus-within,
input:focus,
textarea:focus,
select:focus {
    transform: translateY(-1px);
}

.field-has-value,
.reservation-date-picker.field-has-value,
.reservation-time-fields.field-has-value {
    animation: fieldConfirm .34s ease both;
}

.reservation-calendar-day.is-selected {
    animation: dateSelected .42s cubic-bezier(.2, 1.55, .45, 1) both;
}

.assistant-button {
    animation: assistantBreathe 3.2s ease-in-out infinite;
}

.assistant-suggestions button,
.chat-smart-prompts button {
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.assistant-suggestions button:hover,
.chat-smart-prompts button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 22px rgba(122, 23, 23, .12);
}

.chat-typing:not([hidden])::after {
    content: "";
    display: inline-block;
    width: 1.5em;
    margin-left: 4px;
    text-align: left;
    animation: typingDots 1.1s steps(4, end) infinite;
}

.chat-message {
    transform-origin: bottom left;
}

.chat-message.customer {
    transform-origin: bottom right;
}

.ai-helper-card,
.ai-quote-card {
    position: relative;
    overflow: hidden;
}

.ai-helper-card::after,
.ai-quote-card::after {
    content: "";
    position: absolute;
    right: -36px;
    top: -36px;
    width: 112px;
    height: 112px;
    border-radius: 34% 66% 43% 57% / 48% 44% 56% 52%;
    background: rgba(244, 178, 62, .18);
    animation: shapeFloat 9s ease-in-out infinite;
    z-index: -1;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(12px, -16px, 0) rotate(8deg); }
}

@keyframes titleShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

@keyframes pricePop {
    0% { transform: translateY(0) scale(1); }
    55% { transform: translateY(-3px) scale(1.12); }
    100% { transform: translateY(-2px) scale(1); }
}

@keyframes chalkboardIn {
    from { opacity: 0; transform: translateY(18px) rotate(-.5deg) scale(.985); }
    to { opacity: 1; transform: none; }
}

@keyframes chalkWrite {
    from { opacity: .18; clip-path: inset(0 100% 0 0); filter: blur(1px); }
    to { opacity: 1; clip-path: inset(0 0 0 0); filter: none; }
}

@keyframes badgeWiggle {
    0%, 92%, 100% { transform: rotate(0deg); }
    94% { transform: rotate(-2deg); }
    96% { transform: rotate(2deg); }
    98% { transform: rotate(-1deg); }
}

@keyframes fieldConfirm {
    0% { box-shadow: 0 0 0 0 rgba(184, 138, 0, .22); }
    50% { box-shadow: 0 0 0 6px rgba(184, 138, 0, .16); }
    100% { box-shadow: 0 0 0 0 rgba(184, 138, 0, 0); }
}

@keyframes dateSelected {
    0% { transform: scale(.92); }
    70% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes assistantBreathe {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.035); }
}

@keyframes typingDots {
    0% { content: ""; }
    25% { content: "."; }
    50% { content: ".."; }
    75%, 100% { content: "..."; }
}

/* Homepage ambience upgrade */
.hero-motion-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 4px;
}

.hero-motion-chips span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 999px;
    color: #ffe9b8;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
    transform: translateY(10px);
    opacity: 0;
}

.hero-motion-chips span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #ffd36b;
    box-shadow: 0 0 16px rgba(255, 211, 107, .72);
}

.hero-animate.is-loaded .hero-motion-chips span {
    animation: chipFloatIn .55s ease forwards, chipBreathe 4.8s ease-in-out infinite;
}

.hero-animate.is-loaded .hero-motion-chips span:nth-child(2) {
    animation-delay: .12s, 1.1s;
}

.hero-animate.is-loaded .hero-motion-chips span:nth-child(3) {
    animation-delay: .24s, 2.2s;
}

.hero-steam {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.hero-steam span {
    position: absolute;
    bottom: 18%;
    width: clamp(82px, 10vw, 150px);
    height: clamp(120px, 16vw, 220px);
    border-radius: 48% 52% 42% 58% / 60% 42% 58% 40%;
    background:
        radial-gradient(ellipse at 50% 42%, rgba(255,255,255,.42), transparent 68%),
        radial-gradient(ellipse at 50% 72%, rgba(255, 211, 107, .16), transparent 70%);
    filter: blur(14px);
    opacity: 0;
    animation: heroSteamRise 8s ease-in-out infinite;
}

.hero-steam span:nth-child(1) {
    left: 12%;
    animation-delay: -1.5s;
}

.hero-steam span:nth-child(2) {
    left: 43%;
    width: clamp(100px, 13vw, 180px);
    animation-duration: 10s;
    animation-delay: -5s;
}

.hero-steam span:nth-child(3) {
    right: 8%;
    animation-duration: 9s;
    animation-delay: -3s;
}

.hero-flavor-words {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
}

.hero-flavor-words span {
    position: absolute;
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 248, 239, .5);
    font-family: var(--font-accent);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .045);
    backdrop-filter: blur(8px);
    animation: flavorWordDrift 13s ease-in-out infinite;
}

.hero-flavor-words span:nth-child(1) {
    left: 5%;
    bottom: 14%;
}

.hero-flavor-words span:nth-child(2) {
    right: 7%;
    top: 15%;
    animation-delay: -5s;
}

.hero-flavor-words span:nth-child(3) {
    right: 18%;
    bottom: 10%;
    animation-delay: -9s;
}

.quick-action-card {
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.quick-action-card > * {
    position: relative;
    z-index: 1;
}

.quick-action-card::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px auto;
    width: 70px;
    height: 70px;
    border-radius: 30% 70% 48% 52% / 56% 34% 66% 44%;
    background:
        radial-gradient(circle at 35% 32%, rgba(255,255,255,.5), transparent 34%),
        linear-gradient(135deg, rgba(244, 178, 62, .2), rgba(122, 23, 23, .08));
    opacity: .72;
    z-index: 0;
    animation: cardGlowDrift 7s ease-in-out infinite;
}

.quick-action-card:nth-child(2)::after {
    animation-delay: -2s;
}

.quick-action-card:nth-child(3)::after {
    animation-delay: -4s;
}

@media (hover: hover) and (pointer: fine) {
    .quick-action-card:hover {
        border-color: rgba(184, 138, 0, .34);
        box-shadow: 0 26px 70px rgba(56, 28, 12, .16);
    }
}

@keyframes chipFloatIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes chipBreathe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes heroSteamRise {
    0% {
        opacity: 0;
        transform: translate3d(-12px, 50px, 0) scale(.74) rotate(0deg);
    }
    24% {
        opacity: .45;
    }
    68% {
        opacity: .22;
        transform: translate3d(18px, -60px, 0) scale(1.08) rotate(8deg);
    }
    100% {
        opacity: 0;
        transform: translate3d(-4px, -145px, 0) scale(1.35) rotate(14deg);
    }
}

@keyframes flavorWordDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-2deg);
    }
    50% {
        transform: translate3d(14px, -18px, 0) rotate(3deg);
    }
}

@keyframes cardGlowDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(-10px, -12px, 0) rotate(10deg);
    }
}

@media (max-width: 767px) {
    .hero-flavor-words,
    .hero-steam {
        display: none;
    }

    .hero-motion-chips {
        gap: 7px;
    }

    .hero-motion-chips span {
        padding: 7px 10px;
        font-size: .86rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-animate.is-loaded .hero-motion-chips span,
    .hero-steam span,
    .hero-flavor-words span,
    .quick-action-card::after {
        animation: none !important;
        opacity: 1;
    }
}

/* Whole-site polish layer */
html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 12% 4%, rgba(216, 198, 161, .34), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(122, 23, 23, .09), transparent 30%),
        linear-gradient(180deg, #fbf5eb 0%, #f6f0e7 42%, #fff8ee 100%);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: min(1180px, 92vw);
}

header {
    background:
        linear-gradient(135deg, rgba(122, 23, 23, .98), rgba(95, 15, 15, .96));
    box-shadow: 0 12px 38px rgba(45, 31, 23, .18);
}

.navbar {
    min-height: 76px;
}

.brand {
    gap: 14px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .18);
}

.brand-logo {
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.nav-links a {
    border-radius: 999px;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active {
    color: var(--brand-accent);
    transform: translateY(-1px);
}

.nav-cta,
.btn {
    position: relative;
    overflow: hidden;
}

.nav-cta::before,
.btn::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -70%;
    width: 48%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .32), transparent);
    opacity: 0;
    transition: left .55s ease, opacity .22s ease;
}

.nav-cta:hover::before,
.btn:hover::before {
    left: 122%;
    opacity: 1;
}

.hero {
    min-height: clamp(560px, 74vh, 760px);
    display: grid;
    align-items: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(246, 240, 231, .96));
    pointer-events: none;
}

.hero-copy h1,
.section-title {
    letter-spacing: -.025em;
}

.hero-copy h1 {
    max-width: 820px;
    text-shadow: 0 12px 38px rgba(45, 31, 23, .12);
}

.hero-copy .section-subtitle {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    padding: 8px 14px;
    border: 1px solid rgba(122, 23, 23, .12);
    border-radius: 999px;
    background: rgba(255, 250, 243, .72);
    backdrop-filter: blur(10px);
    font-weight: 800;
    color: #7a240f;
}

.hero-image img {
    border-color: rgba(255, 250, 243, .84);
    box-shadow:
        0 28px 70px rgba(45, 31, 23, .24),
        0 0 0 14px rgba(216, 198, 161, .14);
}

.section {
    position: relative;
}

.section-title {
    color: var(--text);
}

.section-subtitle {
    line-height: 1.72;
}

.card,
.form-card,
.menu-category,
.portal-hero,
.portal-summary-card,
.customer-ticket,
.verification-gate,
.chat-panel {
    border-color: rgba(122, 23, 23, .12);
    background:
        radial-gradient(circle at top right, rgba(216, 198, 161, .14), transparent 34%),
        rgba(255, 250, 243, .94);
    box-shadow: 0 22px 58px rgba(65, 38, 25, .11);
}

.card,
.form-card {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

@media (hover: hover) and (pointer: fine) {
    .card:hover,
    .form-card:hover {
        transform: translateY(-3px);
        border-color: rgba(183, 146, 95, .42);
        box-shadow: 0 30px 76px rgba(65, 38, 25, .15);
    }
}

.card h3,
.form-card h2,
.form-card h3 {
    color: var(--text);
}

form input,
form select,
form textarea,
.reservation-date-trigger {
    border-radius: 14px;
    border-color: rgba(122, 23, 23, .14);
    background: rgba(255, 255, 255, .82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

form input:focus,
form select:focus,
form textarea:focus,
.reservation-date-trigger:focus {
    outline: none;
    border-color: rgba(183, 146, 95, .74);
    background: #fff;
    box-shadow:
        0 0 0 4px rgba(216, 198, 161, .22),
        inset 0 1px 0 rgba(255, 255, 255, .8);
}

.alert {
    color: #155724;
    background: linear-gradient(135deg, #e7f7e8, #f4fff4);
    border-color: rgba(35, 113, 54, .18);
    box-shadow: 0 12px 28px rgba(35, 113, 54, .08);
}

.alert.error {
    color: #8f1d1d;
    background: linear-gradient(135deg, #fff0f0, #ffe6e6);
    border-color: rgba(143, 29, 29, .18);
}

.table,
table {
    border-radius: 16px;
    overflow: hidden;
}

.table th,
table th {
    background: rgba(122, 23, 23, .07);
    color: var(--text);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.table tr,
table tr {
    transition: background .16s ease;
}

.table tbody tr:hover,
table tbody tr:hover {
    background: rgba(216, 198, 161, .14);
}

.footer {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 250, 243, .68), rgba(246, 240, 231, .96));
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(122, 23, 23, .22), transparent);
}

.footer-grid > div {
    padding: 18px;
    border: 1px solid rgba(122, 23, 23, .08);
    border-radius: 18px;
    background: rgba(255, 250, 243, .62);
}

.portal-hero,
.today-special-card {
    overflow: hidden;
}

.portal-summary-card strong,
.today-special-price {
    letter-spacing: -.03em;
}

.modifier-modal {
    backdrop-filter: blur(8px);
}

.modifier-modal-card {
    box-shadow: 0 34px 90px rgba(45, 31, 23, .28);
}

@media (max-width: 900px) {
    .nav-links {
        background:
            linear-gradient(135deg, rgba(122, 23, 23, .98), rgba(95, 15, 15, .98));
        box-shadow: 0 22px 60px rgba(45, 31, 23, .24);
    }

    .nav-toggle {
        border-color: rgba(255, 255, 255, .32);
        color: #fffaf3;
        background: rgba(255, 255, 255, .08);
    }

    .hero {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 56px 0;
    }

    .hero-copy h1 {
        font-size: clamp(34px, 12vw, 48px);
    }

    .card,
    .form-card,
    .menu-category {
        border-radius: 18px;
        padding: 18px;
    }

    .footer-grid > div {
        padding: 14px;
    }
}

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

    .nav-cta::before,
    .btn::before {
        display: none;
    }
}

/* Soft bottom blend — static fallback replacing the removed animated smoke effect.
   Keeps the bottom of every page fading smoothly into the cream background. */
body::after {
    content: "";
    position: fixed;
    inset: auto 0 0 0;
    height: clamp(110px, 15vh, 180px);
    z-index: 55;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(255, 248, 239, .8),
        rgba(255, 248, 239, .28) 55%,
        rgba(255, 248, 239, 0)
    );
}
