/*
|--------------------------------------------------------------------------
| EMOTIONAL SUPPORT PIZZA(TM) - Shared Styles
|--------------------------------------------------------------------------
|
| Visual system:
| THE NEIGHBORHOOD PIZZERIA
|
| Tomato red
| Mozzarella cream
| Charred black
| Basil green
| Oven-brick red
| Flour white
| Kraft-box brown
|
| Food-first.
| Warm.
| Loud.
| Familiar.
| Definitely not an automotive service website wearing a pizza costume.
|
|--------------------------------------------------------------------------
*/


/* ==========================================================================
   ROOT
   ========================================================================== */

:root {
    --red: #c92d24;
    --red-dark: #982019;
    --red-deep: #711813;
    --red-light: #e1493e;

    --cream: #f5ecdc;
    --cream-soft: #eee1cc;
    --cream-deep: #ddccb0;

    --white: #fffaf2;

    --black: #151412;
    --black-soft: #24211d;
    --black-warm: #332d27;

    --green: #356f45;
    --green-dark: #255334;
    --green-light: #5f9569;

    --crust: #c88b47;
    --crust-light: #e0b06d;
    --kraft: #ad8053;

    --brick: #87382d;
    --brick-dark: #5f2822;

    --orange: #df6838;
    --gold: #dca542;

    --gray: #746e66;
    --gray-light: #b8afa1;

    --border-dark: #1a1815;
    --border-light: #c7b8a1;

    --text-dark: #181613;
    --text-soft: #5f584f;
    --text-light: #f8f0e4;
    --text-muted: #cfc3b2;

    --shadow-small: 5px 5px 0 rgba(21, 20, 18, 0.14);
    --shadow-medium: 9px 9px 0 rgba(21, 20, 18, 0.16);
    --shadow-dark: 10px 10px 0 rgba(0, 0, 0, 0.28);

    --container: 1480px;
    --page-padding: clamp(20px, 4vw, 64px);

    --font-display:
        "Arial Black",
        "Franklin Gothic Medium",
        Arial,
        Helvetica,
        sans-serif;

    --font-body:
        Arial,
        Helvetica,
        sans-serif;
}


/* ==========================================================================
   RESET
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    letter-spacing: -0.045em;
    line-height: 0.93;
    text-transform: uppercase;
}

::selection {
    background: var(--red);
    color: var(--white);
}


/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    background: var(--white);
    color: var(--black);
    border: 3px solid var(--black);
    font-family: var(--font-display);
    font-size: 12px;
    text-transform: uppercase;
    transform: translateY(-180%);
    transition: transform 150ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}


/* ==========================================================================
   SHARED BUTTONS
   ========================================================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border: 3px solid transparent;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.025em;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background-color 150ms ease,
        color 150ms ease,
        border-color 150ms ease,
        transform 150ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--large {
    min-height: 60px;
    padding: 17px 28px;
    font-size: 12px;
}

.button--red {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.button--red:hover,
.button--red:focus-visible {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

.button--cream {
    background: var(--cream);
    color: var(--black);
    border-color: var(--cream);
}

.button--cream:hover,
.button--cream:focus-visible {
    background: var(--white);
    border-color: var(--white);
}

.button--dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.button--dark:hover,
.button--dark:focus-visible {
    background: var(--red);
    border-color: var(--red);
}

.button--ghost {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.button--ghost:hover,
.button--ghost:focus-visible {
    background: var(--black);
    color: var(--white);
}

.button--outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
    background: var(--white);
    color: var(--black);
}

.button--outline-dark {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.button--outline-dark:hover,
.button--outline-dark:focus-visible {
    background: var(--black);
    color: var(--white);
}


/* ==========================================================================
   SHARED TEXT
   ========================================================================== */

.section-label {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--red);
    font-family: var(--font-display);
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-label--light {
    color: var(--cream);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--red);
}


/* ==========================================================================
   PROMO BAR
   ========================================================================== */

.promo-bar {
    background: var(--green-dark);
    color: var(--white);
}

.promo-bar__inner {
    width: 100%;
    max-width: var(--container);
    min-height: 38px;
    margin: 0 auto;
    padding: 8px var(--page-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.promo-bar p {
    margin: 0;
    font-size: 12px;
}

.promo-bar strong {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.promo-bar a {
    flex: 0 0 auto;
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 0.05em;
    text-decoration: underline;
    text-transform: uppercase;
}


/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
    position: relative;
    z-index: 100;
    background: var(--cream);
    color: var(--black);
    border-bottom: 2px solid var(--black);
}

.site-header__inner {
    width: 100%;
    max-width: var(--container);
    min-height: 104px;
    margin: 0 auto;
    padding: 14px var(--page-padding);
    display: grid;
    grid-template-columns: minmax(250px, 1fr) auto auto;
    align-items: center;
    gap: 32px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
}

.brand__main {
    color: var(--black);
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.brand__pizza {
    margin-top: 2px;
    color: var(--red);
    font-family: var(--font-display);
    font-size: 37px;
    line-height: 0.82;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.brand__tagline {
    margin-top: 8px;
    color: var(--text-soft);
    font-family: var(--font-display);
    font-size: 7px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
}

.primary-nav a {
    position: relative;
    padding: 12px 0;
    font-family: var(--font-display);
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: 6px;
    left: 0;
    height: 3px;
    background: var(--red);
    transition: right 150ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    right: 0;
}

.header-order {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-order .button {
    min-width: 104px;
    min-height: 46px;
    padding: 12px 17px;
}

.nav-toggle {
    display: none;
    width: 47px;
    height: 43px;
    padding: 8px;
    background: transparent;
    border: 2px solid var(--black);
    border-radius: 50%;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--black);
}


/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    min-height: 730px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    background: var(--red);
    color: var(--white);
}

.hero__photo {
    position: relative;
    min-height: 730px;
    overflow: hidden;
    background-image:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(0, 0, 0, 0.05) 48%,
            rgba(0, 0, 0, 0.68) 100%
        ),
        url("../images/food/hero-everything-is-fine.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center,
            transparent 0%,
            transparent 43%,
            rgba(0, 0, 0, 0.32) 72%,
            rgba(0, 0, 0, 0.64) 100%
        );
}

.hero__photo::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 42%;
    background:
        linear-gradient(
            transparent,
            rgba(12, 10, 9, 0.86)
        );
}

.hero__photo-badge {
    position: absolute;
    z-index: 2;
    top: 30px;
    left: 30px;
    padding: 10px 14px;
    background: var(--cream);
    color: var(--black);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero__pizza-label {
    position: absolute;
    z-index: 2;
    right: 32px;
    bottom: 30px;
    left: 32px;
    max-width: 620px;
}

.hero__pizza-label span,
.hero__pizza-label strong,
.hero__pizza-label small {
    display: block;
}

.hero__pizza-label span {
    margin-bottom: 6px;
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__pizza-label strong {
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 62px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.hero__pizza-label small {
    margin-top: 9px;
    color: #e8ddd0;
    font-size: 12px;
    text-transform: uppercase;
}

.hero__content {
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 7vw, 105px) clamp(30px, 3.5vw, 54px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__content::before {
    content: "PIZZA";
    position: absolute;
    right: -30px;
    bottom: -35px;
    color: rgba(255, 255, 255, 0.055);
    font-family: var(--font-display);
    font-size: clamp(130px, 14vw, 230px);
    line-height: 0.8;
    letter-spacing: -0.09em;
    transform: rotate(-90deg) translateX(5%);
    transform-origin: right bottom;
    pointer-events: none;
}

.kicker {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    color: #ffe6df;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-bottom: 24px;
    font-size: clamp(56px, 5.4vw, 82px);
}

.hero h1 span {
    display: block;
    color: var(--cream);
}

.hero__lead {
    position: relative;
    z-index: 1;
    max-width: 570px;
    margin-bottom: 30px;
    color: #ffe8e2;
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.6;
}

.hero__buttons {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero__fine-print {
    position: relative;
    z-index: 1;
    margin: 26px 0 0;
    color: #ffd3cb;
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


/* ==========================================================================
   QUICK ORDER
   ========================================================================== */

.quick-order {
    background: var(--black);
    color: var(--white);
}

.quick-order__inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding:
        clamp(50px, 6vw, 80px)
        var(--page-padding);
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
    gap: clamp(40px, 7vw, 100px);
}

.quick-order__intro .section-label {
    color: var(--crust-light);
}

.quick-order__intro h2 {
    max-width: 500px;
    margin-bottom: 0;
    font-size: clamp(39px, 4.2vw, 64px);
}

.order-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.order-choice {
    min-height: 160px;
    padding: 24px;
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 20px;
    background: var(--cream);
    color: var(--black);
    border-radius: 14px;
    transition:
        background-color 150ms ease,
        transform 150ms ease;
}

.order-choice:hover,
.order-choice:focus-visible {
    background: var(--white);
    transform: translateY(-3px);
}

.order-choice__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 24px;
}

.order-choice__content small,
.order-choice__content strong,
.order-choice__content span {
    display: block;
}

.order-choice__content small {
    margin-bottom: 4px;
    color: var(--red);
    font-family: var(--font-display);
    font-size: 8px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.order-choice__content strong {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
}

.order-choice__content span {
    margin-top: 7px;
    color: var(--text-soft);
    font-size: 12px;
}


/* ==========================================================================
   DEALS
   ========================================================================== */

.deals {
    background: var(--cream);
    padding:
        clamp(78px, 8vw, 118px)
        var(--page-padding);
}

.deals__header,
.deal-grid {
    width: 100%;
    max-width: var(--container);
    margin-right: auto;
    margin-left: auto;
}

.deals__header {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
    align-items: end;
    gap: 60px;
}

.deals__header h2 {
    max-width: 820px;
    margin-bottom: 0;
    font-size: clamp(45px, 5vw, 74px);
}

.deals__header > p {
    max-width: 560px;
    margin-bottom: 5px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.7;
}

.deal-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 14px;
}

.deal-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
    display: grid;
    grid-template-rows: auto 220px;
}

.deal-card--red {
    background: var(--red);
    color: var(--white);
}

.deal-card--cream {
    background: var(--cream-soft);
    color: var(--black);
    border: 2px solid var(--border-light);
}

.deal-card--green {
    background: var(--green-dark);
    color: var(--white);
}

.deal-card__copy {
    min-height: 285px;
    padding: 26px;
    display: flex;
    flex-direction: column;
}

.deal-card__eyebrow {
    margin-bottom: 14px;
    font-family: var(--font-display);
    font-size: 8px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.deal-card--red .deal-card__eyebrow,
.deal-card--green .deal-card__eyebrow {
    color: var(--cream);
}

.deal-card--cream .deal-card__eyebrow {
    color: var(--red);
}

.deal-card h3 {
    margin-bottom: 14px;
    font-size: clamp(28px, 2.5vw, 39px);
}

.deal-card p {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.65;
}

.deal-card__bottom {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    border-top: 1px solid currentColor;
}

.deal-card__bottom strong {
    font-family: var(--font-display);
    font-size: 24px;
}

.deal-card__bottom a {
    font-family: var(--font-display);
    font-size: 9px;
    text-transform: uppercase;
}

.deal-card__photo {
    position: relative;
    overflow: hidden;
}

.deal-card__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            transparent 60%,
            rgba(0, 0, 0, 0.26)
        );
}

.deal-card__photo--bad-day {
    background-image: url("../images/food/deal-bad-day-bundle.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.deal-card__photo--group-chat {
    background-image: url("../images/food/deal-group-chat.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.deal-card__photo--late-night {
    background-image: url("../images/food/deal-late-night.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.deal-card__photo--service-delivery {
    background-image: url("../images/restaurant/service-delivery.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.deal-card__photo--service-pickup {
    background-image: url("../images/restaurant/service-pickup.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.deal-card__photo--service-catering {
    background-image: url("../images/restaurant/service-catering.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.deal-card__photo--allergen-wheat {
    background-image: url("../images/food/allergen-wheat.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.deal-card__photo--allergen-milk {
    background-image: url("../images/food/allergen-milk.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.deal-card__photo--allergen-other {
    background-image: url("../images/food/allergen-other.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.deal-card__photo--dietary-vegetarian {
    background-image: url("../images/food/dietary-vegetarian.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.deal-card__photo--dietary-gluten-conscious {
    background-image: url("../images/food/dietary-gluten-conscious.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.deal-card__photo--dietary-dairy-free {
    background-image: url("../images/food/dietary-dairy-free.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.deal-card__photo--career-pizza-cook {
    background-image: url("../images/restaurant/career-pizza-cook.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.deal-card__photo--career-counter-crew {
    background-image: url("../images/restaurant/career-counter-crew.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.deal-card__photo--career-delivery-driver {
    background-image: url("../images/restaurant/career-delivery-driver.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* ==========================================================================
   MENU CATEGORIES
   ========================================================================== */

.menu-categories {
    background: var(--white);
    padding:
        clamp(78px, 8vw, 118px)
        var(--page-padding);
}

.menu-categories__heading,
.category-grid {
    width: 100%;
    max-width: var(--container);
    margin-right: auto;
    margin-left: auto;
}

.menu-categories__heading {
    margin-bottom: 38px;
}

.menu-categories__heading h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(46px, 5vw, 74px);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.category-card {
    overflow: hidden;
    background: var(--cream);
    border-radius: 14px;
    transition: transform 150ms ease;
}

.category-card:hover,
.category-card:focus-visible {
    transform: translateY(-4px);
}

.category-card__photo {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.category-card__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            transparent 54%,
            rgba(0, 0, 0, 0.3)
        );
}

.category-card--pizza .category-card__photo {
    background-image: url("../images/food/category-pizza.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-card--wings .category-card__photo {
    background-image: url("../images/food/category-wings.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-card--sides .category-card__photo {
    background-image: url("../images/food/category-sides.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-card--dessert .category-card__photo {
    background-image: url("../images/food/category-dessert.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-card__copy {
    padding: 21px 22px 23px;
}

.category-card__copy strong,
.category-card__copy span {
    display: block;
}

.category-card__copy strong {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
}

.category-card__copy span {
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 12px;
}


/* ==========================================================================
   FEATURED PIZZAS
   ========================================================================== */

.featured-menu {
    background: var(--cream-soft);
    padding:
        clamp(78px, 8vw, 118px)
        var(--page-padding);
}

.featured-menu__heading,
.pizza-grid {
    width: 100%;
    max-width: var(--container);
    margin-right: auto;
    margin-left: auto;
}

.featured-menu__heading {
    margin-bottom: 38px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
}

.featured-menu__heading h2 {
    max-width: 820px;
    margin-bottom: 0;
    font-size: clamp(46px, 5vw, 76px);
}

.pizza-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pizza-card {
    overflow: hidden;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-small);
}

.pizza-card__photo {
    position: relative;
    min-height: 315px;
    overflow: hidden;
}

.pizza-card__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center,
            transparent 0%,
            transparent 48%,
            rgba(0, 0, 0, 0.22) 100%
        );
}

.pizza-card__photo--fine {
    background-image: url("../images/food/pizza-everything-is-fine.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pizza-card__photo--minimum {
    background-image: url("../images/food/pizza-bare-minimum.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pizza-card__photo--chat {
    background-image: url("../images/food/pizza-group-chat.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pizza-card__photo--ghosted {
    background-image: url("../images/food/pizza-ghosted-again.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pizza-card__photo--meeting {
    background-image: url("../images/food/pizza-shouldve-been-an-email.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pizza-card__photo--vegetable {
    background-image: url("../images/food/pizza-technically-self-care.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pizza-card__badge {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    padding: 8px 11px;
    background: var(--cream);
    color: var(--black);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pizza-card__body {
    padding: 23px;
}

.pizza-card__title-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 20px;
    margin-bottom: 13px;
}

.pizza-card h3 {
    margin-bottom: 0;
    font-size: clamp(23px, 2vw, 31px);
}

.pizza-card__title-row > strong {
    color: var(--red);
    font-family: var(--font-display);
    font-size: 19px;
}

.pizza-card__body > p {
    min-height: 88px;
    margin-bottom: 17px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.65;
}

.pizza-card__order {
    display: block;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    color: var(--red);
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}


/* ==========================================================================
   WINGS
   ========================================================================== */

.wings-section {
    min-height: 720px;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    background: var(--black);
    color: var(--white);
}

.wings-section__photo {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background-image: url("../images/food/wings-choose-your-damage.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wings-section__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03),
            rgba(0, 0, 0, 0.58)
        );
}

.wings-section__photo-copy {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 28px;
    left: 30px;
}

.wings-section__photo-copy span,
.wings-section__photo-copy strong {
    display: block;
}

.wings-section__photo-copy span {
    margin-bottom: 4px;
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wings-section__photo-copy strong {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 102px);
    line-height: 0.85;
    text-transform: uppercase;
}

.wings-section__content {
    padding:
        clamp(70px, 8vw, 110px)
        clamp(36px, 5vw, 76px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wings-section h2 {
    max-width: 600px;
    margin-bottom: 22px;
    font-size: clamp(50px, 5.8vw, 86px);
}

.wings-section__lead {
    max-width: 600px;
    margin-bottom: 26px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.flavor-list {
    margin-bottom: 28px;
    border-top: 1px solid #4b4640;
}

.flavor-item {
    min-height: 78px;
    padding: 13px 0;
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #4b4640;
}

.flavor-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.flavor-dot--garlic {
    background: #e2cf9e;
}

.flavor-dot--lemon {
    background: #d5bf55;
}

.flavor-dot--buffalo {
    background: #d5522d;
}

.flavor-dot--honey {
    background: #c77c2e;
}

.flavor-dot--regret {
    background: #9c1b16;
}

.flavor-item strong,
.flavor-item div span {
    display: block;
}

.flavor-item strong {
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
}

.flavor-item div span {
    margin-top: 2px;
    color: #aca499;
    font-size: 11px;
}

.flavor-item > small {
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 9px;
}

.wings-section__content > .button {
    align-self: flex-start;
}


/* ==========================================================================
   BUILD YOUR OWN
   ========================================================================== */

.build-section {
    background:
        linear-gradient(
            rgba(245, 236, 220, 0.94),
            rgba(245, 236, 220, 0.94)
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 31px,
            rgba(96, 69, 45, 0.07) 32px
        );
    padding:
        clamp(78px, 8vw, 118px)
        var(--page-padding);
}

.build-section__heading,
.pizza-builder {
    width: 100%;
    max-width: var(--container);
    margin-right: auto;
    margin-left: auto;
}

.build-section__heading {
    max-width: var(--container);
    margin-bottom: 42px;
}

.build-section__heading h2 {
    max-width: 840px;
    margin-bottom: 13px;
    font-size: clamp(50px, 5.6vw, 84px);
}

.build-section__heading > p {
    max-width: 590px;
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 16px;
}

.pizza-builder {
    overflow: hidden;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.builder-group {
    padding: 28px;
    border-bottom: 2px solid var(--black);
}

.builder-group legend {
    width: 100%;
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-size: 21px;
    text-transform: uppercase;
}

.builder-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.builder-option {
    position: relative;
    min-height: 96px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
}

.builder-option:hover {
    border-color: var(--red);
}

.builder-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.builder-option:has(input:checked) {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.builder-option span,
.builder-option small {
    display: block;
}

.builder-option span {
    font-family: var(--font-display);
    font-size: 13px;
    text-transform: uppercase;
}

.builder-option small {
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 10px;
}

.builder-option:has(input:checked) small {
    color: #ffe2dc;
}

.topping-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.topping-grid label {
    position: relative;
    min-height: 54px;
    padding: 14px 15px 14px 42px;
    display: flex;
    align-items: center;
    background: var(--cream);
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 10px;
    text-transform: uppercase;
    cursor: pointer;
}

.topping-grid input {
    position: absolute;
    left: 15px;
    width: 17px;
    height: 17px;
    accent-color: var(--red);
}

.builder-submit {
    padding: 25px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    background: var(--black);
    color: var(--white);
}

.builder-submit > div span,
.builder-submit > div strong,
.builder-submit > div small {
    display: block;
}

.builder-submit > div span {
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: 8px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.builder-submit > div strong {
    margin-top: 2px;
    font-family: var(--font-display);
    font-size: 28px;
}

.builder-submit > div small {
    margin-top: 3px;
    color: #a99f92;
    font-size: 10px;
}

.builder-message {
    display: none;
    margin: 0;
    padding: 18px 28px;
    background: var(--green-dark);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 10px;
    text-transform: uppercase;
}

.builder-message.is-visible {
    display: block;
}


/* ==========================================================================
   SIDES
   ========================================================================== */

.sides-section {
    background: var(--white);
    padding:
        clamp(78px, 8vw, 118px)
        var(--page-padding);
}

.sides-section__heading,
.side-grid {
    width: 100%;
    max-width: var(--container);
    margin-right: auto;
    margin-left: auto;
}

.sides-section__heading {
    margin-bottom: 38px;
}

.sides-section__heading h2 {
    max-width: 830px;
    margin-bottom: 0;
    font-size: clamp(45px, 5vw, 76px);
}

.side-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.side-card {
    overflow: hidden;
    background: var(--cream);
    border-radius: 14px;
}

.side-card__photo {
    min-height: 300px;
}

.side-card__photo--knots {
    background-image: url("../images/food/side-emergency-garlic-knots.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.side-card__photo--sticks {
    background-image: url("../images/food/side-mozzarella-backup-plan.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.side-card__photo--salad {
    background-image: url("../images/food/side-the-responsible-choice.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.side-card__photo--career-team-meals {
    background-image: url("../images/restaurant/career-team-meals.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.side-card__photo--career-flexible-scheduling {
    background-image: url("../images/restaurant/career-flexible-scheduling.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.side-card__photo--career-learn-useful-things {
    background-image: url("../images/restaurant/career-learn-useful-things.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.side-card__photo--allergen-pizza-ingredients {
    background-image: url("../images/food/allergen-pizza-ingredients.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.side-card__photo--allergen-wings-sauces {
    background-image: url("../images/food/allergen-wings-sauces.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.side-card__photo--allergen-sides-dessert {
    background-image: url("../images/food/allergen-sides-dessert.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.side-card__body {
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 20px;
}

.side-card h3 {
    margin-bottom: 8px;
    font-size: 24px;
}

.side-card p {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.6;
}

.side-card__body > strong {
    color: var(--red);
    font-family: var(--font-display);
    font-size: 18px;
}


/* ==========================================================================
   DESSERT
   ========================================================================== */

.dessert-section {
    min-height: 650px;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    background: var(--brick-dark);
    color: var(--white);
}

.dessert-section__photo {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background-image: url("../images/food/dessert-cold-hearted-brownie.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dessert-section__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 58%,
            rgba(0, 0, 0, 0.6)
        );
}

.dessert-section__photo > span {
    position: absolute;
    z-index: 2;
    right: 26px;
    bottom: 22px;
    left: 26px;
    font-family: var(--font-display);
    font-size: clamp(54px, 7vw, 100px);
    line-height: 0.85;
    text-transform: uppercase;
}

.dessert-section__copy {
    padding:
        clamp(68px, 8vw, 110px)
        clamp(36px, 5vw, 76px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dessert-section h2 {
    max-width: 640px;
    margin-bottom: 22px;
    font-size: clamp(48px, 5.5vw, 82px);
}

.dessert-section__copy > p {
    max-width: 600px;
    margin-bottom: 26px;
    color: #e5d7cb;
    font-size: 16px;
    line-height: 1.7;
}

.dessert-menu {
    margin-bottom: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.dessert-menu > div {
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
}

.dessert-menu strong {
    color: var(--crust-light);
}

.dessert-section__copy > .button {
    align-self: flex-start;
}


/* ==========================================================================
   STORY
   ========================================================================== */

.story-section {
    min-height: 680px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: var(--cream);
}

.story-section__copy {
    padding:
        clamp(72px, 8vw, 115px)
        clamp(34px, 5vw, 74px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-section h2 {
    max-width: 650px;
    margin-bottom: 24px;
    font-size: clamp(48px, 5.4vw, 82px);
}

.story-section__copy > p {
    max-width: 650px;
    margin-bottom: 17px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.75;
}

.story-section__copy .text-link {
    margin-top: 10px;
}

.story-section__photo {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background-image:
        linear-gradient(
            rgba(23, 17, 14, 0.04),
            rgba(23, 17, 14, 0.28)
        ),
        url("../images/restaurant/restaurant-story-interior.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.story-section__photo--career-restaurant-life {
    background-image: url("../images/restaurant/career-restaurant-life.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.story-section__photo--career-restaurant-life::before,
.story-section__photo--career-restaurant-life::after {
    display: none;
}

.story-section__photo--career-restaurant-life .story-section__sign {
    display: none;
}

.story-section__photo--location-delivery-area {
    background-image: url("../images/restaurant/location-delivery-area.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.story-section__photo--allergen-cross-contact {
    background-image: url("../images/restaurant/allergen-cross-contact.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.story-section__photo--allergen-cross-contact::before,
.story-section__photo--allergen-cross-contact::after {
    display: none;
}

.story-section__photo--allergen-cross-contact .story-section__sign {
    display: none;
}


.story-section__photo--location-delivery-area::before,
.story-section__photo--location-delivery-area::after {
    display: none;
}

.story-section__photo--location-delivery-area .story-section__sign {
    display: none;
}

.story-section__photo::before {
    content: "";
    position: absolute;
    top: 19%;
    right: 9%;
    left: 9%;
    height: 120px;
    background: var(--cream);
    border: 9px solid var(--black);
    transform: rotate(-1deg);
}

.story-section__photo::after {
    content: "EMOTIONAL SUPPORT PIZZA";
    position: absolute;
    z-index: 1;
    top: calc(19% + 36px);
    right: 11%;
    left: 11%;
    color: var(--red);
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 46px);
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.story-section__sign {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    max-width: 390px;
    padding: 22px;
    background: var(--black);
    color: var(--white);
    border-radius: 10px;
}

.story-section__sign small,
.story-section__sign strong {
    display: block;
}

.story-section__sign small {
    margin-bottom: 6px;
    color: var(--crust-light);
    font-family: var(--font-display);
    font-size: 8px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.story-section__sign strong {
    font-family: var(--font-display);
    font-size: 27px;
    line-height: 1;
    text-transform: uppercase;
}


/* ==========================================================================
   REVIEWS
   ========================================================================== */

.reviews-section {
    background: var(--green-dark);
    color: var(--white);
    padding:
        clamp(78px, 8vw, 118px)
        var(--page-padding);
}

.reviews-section__heading,
.review-grid {
    width: 100%;
    max-width: var(--container);
    margin-right: auto;
    margin-left: auto;
}

.reviews-section__heading {
    max-width: var(--container);
    margin-bottom: 40px;
}

.reviews-section .section-label {
    color: var(--cream);
}

.reviews-section__heading h2 {
    max-width: 840px;
    margin-bottom: 12px;
    font-size: clamp(48px, 5vw, 76px);
}

.reviews-section__heading > p {
    margin-bottom: 0;
    color: #d8dfd7;
    font-size: 14px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.review-grid + .review-grid {
    margin-top: 12px;
}

.review-card {
    min-height: 330px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    background: var(--cream);
    color: var(--black);
    border-radius: 12px;
}

.review-card:nth-child(2) {
    background: var(--white);
}

.review-card__stars {
    margin-bottom: 28px;
    color: var(--red);
    font-size: 17px;
    letter-spacing: 0.08em;
}

.review-card blockquote {
    flex: 1;
    margin: 0 0 28px;
    font-family: var(--font-display);
    font-size: clamp(20px, 1.8vw, 27px);
    line-height: 1.22;
    text-transform: uppercase;
}

.review-card footer {
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.review-card footer strong,
.review-card footer span {
    display: block;
}

.review-card footer strong {
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
}

.review-card footer span {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: 9px;
    text-transform: uppercase;
}


/* ==========================================================================
   PROGRAMS
   ========================================================================== */

.restaurant-programs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.program-card {
    min-height: 670px;
    position: relative;
    overflow: hidden;
}

.program-card--catering {
    background: var(--red-dark);
    color: var(--white);
    display: grid;
    grid-template-rows: 0.95fr 1.05fr;
}

.program-card--catering .program-card__photo {
    min-height: 300px;
    background-image: url("../images/food/catering-team-problems.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.program-card__content {
    padding:
        clamp(46px, 5vw, 76px)
        clamp(30px, 4vw, 58px);
}

.program-card h2 {
    max-width: 680px;
    margin-bottom: 20px;
    font-size: clamp(43px, 4.8vw, 72px);
}

.program-card__content > p {
    max-width: 610px;
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.7;
}

.program-card--catering .program-card__content > p {
    color: #f0d9d3;
}

.program-card--rewards {
    background: var(--cream);
    color: var(--black);
    display: grid;
    grid-template-columns: 1fr minmax(210px, 0.38fr);
    align-items: center;
}

.program-card--rewards ul {
    margin: 0 0 27px;
    padding: 0;
    list-style: none;
}

.program-card--rewards li {
    position: relative;
    padding: 7px 0 7px 22px;
    color: var(--text-soft);
    font-size: 13px;
}

.program-card--rewards li::before {
    content: "\2022";
    position: absolute;
    left: 2px;
    color: var(--red);
    font-size: 18px;
}

.rewards-stamp {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    place-content: center;
    text-align: center;
    border: 6px solid var(--red);
    border-radius: 50%;
    color: var(--red);
    transform: rotate(8deg);
}

.rewards-stamp span,
.rewards-stamp strong {
    display: block;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.rewards-stamp span {
    font-size: 9px;
}

.rewards-stamp strong {
    font-size: 26px;
    line-height: 0.95;
}


/* ==========================================================================
   LOCATIONS
   ========================================================================== */

.locations-section {
    background: var(--white);
    padding:
        clamp(78px, 8vw, 118px)
        var(--page-padding);
}

.locations-section__heading,
.location-card {
    width: 100%;
    max-width: var(--container);
    margin-right: auto;
    margin-left: auto;
}

.locations-section__heading {
    margin-bottom: 38px;
}

.locations-section__heading h2 {
    max-width: 900px;
    margin-bottom: 0;
    font-size: clamp(46px, 5vw, 76px);
}

.location-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    background: var(--cream);
    border-radius: 16px;
    box-shadow: var(--shadow-small);
}

.location-card__photo {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background-image:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02),
            rgba(0, 0, 0, 0.42)
        ),
        url("../images/restaurant/restaurant-location-exterior.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.location-card__photo--career-what-we-look-for {
    background-image: url("../images/restaurant/career-what-we-look-for.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.location-card__photo--career-what-we-look-for::before,
.location-card__photo--career-what-we-look-for > span {
    display: none;
}

.location-card__photo--catering-service-prep {
    background-image: url("../images/restaurant/catering-service-prep.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.location-card__photo--catering-service-prep::before,
.location-card__photo--catering-service-prep > span {
    display: none;
}

.location-card__photo--location-pickup-counter {
    background-image: url("../images/restaurant/location-pickup-counter.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.location-card__photo--allergen-information-review {
    background-image: url("../images/restaurant/allergen-information-review.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.location-card__photo--allergen-information-review::before,
.location-card__photo--allergen-information-review > span {
    display: none;
}
.location-card__photo--allergen-contact-restaurant {
    background-image: url("../images/restaurant/allergen-contact-restaurant.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.location-card__photo--allergen-contact-restaurant::before,
.location-card__photo--allergen-contact-restaurant > span {
    display: none;
}


.location-card__photo--location-pickup-counter::before,
.location-card__photo--location-pickup-counter > span {
    display: none;
}

.location-card__photo::before {
    content: "";
    position: absolute;
    top: 19%;
    right: 10%;
    left: 10%;
    height: 105px;
    background: var(--cream);
    border: 8px solid var(--black);
}

.location-card__photo > span {
    position: absolute;
    z-index: 2;
    top: calc(19% + 33px);
    right: 13%;
    left: 13%;
    color: var(--red);
    font-family: var(--font-display);
    font-size: clamp(23px, 2.8vw, 42px);
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.location-card__details {
    padding:
        clamp(42px, 5vw, 72px)
        clamp(30px, 4vw, 58px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-card__status {
    align-self: flex-start;
    margin-bottom: 15px;
    padding: 7px 11px;
    background: var(--green-dark);
    color: var(--white);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 8px;
    text-transform: uppercase;
}

.location-card h3 {
    margin-bottom: 12px;
    font-size: clamp(32px, 3.2vw, 48px);
}

.location-card__details > p {
    margin-bottom: 24px;
    color: var(--text-soft);
    font-size: 14px;
}

.location-card__meta {
    margin-bottom: 27px;
    border-top: 1px solid var(--border-light);
}

.location-card__meta > div {
    padding: 15px 0;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    border-bottom: 1px solid var(--border-light);
}

.location-card__meta span,
.location-card__meta strong {
    display: block;
}

.location-card__meta span {
    font-family: var(--font-display);
    font-size: 8px;
    text-transform: uppercase;
}

.location-card__meta strong {
    font-family: var(--font-display);
    font-size: 11px;
    line-height: 1.45;
    text-transform: uppercase;
}

.location-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}


/* ==========================================================================
   FINAL ORDER
   ========================================================================== */

.final-order {
    background: var(--red);
    color: var(--white);
    padding:
        clamp(70px, 8vw, 108px)
        var(--page-padding);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 60px;
}

.final-order__copy {
    width: 100%;
    max-width: 980px;
    margin-left: max(
        0px,
        calc((100vw - var(--container)) / 2)
    );
}

.final-order__copy > span {
    display: block;
    margin-bottom: 13px;
    color: #ffd8d1;
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.final-order h2 {
    margin-bottom: 14px;
    font-size: clamp(52px, 6vw, 92px);
}

.final-order__copy p {
    margin-bottom: 0;
    color: #ffe3dd;
    font-size: 16px;
}

.final-order__actions {
    margin-right: max(
        0px,
        calc((100vw - var(--container)) / 2)
    );
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-width: 230px;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: var(--black);
    color: var(--white);
}

.site-footer__main {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding:
        clamp(68px, 7vw, 96px)
        var(--page-padding);
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) repeat(4, minmax(110px, 0.55fr));
    gap: 38px;
}

.brand--footer .brand__main {
    color: var(--white);
}

.brand--footer .brand__pizza {
    color: var(--red-light);
}

.brand--footer .brand__tagline {
    color: var(--text-muted);
}

.site-footer__brand > p {
    margin: 23px 0 0;
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: 17px;
    line-height: 1.3;
    text-transform: uppercase;
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer__column h3 {
    margin-bottom: 17px;
    color: var(--crust-light);
    font-size: 12px;
}

.site-footer__column a {
    margin-bottom: 9px;
    color: #bbb2a6;
    font-size: 11px;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
    color: var(--white);
}

.site-footer__bottom {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px var(--page-padding);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid #48433e;
    color: #908980;
    font-family: var(--font-display);
    font-size: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-footer__bottom p {
    margin: 0;
}


/* ==========================================================================
   FOCUS STATES
   ========================================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--red-light);
    outline-offset: 4px;
}


/* ==========================================================================
   TABLET / SMALL DESKTOP
   ========================================================================== */

@media (max-width: 1180px) {

    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .primary-nav {
        position: fixed;
        z-index: 200;
        top: 0;
        right: 0;
        width: min(430px, 88vw);
        height: 100vh;
        padding: 110px 34px 40px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--cream);
        border-left: 3px solid var(--black);
        transform: translateX(105%);
        transition: transform 180ms ease;
        box-shadow: -16px 0 38px rgba(0, 0, 0, 0.18);
    }

    .primary-nav.is-open {
        transform: translateX(0);
    }

    .primary-nav a {
        padding: 19px 0;
        border-bottom: 1px solid var(--border-light);
        font-size: 15px;
    }

    .primary-nav a::after {
        display: none;
    }

    .nav-toggle {
        position: relative;
        z-index: 300;
        display: block;
    }

    .header-order {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero__content {
        order: 1;
        min-height: 560px;
    }

    .hero__photo {
        order: 2;
        min-height: 560px;
    }

    .deal-grid {
        grid-template-columns: 1fr;
    }

    .deal-card {
        grid-template-columns: 1.15fr 0.85fr;
        grid-template-rows: 1fr;
    }

    .deal-card__photo {
        min-height: 310px;
    }

    .deal-card__copy {
        min-height: 310px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pizza-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .builder-options,
    .topping-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .side-grid {
        grid-template-columns: 1fr;
    }

    .side-card {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
    }

    .side-card__photo {
        min-height: 280px;
    }

    .side-card__body {
        align-items: center;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-height: 0;
    }

    .restaurant-programs {
        grid-template-columns: 1fr;
    }

    .program-card {
        min-height: 0;
    }

    .site-footer__main {
        grid-template-columns: repeat(4, 1fr);
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}


/* ==========================================================================
   MEDIUM
   ========================================================================== */

@media (max-width: 900px) {

    .hero,
    .wings-section,
    .dessert-section,
    .story-section {
        grid-template-columns: 1fr;
    }

    .hero__photo {
        order: 2;
        min-height: 590px;
    }

    .hero__content {
        order: 1;
        min-height: 620px;
    }

    .hero h1 {
        font-size: clamp(58px, 11vw, 88px);
    }

    .quick-order__inner {
        grid-template-columns: 1fr;
    }

    .quick-order__intro h2 {
        max-width: 760px;
    }

    .deals__header {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .deal-card {
        grid-template-columns: 1fr 0.8fr;
    }

    .wings-section__photo,
    .dessert-section__photo,
    .story-section__photo {
        min-height: 530px;
    }

    .story-section__copy {
        order: 1;
    }

    .story-section__photo {
        order: 2;
    }

    .program-card--rewards {
        grid-template-columns: 1fr;
    }

    .rewards-stamp {
        margin: 10px auto 60px;
    }

    .location-card {
        grid-template-columns: 1fr;
    }

    .location-card__photo {
        min-height: 470px;
    }

    .final-order {
        grid-template-columns: 1fr;
    }

    .final-order__copy,
    .final-order__actions {
        margin-right: 0;
        margin-left: 0;
    }

    .final-order__actions {
        width: min(100%, 420px);
    }

    .site-footer__main {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 640px) {

    body {
        font-size: 15px;
    }

    .promo-bar__inner {
        min-height: 42px;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
    }

    .promo-bar p {
        flex: 1;
        font-size: 10px;
    }

    .site-header__inner {
        min-height: 89px;
    }

    .brand__main {
        font-size: 14px;
    }

    .brand__pizza {
        font-size: 29px;
    }

    .brand__tagline {
        font-size: 6px;
    }

    .hero__content {
        min-height: 590px;
        padding:
            64px
            var(--page-padding);
    }

    .hero h1 {
        font-size: clamp(51px, 15vw, 72px);
    }

    .hero__lead {
        font-size: 16px;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__buttons .button {
        width: 100%;
    }

    .hero__photo {
        min-height: 500px;
    }

    .hero__photo-badge {
        top: 18px;
        left: 18px;
    }

    .hero__pizza-label {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .order-choice-grid {
        grid-template-columns: 1fr;
    }

    .order-choice {
        min-height: 140px;
    }

    .deals,
    .menu-categories,
    .featured-menu,
    .build-section,
    .sides-section,
    .reviews-section,
    .locations-section {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .deals__header h2,
    .menu-categories__heading h2,
    .featured-menu__heading h2,
    .build-section__heading h2,
    .sides-section__heading h2,
    .reviews-section__heading h2,
    .locations-section__heading h2 {
        font-size: clamp(39px, 12vw, 56px);
    }

    .deal-card {
        grid-template-columns: 1fr;
    }

    .deal-card__copy {
        min-height: 0;
    }

    .deal-card__photo {
        min-height: 250px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
    }

    .category-card__photo {
        height: 190px;
    }

    .category-card__copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .pizza-grid {
        grid-template-columns: 1fr;
    }

    .featured-menu__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .pizza-card__photo {
        min-height: 290px;
    }

    .pizza-card__body > p {
        min-height: 0;
    }

    .wings-section__photo,
    .dessert-section__photo,
    .story-section__photo {
        min-height: 430px;
    }

    .wings-section__content,
    .dessert-section__copy,
    .story-section__copy {
        padding:
            64px
            var(--page-padding);
    }

    .wings-section h2,
    .dessert-section h2,
    .story-section h2 {
        font-size: clamp(42px, 13vw, 61px);
    }

    .builder-group {
        padding: 22px 18px;
    }

    .builder-options,
    .topping-grid {
        grid-template-columns: 1fr;
    }

    .builder-option {
        min-height: 80px;
    }

    .builder-submit {
        align-items: stretch;
        flex-direction: column;
        padding: 22px 18px;
    }

    .builder-submit .button {
        width: 100%;
    }

    .side-card {
        display: block;
    }

    .side-card__photo {
        min-height: 260px;
    }

    .side-card__body {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 22px;
    }

    .program-card--catering {
        grid-template-rows: auto auto;
    }

    .program-card--catering .program-card__photo {
        min-height: 320px;
    }

    .program-card__content {
        padding:
            56px
            var(--page-padding);
    }

    .program-card h2 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .rewards-stamp {
        width: 150px;
        height: 150px;
    }

    .location-card__photo {
        min-height: 390px;
    }

    .location-card__details {
        padding:
            42px
            var(--page-padding);
    }

    .location-card__meta > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .location-card__actions {
        flex-direction: column;
    }

    .location-card__actions .button {
        width: 100%;
    }

    .final-order {
        padding:
            62px
            var(--page-padding);
    }

    .final-order h2 {
        font-size: clamp(45px, 13vw, 66px);
    }

    .final-order__actions {
        width: 100%;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
    }

    .site-footer__brand {
        grid-column: auto;
    }

    .site-footer__column {
        padding-top: 19px;
        border-top: 1px solid #48433e;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 6px;
    }
}


/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 420px) {

    :root {
        --page-padding: 16px;
    }

    .brand__tagline {
        display: none;
    }

    .hero__content {
        min-height: 550px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero__photo {
        min-height: 440px;
    }

    .hero__pizza-label strong {
        font-size: 36px;
    }

    .hero__pizza-label small {
        font-size: 9px;
    }

    .quick-order__intro h2 {
        font-size: 38px;
    }

    .order-choice {
        grid-template-columns: 46px 1fr;
        padding: 18px;
    }

    .order-choice__icon {
        width: 46px;
        height: 46px;
    }

    .order-choice__content strong {
        font-size: 23px;
    }

    .deal-card h3 {
        font-size: 29px;
    }

    .deal-card__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-card {
        grid-template-columns: 1fr;
    }

    .category-card__photo {
        height: 230px;
    }

    .pizza-card__title-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .flavor-item {
        grid-template-columns: 24px 1fr;
    }

    .flavor-item > small {
        grid-column: 2;
    }

    .story-section__sign {
        right: 16px;
        bottom: 16px;
        left: 16px;
        max-width: none;
    }

    .story-section__sign strong {
        font-size: 22px;
    }

    .location-card__photo::before {
        right: 6%;
        left: 6%;
    }

    .location-card__photo > span {
        right: 9%;
        left: 9%;
        font-size: 23px;
    }
}


/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
