@font-face {
    font-family: "Cormorant";
    src: url("../fonts/Cormorant-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Jost";
    src: url("../fonts/Jost-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Jost";
    src: url("../fonts/Jost-ExtraBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "Jost";
    src: url("../fonts/Jost-SemiBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

:root {
    --green: #4b5d24;
    --red: #d2411e;
    --beige: #f6f3eb;
    --white: #ffffff;
    --footer-green: #7c8758;
    --footer-cream: #eee7d3;
    --font-display: "Cormorant", Georgia, serif;
    --font-body: "Jost", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

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

html,
body {
    margin: 0;
    min-height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--beige);
    color: var(--green);
    font-family: var(--font-body);
    overflow-x: hidden;
}

.site-header {
    position: relative;
    z-index: 10;
    width: 100%;
    background: var(--white);
}

.header-inner {
    min-height: 72px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: block;
    width: min(240px, 69vw);
    line-height: 0;
}

.brand img {
    display: block;
    width: 100%;
    height: auto;
}

.menu-toggle {
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
    display: grid;
    align-content: center;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--green);
    transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 22px rgba(43, 51, 23, 0.08);
    transition: max-height 220ms ease;
}

.main-navigation.is-open {
    max-height: 360px;
}

.main-navigation ul {
    margin: 0;
    padding: 12px 22px 22px;
    list-style: none;
}

.main-navigation a {
    display: block;
    padding: 11px 0;
    color: var(--green);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
}

.main-navigation a:hover,
.main-navigation a:focus-visible,
.main-navigation a.is-active {
    color: var(--red);
}

.hero {
    position: relative;
    isolation: isolate;
    width: 100%;
    aspect-ratio: 3.15 / 1;
    min-height: 270px;
    max-height: 635px;
    overflow: hidden;
    background: var(--green);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -2;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(90deg, rgba(20, 39, 11, 0.2) 0%, rgba(20, 39, 11, 0.03) 44%, transparent 70%);
}

.hero-inner {
    position: relative;
    width: 100%;
    max-width: 1500px;
    height: 100%;
    margin: 0 auto;
}

.hero-copy {
    position: absolute;
    top: 50%;
    left: 5.5%;
    transform: translateY(-50%);
    z-index: 2;
    color: #eee7d3;
}

.hero-copy h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 3.65vw, 3.625rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.015em;
    word-spacing: 0.1em;
}

.hero-copy span {
    display: block;
    white-space: nowrap;
}

.hero-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(250px, 24vw);
    max-width: 250px;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 72px;
    padding: 0;
    border: 0;
    transform: translateY(-50%);
    cursor: pointer;
}

.hero-arrow::before {
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    border-top: 3px solid var(--white);
    border-right: 3px solid var(--white);
    content: "";
}

.hero-arrow--previous {
    left: 0;
    border-radius: 0 999px 999px 0;
    background: var(--red);
}

.hero-arrow--previous::before {
    left: 11px;
    transform: translateY(-50%) rotate(-135deg);
}

.hero-arrow--next {
    right: 0;
    border-radius: 999px 0 0 999px;
    background: var(--green);
}

.hero-arrow--next::before {
    right: 11px;
    transform: translateY(-50%) rotate(45deg);
}

.story {
    position: relative;
    z-index: 2;
    overflow: visible;
    background: var(--white);
}

.story-inner {
    position: relative;
    width: 100%;
    max-width: 1500px;
    min-height: 620px;
    margin: 0 auto;
    padding: 62px 70px 112px;
}

.section-heading {
    position: relative;
    z-index: 2;
    text-align: center;
}

.section-kicker {
    margin: 0 0 5px;
    color: var(--red);
    font-family: var(--font-display);
    font-size: 2.1875rem;
    font-weight: 500;
    line-height: 1;
}

.section-title {
    margin: 0;
    color: var(--green);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
}

.section-kicker,
.section-title {
    letter-spacing: 0.045em;
    word-spacing: 0.12em;
}

.story-copy {
    position: relative;
    z-index: 2;
    width: min(78%, 1040px);
    margin: 36px auto 0;
    color: #1d1d1b;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.075em;
    text-align: center;
}

.story-copy p {
    margin: 0;
}

.story-copy p + p {
    margin-top: 24px;
}

.story-copy-extra {
    margin-top: 24px;
}

.story-copy-teaser {
    margin-top: 24px !important;
    text-align: left;
}

.story-disclosure {
    display: none;
    color: inherit;
    font-family: var(--font-body);
    font-size: 1em;
    font-weight: 600;
    letter-spacing: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.story-disclosure:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 5px;
}

.story-leaf {
    position: absolute;
    z-index: 3;
    display: block;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.story-leaf--top {
    top: 34px;
    left: 13%;
    width: clamp(62px, 6.8%, 102px);
    transform: rotate(120deg);
}

.story-leaf--left {
    top: 27%;
    left: 6%;
    width: clamp(86.4px, 9.12%, 136.8px);
    transform: rotate(-240deg);
}

.story-leaf--right {
    top: 53%;
    right: 8.5%;
    width: clamp(98px, 7.28%, 140px);
    transform: rotate(-80deg);
}

.story-leaf--bottom-left {
    bottom: -27px;
    left: 9%;
    width: clamp(78px, 7.2%, 108px);
    transform: rotate(5deg);
}

.story-leaf--bottom-right {
    right: 0;
    bottom: -58px;
    width: clamp(119.6px, 10.4%, 156px);
    transform: rotate(-80deg);
}

.pizzas {
    position: relative;
    z-index: 1;
    min-height: 360px;
    background: var(--beige);
}

.pizzas-inner {
    width: 100%;
    max-width: 1500px;
    min-height: inherit;
    margin: 0 auto;
    padding: 92px 70px 70px;
}

.featured-pizzas {
    position: relative;
    margin-top: 52px;
    padding: 0 48px;
}

.featured-pizzas-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 78px) / 4);
    gap: 26px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 8px 4px 18px;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.featured-pizzas-track::-webkit-scrollbar {
    display: none;
}

.featured-pizza-card {
    min-width: 0;
    color: #1d1d1b;
    text-align: center;
    scroll-snap-align: start;
}

.featured-pizza-image {
    display: block;
    width: min(100%, 260px);
    aspect-ratio: 1;
    margin: 0 auto 24px;
    object-fit: contain;
    filter: drop-shadow(0 12px 9px rgba(68, 55, 34, 0.18));
}

.featured-pizza-card h3 {
    box-sizing: border-box;
    height: var(--pizza-title-height, auto);
    margin: 0 0 7px;
    color: var(--green);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.075em;
    line-height: 1.1;
    text-transform: uppercase;
}

.featured-pizza-dough {
    box-sizing: border-box;
    height: var(--pizza-dough-height, auto);
    margin: 0 0 8px;
    color: var(--red);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.055em;
    line-height: 1.2;
}

.featured-pizza-description {
    box-sizing: border-box;
    height: var(--pizza-description-height, auto);
    max-width: 15.5rem;
    margin: 0 auto 9px;
    font-size: 1.125rem;
    line-height: 1.4;
    letter-spacing: 0.035em;
}

.featured-pizza-price {
    margin: 0;
    color: var(--red);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.featured-pizzas-arrow {
    position: absolute;
    top: 36%;
    z-index: 3;
    width: 44px;
    height: 64px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--red);
    font-family: Arial, sans-serif;
    font-size: 3.25rem;
    font-weight: 300;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
}

.featured-pizzas-arrow--previous {
    left: 0;
}

.featured-pizzas-arrow--next {
    right: 0;
}

.featured-pizzas-arrow:disabled {
    cursor: default;
    opacity: 0.28;
}

.featured-pizzas-arrow:focus-visible,
.featured-pizzas-track:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 4px;
}

.price-list {
    margin-top: 96px;
}

.price-list-categories-shell {
    --category-safe-space: 56px;
    position: relative;
    width: min(100%, 1180px);
    margin: 0 auto;
    padding-inline: var(--category-safe-space);
    overflow: hidden;
    border-radius: 999px;
    background: var(--green);
}

.price-list-categories {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 12px;
    width: 100%;
    padding-block: 7px;
    overflow-x: auto;
    scrollbar-width: none;
}

.price-list-categories::-webkit-scrollbar {
    display: none;
}

.price-list-category-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--category-safe-space);
    padding: 0;
    border: 0;
    color: var(--beige);
    font-family: Arial, sans-serif;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: color 160ms ease;
}

.price-list-category-arrow--previous {
    left: 0;
    background: linear-gradient(90deg, var(--green) 64%, rgba(75, 93, 36, 0.78) 84%, rgba(75, 93, 36, 0));
}

.price-list-category-arrow--next {
    right: 0;
    background: linear-gradient(270deg, var(--green) 64%, rgba(75, 93, 36, 0.78) 84%, rgba(75, 93, 36, 0));
}

.price-list-category-arrow:hover,
.price-list-category-arrow:focus-visible {
    color: var(--red);
}

.price-list-category-arrow:focus-visible {
    outline: 2px solid var(--beige);
    outline-offset: -6px;
}

.price-list-category-arrow[hidden] {
    display: none;
}

.price-list-category-arrow span {
    display: block;
    transform: translateY(-2px);
}

.price-list-category {
    flex: 0 0 auto;
    padding: 5px 8px;
    border: 0;
    background: transparent;
    color: var(--beige);
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.075em;
    line-height: 1.15;
    text-transform: uppercase;
    cursor: pointer;
}

.price-list-category.is-active {
    color: var(--red);
}

.price-list-category:focus-visible {
    outline: 2px solid var(--beige);
    outline-offset: 2px;
}

.price-list-panel {
    margin-top: 68px;
}

.price-list-panel[hidden] {
    display: none;
}

.price-list-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 72px;
}

.price-list-item {
    margin-bottom: 27px;
}

.price-list-item-heading {
    display: flex;
    align-items: baseline;
    gap: 9px;
    width: 100%;
    min-width: 0;
    white-space: nowrap;
}

.price-list-item-heading h3,
.price-list-item-price {
    flex: 0 0 auto;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.075em;
    line-height: 1.15;
    text-transform: uppercase;
}

.price-list-item-heading h3 {
    color: var(--green);
}

.price-list-item-leader {
    flex: 1 1 auto;
    min-width: 12px;
    height: 0.45em;
    background-image: radial-gradient(circle, var(--green) 1.8px, transparent 2px);
    background-position: left center;
    background-repeat: repeat-x;
    background-size: 8px 5px;
}

.price-list-item-price {
    color: var(--red);
}

.price-list-item-ingredients {
    margin: 5px 0 0;
    color: #1d1d1b;
    font-size: 1.125rem;
    letter-spacing: 0.035em;
    line-height: 1.42;
}

.price-list-empty {
    margin: 0;
    color: #1d1d1b;
    font-size: 1.125rem;
    text-align: center;
}

.price-list-allergen-notice {
    margin-top: 68px;
}

.price-list-allergen-title,
.price-list-allergen-details {
    margin: 0;
}

.price-list-allergen-title {
    color: var(--green);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.045em;
    line-height: 1.3;
    text-transform: uppercase;
}

.price-list-allergen-details {
    margin-top: 8px;
    color: var(--green);
    font-size: 1.125rem;
    letter-spacing: 0.035em;
    line-height: 1.45;
}

.dough-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 72px;
    margin-top: 82px;
}

.dough-list-item {
    display: grid;
    grid-template-columns: clamp(112px, 9vw, 140px) minmax(0, 1fr);
    align-items: center;
    gap: 30px;
    min-width: 0;
}

.dough-list-icon {
    display: block;
    width: 100%;
    aspect-ratio: 1;
}

.dough-list-content {
    min-width: 0;
}

.dough-list-heading {
    display: flex;
    align-items: baseline;
    gap: 9px;
    width: 100%;
    min-width: 0;
    white-space: nowrap;
}

.dough-list-heading h3,
.dough-list-price {
    flex: 0 0 auto;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.dough-list-heading h3 {
    color: var(--green);
}

.dough-list-price {
    color: var(--red);
}

.dough-list-note {
    margin: 8px 0 0;
    color: #1d1d1b;
    font-size: 1.125rem;
    letter-spacing: 0.035em;
    line-height: 1.42;
}

.tray-pizza {
    width: 100%;
    background: var(--green);
    overflow: hidden;
}

.tray-pizza-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1500px;
    height: clamp(280px, 22vw, 330px);
    margin: 0 auto;
    overflow: hidden;
}

.tray-pizza-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex: 0 0 64%;
    width: 64%;
    height: 100%;
    padding: 34px 7% 34px 15px;
    text-align: center;
}

.tray-pizza-lockup {
    position: relative;
    display: inline-block;
    width: max-content;
    max-width: 100%;
}

.tray-pizza-kicker,
.tray-pizza-title,
.tray-pizza-description {
    margin: 0;
}

.tray-pizza-kicker {
    position: absolute;
    top: -40%;
    left: 63%;
    color: var(--white);
    font-size: clamp(2.0475rem, 3.003vw, 2.8rem);
    font-weight: 600;
    letter-spacing: 0.035em;
    line-height: 1;
    white-space: nowrap;
    transform: translateX(-50%);
}

.tray-pizza-title {
    color: var(--beige);
    font-family: var(--font-display);
    font-size: clamp(5.85rem, 8.58vw, 8.04375rem);
    font-weight: 700;
    letter-spacing: 0.005em;
    line-height: 0.86;
    white-space: nowrap;
}

.tray-pizza-description {
    position: absolute;
    top: 110%;
    left: 38%;
    display: flex;
    flex-direction: column;
    width: max-content;
    max-width: 100%;
    margin: 0;
    color: var(--white);
    font-size: clamp(1.5rem, 2.16vw, 2.025rem);
    letter-spacing: 0.02em;
    line-height: 1.25;
    white-space: nowrap;
    transform: translateX(-50%);
}

.tray-pizza-media {
    position: relative;
    flex: 0 0 36%;
    width: 36%;
    height: 100%;
}

.tray-pizza-media > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.tray-pizza-badge {
    position: absolute;
    top: 55%;
    left: 8%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: clamp(106px, 9.2vw, 138px);
    aspect-ratio: 1;
    margin: 0;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    line-height: 1;
    text-align: center;
    transform: translate(-50%, -50%);
}

.tray-pizza-badge-price {
    font-size: clamp(1.5rem, 2.25vw, 2.125rem);
    font-weight: 600;
    letter-spacing: -0.025em;
}

.tray-pizza-badge-unit {
    margin-top: 3px;
    font-size: clamp(1.25rem, 1.8vw, 1.6875rem);
    font-weight: 600;
}

.delivery-apps {
    width: 100%;
    background: var(--white);
}

.delivery-apps-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    width: 100%;
    max-width: 1500px;
    min-height: clamp(250px, 15.5vw, 300px);
    margin: 0 auto;
    padding: clamp(56px, 4.5vw, 76px) clamp(32px, 7vw, 105px);
    gap: clamp(70px, 9vw, 135px);
}

.delivery-apps-partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 2vw, 32px);
}

.delivery-apps-logo {
    display: block;
    width: auto;
    height: clamp(50px, 4vw, 64px);
    max-width: 100%;
}

.delivery-apps-logo--glovo {
    height: clamp(46px, 3.6vw, 58px);
}

.delivery-apps-stores {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.4vw, 22px);
}

.delivery-apps-stores a {
    display: block;
    border-radius: 6px;
    transition: opacity 180ms ease, transform 180ms ease;
}

.delivery-apps-stores a:hover {
    opacity: 0.86;
    transform: translateY(-2px);
}

.delivery-apps-stores a:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 4px;
}

.delivery-apps-stores img {
    display: block;
    width: auto;
    height: clamp(36px, 2.8vw, 42px);
}

.ingredients {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: visible;
    background: var(--white);
}

.ingredients-inner {
    position: relative;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: clamp(76px, 6vw, 96px) clamp(32px, 7vw, 105px) clamp(96px, 8vw, 128px);
}

.ingredients-heading {
    margin-bottom: clamp(68px, 6.5vw, 98px);
    text-align: center;
}

.ingredients-accordion {
    display: grid;
    gap: clamp(18px, 1.6vw, 24px);
}

.ingredients-accordion-item {
    overflow: hidden;
    border-radius: 999px;
    background: var(--beige);
    transition: border-radius 200ms ease;
}

.ingredients-accordion-item.is-open {
    border-radius: clamp(32px, 3.6vw, 54px);
}

.ingredients-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: clamp(76px, 6vw, 92px);
    padding: 18px clamp(34px, 7vw, 105px);
    border: 0;
    background: transparent;
    color: var(--green);
    font-family: var(--font-body);
    cursor: pointer;
    text-align: left;
}

.ingredients-accordion-trigger:disabled {
    color: var(--green);
    cursor: default;
    opacity: 1;
}

.ingredients-accordion-trigger:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: -6px;
}

.ingredients-accordion-title {
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.055em;
    line-height: 1.15;
    word-spacing: 0.08em;
}

.ingredients-accordion-icon {
    flex: 0 0 auto;
    margin-left: 24px;
    font-size: clamp(1.9rem, 2.5vw, 2.4rem);
    font-weight: 600;
    line-height: 1;
}

.ingredients-accordion-content {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
    gap: clamp(36px, 4vw, 60px);
    padding: 0 clamp(34px, 7vw, 105px) clamp(44px, 5vw, 76px);
}

.ingredients-accordion-image {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.ingredients-accordion-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    color: #1d1d1b;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.075em;
    line-height: 1.45;
}

.ingredients-accordion-copy--top {
    justify-content: flex-start;
}

.ingredients-accordion-copy.ingredients-accordion-copy--top > * + * {
    margin-top: 32px;
}

.ingredients-accordion-copy p {
    margin: 0;
}

.ingredients-accordion-copy > * + * {
    margin-top: 24px;
}

.ingredients-accordion-text-block h4 {
    margin: 0 0 7px;
    color: var(--green);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.075em;
    line-height: 1.3;
}

.fidelity-card {
    width: 100%;
    overflow: hidden;
    background: #352820;
}

.fidelity-card-inner {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    min-height: 330px;
    aspect-ratio: 6301 / 2001;
    max-height: 477px;
    margin: 0 auto;
    overflow: hidden;
    background: #352820;
}

.fidelity-card-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.fidelity-card-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 54%;
    height: 100%;
    margin-left: auto;
    padding: clamp(28px, 2.5vw, 38px) clamp(30px, 5vw, 75px) clamp(26px, 2vw, 32px) clamp(16px, 2vw, 30px);
    color: var(--white);
    text-align: center;
}

.fidelity-card-kicker,
.fidelity-card-title,
.fidelity-card-description {
    margin: 0;
}

.fidelity-card-lockup {
    position: relative;
    display: inline-block;
    width: max-content;
    max-width: 100%;
}

.fidelity-card-kicker {
    position: absolute;
    top: -55%;
    left: 68%;
    font-size: clamp(2.0475rem, 3.003vw, 2.8rem);
    font-weight: 600;
    letter-spacing: 0.035em;
    line-height: 1;
    white-space: nowrap;
    transform: translateX(-50%);
}

.fidelity-card-title {
    color: #eee7d3;
    font-family: var(--font-display);
    font-size: clamp(5.85rem, 8.58vw, 8.04375rem);
    font-weight: 700;
    letter-spacing: 0.005em;
    line-height: 0.86;
    white-space: nowrap;
}

.fidelity-card-description {
    margin-top: clamp(30px, 3vw, 46px);
    font-size: clamp(1.15rem, 1.7vw, 1.55rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.fidelity-card-cta {
    min-width: clamp(190px, 19vw, 285px);
    margin-top: clamp(26px, 2.7vw, 40px);
    padding: 10px 28px 11px;
    border: 0;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.25vw, 1.15rem);
    font-weight: 600;
    letter-spacing: 0.025em;
    line-height: 1.1;
    cursor: pointer;
    transition: background-color 180ms ease, transform 180ms ease;
}

.fidelity-card-cta:hover {
    background: #b9361a;
    transform: translateY(-2px);
}

.fidelity-card-cta:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 4px;
}

.reviews-thanks {
    width: 100%;
    background: var(--white);
}

.reviews-thanks-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr) minmax(0, 1fr);
    align-items: center;
    width: 100%;
    max-width: 1500px;
    min-height: clamp(250px, 18vw, 290px);
    margin: 0 auto;
    padding: clamp(52px, 4.5vw, 72px) clamp(32px, 6.5vw, 98px);
    gap: clamp(34px, 5vw, 76px);
}

.review-summary {
    color: #111111;
    font-family: var(--font-body);
}

.review-summary--google {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: end;
    gap: clamp(18px, 2vw, 28px);
}

.review-summary-google-rating,
.review-summary-google-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-summary-google-rating {
    gap: 8px;
}

.review-summary-google-brand {
    justify-self: stretch;
    width: min(100%, 210px);
    gap: 9px;
}

.review-summary--google-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.review-summary--google-stacked .review-summary-logo--google {
    width: min(90%, 189px);
    margin: 0 auto clamp(16px, 1.5vw, 22px);
}

.review-summary--google.review-summary--google-stacked .review-summary-score {
    font-size: clamp(1.8rem, 2.52vw, 2.385rem);
}

.review-summary-google-stacked-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-summary-google-stacked-rating .review-summary-count {
    margin-top: 7px;
    font-size: clamp(0.81rem, 1.035vw, 0.945rem);
}

.review-summary-score {
    font-size: clamp(3.25rem, 4.8vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1;
}

.review-summary--google .review-summary-score {
    font-size: clamp(2.25rem, 4.8vw, 4.5rem);
}

.review-summary-score--small {
    font-size: clamp(2rem, 2.8vw, 2.65rem);
}

.review-summary-logo {
    display: block;
    width: auto;
    max-width: 100%;
}

.review-summary-logo--google {
    width: 100%;
    height: auto;
}

.review-summary-logo--tripadvisor {
    width: min(100%, 285px);
    height: auto;
    margin: 0 auto clamp(16px, 1.5vw, 22px);
}

.review-summary--tripadvisor {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
    transform-origin: center;
}

.review-summary-rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.review-summary-trip-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-rating-symbol {
    --rating-symbol-size: 25px;
    position: relative;
    display: block;
    flex: 0 0 var(--rating-symbol-size);
    width: var(--rating-symbol-size);
    height: var(--rating-symbol-size);
}

.review-summary--google .review-rating-symbol {
    --rating-symbol-size: clamp(17px, 2vw, 25px);
}

.review-rating-symbol-base,
.review-rating-symbol-fill-shape {
    position: absolute;
    inset: 0;
    display: block;
    width: var(--rating-symbol-size);
    height: var(--rating-symbol-size);
}

.review-rating-symbol-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--rating-fill, 0%);
    overflow: hidden;
}

.review-rating-symbol--star .review-rating-symbol-base,
.review-rating-symbol--star .review-rating-symbol-fill-shape {
    font-size: var(--rating-symbol-size);
    line-height: 1;
}

.review-rating-symbol--star .review-rating-symbol-base {
    color: #d4d4d4;
}

.review-rating-symbol--star .review-rating-symbol-fill-shape {
    color: #f9b900;
}

.review-rating--circles {
    gap: 6px;
}

.review-rating-symbol--circle {
    --rating-symbol-size: 30px;
}

.review-rating-symbol--circle .review-rating-symbol-base,
.review-rating-symbol--circle .review-rating-symbol-fill-shape {
    border: 3px solid #bcefdc;
    border-radius: 50%;
}

.review-rating-symbol--circle .review-rating-symbol-fill-shape {
    border-color: #34e0a1;
}

.review-rating-symbol--circle .review-rating-symbol-fill-shape::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #34e0a1;
    content: "";
    transform: translate(-50%, -50%);
}

.review-summary-count {
    margin: 0;
    font-size: clamp(0.9rem, 1.15vw, 1.05rem);
    font-weight: 400;
    letter-spacing: 0.075em;
    line-height: 1.25;
    white-space: nowrap;
}

.review-summary--google .review-summary-count {
    width: 100%;
    text-align: center;
}

.review-summary--tripadvisor .review-summary-count {
    margin-top: 7px;
}

.reviews-thanks-copy {
    justify-self: center;
    width: max-content;
    max-width: 100%;
    color: var(--green);
    text-align: center;
}

.reviews-thanks-copy h2,
.reviews-thanks-copy p {
    margin: 0;
}

.reviews-thanks-copy h2 {
    font-size: clamp(3.078rem, 5.472vw, 4.959rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 0.9;
}

.reviews-thanks-copy p {
    width: 100%;
    font-size: clamp(1.15425rem, 2.00925vw, 1.83825rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.1;
    white-space: nowrap;
}

.location-map {
    width: 100%;
    background: var(--white);
}

.location-map-inner {
    position: relative;
    width: 100%;
    max-width: 1500px;
    min-height: 300px;
    aspect-ratio: 3150 / 792;
    margin: 0 auto;
    overflow: hidden;
    background: #f4f1eb;
}

.location-map-facade,
.location-map-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.location-map-facade {
    display: block;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.location-map-preview {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-map-preview-pin {
    position: absolute;
    top: 18%;
    left: 48%;
    width: clamp(38px, 3.35vw, 50px);
    height: auto;
    filter: drop-shadow(0 4px 5px rgb(0 0 0 / 0.24));
    transform: translate(-50%, -100%);
}

.location-map-activate-label {
    position: absolute;
    display: none;
    left: 50%;
    bottom: clamp(18px, 2vw, 30px);
    padding: 10px 22px;
    border-radius: 999px;
    background: rgb(75 93 36 / 0.94);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.055em;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 5px 16px rgb(0 0 0 / 0.2);
    transform: translateX(-50%);
    transition: background-color 180ms ease, transform 180ms ease;
}

.location-map-facade:hover .location-map-activate-label,
.location-map-facade:focus-visible .location-map-activate-label {
    background: var(--red);
    transform: translateX(-50%) scale(1.035);
}

.location-map-facade:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: -5px;
}

.location-map-inner.is-loading .location-map-facade {
    cursor: progress;
}

.location-map-status {
    position: absolute;
    z-index: 500;
    right: 18px;
    bottom: 16px;
    margin: 0;
    color: #111111;
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.location-map-attribution {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    padding: 3px 6px;
    background: rgb(255 255 255 / 0.78);
    color: #255aa8;
    font-family: Arial, sans-serif;
    font-size: 10px;
    line-height: 1.2;
}

.location-map-inner.is-active .location-map-attribution {
    display: none;
}

.location-map-fallback {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 16px;
    color: var(--green);
    font-family: var(--font-body);
    font-weight: 600;
}

.location-map-popup {
    color: #111111;
    font-family: var(--font-body);
    line-height: 1.4;
}

.location-map-popup strong,
.location-map-popup a {
    display: block;
}

.location-map-popup a {
    margin-top: 5px;
    color: var(--red);
    font-weight: 600;
}

.site-footer {
    width: 100%;
    color: var(--footer-cream);
    font-family: var(--font-body);
}

.site-footer-primary {
    width: 100%;
    background: var(--footer-green);
}

.site-footer-primary-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr) minmax(0, 1fr);
    align-items: center;
    width: 100%;
    max-width: 1500px;
    min-height: 360px;
    margin: 0 auto;
    padding: 0;
    gap: clamp(36px, 5vw, 76px);
}

.site-footer-business {
    justify-self: center;
    width: min(100%, 330px);
    padding: 0 5%;
}

.site-footer-form-shell {
    position: relative;
    z-index: 4;
    width: 100%;
    min-width: 0;
}

.site-footer-contact-form {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(36vw, 500px);
    min-width: 360px;
    min-height: 540px;
    margin: 0 auto -20px;
    padding: clamp(34px, 3.1vw, 46px) clamp(28px, 3.2vw, 48px) 40px;
    background: var(--white);
    color: var(--green);
    box-shadow: 0 8px 30px rgb(34 43 18 / 0.08);
}

.site-footer-contact-form h2 {
    margin: 0 0 clamp(34px, 3vw, 48px);
    font-family: var(--font-display);
    font-size: clamp(3.75rem, 5vw, 4.8rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.85;
}

.site-footer-form-fields {
    display: grid;
    width: 100%;
    gap: 20px;
}

.site-footer-contact-form input,
.site-footer-contact-form textarea {
    width: 100%;
    border: 1.5px solid #646464;
    background: var(--white);
    color: #111111;
    font: 400 1rem/1.3 var(--font-body);
    letter-spacing: 0.075em;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-footer-contact-form input {
    height: 58px;
    padding: 0 26px;
    border-radius: 999px;
}

.site-footer-contact-form textarea {
    min-height: 132px;
    padding: 18px 26px;
    border-radius: 28px;
    resize: vertical;
}

.site-footer-contact-form input:focus,
.site-footer-contact-form textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgb(75 93 36 / 0.16);
}

.site-footer-contact-form input::placeholder,
.site-footer-contact-form textarea::placeholder {
    color: #111111;
    opacity: 1;
}

.site-footer-form-submit {
    min-width: 210px;
    min-height: 54px;
    margin-top: 32px;
    padding: 12px 28px;
    border: 0;
    border-radius: 999px;
    background: var(--green);
    color: var(--footer-cream);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: background-color 160ms ease, transform 160ms ease;
}

.site-footer-form-submit:hover,
.site-footer-form-submit:focus-visible {
    background: var(--red);
    transform: scale(1.025);
}

.site-footer-form-submit:focus-visible {
    outline: 3px solid var(--footer-cream);
    outline-offset: 3px;
}

.site-footer-form-feedback {
    width: 100%;
    margin: -20px 0 20px;
    font-size: 0.9rem;
    line-height: 1.35;
    text-align: center;
}

.site-footer-form-feedback--error {
    color: var(--red);
}

.site-footer-form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-footer-logo {
    display: block;
    width: min(100%, 320px);
    height: auto;
    filter: brightness(0) invert(94%) sepia(12%) saturate(441%) hue-rotate(350deg) brightness(101%) contrast(88%);
}

.site-footer-hours {
    margin: clamp(42px, 4vw, 60px) 0 0;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    letter-spacing: 0.055em;
    line-height: 1.35;
}

.site-footer-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.site-footer-hours dt,
.site-footer-hours dd {
    margin: 0;
}

.site-footer-socials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    gap: 20px;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    letter-spacing: 0.075em;
}

.site-footer-social-list {
    display: flex;
    gap: 12px;
}

.site-footer-social-icon {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border: 2px solid currentColor;
    border-radius: 50%;
    color: inherit;
    line-height: 1;
    text-decoration: none;
}

.site-footer-social-icon--facebook > span {
    margin-top: 4px;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.site-footer-social-icon--instagram > span {
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 5px;
}

.site-footer-social-icon--instagram > span::before,
.site-footer-social-icon--instagram > span::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.site-footer-social-icon--instagram > span::before {
    top: 10px;
    left: 10px;
    width: 8px;
    height: 8px;
    border: 2px solid currentColor;
}

.site-footer-social-icon--instagram > span::after {
    top: 8px;
    right: 8px;
    width: 3px;
    height: 3px;
    background: currentColor;
}

.site-footer-contacts {
    display: grid;
    justify-self: center;
    width: min(100%, 330px);
    margin: 0;
    gap: 25px;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-style: normal;
    letter-spacing: 0.065em;
    line-height: 1.35;
}

.site-footer-contact-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: start;
    color: inherit;
    gap: 18px;
    text-decoration: none;
}

.site-footer-contact-row a {
    color: inherit;
    text-decoration: none;
}

.site-footer-contact-row:hover,
.site-footer-contact-row a:hover,
.site-footer-contact-row:focus-visible,
.site-footer-contact-row a:focus-visible {
    color: var(--white);
}

.site-footer-contact-icon {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.3;
}

.site-footer-contact-icon--mail {
    margin-top: -3px;
}

.site-footer-legal {
    width: 100%;
    background: var(--green);
}

.site-footer-legal-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1500px;
    min-height: 104px;
    margin: 0 auto;
    padding: 28px 24px;
    gap: 7px;
    color: var(--footer-cream);
    font-size: clamp(0.78rem, 1vw, 0.95rem);
    letter-spacing: 0.035em;
    line-height: 1.5;
    text-align: center;
}

.site-footer-legal a {
    color: inherit;
    text-decoration: none;
}

.site-footer-legal a:hover,
.site-footer-legal a:focus-visible {
    color: var(--white);
    text-decoration: underline;
}

@media (min-width: 981px) {
    .site-footer-business {
        grid-column: 1;
    }

    .site-footer-form-shell {
        grid-column: 2;
    }

    .site-footer-contacts {
        grid-column: 3;
    }
}

@media (min-width: 1440px) {
    .site-footer-form-shell {
        align-self: stretch;
        height: 100%;
    }

    .site-footer-contact-form {
        position: absolute;
        top: 0;
        left: 50%;
        margin: 0;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 980px) {
    .location-map-activate-label {
        display: block;
    }

    .site-footer-primary-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        min-height: 330px;
        padding: 0;
        gap: 72px;
    }

    .site-footer-form-shell {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .site-footer-contact-form {
        width: min(100%, 560px);
        min-width: 0;
        margin: -180px auto 0;
    }
}

@media (max-width: 620px) {
    .site-footer-primary-inner {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 58px;
    }

    .site-footer-form-shell {
        grid-column: auto;
    }

    .site-footer-contact-form {
        width: min(100%, 500px);
        min-height: 0;
        margin: 0 auto;
        padding: 42px 24px 38px;
    }

    .site-footer-contact-form h2 {
        margin-bottom: 34px;
        font-size: clamp(3.35rem, 15vw, 4.2rem);
    }

    .site-footer-contact-form input {
        height: 54px;
    }

    .site-footer-form-submit {
        width: min(100%, 210px);
    }

    .site-footer-business,
    .site-footer-contacts {
        justify-self: center;
        width: min(100%, 360px);
    }

    .site-footer-logo {
        margin-inline: auto;
    }

    .site-footer-legal-inner {
        min-height: 116px;
    }
}

@media (max-width: 620px) {
    .location-map-inner {
        min-height: 310px;
        aspect-ratio: auto;
    }

    .location-map-preview {
        object-position: 47% center;
    }

    .location-map-preview-pin {
        top: 35%;
        left: 50%;
    }
}

@media (max-width: 980px) {
    .featured-pizzas-track {
        grid-auto-columns: calc((100% - 24px) / 2);
        gap: 24px;
    }

    .price-list-categories-shell {
        --category-safe-space: 46px;
    }

    .price-list-categories {
        justify-content: flex-start;
    }

    .price-list-columns {
        gap: 42px;
    }

    .price-list-item-heading h3,
    .price-list-item-price {
        font-size: 1.0625rem;
    }

    .dough-list {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 72px;
    }

    .dough-list-item {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 22px;
    }

    .dough-list-heading h3,
    .dough-list-price {
        font-size: 1.0625rem;
    }

    .tray-pizza-inner {
        height: clamp(280px, 33vw, 330px);
    }

    .tray-pizza-copy {
        flex-basis: 68%;
        width: 68%;
        min-height: 0;
        height: 100%;
    }

    .tray-pizza-media {
        flex-basis: 32%;
        width: 32%;
        height: 100%;
    }

    .tray-pizza-badge {
        left: 8%;
    }

    .fidelity-card-inner {
        min-height: 310px;
    }

    .fidelity-card-copy {
        width: 56%;
        padding-inline: 18px 34px;
    }

    .fidelity-card-description {
        margin-top: 28px;
    }

    .fidelity-card-cta {
        margin-top: 24px;
    }

    .reviews-thanks-inner {
        padding-inline: 28px;
        gap: 28px;
    }

}

@media (min-width: 981px) and (max-width: 1240px) {
    .dough-list-item {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
    }

    .dough-list-heading h3,
    .dough-list-price {
        font-size: 1.0625rem;
    }
}

@media (min-width: 769px) and (max-width: 980px) {
    .tray-pizza-title,
    .fidelity-card-title {
        font-size: clamp(5rem, 9vw, 5.6rem);
    }

    .tray-pizza-kicker,
    .fidelity-card-kicker {
        font-size: clamp(1.75rem, 3.15vw, 1.96rem);
    }

    .tray-pizza-description {
        font-size: clamp(1.25rem, 2.25vw, 1.4rem);
    }
}

@media (max-width: 768px) {
    .dough-list {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 66px;
    }

    .dough-list-item {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .tray-pizza-copy {
        flex-basis: 72%;
        width: 72%;
    }

    .tray-pizza-title,
    .fidelity-card-title {
        font-size: clamp(4.16rem, 10.4vw, 5.2rem);
    }

    .tray-pizza-kicker,
    .fidelity-card-kicker {
        font-size: clamp(1.456rem, 3.64vw, 1.82rem);
    }

    .tray-pizza-description {
        font-size: clamp(1.04rem, 2.6vw, 1.3rem);
    }

    .tray-pizza-media {
        flex-basis: 28%;
        width: 28%;
    }

    .delivery-apps-inner {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-block: 64px;
        gap: 58px;
    }

    .ingredients-inner {
        padding: 64px 28px 92px;
    }

    .ingredients-heading {
        margin-bottom: 58px;
    }

    .ingredients-accordion-trigger {
        min-height: 76px;
        padding-inline: 30px;
    }

    .ingredients-accordion-content {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 34px;
        padding: 0 30px 48px;
    }

    .ingredients-accordion-image {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        margin-inline: auto;
    }

    .ingredients-accordion-copy {
        display: block;
        align-self: auto;
    }

    .fidelity-card-inner {
        min-height: 390px;
        aspect-ratio: auto;
        background-position: 44% center;
    }

    .fidelity-card-copy {
        width: 62%;
        padding: 34px 24px 32px 10px;
    }

    .fidelity-card-description {
        font-size: clamp(0.95rem, 2.7vw, 1.15rem);
    }

    .reviews-thanks-inner {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 68px 28px;
        gap: 54px;
    }

    .review-summary--google {
        justify-self: center;
        width: fit-content;
        max-width: 100%;
    }

    .reviews-thanks-copy {
        order: -1;
    }
}

@media (min-width: 420px) {
    .header-inner {
        padding-inline: 26px;
    }

    .hero-copy {
        left: 6%;
    }
}

@media (min-width: 480px) {
    .brand {
        width: 252px;
    }
}

@media (min-width: 620px) {
    .header-inner {
        min-height: 76px;
        padding-inline: 34px;
    }

    .hero {
        min-height: 320px;
    }
}

@media (min-width: 768px) {
    .header-inner {
        min-height: 82px;
        padding: 20px 42px;
    }

    .brand {
        width: 270px;
    }
}

@media (min-width: 980px) {
    .header-inner {
        min-height: 84px;
        padding: 20px 5.15vw 20px 7.15vw;
    }

    .brand {
        width: 294px;
    }

    .menu-toggle {
        display: none;
    }

    .main-navigation {
        position: static;
        max-height: none;
        overflow: visible;
        box-shadow: none;
    }

    .main-navigation ul {
        padding: 0;
        display: flex;
        align-items: center;
        gap: 28px;
    }

    .main-navigation a {
        padding: 10px 0;
        font-size: 0.875rem;
        letter-spacing: 0.055em;
    }

    .hero {
        min-height: 0;
    }

    .hero-copy {
        left: 7.15%;
    }

    .hero-arrow {
        width: 52px;
        height: 76px;
    }
}

@media (min-width: 1240px) {
    .main-navigation ul {
        gap: 31px;
    }

    .main-navigation a {
        font-size: 0.9375rem;
    }

    .hero-copy h1 {
        font-size: 3.25rem;
    }
}

@media (min-width: 1440px) {
    .header-inner {
        min-height: 88px;
        padding-inline: 7.15vw 5.15vw;
    }

    .brand {
        width: 305px;
    }

    .main-navigation ul {
        gap: 35px;
    }

    .hero-copy h1 {
        font-size: 3.375rem;
    }
}

@media (min-width: 1600px) {
    .header-inner {
        min-height: 96px;
    }

    .brand {
        width: 320px;
    }

    .main-navigation a {
        font-size: 1rem;
    }

}

@media (max-width: 768px) {
    .hero {
        min-height: clamp(410px, 70vw, 520px);
    }

    .hero-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: inherit;
        gap: 32px;
        padding: 36px 56px;
    }

    .hero-copy,
    .hero-mark {
        position: static;
        transform: none;
    }

    .hero-copy {
        text-align: left;
    }

    .hero-mark {
        width: min(250px, 45vw);
    }

    .story-inner {
        min-height: 0;
        padding: 54px 48px 100px;
    }

    .story-copy {
        width: 100%;
        margin-top: 30px;
        line-height: 1.55;
        letter-spacing: 0.05em;
        text-align: justify;
    }

    .story-disclosure {
        display: inline;
    }

    .story-copy p + p {
        margin-top: 22px;
    }

    .story-leaf--top {
        top: 20px;
        left: 5%;
    }

    .story-leaf--left {
        display: none;
    }

    .story-leaf--right {
        display: none;
    }

    .story-leaf--bottom-left {
        left: 4%;
    }

    .story-leaf--bottom-right {
        right: 0;
    }

    .pizzas-inner {
        padding: 82px 48px 60px;
    }

    .featured-pizzas {
        margin-top: 42px;
        padding: 0 38px;
    }

    .featured-pizza-image {
        max-width: 240px;
    }
}

@media (max-width: 620px) {
    .featured-pizzas-track {
        grid-auto-columns: 100%;
        gap: 18px;
    }

    .price-list {
        margin-top: 72px;
    }

    .price-list-panel {
        margin-top: 48px;
    }

    .price-list-columns {
        display: block;
    }

    .price-list-item {
        margin-bottom: 24px;
    }

    .price-list-item-heading {
        gap: 7px;
    }

    .price-list-item-heading h3,
    .price-list-item-price {
        font-size: 1rem;
        letter-spacing: 0.055em;
    }

    .price-list-item-ingredients {
        font-size: 1rem;
    }

    .price-list-allergen-notice {
        margin-top: 48px;
    }

    .price-list-allergen-title {
        font-size: 1.0625rem;
    }

    .price-list-allergen-details {
        font-size: 1rem;
    }

    .dough-list-item {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 12px;
    }

    .dough-list-heading {
        gap: 7px;
    }

    .dough-list-heading h3,
    .dough-list-price,
    .dough-list-note {
        font-size: 1rem;
    }

    .tray-pizza-copy {
        flex-basis: 74%;
        width: 74%;
        min-height: 0;
    }

    .tray-pizza-title,
    .fidelity-card-title {
        font-size: clamp(3.575rem, 10.4vw, 4.16rem);
    }

    .tray-pizza-kicker,
    .fidelity-card-kicker {
        font-size: clamp(1.25rem, 3.64vw, 1.456rem);
    }

    .tray-pizza-description {
        font-size: clamp(0.9rem, 2.6vw, 1.04rem);
    }

    .tray-pizza-media {
        flex-basis: 26%;
        width: 26%;
        height: 100%;
    }

    .tray-pizza-badge {
        width: clamp(82px, 16vw, 100px);
    }
}

@media (min-width: 421px) and (max-width: 480px) {
    .tray-pizza-title,
    .fidelity-card-title {
        font-size: clamp(4.16rem, 10.4vw, 5.2rem);
    }

    .tray-pizza-kicker,
    .fidelity-card-kicker {
        font-size: clamp(1.456rem, 3.64vw, 1.82rem);
    }

    .tray-pizza-description {
        font-size: clamp(1.04rem, 2.6vw, 1.3rem);
    }
}

@media (max-width: 480px) {
    .story-inner {
        padding: 46px 28px 92px;
    }

    .story-copy {
        letter-spacing: 0.035em;
    }

    .story-leaf--top {
        left: -8px;
        width: 58px;
    }

    .story-leaf--left,
    .story-leaf--right {
        opacity: 0.72;
    }

    .story-leaf--bottom-left {
        bottom: -20px;
        width: 72px;
    }

    .story-leaf--bottom-right {
        bottom: -40px;
        width: 106.6px;
    }

    .pizzas-inner {
        padding: 72px 28px 50px;
    }

    .featured-pizzas {
        padding: 0 28px;
    }

    .featured-pizzas-arrow {
        width: 32px;
        font-size: 2.75rem;
    }

    .price-list-categories-shell {
        --category-safe-space: 40px;
        width: calc(100% + 20px);
        margin-left: -10px;
    }

    .tray-pizza-copy {
        align-items: center;
        flex-basis: auto;
        width: 100%;
        min-height: 240px;
        height: auto;
        padding: 34px 15px;
    }

    .tray-pizza-inner {
        flex-direction: column;
        height: auto;
    }

    .tray-pizza-media {
        flex-basis: auto;
        width: 100%;
        height: clamp(250px, 68vw, 330px);
    }

    .tray-pizza-badge {
        left: 10%;
        width: clamp(90px, 22vw, 106px);
    }

    .ingredients-inner {
        padding: 54px 20px 76px;
    }

    .ingredients-heading {
        margin-bottom: 44px;
    }

    .ingredients-accordion {
        gap: 14px;
    }

    .ingredients-accordion-item.is-open {
        border-radius: 28px;
    }

    .ingredients-accordion-trigger {
        min-height: 68px;
        padding: 15px 22px;
    }

    .ingredients-accordion-title {
        font-size: clamp(1.05rem, 5vw, 1.25rem);
    }

    .ingredients-accordion-icon {
        margin-left: 16px;
        font-size: 1.75rem;
    }

    .ingredients-accordion-content {
        gap: 26px;
        padding: 0 22px 34px;
    }

    .fidelity-card-inner {
        align-items: flex-end;
        min-height: 430px;
        background-position: 39% center;
    }

    .fidelity-card-copy {
        width: 100%;
        padding: 42px 22px 36px;
    }

    .fidelity-card-description {
        margin-top: 32px;
        font-size: 1rem;
    }

    .reviews-thanks-inner {
        padding: 58px 20px;
        gap: 46px;
    }

    .review-rating-symbol {
        --rating-symbol-size: 22px;
    }

    .review-rating-symbol--circle {
        --rating-symbol-size: 26px;
    }

    .review-summary--google {
        gap: 16px;
    }

    .review-summary-logo--google {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .tray-pizza-title {
        font-size: clamp(2.55rem, 12vw, 3.25rem);
    }

    .tray-pizza-kicker {
        font-size: clamp(0.95rem, 4.2vw, 1.15rem);
    }

    .tray-pizza-description {
        font-size: clamp(0.82rem, 3.5vw, 0.95rem);
    }

    .tray-pizza-badge {
        left: clamp(58px, 16vw, 70px);
    }

    .ingredients-heading .section-title {
        font-size: clamp(2rem, 10vw, 2.625rem);
    }

    .dough-list-heading {
        flex-wrap: wrap;
        row-gap: 5px;
        white-space: normal;
    }

    .dough-list-heading .price-list-item-leader {
        display: none;
    }

    .dough-list-price {
        flex-basis: 100%;
        width: 100%;
        text-align: left;
    }

    .delivery-apps-inner {
        padding: 54px 22px;
        gap: 50px;
    }

    .delivery-apps-partner {
        gap: 20px;
    }

    .delivery-apps-logo {
        height: clamp(44px, 13vw, 52px);
    }

    .delivery-apps-logo--glovo {
        height: clamp(40px, 11.5vw, 46px);
    }

    .delivery-apps-stores {
        gap: 10px;
    }

    .delivery-apps-stores img {
        height: clamp(30px, 9vw, 36px);
    }
}

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

/* Variante flex della fascia principale, mantenuta separata per il confronto. */
.site-footer-primary.site-footer-primary--flex {
    padding: 28px 0;
}

.site-footer-primary--flex .site-footer-primary-inner {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 0;
}

.site-footer-primary--flex .site-footer-business,
.site-footer-primary--flex .site-footer-form-shell,
.site-footer-primary--flex .site-footer-contacts {
    justify-content: center;
}

.site-footer-primary--flex .site-footer-business,
.site-footer-primary--flex .site-footer-contacts {
    flex: 0 0 33%;
    width: 33%;
}

.site-footer-primary--flex .site-footer-business {
    display: flex;
    flex-direction: column;
}

.site-footer-primary--flex .site-footer-form-shell {
    position: relative;
    display: flex;
    flex: 0 0 34%;
    align-self: stretch;
    width: 34%;
    height: auto;
}

.site-footer-primary--flex .site-footer-business > *,
.site-footer-primary--flex .site-footer-contact-row {
    width: min(100%, 330px);
    margin-right: auto;
    margin-left: auto;
}

.site-footer-primary--flex .site-footer-contact-form {
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
}

@media (max-width: 980px) {
    .site-footer-primary--flex .site-footer-primary-inner {
        flex-direction: column;
        align-items: center;
        gap: 58px;
    }

    .site-footer-primary--flex .site-footer-business,
    .site-footer-primary--flex .site-footer-form-shell,
    .site-footer-primary--flex .site-footer-contacts {
        flex: 0 0 auto;
        width: min(100%, 560px);
    }

    .site-footer-primary--flex .site-footer-form-shell {
        order: -1;
        align-self: auto;
        height: auto;
    }

    .site-footer-primary--flex .site-footer-contact-form {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto;
        transform: none;
    }
}

@media (max-width: 620px) {
    .site-footer-primary--flex .site-footer-contact-form {
        margin-top: 0;
    }
}

/* Keep the remaining footer columns balanced when the contact form is disabled. */
.site-footer-primary--without-form .site-footer-business,
.site-footer-primary--without-form .site-footer-contacts {
    flex-basis: 50%;
    width: 50%;
}

@media (max-width: 768px) {
    .site-footer-primary--without-form .site-footer-primary-inner {
        flex-direction: column;
    }

    .site-footer-primary--without-form .site-footer-business,
    .site-footer-primary--without-form .site-footer-contacts {
        flex-basis: 100%;
        width: 100%;
    }
}
