@font-face {
    font-family: "Halyard Text";
    src: url("../fonts/HalyardText-Regular.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Halyard Text";
    src: url("../fonts/HalyardText-Bold.otf") format("opentype");
    font-style: normal;
    font-weight: 700 900;
    font-display: swap;
}

:root {
    --yellow: #ffcb05;
    --yellow-soft: #fff0b8;
    --red: #b51924;
    --ink: #211f1f;
    --paper: #fffcf4;
    --surface: #fffefa;
    --line: #ece2d4;
    --muted: #6e625a;
    --white: #fff;
    --container: 1180px;
    --shadow: 0 24px 70px rgba(33, 31, 31, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Halyard Text", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

body.popup-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

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

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

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

.skip-link {
    position: fixed;
    z-index: 200;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    color: var(--ink);
    background: var(--yellow);
    border: 2px solid var(--ink);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: none;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(255, 252, 244, .92);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
    backdrop-filter: blur(14px);
}

.site-header.scrolled {
    background: rgba(255, 254, 250, .96);
    border-color: var(--line);
    box-shadow: 0 8px 30px rgba(33, 31, 31, .05);
}

.header-inner {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

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

.brand img {
    width: 58px;
    height: 40px;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 20px;
    font-weight: 900;
}

.brand-copy small {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 14px;
    font-weight: 700;
}

.site-nav > a:not(.nav-cta) {
    position: relative;
    padding: 12px 0;
}

.site-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
    transform: scaleX(1);
}

.nav-cta,
.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-cta {
    min-height: 46px;
    color: var(--ink);
    background: var(--yellow);
}

.nav-cta:hover,
.button:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0 var(--ink);
}

.button-primary {
    background: var(--yellow);
}

.button svg,
.banner-cta svg,
.slider-controls button svg,
.text-link svg,
.back-link svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.button-dark {
    color: var(--white);
    background: var(--ink);
}

.button-dark:hover {
    box-shadow: 5px 5px 0 var(--yellow);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}

.hero {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-wash {
    position: absolute;
    top: 0;
    right: 0;
    width: 47%;
    height: 100%;
    background: var(--yellow);
}

.hero-wash::before {
    position: absolute;
    top: -12%;
    left: -150px;
    width: 300px;
    height: 125%;
    content: "";
    background: var(--paper);
    border-radius: 0 55% 55% 0;
    transform: rotate(7deg);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 700px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    padding-top: 44px;
    padding-bottom: 64px;
}

.hero-copy {
    max-width: 610px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 20px;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow > span {
    display: inline-block;
    width: 28px;
    height: 3px;
    background: var(--yellow);
}

.eyebrow.light {
    color: var(--yellow);
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

h1,
h2 {
    margin: 0;
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1.15;
}

h1 {
    max-width: 690px;
    font-size: clamp(56px, 6.3vw, 92px);
}

h2 {
    font-size: clamp(42px, 4.3vw, 64px);
}

h1 .accent,
h2 .accent {
    font-family: "Halyard Text", Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
}

.hero-lead {
    max-width: 535px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.55;
}

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

.hero-store-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-store-links a {
    display: block;
    border-radius: 8px;
    transition: filter .2s ease, transform .2s ease;
}

.hero-store-links a:hover {
    filter: drop-shadow(3px 4px 0 var(--yellow));
    transform: translateY(-2px);
}

.hero-store-links img {
    width: auto;
    height: 48px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.text-link svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.arrow-left {
    transform: rotate(180deg);
}

.arrow-down {
    transform: rotate(90deg);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 42px;
}

.note-icons {
    display: flex;
    padding-left: 8px;
}

.note-icons b {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    margin-left: -8px;
    color: var(--white);
    background: var(--ink);
    border: 2px solid var(--paper);
    border-radius: 50%;
    font-size: 10px;
}

.note-icons b:nth-child(2) {
    color: var(--ink);
    background: var(--yellow);
}

.note-icons b:nth-child(3) {
    background: var(--red);
}

.hero-note > span:last-child {
    display: grid;
}

.hero-note strong {
    font-size: 13px;
}

.hero-note small {
    color: var(--muted);
    font-size: 12px;
}

.phone-stage {
    position: relative;
    display: grid;
    min-height: 590px;
    place-items: center;
}

.phone {
    position: relative;
    z-index: 4;
    width: 300px;
    padding: 10px;
    background: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 42px;
    box-shadow: 0 36px 60px rgba(33, 31, 31, .24), 14px 16px 0 rgba(255, 252, 244, .72);
    transform: rotate(2.5deg);
}

.phone::before {
    position: absolute;
    z-index: 6;
    top: 15px;
    left: 50%;
    width: 82px;
    height: 20px;
    content: "";
    background: var(--ink);
    border-radius: 0 0 12px 12px;
    transform: translateX(-50%);
}

.phone-screen {
    overflow: hidden;
    background: var(--paper);
    border-radius: 32px;
}

.phone-status {
    display: flex;
    height: 32px;
    align-items: center;
    justify-content: space-between;
    padding: 0 19px;
    font-size: 8px;
    font-weight: 900;
}

.app-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px 12px;
}

.app-brand {
    display: flex;
    align-items: center;
    gap: 9px;
}

.app-brand img {
    width: 35px;
    height: 26px;
    object-fit: contain;
}

.app-brand span {
    display: grid;
    line-height: 1;
}

.app-brand b {
    font-size: 13px;
}

.app-brand small {
    margin-top: 3px;
    font-size: 7px;
    font-weight: 700;
}

.refresh-icon {
    font-size: 16px;
}

.app-body {
    padding: 0 13px 12px;
}

.app-summary {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 7px;
}

.app-summary > span:last-child {
    display: grid;
}

.app-summary b {
    font-size: 11px;
}

.app-summary small {
    color: var(--muted);
    font-size: 7px;
}

.ticket-icon {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    border-radius: 6px;
    font-size: 19px;
}

.mini-banner {
    position: relative;
    display: flex;
    height: 76px;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    overflow: hidden;
    padding: 12px 15px;
    color: var(--white);
    background: var(--red);
    border: 1px solid var(--ink);
    border-radius: 7px;
    font-size: 9px;
    line-height: 1.05;
}

.mini-banner::after {
    position: absolute;
    right: 56px;
    width: 50px;
    height: 100px;
    content: "";
    background: var(--yellow);
    transform: rotate(18deg);
}

.mini-banner span,
.mini-banner img {
    position: relative;
    z-index: 2;
}

.mini-banner b {
    color: var(--yellow);
    font-size: 15px;
}

.mini-banner img {
    width: 54px;
    filter: brightness(0) invert(1);
}

.coupon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
}

.coupon-card {
    display: flex;
    min-height: 205px;
    flex-direction: column;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 7px;
}

.coupon-card.special {
    background: var(--yellow-soft);
    border: 1.5px solid var(--ink);
}

.coupon-art {
    position: relative;
    display: grid;
    height: 90px;
    place-items: center;
    overflow: hidden;
    background: var(--yellow-soft);
}

.coupon-art img {
    position: relative;
    z-index: 2;
    width: 57px;
}

.food-dot {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(181, 25, 36, .1);
    border-radius: 50%;
    transform: translate(-30px, 20px);
}

.food-dot.second {
    background: rgba(255, 203, 5, .65);
    transform: translate(25px, -20px);
}

.coupon-card > b {
    min-height: 34px;
    padding: 9px 8px 0;
    font-size: 9px;
    line-height: 1.2;
}

.coupon-card > small {
    padding: 4px 8px 0;
    color: var(--muted);
    font-size: 7px;
}

.coupon-button {
    display: grid;
    height: 27px;
    place-items: center;
    margin: auto 7px 7px;
    background: var(--yellow);
    border-radius: 5px;
    font-size: 8px;
    font-weight: 900;
}

.app-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 7px 10px 9px;
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.app-nav > span {
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: 13px;
}

.app-nav > span.active {
    color: var(--ink);
}

.app-nav small {
    margin-top: 2px;
    font-size: 6px;
    font-weight: 700;
}

.floating-chip {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: 8px;
    box-shadow: 6px 7px 0 rgba(33, 31, 31, .15);
}

.floating-chip > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 6px;
    font-size: 20px;
}

.floating-chip b {
    display: grid;
    font-size: 12px;
}

.floating-chip small {
    color: var(--muted);
    font-size: 8px;
    font-weight: 400;
}

.chip-qr {
    bottom: 80px;
    left: 3px;
}

.chip-heart {
    top: 90px;
    right: -10px;
}

.chip-heart > span {
    color: var(--white);
    background: var(--red);
}

.sun-shape {
    position: absolute;
    border: 2px solid var(--ink);
}

.shape-one {
    top: 22px;
    right: 18px;
    width: 82px;
    height: 82px;
    border-radius: 50%;
}

.shape-one::before,
.shape-one::after {
    position: absolute;
    content: "";
    background: var(--ink);
}

.shape-one::before {
    top: 39px;
    left: -26px;
    width: 132px;
    height: 2px;
}

.shape-one::after {
    top: -26px;
    left: 39px;
    width: 2px;
    height: 132px;
}

.shape-two {
    bottom: 30px;
    left: 60px;
    width: 28px;
    height: 28px;
    background: var(--red);
    border-radius: 50%;
}

.section {
    padding: 108px 0;
}

.section-heading {
    margin-bottom: 48px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.row-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.benefits {
    background: var(--surface);
}

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

.benefit-card {
    position: relative;
    min-height: 286px;
    padding: 30px;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-card.featured {
    color: var(--surface);
    background: var(--ink);
    border-color: var(--ink);
}

.benefit-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    margin-bottom: 44px;
    background: var(--yellow);
    border: 2px solid var(--ink);
    border-radius: 8px;
    font-size: 26px;
    font-weight: 900;
}

.featured .benefit-icon {
    color: var(--ink);
}

.card-number {
    position: absolute;
    top: 18px;
    right: 24px;
    color: rgba(33, 31, 31, .07);
    font-size: 62px;
    font-weight: 900;
    letter-spacing: -.08em;
    line-height: 1;
}

.featured .card-number {
    color: rgba(255, 255, 255, .07);
}

.benefit-card h3 {
    margin: 0 0 12px;
    font-size: 23px;
    line-height: 1.1;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.featured p {
    color: #cfc7bd;
}

.food-highlight {
    padding-top: 0;
    background: var(--surface);
}

.food-highlight-card {
    display: grid;
    min-height: 470px;
    grid-template-columns: .9fr 1.1fr;
    overflow: hidden;
    background: var(--yellow);
    border: 2px solid var(--ink);
    border-radius: 10px;
    box-shadow: 10px 11px 0 rgba(33, 31, 31, .1);
}

.food-highlight-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: 58px 54px;
}

.food-highlight-copy .eyebrow {
    color: var(--ink);
}

.food-highlight-copy .eyebrow > span {
    background: var(--red);
}

.food-highlight-copy h2 {
    font-size: clamp(40px, 4vw, 58px);
}

.food-highlight-copy h2 .accent {
    color: var(--red);
}

.food-highlight-copy > p:not(.eyebrow) {
    max-width: 480px;
    margin: 24px 0 30px;
    font-size: 18px;
}

.food-highlight-media {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: var(--surface);
    border-left: 2px solid var(--ink);
}

.food-highlight-media::after {
    position: absolute;
    inset: 0;
    content: "";
    box-shadow: inset 26px 0 40px rgba(33, 31, 31, .06);
    pointer-events: none;
}

.food-highlight-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}

.food-highlight-card:hover .food-highlight-media > img {
    transform: scale(1.025);
}

.food-highlight-media figcaption {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 22px;
    display: grid;
    padding: 12px 15px;
    color: var(--surface);
    background: rgba(33, 31, 31, .9);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 7px;
    line-height: 1.15;
    backdrop-filter: blur(8px);
}

.food-highlight-media figcaption span {
    color: var(--yellow);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.food-highlight-media figcaption b {
    margin-top: 4px;
    font-size: 14px;
}

.news {
    border-top: 1px solid var(--line);
}

.slider-navigation,
.slider-controls,
.slider-status {
    display: flex;
    align-items: center;
}

.slider-navigation {
    gap: 20px;
}

.slider-navigation[hidden] {
    display: none;
}

.slider-controls {
    gap: 8px;
}

.slider-status {
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.slider-status b {
    color: var(--red);
    font-size: 19px;
}

.slider-divider {
    color: var(--line);
}

.slider-controls button {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
}

.slider-controls button:hover {
    background: var(--yellow);
    border-color: var(--ink);
}

.slider-controls button:disabled {
    cursor: default;
    opacity: .38;
}

.slider-controls button:disabled:hover {
    background: var(--surface);
    border-color: var(--line);
}

.slider-controls button svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
}

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

.banner-track {
    display: grid;
    grid-auto-columns: calc((100% - 18px) / 2);
    grid-auto-flow: column;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.banner-track::-webkit-scrollbar {
    display: none;
}

.banner-card {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: 8px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.banner-media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: var(--ink);
    border-bottom: 1px solid var(--ink);
}

.banner-media > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}

.banner-media:hover > img {
    transform: scale(1.015);
}

.banner-media:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: -5px;
}

.banner-placeholder {
    display: grid;
    place-items: center;
    background: var(--yellow-soft);
}

.banner-placeholder::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(120deg, transparent 0 46%, rgba(255, 203, 5, .55) 46% 54%, transparent 54%);
}

.banner-placeholder img {
    position: relative;
    width: min(35%, 280px);
    height: auto;
    object-fit: contain;
}

.banner-zoom {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    color: var(--surface);
    background: rgba(33, 31, 31, .88);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.banner-zoom svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.banner-caption {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 20px;
    padding: 24px 26px;
    background: var(--surface);
}

.banner-caption-copy > span {
    color: var(--red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.banner-caption-copy {
    min-width: 0;
    align-self: center;
}

.banner-caption h3 {
    margin: 8px 0 0;
    font-size: clamp(22px, 1.9vw, 28px);
    line-height: 1.08;
}

.banner-caption-side {
    display: flex;
    flex: 0 0 auto;
    align-self: stretch;
    align-items: flex-end;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
}

.banner-number {
    color: #dfd5c8;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.banner-cta {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    color: var(--ink);
    background: var(--yellow);
    border: 1px solid var(--ink);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease;
}

.banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0 var(--ink);
}

.how {
    position: relative;
    overflow: hidden;
    color: var(--ink);
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.how-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    align-items: center;
    gap: 100px;
}

.how .eyebrow {
    color: var(--red);
}

.how .eyebrow > span {
    background: var(--yellow);
}

.how h2 .accent {
    color: var(--red);
}

.how-copy > p:not(.eyebrow) {
    max-width: 430px;
    margin: 25px 0 32px;
    color: var(--muted);
    font-size: 18px;
}

.steps {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps::before {
    display: none;
}

.steps li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 112px;
    padding: 22px 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 9px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.steps li:hover {
    border-color: var(--ink);
    box-shadow: 5px 5px 0 var(--yellow);
    transform: translate(-2px, -2px);
}

.step-number {
    position: relative;
    z-index: 2;
    display: grid;
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border: 2px solid var(--ink);
    border-radius: 8px;
    font-size: 24px;
    font-weight: 900;
}

.steps li > span:last-child {
    display: grid;
}

.steps b {
    font-size: 21px;
}

.steps small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 15px;
}

.locations {
    background: var(--paper);
}

.location-summary {
    display: grid;
    justify-items: end;
    gap: 14px;
}

.location-count {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.location-count b {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-size: 14px;
}

.delivery-panel {
    display: grid;
    width: 580px;
    max-width: 100%;
    gap: 12px;
    padding: 14px;
    color: var(--surface);
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 10px;
    box-shadow: 6px 6px 0 var(--yellow);
}

.delivery-heading {
    display: flex;
    align-items: baseline;
    gap: 10px;
    line-height: 1.15;
}

.delivery-heading span {
    color: var(--yellow);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.delivery-heading b {
    font-size: 18px;
}

.delivery-list {
    display: grid;
    min-width: 0;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 8px;
}

.delivery-list a {
    --delivery-accent: var(--yellow);
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    padding: 7px 8px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, .25);
    border-top: 3px solid var(--delivery-accent);
    border-radius: 8px;
    transition: background .2s ease, transform .2s ease;
}

.delivery-list .delivery-service-wolt {
    --delivery-accent: #00c2e8;
}

.delivery-list .delivery-service-bolt {
    --delivery-accent: #34d186;
}

.delivery-list .delivery-service-paytoeat {
    --delivery-accent: #ef3b2d;
}

.delivery-logo {
    display: grid;
    width: 52px;
    height: 46px;
    flex: 0 0 52px;
    padding: 6px;
    place-items: center;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 7px;
}

.delivery-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.delivery-service-paytoeat .delivery-logo {
    padding: 3px;
}

.delivery-list a > span:not(.delivery-logo) {
    display: grid;
    min-width: 0;
    flex: 1;
    line-height: 1.1;
}

.delivery-list small {
    color: var(--muted);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.delivery-list b {
    margin-top: 4px;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.delivery-list svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    margin-left: auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.delivery-list a:hover {
    background: #fff8dc;
    transform: translateY(-2px);
}

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

.location-card {
    position: relative;
    display: flex;
    min-height: 260px;
    flex-direction: column;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.location-card:hover {
    border-color: var(--ink);
    transform: translateY(-4px);
    box-shadow: 8px 9px 0 rgba(33, 31, 31, .08);
}

.location-card-head {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 22px 22px 0;
}

.pin {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 7px;
}

.pin svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.location-label {
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.location-index {
    margin-left: auto;
    color: var(--line);
    font-size: 31px;
    font-weight: 900;
    line-height: 1;
}

.location-card-body {
    padding: 25px 22px 24px;
}

.location-card-body h3 {
    margin: 0 0 18px;
    font-size: 27px;
    line-height: 1.1;
}

.location-address,
.location-hours {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.4;
}

.location-hours {
    margin-top: 10px;
    font-size: 15px;
}

.location-address svg,
.location-hours svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: none;
    stroke: var(--red);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.map-button {
    display: flex;
    min-height: 73px;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding: 13px 17px;
    color: var(--surface);
    background: var(--ink);
    border-top: 1px solid var(--ink);
    transition: color .2s ease, background .2s ease;
}

.map-button:hover {
    color: var(--ink);
    background: var(--yellow);
}

.map-button > span:nth-child(2) {
    display: grid;
    line-height: 1.05;
}

.map-button small {
    margin-bottom: 4px;
    color: #cfc7bd;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.map-button:hover small {
    color: var(--muted);
}

.map-button b {
    font-size: 14px;
}

.map-button > svg {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    margin-left: auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.google-map-mark {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    background: var(--surface);
    border-radius: 7px;
}

.google-map-mark::before {
    width: 15px;
    height: 19px;
    content: "";
    background: var(--red);
    border-radius: 50% 50% 50% 3px;
    transform: rotate(-45deg);
}

.gmap-dot {
    position: absolute;
    top: 14px;
    left: 16px;
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
}

.map-button-disabled {
    color: var(--muted);
    background: var(--line);
    border-color: var(--line);
}

.map-button-disabled > span:first-child {
    display: grid;
}

.map-button-disabled small {
    color: var(--muted);
}

.empty-state {
    display: flex;
    min-height: 190px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 36px;
    color: var(--muted);
    background: var(--surface);
    border: 1px dashed var(--line);
    border-radius: 8px;
}

.empty-state .pin {
    flex: 0 0 46px;
    color: var(--ink);
}

.empty-state > div {
    max-width: 540px;
}

.empty-state b {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 17px;
}

.empty-state p {
    margin: 0;
}

.download-section {
    padding-top: 20px;
}

.download-card {
    position: relative;
    display: grid;
    min-height: 460px;
    grid-template-columns: 260px minmax(0, 1fr) 260px;
    align-items: center;
    gap: 45px;
    overflow: hidden;
    padding: 70px;
    color: var(--surface);
    background: var(--ink);
    border-radius: 8px;
}

.download-logo {
    position: relative;
    z-index: 2;
    padding: 24px;
    background: var(--yellow);
    border: 3px solid var(--surface);
    border-radius: 26px;
    box-shadow: 12px 12px 0 var(--red);
    transform: rotate(-5deg);
}

.download-logo img {
    width: 100%;
    border-radius: 12px;
}

.download-copy {
    position: relative;
    z-index: 2;
}

.download-copy h2 .accent {
    color: var(--yellow);
}

.download-copy > p:not(.eyebrow) {
    max-width: 500px;
    margin: 24px 0;
    color: #cfc7bd;
    font-size: 17px;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.store-buttons a {
    display: block;
    flex: 0 0 auto;
    border-radius: 8px;
    transition: transform .2s ease, filter .2s ease;
}

.store-buttons a:hover {
    transform: translateY(-3px);
    filter: drop-shadow(4px 5px 0 rgba(255, 203, 5, .55));
}

.store-buttons img {
    width: auto;
    height: 56px;
    object-fit: contain;
}

.download-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 340px;
    overflow: hidden;
}

.download-decoration > span {
    position: absolute;
    top: 2px;
    right: -58px;
    color: rgba(255, 203, 5, .13);
    font-size: 420px;
    font-weight: 900;
    line-height: 1;
}

.download-decoration i,
.download-decoration b {
    position: absolute;
    border-radius: 50%;
}

.download-decoration i {
    top: 48px;
    right: 42px;
    width: 48px;
    height: 48px;
    background: var(--red);
}

.download-decoration b {
    right: 115px;
    bottom: 50px;
    width: 24px;
    height: 24px;
    background: var(--yellow);
}

.site-footer {
    padding: 64px 0 22px;
    color: var(--surface);
    background: var(--ink);
    border-top: 4px solid var(--yellow);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.05fr .9fr 1fr;
    align-items: start;
    gap: 56px;
    padding-bottom: 40px;
}

.footer-intro p {
    max-width: 300px;
    margin: 18px 0 0;
    color: #bdb5ad;
    font-size: 14px;
}

.footer-brand {
    color: var(--surface);
}

.footer-brand > img {
    padding: 4px;
    background: var(--surface);
    border-radius: 8px;
}

.footer-brand .brand-copy small {
    color: var(--yellow);
}

.footer-label {
    color: var(--yellow);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-contact {
    display: grid;
    gap: 10px;
}

.footer-contact .footer-label {
    margin-bottom: 4px;
}

.footer-contact a {
    display: inline-flex;
    width: min(100%, 270px);
    min-height: 46px;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    color: var(--surface);
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-contact a:hover {
    background: rgba(255, 203, 5, .1);
    border-color: var(--yellow);
    transform: translateX(3px);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    color: var(--yellow);
}

.footer-actions {
    display: grid;
    justify-items: end;
    gap: 18px;
}

.footer-social-wrap {
    display: grid;
    justify-items: end;
    gap: 9px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-link {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    border: 2px solid var(--surface);
    border-radius: 8px;
    transition: box-shadow .2s ease, transform .2s ease;
}

.social-link:hover {
    box-shadow: 3px 3px 0 var(--yellow);
    transform: translate(-1px, -1px);
}

.social-instagram {
    background: var(--red);
}

.social-facebook {
    background: #1877f2;
}

.social-link svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.social-facebook svg,
.social-dot {
    fill: currentColor;
    stroke: none;
}

.footer-actions nav {
    display: grid;
    justify-content: end;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-align: right;
    color: #d4ccc4;
}

.footer-actions nav a:hover {
    color: var(--yellow);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    color: #948d86;
    border-top: 1px solid rgba(255, 255, 255, .13);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-bottom b {
    color: var(--yellow);
    -webkit-text-stroke: 1px var(--ink);
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s ease;
}

.footer-credit strong {
    color: var(--surface);
    font-weight: 900;
}

.footer-credit:hover,
.footer-credit:hover strong {
    color: var(--yellow);
}

.document-hero {
    padding: 78px 0 86px;
    background: var(--yellow);
    border-bottom: 2px solid var(--ink);
}

.document-heading {
    position: relative;
}

.document-heading .eyebrow {
    margin-top: 60px;
    color: var(--ink);
}

.document-heading .eyebrow span {
    background: var(--red);
}

.document-heading h1 {
    max-width: 900px;
    font-size: clamp(48px, 7vw, 86px);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--ink);
    font-size: 13px;
    font-weight: 900;
}

.back-link svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
}

.updated-at {
    margin: 22px 0 0;
    font-size: 13px;
    font-weight: 700;
}

.document-wrap {
    padding-top: 74px;
}

.document-grid {
    display: grid;
    grid-template-columns: 245px minmax(0, 760px);
    justify-content: space-between;
    gap: 72px;
}

.document-aside {
    position: sticky;
    top: 120px;
    align-self: start;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.document-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin-bottom: 20px;
    background: var(--yellow);
    border-radius: 7px;
    font-size: 22px;
    font-weight: 900;
}

.document-aside strong {
    display: block;
    font-size: 16px;
}

.document-aside p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.document-content {
    min-width: 0;
    padding: 46px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.75;
}

.document-content > :first-child,
.document-content > :first-child > :first-child {
    margin-top: 0;
}

.document-content > :last-child,
.document-content > :last-child > :last-child {
    margin-bottom: 0;
}

.document-content h1,
.document-content h2,
.document-content h3,
.document-content h4 {
    margin: 2.2em 0 .7em;
    letter-spacing: -.02em;
    line-height: 1.15;
}

.document-content h1 {
    font-size: 36px;
}

.document-content h2 {
    font-size: 29px;
}

.document-content h3 {
    font-size: 22px;
}

.document-content p,
.document-content ul,
.document-content ol,
.document-content table {
    margin: 0 0 1.2em;
}

.document-content ul,
.document-content ol {
    padding-left: 1.3em;
}

.document-content a {
    color: var(--red);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.document-content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.document-content th,
.document-content td {
    padding: 10px 12px;
    border: 1px solid var(--line);
    text-align: left;
}

.document-content blockquote {
    margin: 1.5em 0;
    padding: 18px 22px;
    background: var(--yellow-soft);
    border-left: 4px solid var(--yellow);
}

.api-error {
    padding: 30px;
    background: #fff3f3;
    border: 1px solid #f0c8cb;
    border-radius: 8px;
}

.api-error h2 {
    margin-top: 0;
}

.download-strip {
    padding: 34px 0;
    color: var(--surface);
    background: var(--ink);
}

.download-strip .container,
.download-strip .container > span,
.download-strip .container > div {
    display: flex;
    align-items: center;
}

.download-strip .container {
    justify-content: space-between;
    gap: 30px;
}

.download-strip .container > span {
    gap: 15px;
}

.download-strip .container > span::before {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--ink);
    content: "U";
    background: var(--yellow);
    border-radius: 8px;
    font-weight: 900;
}

.download-strip .container > span > span,
.download-strip .container > span {
    line-height: 1.15;
}

.download-strip .container > span {
    flex-wrap: wrap;
}

.download-strip b,
.download-strip small {
    display: block;
}

.download-strip small {
    color: #cfc7bd;
}

.download-strip .container > div {
    gap: 10px;
}

.download-strip a {
    padding: 10px 14px;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 900;
}

.not-found {
    min-height: 640px;
    display: grid;
    align-items: center;
}

.not-found p:not(.eyebrow) {
    margin: 28px 0;
    color: var(--muted);
    font-size: 19px;
}

.app-popup[hidden] {
    display: none;
}

.app-popup {
    position: fixed;
    z-index: 300;
    inset: 0;
    display: grid;
    padding: 24px;
    place-items: center;
    opacity: 0;
    transition: opacity .22s ease;
}

.app-popup.is-open {
    opacity: 1;
}

.app-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(33, 31, 31, .76);
    backdrop-filter: blur(5px);
}

.app-popup-dialog {
    position: relative;
    display: grid;
    width: min(570px, 100%);
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    padding: 44px 48px 40px;
    overflow: hidden;
    background: var(--yellow);
    border: 3px solid var(--ink);
    border-radius: 10px;
    box-shadow: 10px 10px 0 var(--red), 0 28px 80px rgba(0, 0, 0, .34);
    transform: translateY(18px) scale(.97);
    transition: transform .22s ease;
}

.app-popup.is-open .app-popup-dialog {
    transform: none;
}

.app-popup-dialog::after {
    position: absolute;
    right: -42px;
    bottom: -104px;
    color: rgba(33, 31, 31, .08);
    content: "U";
    font-size: 250px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.app-popup-close {
    position: absolute;
    z-index: 3;
    top: 14px;
    right: 14px;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    color: var(--surface);
    background: var(--red);
    border: 2px solid var(--ink);
    border-radius: 50%;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.app-popup-close:hover {
    background: var(--ink);
    transform: rotate(5deg) scale(1.05);
}

.app-popup-close:focus-visible,
.app-popup-stores a:focus-visible {
    outline: 3px solid var(--surface);
    outline-offset: 3px;
}

.app-popup-close svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2.2;
}

.app-popup-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
    text-align: center;
}

.app-popup-icon {
    width: 104px;
    height: 104px;
    margin: 0 auto 20px;
    object-fit: contain;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: 22px;
    box-shadow: 6px 6px 0 var(--red);
    transform: rotate(-3deg);
}

.app-popup-copy .eyebrow {
    justify-content: center;
    margin-bottom: 13px;
    color: var(--red);
}

.app-popup-copy .eyebrow > span {
    background: var(--ink);
}

.app-popup-copy h2 {
    font-size: clamp(38px, 5vw, 54px);
    line-height: .94;
}

.app-popup-copy h2 > span {
    display: block;
    color: var(--red);
}

.app-popup-copy > p:not(.eyebrow) {
    max-width: 390px;
    margin: 20px auto 24px;
    font-weight: 700;
    line-height: 1.45;
}

.app-popup-stores {
    position: relative;
    z-index: 2;
    gap: 9px;
    justify-content: center;
}

.app-popup-stores a {
    width: 154px;
    background: transparent;
    border: 0;
}

.app-popup-stores a:hover {
    box-shadow: none;
    transform: translateY(-2px);
}

@media (max-width: 1050px) {
    .hero-grid {
        gap: 30px;
    }

    .phone-stage {
        transform: scale(.9);
    }

    .food-highlight-copy {
        padding: 46px 38px;
    }

    .chip-qr {
        left: -20px;
    }

    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-card {
        grid-template-columns: 210px 1fr;
        padding: 52px;
    }

    .download-decoration {
        display: none;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100% - 32px, var(--container));
    }

    .header-inner {
        height: 76px;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        z-index: 90;
        top: 76px;
        right: 0;
        left: 0;
        display: grid;
        align-content: start;
        gap: 0;
        min-height: calc(100vh - 76px);
        padding: 24px 16px;
        background: var(--paper);
        border-top: 1px solid var(--line);
        transform: translateX(100%);
        transition: transform .25s ease;
    }

    .site-nav.open {
        transform: none;
    }

    .site-nav > a:not(.nav-cta) {
        padding: 18px 10px;
        border-bottom: 1px solid var(--line);
        font-size: 18px;
    }

    .site-nav .nav-cta {
        margin-top: 24px;
    }

    .banner-track {
        grid-auto-columns: 100%;
        gap: 0;
    }

    .hero,
    .hero-grid {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 76px;
        padding-bottom: 30px;
        text-align: center;
    }

    .hero-copy {
        max-width: 680px;
        margin: 0 auto;
    }

    .hero-copy .eyebrow,
    .hero-actions,
    .hero-note {
        justify-content: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-wash {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 45%;
    }

    .hero-wash::before {
        top: -75px;
        left: -5%;
        width: 110%;
        height: 130px;
        border-radius: 0 0 50% 50%;
        transform: none;
    }

    .phone-stage {
        min-height: 570px;
        transform: scale(.88);
        transform-origin: center top;
    }

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

    .benefit-card {
        min-height: 240px;
    }

    .food-highlight-card {
        grid-template-columns: 1fr;
    }

    .food-highlight-copy {
        padding: 52px 46px;
    }

    .food-highlight-media {
        min-height: 420px;
        border-top: 2px solid var(--ink);
        border-left: 0;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .download-card {
        grid-template-columns: 150px 1fr;
        gap: 34px;
        padding: 44px 32px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-actions {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
        align-items: end;
    }

    .footer-social-wrap {
        justify-items: start;
    }

    .document-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .document-aside {
        position: static;
    }
}

@media (max-width: 580px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .brand img {
        width: 48px;
    }

    .brand-copy strong {
        font-size: 18px;
    }

    .hero-grid {
        padding-top: 52px;
    }

    h1 {
        font-size: clamp(45px, 14vw, 64px);
    }

    h2 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 14px;
    }

    .hero-store-links {
        justify-content: center;
    }

    .hero-store-links img {
        height: clamp(40px, 12vw, 48px);
    }

    .hero-note {
        margin-top: 32px;
        text-align: left;
    }

    .phone-stage {
        width: 115%;
        min-height: 520px;
        margin-left: -7.5%;
        transform: scale(.8);
    }

    .phone {
        width: 290px;
    }

    .chip-heart {
        right: 0;
    }

    .chip-qr {
        left: -5px;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .food-highlight-copy {
        padding: 42px 24px 44px;
    }

    .food-highlight-copy > p:not(.eyebrow) {
        font-size: 16px;
    }

    .food-highlight-copy .button {
        width: 100%;
        padding-inline: 16px;
    }

    .food-highlight-media {
        min-height: 300px;
    }

    .food-highlight-media figcaption {
        right: 14px;
        bottom: 14px;
    }

    .row-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .slider-navigation {
        width: 100%;
        justify-content: space-between;
    }

    .banner-track {
        grid-auto-columns: 100%;
    }

    .banner-media {
        aspect-ratio: 16 / 9;
    }

    .banner-zoom {
        right: 12px;
        bottom: 12px;
        width: 40px;
        height: 40px;
        justify-content: center;
        padding: 0;
        overflow: hidden;
        font-size: 0;
    }

    .banner-caption {
        min-height: 0;
        align-items: stretch;
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 22px 20px 20px;
    }

    .banner-caption h3 {
        font-size: 25px;
    }

    .banner-caption-side {
        align-self: auto;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

    .banner-number {
        font-size: 28px;
    }

    .app-popup-dialog {
        width: min(440px, 100%);
        padding: 38px 26px 30px;
        box-shadow: 7px 7px 0 var(--red), 0 24px 65px rgba(0, 0, 0, .32);
    }

    .app-popup-icon {
        width: 92px;
        height: 92px;
        margin-bottom: 18px;
    }

    .app-popup-copy .eyebrow {
        justify-content: center;
    }

    .app-popup-copy h2 {
        font-size: clamp(38px, 11vw, 48px);
    }

    .app-popup-copy > p:not(.eyebrow) {
        margin: 16px auto 20px;
    }

    .app-popup-stores {
        justify-content: center;
    }

    .how .button {
        width: 100%;
    }

    .steps li {
        gap: 16px;
    }

    .step-number {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .steps::before {
        left: 26px;
    }

    .steps b {
        font-size: 18px;
    }

    .steps small {
        font-size: 13px;
    }

    .delivery-list {
        width: 100%;
    }

    .delivery-panel {
        width: 100%;
    }

    .location-summary {
        width: 100%;
        justify-items: start;
    }

    .delivery-panel {
        align-items: stretch;
        gap: 12px;
    }

    .delivery-heading {
        min-width: 0;
    }

    .delivery-list a:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

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

    .download-section {
        padding-top: 0;
    }

    .download-card {
        grid-template-columns: 1fr;
        padding: 38px 24px;
        text-align: center;
    }

    .download-logo {
        width: 124px;
        margin: 0 auto;
        padding: 14px;
        border-radius: 18px;
    }

    .download-copy .eyebrow,
    .store-buttons {
        justify-content: center;
    }

    .store-buttons a {
        width: auto;
    }

    .store-buttons img {
        height: 50px;
    }

    .app-popup-stores a {
        width: min(154px, calc(50% - 5px));
    }

    .app-popup-stores img {
        width: 100%;
        height: auto;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-actions {
        grid-column: auto;
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .footer-actions nav {
        justify-content: start;
        text-align: left;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .document-hero {
        padding: 46px 0 56px;
    }

    .document-heading .eyebrow {
        margin-top: 45px;
    }

    .document-wrap {
        padding: 40px 0 70px;
    }

    .document-content {
        padding: 24px 20px;
        font-size: 15px;
    }

    .document-content h2 {
        font-size: 25px;
    }

    .download-strip .container {
        align-items: stretch;
        flex-direction: column;
    }

    .download-strip .container > div {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .download-strip a {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
