@font-face {
    font-family: Cookie;
    src: url("../fonts/cookie.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: Merriweather;
    src: url("../fonts/merriweather.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 100 900;
}

@font-face {
    font-family: Montserrat;
    src: url("../fonts/montserrat.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 100 900;
}

:root {
    --red: #e7272d;
    --red-dark: #c91e24;
    --ink: #15151a;
    --muted: #686874;
    --line: #dedee2;
    --surface: #fff;
    --container: 1140px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: Merriweather, Georgia, serif;
    font-size: 16px;
    line-height: 1.65;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Montserrat, Arial, sans-serif;
    line-height: 1.2;
    margin: 0 0 0.7em;
}

p {
    margin: 0 0 1.25em;
}

.container {
    margin-inline: auto;
    max-width: var(--container);
    padding-inline: 24px;
    width: 100%;
}

.skip-link {
    background: #fff;
    color: #000;
    left: 16px;
    padding: 10px 16px;
    position: fixed;
    top: -100px;
    z-index: 1000;
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    color: #fff;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: background-color 180ms ease, box-shadow 180ms ease;
    z-index: 100;
}

.site-header.is-sticky {
    background: rgba(10, 10, 12, 0.94);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.22);
    position: fixed;
}

.site-nav {
    align-items: center;
    display: grid;
    gap: 26px;
    grid-template-columns: 1fr 165px 1fr;
    margin: 0 auto;
    max-width: 900px;
    min-height: 116px;
    padding-inline: 24px;
}

.site-nav__group {
    align-items: center;
    display: flex;
    gap: 46px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__group--left {
    justify-content: flex-end;
}

.site-nav__group--right {
    justify-content: flex-start;
}

.site-nav__group a {
    display: block;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding-block: 12px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

.site-nav__group a::after {
    background: currentColor;
    bottom: 5px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 150ms ease;
    width: 100%;
}

.site-nav__group a:hover::after,
.site-nav__group a:focus-visible::after,
.site-nav__group a[aria-current="page"]::after {
    transform: scaleX(1);
}

.site-logo {
    align-items: center;
    display: flex;
    height: 92px;
    justify-content: center;
    overflow: hidden;
}

.site-logo img {
    height: 114px;
    object-fit: contain;
    width: 165px;
}

.nav-toggle {
    background: transparent;
    border: 0;
    color: #fff;
    display: none;
    height: 44px;
    padding: 8px;
    width: 44px;
}

.nav-toggle span {
    background: currentColor;
    display: block;
    height: 3px;
    margin-block: 5px;
    transition: transform 160ms ease, opacity 160ms ease;
    width: 28px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
    background: rgba(8, 8, 10, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 24px 28px;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: block;
    font-family: Montserrat, Arial, sans-serif;
    font-weight: 700;
    padding: 15px 6px;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-nav a[aria-current="page"] {
    color: #ff666a;
}

.flash-wrap {
    left: 50%;
    max-width: 680px;
    padding: 0 20px;
    position: fixed;
    top: 98px;
    transform: translateX(-50%);
    width: 100%;
    z-index: 250;
}

.flash {
    background: #fff;
    border-left: 5px solid #222;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    padding: 16px 20px;
}

.flash--success {
    border-color: #18864b;
}

.flash--error {
    border-color: var(--red);
}

.script-title {
    color: var(--red);
    font-family: Cookie, cursive;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 400;
    line-height: 0.95;
    margin: 0 0 10px;
}

.button {
    align-items: center;
    background: transparent;
    border: 2px solid currentColor;
    cursor: pointer;
    display: inline-flex;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.14em;
    min-height: 50px;
    padding: 11px 25px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}

.button--light {
    color: #fff;
}

.button--light:hover,
.button--light:focus-visible {
    background: #fff;
    color: #111;
}

.button--dark {
    color: #17171b;
}

.button--dark:hover,
.button--dark:focus-visible {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.home-hero {
    align-items: center;
    background: url("../images/home-hero.jpg") center / cover no-repeat;
    color: #fff;
    display: flex;
    min-height: 820px;
    position: relative;
}

.home-hero__overlay,
.page-hero__overlay {
    background: rgba(0, 0, 0, 0.46);
    inset: 0;
    position: absolute;
}

.home-hero__content {
    padding-left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
    position: relative;
}

.home-hero__content > * {
    max-width: 620px;
}

.home-hero__rule {
    background: rgba(255, 255, 255, 0.72);
    height: 1px;
    margin-bottom: 34px;
    width: min(600px, 68vw);
}

.home-hero h1 {
    font-family: Merriweather, Georgia, serif;
    font-size: clamp(28px, 3.2vw, 43px);
    font-weight: 400;
    margin-bottom: 28px;
}

@media (min-width: 761px) {
    .home-hero {
        align-items: stretch;
        min-height: 892px;
    }

    .home-hero__content {
        padding: 350px 0 0;
    }

    .home-hero__content > * {
        max-width: 55%;
    }

    .home-hero__rule {
        margin-bottom: 35px;
        width: 55%;
    }

    .home-hero .script-title {
        font-size: 70px;
        line-height: normal;
        margin-bottom: 0;
    }

    .home-hero h1 {
        font-family: Montserrat, Arial, sans-serif;
        font-size: 35px;
        line-height: normal;
        margin-bottom: 30px;
    }

    .home-hero .button {
        border-width: 3px;
        display: inline;
        font-size: 14px;
        line-height: 24px;
        min-height: 0;
        padding: 15px 25px;
    }
}

.holiday-banner {
    background: var(--red);
    color: #fff;
}

.holiday-banner__inner article {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: 170px 1fr;
    padding-block: 24px;
}

.holiday-banner__inner article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.holiday-banner__inner article > span {
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-family: Montserrat, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 9px 14px;
    text-align: center;
    text-transform: uppercase;
}

.holiday-banner h2 {
    color: #fff;
    font-size: 21px;
    margin: 0 0 3px;
}

.holiday-banner p {
    margin: 0;
}

.page-hero {
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    min-height: 400px;
    position: relative;
}

.page-hero--subpage-menu {
    background-image: url("../images/subpage-menu.jpg");
}

.page-hero--subpage-contact {
    background-image: url("../images/subpage-contact.jpg");
}

.page-hero--subpage-reservation {
    background-image: url("../images/subpage-reservation.jpg");
}

.page-hero--subpage-about {
    background-image: url("../images/subpage-about.jpg");
}

.page-hero--home-hero {
    background-image: url("../images/home-hero.jpg");
}

.page-hero__content {
    padding-top: 80px;
    position: relative;
    text-align: center;
}

.page-hero .script-title {
    font-size: clamp(46px, 5vw, 64px);
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(42px, 6vw, 72px);
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: uppercase;
}

.restaurant-intro {
    padding-top: 45px;
}

.restaurant-intro__lead {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 430px;
}

.restaurant-intro__lead > img {
    align-self: end;
    margin: 0 auto;
    max-height: 400px;
    object-fit: contain;
    object-position: bottom;
}

.restaurant-intro__lead > div {
    max-width: 500px;
}

.restaurant-intro__lead h2 {
    font-size: 34px;
    text-transform: uppercase;
}

.locations-showcase {
    background: url("../images/locations-bg.jpg") center / cover no-repeat;
    margin: 0 auto 90px;
    max-width: 1140px;
    padding: 0 90px;
}

.location-story {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
}

.location-story__copy {
    align-items: flex-start;
    background: var(--red);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 420px;
    padding: 60px;
}

.location-story__copy h2 {
    font-size: 21px;
}

.location-story__copy p {
    font-size: 14px;
}

.location-story > img {
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    width: 100%;
}

.cloche-icon {
    border-bottom: 2px solid currentColor;
    font-family: Georgia, serif;
    font-size: 70px;
    height: 50px;
    line-height: 0.3;
    margin-bottom: 28px;
    overflow: hidden;
    width: 90px;
}

.cuisine-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-inline: auto;
    max-width: 1440px;
}

.cuisine-grid__title,
.cuisine-card {
    aspect-ratio: 1.5 / 1;
    min-height: 250px;
}

.cuisine-grid__title {
    align-items: center;
    background: var(--red);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.cuisine-grid__title .script-title {
    color: #fff;
    font-size: 44px;
}

.cuisine-grid__title h2 {
    font-size: 48px;
    margin: 0;
    text-transform: uppercase;
}

.cuisine-card {
    color: #fff;
    display: block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.cuisine-card::after {
    background: linear-gradient(transparent 35%, rgba(0, 0, 0, 0.76));
    content: "";
    inset: 0;
    position: absolute;
}

.cuisine-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
    width: 100%;
}

.cuisine-card:hover img,
.cuisine-card:focus-visible img {
    transform: scale(1.045);
}

.cuisine-card span {
    bottom: 28px;
    display: flex;
    flex-direction: column;
    left: 32px;
    position: absolute;
    z-index: 1;
}

.cuisine-card em {
    font-family: Cookie, cursive;
    font-size: 33px;
    font-style: normal;
    line-height: 1;
}

.cuisine-card strong {
    font-family: Montserrat, Arial, sans-serif;
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
}

.ingredients-cta {
    align-items: center;
    background: url("../images/ingredients-bg.jpg") center / cover no-repeat;
    color: #fff;
    display: flex;
    min-height: 540px;
    position: relative;
    text-align: center;
}

.ingredients-cta::before {
    background: rgba(0, 0, 0, 0.36);
    content: "";
    inset: 0;
    position: absolute;
}

.ingredients-cta__content {
    position: relative;
}

.ingredients-cta h2 {
    font-family: Cookie, cursive;
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 400;
    margin-bottom: 8px;
    text-shadow: 0 5px 8px rgba(0, 0, 0, 0.5);
}

.ingredients-cta p {
    font-family: Montserrat, Arial, sans-serif;
    font-size: clamp(22px, 4vw, 46px);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.location-details {
    padding-block: 100px;
}

.location-details__grid {
    display: grid;
    gap: 90px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-details h2,
.contact-addresses h2 {
    color: var(--red);
    font-family: Cookie, cursive;
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 0;
    text-shadow: 2px 4px 7px rgba(0, 0, 0, 0.25);
}

.location-details__phone {
    display: inline-block;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 56px;
    text-decoration: none;
}

.detail-row {
    align-items: flex-start;
    display: flex;
    gap: 22px;
    margin-top: 35px;
}

.detail-row img {
    flex: 0 0 45px;
}

.detail-row div {
    display: flex;
    flex-direction: column;
}

.detail-row strong,
.detail-row b {
    font-family: Montserrat, Arial, sans-serif;
}

.detail-row a {
    color: var(--muted);
}

.site-footer {
    background: #050505;
    color: #fff;
    min-height: 88px;
}

.site-footer__inner {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    min-height: 88px;
}

.site-footer span {
    font-size: 13px;
}

.site-footer strong {
    color: var(--red);
}

.site-footer a {
    color: #999;
}

.menu-browser {
    padding-top: 100px;
}

.menu-empty {
    color: var(--muted);
    padding-block: 40px 90px;
    text-align: center;
}

.menu-tabs {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    padding-inline: 0;
}

.menu-tab {
    background: #e6423f;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    cursor: pointer;
    min-height: 82px;
    padding: 12px 14px;
}

.menu-tab:last-child {
    border-right: 0;
}

.menu-tab:hover,
.menu-tab:focus-visible,
.menu-tab.is-active {
    background: #3b3b48;
}

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

.menu-panel__image {
    height: clamp(220px, 27vw, 520px);
    object-fit: cover;
    width: 100%;
}

.menu-sections {
    display: grid;
    gap: 70px;
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
    padding-block: 60px 85px;
}

.menu-sections--multiple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-sections--multiple .menu-section:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 760px;
    width: 100%;
}

.menu-section > h2 {
    align-items: center;
    color: var(--red);
    display: flex;
    font-family: Cookie, cursive;
    font-size: 38px;
    font-weight: 400;
    gap: 18px;
    margin-bottom: 24px;
    text-align: center;
}

.menu-section > h2::before,
.menu-section > h2::after {
    background: #9c9ca6;
    content: "";
    flex: 1;
    height: 1px;
}

.menu-item {
    border-bottom: 1px dotted #d2d2d6;
    padding: 17px 0;
}

.menu-item__heading {
    align-items: baseline;
    display: flex;
    gap: 10px;
}

.menu-item h3 {
    flex: 0 1 auto;
    font-size: 16px;
    margin: 0;
}

.menu-item h3 sup {
    font-size: 9px;
    letter-spacing: 0.08em;
    margin-left: 3px;
}

.menu-item__number {
    margin-right: 4px;
}

.menu-item__dots {
    border-bottom: 1px dotted #bbb;
    flex: 1;
    min-width: 18px;
}

.menu-item__heading > strong {
    flex: 0 0 auto;
    font-family: Merriweather, Georgia, serif;
    white-space: nowrap;
}

.menu-item p {
    font-size: 14px;
    margin: 8px 0 0;
}

.menu-item__quantity {
    color: var(--muted);
    font-style: italic;
}

.allergens {
    border: 1px solid #222;
    margin-bottom: 70px;
    padding: 42px;
}

.allergens h2 {
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
}

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

.allergens dl {
    margin: 0;
}

.allergens dl div {
    display: grid;
    font-size: 13px;
    grid-template-columns: 34px 1fr;
    margin: 6px 0;
}

.allergens dt,
.allergens dd {
    margin: 0;
}

.contact-map {
    background: #e8e7e4;
    height: 520px;
    margin: 100px auto 60px;
    max-width: 1140px;
}

.contact-map iframe {
    border: 0;
    height: 100%;
    width: 100%;
}

.contact-content {
    display: grid;
    gap: 65px;
    grid-template-columns: 7fr 5fr;
    padding-bottom: 100px;
}

.contact-form-wrap > h2 {
    font-size: 29px;
    font-weight: 400;
}

.contact-form {
    display: grid;
    gap: 18px 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.form-field--wide {
    grid-column: 1 / -1;
}

.form-field label {
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-form label {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.form-field input,
.form-field select,
.form-field textarea {
    background: #fff;
    border: 2px solid #d2d2d4;
    border-radius: 0;
    color: var(--ink);
    min-height: 53px;
    padding: 12px 16px;
    width: 100%;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #33333c;
    outline: 2px solid transparent;
}

.form-field [aria-invalid="true"] {
    border-color: var(--red);
}

.field-error {
    color: #a41419;
    font-size: 13px;
    margin-top: 5px;
}

.field-hint {
    color: var(--muted);
    font-size: 13px;
    margin-top: 5px;
}

.field-hint[data-reservation-date-hint]:not(:empty) {
    color: #a41419;
}

.hp-field {
    height: 0;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    width: 0;
}

.contact-addresses article + article {
    margin-top: 48px;
}

.contact-addresses h2 {
    font-size: 43px;
}

.contact-addresses p {
    line-height: 1.45;
    margin-bottom: 15px;
}

.contact-addresses a {
    text-decoration: none;
}

.reservation-content {
    padding-block: 100px 130px;
}

.opening-hours {
    display: grid;
    gap: 80px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 100px;
    text-align: center;
}

.opening-hours h2 {
    font-size: 22px;
    margin-bottom: 12px;
}

.opening-hours p {
    margin: 0;
}

.reservation-form {
    display: grid;
    gap: 22px 28px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.reservation-form > .form-field {
    grid-column: span 3;
}

.reservation-form > .reservation-form__name,
.reservation-form > .reservation-form__phone,
.reservation-form > .reservation-form__email {
    grid-column: span 4;
}

.reservation-form__submit {
    grid-column: 1 / -1;
    padding-top: 50px;
    text-align: center;
}

.not-found-page {
    background: #080808;
}

.not-found {
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)), url("../images/not-found-bg.jpg") center / cover no-repeat;
    color: #fff;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.not-found h1 {
    font-size: clamp(88px, 14vw, 150px);
    line-height: 1;
    margin: 0;
}

.not-found p {
    font-size: 20px;
    text-transform: uppercase;
}

.error-page {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.error-page main {
    max-width: 600px;
    padding: 30px;
}

.error-page img {
    margin: 0 auto;
    max-height: 140px;
    object-fit: contain;
}

@media (max-width: 980px) {
    .site-nav {
        grid-template-columns: 1fr 145px 1fr;
    }

    .site-nav__group {
        gap: 25px;
    }

    .locations-showcase {
        padding-inline: 45px;
    }

    .location-story__copy {
        padding: 40px;
    }

    .cuisine-grid__title,
    .cuisine-card {
        min-height: 210px;
    }

    .menu-tabs {
        grid-template-columns: repeat(4, 1fr);
        padding-inline: 24px;
    }

    .menu-tab {
        min-height: 65px;
    }

    .contact-content {
        grid-template-columns: 3fr 2fr;
    }

}

@media (max-width: 760px) {
    body {
        font-size: 15px;
    }

    .site-nav {
        grid-template-columns: 1fr auto;
        min-height: 88px;
        padding-inline: 18px;
    }

    .site-nav__group {
        display: none;
    }

    .site-logo {
        height: 72px;
        justify-content: flex-start;
        width: 150px;
    }

    .site-logo img {
        height: 104px;
        width: 150px;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }

    .flash-wrap {
        top: 82px;
    }

    .home-hero {
        align-items: center;
        background-position: 60% center;
        min-height: 470px;
    }

    .home-hero__content {
        padding-top: 70px;
    }

    .home-hero__rule {
        width: 66vw;
    }

    .home-hero .script-title {
        font-size: 44px;
    }

    .home-hero h1 {
        font-size: 23px;
    }

    .holiday-banner__inner article {
        align-items: start;
        gap: 12px;
        grid-template-columns: 1fr;
        padding-block: 22px;
    }

    .holiday-banner__inner article > span {
        justify-self: start;
    }

    .holiday-banner h2 {
        font-size: 18px;
    }

    .page-hero {
        min-height: 360px;
    }

    .page-hero__content {
        padding-top: 60px;
    }

    .page-hero .script-title {
        font-size: 46px;
    }

    .page-hero h1 {
        font-size: clamp(36px, 11vw, 52px);
    }

    .restaurant-intro {
        padding-top: 0;
    }

    .holiday-banner + .restaurant-intro {
        padding-top: 24px;
    }

    .restaurant-intro__lead {
        display: none;
    }

    .locations-showcase {
        background: none;
        margin-bottom: 50px;
        padding: 0 8px;
    }

    .location-story,
    .location-story--reverse {
        display: block;
    }

    .location-story > img {
        display: none;
    }

    .location-story__copy {
        align-items: center;
        min-height: 0;
        padding: 48px 28px;
        text-align: center;
    }

    .location-story__copy h2 {
        font-size: 25px;
    }

    .location-story__copy p {
        font-size: 14px;
    }

    .cuisine-grid {
        display: block;
        padding-inline: 8px;
    }

    .cuisine-grid__title,
    .cuisine-card {
        aspect-ratio: 1.65;
        min-height: 0;
    }

    .cuisine-grid__title {
        align-items: flex-start;
        aspect-ratio: auto;
        background: #fff;
        color: #111;
        padding: 10px 0 18px;
        text-align: left;
    }

    .cuisine-grid__title .script-title {
        color: #111;
        font-size: 28px;
        line-height: 0.7;
    }

    .cuisine-grid__title h2 {
        font-size: 34px;
    }

    .ingredients-cta {
        min-height: 430px;
    }

    .ingredients-cta h2 {
        font-size: 48px;
    }

    .ingredients-cta p {
        font-size: 21px;
    }

    .location-details {
        padding-block: 65px;
    }

    .location-details__grid {
        gap: 70px;
        grid-template-columns: 1fr;
    }

    .location-details h2,
    .contact-addresses h2 {
        font-size: 42px;
    }

    .location-details__phone {
        margin-bottom: 30px;
    }

    .site-footer__inner {
        justify-content: center;
        text-align: center;
    }

    .menu-browser {
        padding-top: 35px;
    }

    .menu-tabs {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 0 14px 20px;
        scrollbar-width: thin;
    }

    .menu-tab {
        border: 0;
        flex: 0 0 auto;
        min-height: 50px;
        padding-inline: 20px;
    }

    .menu-panel__image {
        height: 170px;
    }

    .menu-sections,
    .menu-sections--multiple {
        display: block;
        padding: 35px 14px 55px;
    }

    .menu-section + .menu-section {
        margin-top: 65px;
    }

    .menu-section > h2 {
        font-size: 33px;
        gap: 12px;
    }

    .menu-item {
        padding: 15px 0;
    }

    .menu-item h3 {
        font-size: 14px;
    }

    .menu-item__heading > strong {
        font-size: 14px;
    }

    .menu-item p {
        font-size: 13px;
    }

    .allergens {
        border-left: 0;
        border-right: 0;
        margin-bottom: 0;
        padding: 35px 18px;
    }

    .allergens__grid {
        gap: 25px;
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 420px;
        margin: 55px 0 50px;
    }

    .contact-content {
        display: block;
        padding-bottom: 70px;
    }

    .contact-form {
        display: block;
    }

    .contact-form .form-field {
        margin-bottom: 16px;
    }

    .contact-addresses {
        margin-top: 55px;
    }

    .reservation-content {
        padding-block: 70px 90px;
    }

    .opening-hours {
        gap: 50px;
        grid-template-columns: 1fr;
        margin-bottom: 70px;
    }

    .reservation-form {
        display: block;
    }

    .reservation-form .form-field {
        margin-bottom: 18px;
    }

    .reservation-form__submit {
        padding-top: 35px;
    }

}

@media (max-width: 420px) {
    .container {
        padding-inline: 14px;
    }

    .home-hero {
        min-height: 390px;
    }

    .page-hero {
        min-height: 330px;
    }

    .page-hero .script-title {
        font-size: 40px;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .location-story__copy {
        padding: 42px 20px;
    }

    .cuisine-card span {
        bottom: 18px;
        left: 18px;
    }

    .cuisine-card em {
        font-size: 28px;
    }

    .cuisine-card strong {
        font-size: 24px;
    }

    .ingredients-cta {
        min-height: 390px;
    }

    .menu-panel__image {
        height: 145px;
    }

    .menu-item__dots {
        display: none;
    }

    .menu-item__heading {
        justify-content: space-between;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
