:root {
    --yellow: #ffbc0d;
    --yellow-dark: #f4a400;
    --red: #db0007;
    --black: #1f1f1f;
    --charcoal: #292929;
    --muted: #606060;
    --line: #e7e2d8;
    --soft: #f7f7f7;
    --cream: #fff8eb;
    --white: #ffffff;
    --shadow: 0 18px 55px rgba(0, 0, 0, .12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

body.drawer-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a,
input {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.top-bar {
    min-height: 86px;
    background: var(--soft);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 18px clamp(18px, 6vw, 88px);
    font-size: 16px;
    line-height: 1.4;
    box-shadow: inset 0 -1px 0 var(--line);
}

.accept-btn,
.drawer-close {
    border: 1px solid rgba(0, 0, 0, .18);
    background: var(--white);
    color: var(--black);
    min-height: 34px;
    padding: 0 18px;
    border-radius: 4px;
    font-weight: 800;
    cursor: pointer;
}

.terms-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--charcoal);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
}

.top-bar p {
    max-width: 980px;
}

.top-bar a {
    color: #005eb8;
    text-decoration: underline;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 96px;
    padding: 12px clamp(18px, 5vw, 76px);
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 14px rgba(0, 0, 0, .05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.logo img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.logo span {
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    color: #34210f;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 36px);
}

.nav-links a {
    font-size: 15px;
    font-weight: 800;
    color: var(--black);
    padding: 14px 0;
    border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    border-bottom-color: var(--red);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--white);
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--black);
}

.order-btn,
.hero-btn,
.food-info button,
.search-box button,
.deal-link,
.call-btn,
.phone-card button,
.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 0;
    border-radius: 4px;
    background: var(--yellow);
    color: var(--black);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    padding: 0 26px;
    cursor: pointer;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .08);
}

.order-btn:hover,
.hero-btn:hover,
.food-info button:hover,
.search-box button:hover,
.deal-link:hover,
.call-btn:hover,
.phone-card button:hover {
    background: var(--yellow-dark);
}

.hero-btn.is-added,
.food-info button.is-added,
.deal-link.is-added,
.phone-card button.is-added,
.deal-card-large button.is-added,
.offer-tile button.is-added {
    background: #2f7d32;
    color: var(--white);
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    margin-left: 10px;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-size: 12px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(320px, 1.08fr) minmax(320px, .92fr);
    align-items: center;
    gap: clamp(34px, 6vw, 78px);
    min-height: calc(100vh - 142px);
    padding: clamp(44px, 7vw, 86px) clamp(18px, 6vw, 88px);
    background: linear-gradient(90deg, #fff 0%, #fff 57%, var(--cream) 57%, var(--cream) 100%);
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(280px, .72fr);
    align-items: center;
    gap: clamp(32px, 6vw, 76px);
    padding: clamp(56px, 8vw, 102px) clamp(18px, 6vw, 88px);
    background: linear-gradient(90deg, var(--cream), #fff);
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    max-width: 760px;
    font-size: clamp(44px, 6vw, 76px);
    line-height: .96;
    margin-bottom: 24px;
}

.page-hero p {
    max-width: 650px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.55;
}

.page-hero img {
    width: min(100%, 430px);
    justify-self: center;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .16));
}

.hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-media img {
    width: min(100%, 610px);
    max-height: 680px;
    object-fit: contain;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .18));
}

.hero-text {
    max-width: 575px;
}

.eyebrow {
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hero-text h1,
.menu-hero h1,
.promo-copy h2 {
    font-size: clamp(46px, 6vw, 78px);
    line-height: .96;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--black);
}

.hero-text p,
.menu-hero p,
.promo-copy p,
.locations p {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.text-link,
.map-link,
.white-link {
    display: inline-flex;
    width: max-content;
    font-weight: 900;
    color: var(--black);
    border-bottom: 2px solid var(--red);
    padding-bottom: 4px;
}

.white-link {
    color: var(--white);
    border-bottom-color: var(--yellow);
}

.brand-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.brand-strip article {
    min-height: 170px;
    padding: 34px clamp(22px, 4vw, 52px);
    border-right: 1px solid var(--line);
}

.brand-strip article:last-child {
    border-right: 0;
}

.brand-strip span {
    display: block;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

.brand-strip h2 {
    font-size: clamp(23px, 3vw, 34px);
    line-height: 1.05;
    margin-bottom: 12px;
}

.brand-strip p {
    color: var(--muted);
    line-height: 1.45;
}

.promo-stack {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(280px, .72fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
    padding: clamp(58px, 8vw, 100px) clamp(18px, 6vw, 88px);
    background: var(--soft);
}

.promo-copy {
    max-width: 690px;
}

.promo-copy .hero-btn {
    margin-top: 30px;
}

.phone-card {
    justify-self: center;
    width: min(100%, 330px);
    min-height: 520px;
    padding: 28px;
    border: 10px solid var(--black);
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}

.phone-top {
    width: 88px;
    height: 7px;
    margin: 0 auto 34px;
    border-radius: 999px;
    background: var(--black);
}

.phone-card img {
    width: 145px;
    height: 145px;
    object-fit: contain;
    margin-bottom: 20px;
}

.phone-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.phone-card p {
    color: var(--muted);
    line-height: 1.45;
    margin-bottom: 28px;
}

.section-title {
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 900;
    margin-bottom: 42px;
    text-align: center;
}

.deals,
.menu {
    padding: clamp(58px, 8vw, 96px) clamp(18px, 6vw, 88px);
    background: var(--white);
}

.deal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 28px;
    max-width: 1190px;
    margin: 0 auto;
}

.deal {
    overflow: hidden;
    border-radius: 8px;
}

.deal-feature {
    display: grid;
    grid-template-columns: 44% 1fr;
    align-items: center;
    background: var(--cream);
    border: 1px solid var(--line);
}

.deal-feature img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    object-position: center;
}

.deal-feature div,
.deal-red {
    padding: clamp(30px, 5vw, 56px);
}

.deal p {
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.deal h3 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.02;
    margin-bottom: 18px;
}

.deal span {
    display: block;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 28px;
}

.deal-red {
    min-height: 390px;
    background: var(--red);
    color: var(--white);
}

.deal-red p,
.deal-red span {
    color: var(--white);
}

.deal-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 28px;
    padding: clamp(58px, 8vw, 96px) clamp(18px, 6vw, 88px);
}

.deal-card-large,
.offer-tile,
.location-card,
.contact-form,
.terms-content article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

.deal-card-large {
    display: grid;
    grid-column: span 2;
    grid-template-columns: minmax(280px, .9fr) minmax(300px, 1fr);
    overflow: hidden;
}

.deal-card-large img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.deal-card-large div,
.offer-tile,
.location-card {
    padding: clamp(28px, 5vw, 54px);
}

.deal-card-large h2,
.offer-tile h2,
.contact-section h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.02;
    margin-bottom: 18px;
}

.deal-card-large p,
.offer-tile p,
.location-card p,
.contact-section p,
.terms-content p {
    color: var(--muted);
    line-height: 1.55;
}

.deal-card-large strong,
.offer-tile strong {
    display: block;
    margin: 22px 0;
    font-size: 24px;
}

.deal-card-large button,
.offer-tile button,
.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 0;
    border-radius: 4px;
    background: var(--yellow);
    color: var(--black);
    font-weight: 900;
    padding: 0 26px;
    cursor: pointer;
}

.offer-red {
    background: var(--red);
    color: var(--white);
}

.offer-red .eyebrow,
.offer-red p,
.offer-red strong {
    color: var(--white);
}

.locations {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(300px, 1fr);
    gap: 40px;
    align-items: center;
    padding: clamp(58px, 8vw, 96px) clamp(18px, 6vw, 88px);
    background: var(--soft);
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(300px, 1fr);
    gap: 40px;
    padding: clamp(58px, 8vw, 96px) clamp(18px, 6vw, 88px);
    background: var(--soft);
}

.contact-form {
    display: grid;
    gap: 12px;
    padding: clamp(24px, 4vw, 38px);
}

.contact-form label {
    font-weight: 900;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    padding: 14px;
    font-size: 16px;
}

#contact-result,
#terms-result {
    min-height: 24px;
    color: #2f7d32;
    font-weight: 900;
}

.terms-content {
    display: grid;
    gap: 18px;
    padding: clamp(58px, 8vw, 96px) clamp(18px, 6vw, 88px);
    background: var(--white);
}

.terms-content article {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 36px);
}

.terms-content h2 {
    margin-bottom: 12px;
    font-size: 26px;
}

.locations h2 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1;
    margin-bottom: 18px;
}

.search-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: clamp(24px, 4vw, 38px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

.search-panel label {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 900;
}

.search-box {
    display: flex;
    gap: 10px;
}

.search-box input {
    min-width: 0;
    flex: 1;
    height: 50px;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    padding: 0 14px;
    font-size: 16px;
}

#location-result {
    min-height: 28px;
    margin-top: 18px;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 800;
    color: var(--black);
}

.menu-hero {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(280px, .75fr);
    align-items: center;
    gap: 40px;
    padding: clamp(50px, 7vw, 92px) clamp(18px, 6vw, 88px);
    background: linear-gradient(90deg, var(--cream), #fff);
    border-bottom: 1px solid var(--line);
}

.menu-hero img {
    width: min(100%, 430px);
    justify-self: center;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .16));
}

.menu-heading {
    max-width: 1190px;
    margin: 0 auto 36px;
}

.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    min-height: 40px;
    padding: 0 18px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: none;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

.menu-category {
    max-width: 1190px;
    margin: 0 auto 74px;
}

.menu-category.is-hidden {
    display: none;
}

.menu-category h3 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 24px;
}

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

.food-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .1);
}

.food-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.food-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.food-info h4 {
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.food-info p {
    color: var(--muted);
    line-height: 1.45;
    margin-bottom: 16px;
}

.food-info span {
    display: block;
    margin-top: auto;
    margin-bottom: 18px;
    color: var(--black);
    font-size: 20px;
    font-weight: 900;
}

.food-info button {
    width: 100%;
}

.order-drawer {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    justify-content: flex-end;
    background: rgba(0, 0, 0, .48);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.order-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
}

.drawer-panel {
    width: min(100%, 430px);
    min-height: 100%;
    padding: 32px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform .2s ease;
    overflow-y: auto;
}

.order-drawer.is-open .drawer-panel {
    transform: translateX(0);
}

.drawer-close {
    float: right;
}

.drawer-panel h2 {
    clear: both;
    font-size: 34px;
    margin-bottom: 24px;
}

.cart-items {
    display: grid;
    gap: 12px;
}

.cart-row {
    display: grid;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.cart-row-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: start;
}

.cart-row strong {
    display: block;
    margin-bottom: 4px;
}

.cart-row span {
    color: var(--muted);
}

.cart-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.cart-actions button {
    min-height: 34px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--white);
    color: var(--black);
    font-weight: 900;
    padding: 0 12px;
    cursor: pointer;
}

.cart-actions button:last-child {
    margin-left: auto;
    color: var(--red);
}

.customize-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.customize-grid label,
.customize-note {
    display: grid;
    gap: 6px;
    color: var(--black);
    font-size: 13px;
    font-weight: 900;
}

.customize-grid select,
.customize-note textarea {
    width: 100%;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
}

.customize-note textarea {
    resize: vertical;
}

.cart-empty {
    padding: 22px;
    background: var(--soft);
    border-radius: 8px;
    color: var(--muted);
    line-height: 1.45;
}

.cart-empty.is-hidden {
    display: none;
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 28px 0;
    padding-top: 20px;
    border-top: 2px solid var(--black);
    font-size: 20px;
    font-weight: 900;
}

.call-btn {
    width: 100%;
}

footer {
    background: #242424;
    color: var(--white);
    padding: 56px 22px;
    text-align: center;
}

footer img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    margin-bottom: 14px;
}

footer h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

footer p,
footer a {
    color: #d8d8d8;
    line-height: 1.6;
}

@media (max-width: 960px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
        padding: 12px 18px;
    }

    .navbar {
        grid-template-columns: 1fr auto;
        gap: 14px;
        min-height: 82px;
    }

    .menu-toggle {
        display: block;
        grid-column: 2;
        grid-row: 1;
    }

    .order-btn {
        grid-column: 1 / -1;
        width: 100%;
    }

    .nav-links {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding-top: 12px;
        border-top: 1px solid var(--line);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
    }

    .hero,
    .locations,
    .menu-hero,
    .page-hero,
    .deal-feature,
    .deal-grid,
    .promo-stack,
    .deal-page-grid,
    .deal-card-large,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .deal-card-large {
        grid-column: auto;
    }

    .hero {
        min-height: 0;
        background: var(--cream);
    }

    .hero-media {
        order: 2;
    }

    .hero-text {
        order: 1;
    }

    .brand-strip {
        grid-template-columns: 1fr;
    }

    .brand-strip article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .brand-strip article:last-child {
        border-bottom: 0;
    }

    .deal-feature img {
        min-height: 300px;
    }
}

@media (max-width: 560px) {
    .logo span {
        font-size: 18px;
    }

    .logo img {
        width: 54px;
        height: 54px;
    }

    .search-box,
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-btn,
    .text-link,
    .map-link,
    .order-btn {
        width: 100%;
        text-align: center;
    }

    .drawer-panel {
        padding: 24px;
    }

    .customize-grid {
        grid-template-columns: 1fr;
    }

    .cart-actions button:last-child {
        margin-left: 0;
        width: 100%;
    }
}
