@charset "UTF-8";

:root {
    --ink: #14130f;
    --ink-soft: #24221d;
    --paper: #f5eddd;
    --paper-deep: #e9dbc2;
    --white: #fffdf8;
    --red: #c83528;
    --red-dark: #a9231b;
    --teal: #0aa6a6;
    --gold: #f0b43a;
    --line-dark: rgba(20, 19, 15, 0.16);
    --line-light: rgba(255, 253, 248, 0.16);
    --shadow: 0 24px 60px rgba(19, 14, 9, 0.16);
    --shadow-tight: 0 12px 30px rgba(19, 14, 9, 0.13);
    --radius: 18px;
    --radius-lg: 30px;
    --shell: min(1180px, calc(100vw - 48px));
    --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.55;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

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

button,
input {
    font: inherit;
}

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

:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 4px;
}

::selection {
    background: var(--teal);
    color: var(--white);
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    font-weight: 800;
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.utility-bar {
    position: relative;
    z-index: 40;
    background: #0c0b09;
    color: rgba(255, 253, 248, 0.78);
    font-size: 0.79rem;
    font-weight: 750;
    letter-spacing: 0.02em;
}

.utility-inner {
    min-height: 34px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.utility-inner a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color 180ms ease;
}

.utility-inner a:hover {
    color: var(--white);
}

.utility-inner svg {
    width: 15px;
    height: 15px;
    color: var(--teal);
}

.site-header {
    position: sticky;
    z-index: 35;
    top: 0;
    background: rgba(20, 19, 15, 0.94);
    border-bottom: 1px solid var(--line-light);
    color: var(--white);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
}

.brand {
    width: 188px;
    height: 58px;
    display: flex;
    align-items: center;
}

.brand img {
    width: 100%;
    max-height: 54px;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 3vw, 38px);
}

.main-nav a {
    position: relative;
    padding: 28px 0;
    color: rgba(255, 253, 248, 0.76);
    font-size: 0.9rem;
    font-weight: 780;
    letter-spacing: 0.025em;
    transition: color 180ms ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    background: var(--gold);
    transform-origin: center;
    transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
}

.main-nav .nav-phone {
    display: none;
}

.nav-toggle {
    display: none;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 850;
    line-height: 1.15;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button svg {
    width: 19px;
    height: 19px;
    transition: transform 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:hover svg {
    transform: translateX(3px);
}

.button-red {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(200, 53, 40, 0.24);
}

.button-red:hover {
    background: var(--red-dark);
    box-shadow: 0 16px 36px rgba(200, 53, 40, 0.34);
}

.button-ghost {
    border-color: rgba(255, 253, 248, 0.26);
    background: rgba(255, 253, 248, 0.06);
    color: var(--white);
}

.button-ghost:hover {
    border-color: rgba(255, 253, 248, 0.58);
    background: rgba(255, 253, 248, 0.1);
}

.button-outline-dark {
    border-color: rgba(20, 19, 15, 0.3);
    color: var(--ink);
}

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

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

.header-cta {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 0.88rem;
}

.hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 36%, rgba(200, 53, 40, 0.19), transparent 31%),
        radial-gradient(circle at 42% 120%, rgba(10, 166, 166, 0.11), transparent 38%),
        var(--ink);
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(30deg, rgba(255, 255, 255, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.08) 87.5%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.08) 87.5%);
    background-size: 64px 110px;
}

.hero-pattern {
    position: absolute;
    top: 60px;
    left: -78px;
    width: 260px;
    height: 260px;
    border: 50px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: clamp(28px, 5vw, 78px);
    padding-block: 68px 76px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 35px;
    height: 2px;
    background: currentColor;
}

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

.hero h1,
.section-heading h2,
.visit-copy > h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(4rem, 7vw, 7.35rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 0.86;
    text-transform: uppercase;
}

.hero h1 em {
    color: var(--teal);
    font-style: normal;
}

.hero-lede {
    max-width: 570px;
    margin: 28px 0 0;
    color: rgba(255, 253, 248, 0.72);
    font-size: clamp(1rem, 1.4vw, 1.14rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.quick-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 38px 0 0;
}

.quick-facts > div {
    min-height: 82px;
    padding: 15px 16px;
    border: 1px solid var(--line-light);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
}

.quick-facts dt {
    margin-bottom: 4px;
    color: var(--teal);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.quick-facts dd {
    margin: 0;
    color: var(--white);
    font-size: 0.87rem;
    font-weight: 780;
    line-height: 1.35;
}

.hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 253, 248, 0.15);
}

.hero-orbit::before,
.hero-orbit::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
}

.hero-orbit-one {
    inset: 18px 4px 24px 8px;
    transform: rotate(-11deg);
}

.hero-orbit-one::before {
    top: 10%;
    left: 14%;
}

.hero-orbit-one::after {
    right: 7%;
    bottom: 23%;
    background: var(--teal);
}

.hero-orbit-two {
    inset: 58px 52px 62px 44px;
    transform: rotate(17deg);
    border-color: rgba(200, 53, 40, 0.46);
}

.hero-image-wrap {
    position: relative;
    width: min(108%, 600px);
    aspect-ratio: 1.22 / 1;
    padding: 24px;
    transform: rotate(2.5deg);
    border-radius: 46% 54% 46% 54% / 52% 43% 57% 48%;
    background: var(--paper);
    box-shadow: 0 42px 90px rgba(0, 0, 0, 0.38);
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(20, 19, 15, 0.12);
    border-radius: inherit;
    pointer-events: none;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    mix-blend-mode: normal;
}

.hero-stamp {
    position: absolute;
    z-index: 2;
    top: -28px;
    right: 2px;
    width: 108px;
    height: 108px;
    display: grid;
    place-items: center;
    transform: rotate(8deg);
    border: 5px solid var(--ink);
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-family: var(--display);
    font-size: 1.45rem;
    line-height: 0.86;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 0 0 2px var(--red);
}

.hero-note {
    position: absolute;
    z-index: 3;
    right: 2px;
    bottom: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    transform: rotate(-2deg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 13px;
    background: rgba(20, 19, 15, 0.92);
    box-shadow: var(--shadow-tight);
}

.hero-note > svg {
    width: 25px;
    height: 25px;
    color: var(--gold);
}

.hero-note span {
    display: grid;
    color: rgba(255, 253, 248, 0.66);
    font-size: 0.72rem;
}

.hero-note strong {
    color: var(--white);
    font-size: 0.79rem;
}

.ticker {
    overflow: hidden;
    border-block: 1px solid rgba(20, 19, 15, 0.16);
    background: var(--red);
    color: var(--white);
}

.ticker-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 26px;
    padding-block: 17px;
    animation: ticker 28s linear infinite;
    font-family: var(--display);
    font-size: clamp(1.55rem, 2.6vw, 2.55rem);
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.ticker-track i {
    color: var(--gold);
    font-size: 0.65em;
    font-style: normal;
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

.section {
    padding-block: clamp(80px, 10vw, 132px);
}

.section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 54px;
}

.section-heading h2,
.visit-copy > h2 {
    font-size: clamp(3.4rem, 6vw, 6.5rem);
}

.section-heading-split > p {
    max-width: 480px;
    margin: 0 0 6px;
    color: rgba(20, 19, 15, 0.65);
    font-size: 1.02rem;
}

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

.food-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.66);
    box-shadow: 0 8px 0 rgba(20, 19, 15, 0.03);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.food-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-tight);
}

.food-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.food-card:nth-child(6) {
    grid-column: span 2;
}

.food-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid var(--line-dark);
    background: linear-gradient(145deg, var(--white), #efe2ca);
}

.food-card-large .food-card-image {
    height: 480px;
}

.food-card:nth-child(6) .food-card-image {
    height: 270px;
}

.food-card-image img {
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: contain;
    filter: none;
    mix-blend-mode: normal;
    transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.food-card:hover .food-card-image img {
    transform: scale(1.045);
}

.food-card-image > span {
    position: absolute;
    top: 14px;
    left: 14px;
    min-width: 38px;
    padding: 7px 9px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--display);
    font-size: 1.1rem;
    line-height: 1;
    text-align: center;
}

.food-card-copy {
    padding: 20px;
}

.food-card-copy > p,
.menu-item p {
    margin: 0 0 5px;
    color: var(--red);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.food-card-copy h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.15;
}

.food-card-copy a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    font-size: 0.78rem;
    font-weight: 820;
}

.food-card-copy a svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
    transition: transform 180ms ease;
}

.food-card-copy a:hover svg {
    transform: translateX(4px);
}

.menu-section {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.menu-section::before {
    content: "MENU";
    position: absolute;
    top: 10px;
    right: -25px;
    color: rgba(255, 255, 255, 0.025);
    font-family: var(--display);
    font-size: clamp(11rem, 24vw, 26rem);
    line-height: 0.8;
}

.menu-section .shell {
    position: relative;
    z-index: 1;
}

.menu-heading {
    max-width: 780px;
}

.menu-heading > p:last-child {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 253, 248, 0.64);
    font-size: 1rem;
}

.menu-tools {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: 18px;
    margin-top: 48px;
}

.menu-search {
    position: relative;
    display: block;
}

.menu-search > svg {
    position: absolute;
    top: 50%;
    left: 17px;
    width: 21px;
    height: 21px;
    transform: translateY(-50%);
    color: rgba(255, 253, 248, 0.46);
    pointer-events: none;
}

.menu-search input {
    width: 100%;
    height: 52px;
    padding: 0 48px 0 49px;
    border: 1px solid var(--line-light);
    border-radius: 13px;
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    transition: border-color 180ms ease, background 180ms ease;
}

.menu-search input::placeholder {
    color: rgba(255, 253, 248, 0.42);
}

.menu-search input:focus {
    border-color: var(--teal);
    background: rgba(255, 255, 255, 0.09);
}

.menu-search button {
    position: absolute;
    top: 50%;
    right: 9px;
    width: 34px;
    height: 34px;
    display: none;
    place-items: center;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
}

.menu-search.has-value button {
    display: grid;
}

.menu-search button svg {
    width: 16px;
    height: 16px;
}

.filter-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.filter-button {
    min-height: 46px;
    padding: 10px 15px;
    border: 1px solid var(--line-light);
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 253, 248, 0.68);
    cursor: pointer;
    font-size: 0.77rem;
    font-weight: 820;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
}

.menu-status {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 25px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-light);
    color: rgba(255, 253, 248, 0.58);
    font-size: 0.78rem;
    font-weight: 780;
}

.menu-status a,
.coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.menu-status a {
    color: var(--gold);
}

.menu-status a svg {
    width: 16px;
    height: 16px;
}

.coming-soon i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 5px rgba(10, 166, 166, 0.12);
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--line-light);
}

.menu-item {
    min-height: 118px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: var(--ink);
    transition: background 180ms ease;
}

.menu-item:hover {
    background: #1d1b17;
}

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

.menu-item-number {
    color: rgba(255, 253, 248, 0.27);
    font-family: var(--display);
    font-size: 1.35rem;
}

.menu-item h3 {
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.26rem);
    line-height: 1.2;
}

.menu-item-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-light);
    border-radius: 50%;
    color: var(--teal);
    transition: transform 180ms ease, border-color 180ms ease;
}

.menu-item:hover .menu-item-mark {
    transform: translateX(3px);
    border-color: var(--teal);
}

.menu-item-mark svg {
    width: 17px;
    height: 17px;
}

.menu-empty {
    max-width: 520px;
    margin: 50px auto 0;
    padding: 40px;
    border: 1px dashed rgba(255, 253, 248, 0.24);
    border-radius: var(--radius);
    text-align: center;
}

.menu-empty > svg {
    width: 32px;
    height: 32px;
    margin: 0 auto 13px;
    color: var(--teal);
}

.menu-empty h3 {
    margin: 0;
    font-size: 1.3rem;
}

.menu-empty p {
    margin: 8px 0 20px;
    color: rgba(255, 253, 248, 0.6);
}

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

.visit-section {
    position: relative;
    padding-block: clamp(80px, 10vw, 132px);
    overflow: hidden;
    background:
        radial-gradient(circle at 6% 0, rgba(10, 166, 166, 0.1), transparent 24%),
        var(--paper);
}

.visit-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
    align-items: stretch;
    gap: clamp(36px, 5vw, 72px);
}

.visit-copy > h2 {
    max-width: 580px;
}

.visit-intro {
    max-width: 580px;
    margin: 26px 0 0;
    color: rgba(20, 19, 15, 0.66);
    font-size: 1.03rem;
}

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.visit-details {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid var(--line-dark);
}

.detail-block {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 14px;
}

.detail-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--ink);
    color: var(--gold);
}

.detail-icon svg {
    width: 19px;
    height: 19px;
}

.detail-block h3 {
    margin: 0 0 7px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.detail-block address {
    color: rgba(20, 19, 15, 0.68);
    font-size: 0.9rem;
    font-style: normal;
    line-height: 1.6;
}

.detail-block address strong {
    color: var(--red);
}

.hours-block dl {
    margin: 0;
}

.hours-block dl > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 5px 0;
    color: rgba(20, 19, 15, 0.67);
    font-size: 0.83rem;
}

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

.hours-block dd {
    color: var(--ink);
    font-weight: 800;
    text-align: right;
}

.map-card {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    background: var(--ink);
    box-shadow: var(--shadow);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 650px;
    display: block;
    border: 0;
    filter: grayscale(0.9) contrast(1.04);
}

.map-label {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 253, 248, 0.95);
    box-shadow: var(--shadow-tight);
    backdrop-filter: blur(10px);
}

.map-label img {
    width: 94px;
    height: 42px;
    object-fit: contain;
}

.map-label span {
    display: grid;
    color: rgba(20, 19, 15, 0.58);
    font-size: 0.72rem;
}

.map-label strong {
    color: var(--ink);
    font-size: 0.88rem;
}

.map-label > a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
}

.map-label > a svg {
    width: 19px;
    height: 19px;
}

.site-footer {
    padding: 70px 0 32px;
    background: #0b0a08;
    color: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 70px;
    padding-bottom: 52px;
}

.footer-brand img {
    width: 220px;
    height: 86px;
}

.footer-brand p {
    max-width: 390px;
    margin: 20px 0 0;
    color: rgba(255, 253, 248, 0.54);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 68px;
}

.footer-links > div {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links h2 {
    margin: 0 0 5px;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255, 253, 248, 0.66);
    font-size: 0.9rem;
    transition: color 180ms ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid var(--line-light);
    color: rgba(255, 253, 248, 0.36);
    font-size: 0.73rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-bottom p {
    margin: 0;
}

.mobile-action-bar {
    display: none;
}

.error-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 30px;
    background:
        radial-gradient(circle at 80% 20%, rgba(200, 53, 40, 0.24), transparent 34%),
        radial-gradient(circle at 15% 95%, rgba(10, 166, 166, 0.14), transparent 32%),
        var(--ink);
    color: var(--white);
}

.error-shell {
    width: min(760px, 100%);
    text-align: center;
}

.error-brand {
    width: 230px;
    display: block;
    margin: 0 auto 45px;
}

.error-shell .eyebrow {
    justify-content: center;
}

.error-shell h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(4rem, 12vw, 8rem);
    line-height: 0.88;
    text-transform: uppercase;
}

.error-shell > p:not(.eyebrow) {
    margin: 24px auto 0;
    color: rgba(255, 253, 248, 0.64);
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}


.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {
    :root {
        --shell: min(100% - 38px, 960px);
    }

    .nav-shell {
        gap: 22px;
    }

    .brand {
        width: 164px;
    }

    .header-cta {
        display: none;
    }

    .nav-shell {
        grid-template-columns: auto 1fr;
    }

    .main-nav {
        justify-content: flex-end;
    }

    .hero {
        min-height: 0;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
        gap: 32px;
    }

    .hero-visual {
        min-height: 460px;
    }

    .hero-note {
        right: 0;
    }

    .section-heading-split {
        gap: 30px;
    }

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

    .map-card,
    .map-card iframe {
        min-height: 480px;
    }
}

@media (max-width: 780px) {
    :root {
        --shell: calc(100vw - 30px);
        --radius-lg: 22px;
    }

    html {
        scroll-padding-top: 88px;
    }

    body {
        padding-bottom: 70px;
    }

    .utility-inner {
        justify-content: space-between;
        gap: 8px;
    }

    .utility-inner a {
        font-size: 0.69rem;
    }

    .utility-inner a:first-child span {
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-shell {
        min-height: 72px;
        display: flex;
        justify-content: space-between;
    }

    .brand {
        width: 150px;
        height: 52px;
    }

    .nav-toggle {
        position: relative;
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        border: 1px solid var(--line-light);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        color: var(--white);
        cursor: pointer;
    }

    .nav-toggle-icon svg {
        width: 22px;
        height: 22px;
    }

    .nav-toggle-close {
        display: none;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-open {
        display: none;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-close {
        display: block;
    }

    .main-nav {
        position: fixed;
        z-index: 34;
        top: 106px;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 20px 24px 100px;
        clip-path: inset(0 0 0 100%);
        background: var(--ink);
        pointer-events: none;
        transition: clip-path 260ms ease;
    }

    .main-nav.is-open {
        clip-path: inset(0);
        pointer-events: auto;
    }

    .main-nav a {
        padding: 19px 0;
        border-bottom: 1px solid var(--line-light);
        color: var(--white);
        font-family: var(--display);
        font-size: 2rem;
        letter-spacing: 0.02em;
        text-transform: uppercase;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav .nav-phone {
        display: block;
        margin-top: 18px;
        padding: 16px 20px;
        border: 0;
        border-radius: 12px;
        background: var(--red);
        font-family: var(--sans);
        font-size: 0.95rem;
        text-align: center;
        text-transform: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-block: 54px 62px;
    }

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

    .hero h1 {
        font-size: clamp(3.65rem, 16vw, 6.2rem);
    }

    .hero-lede {
        margin-top: 23px;
    }

    .quick-facts {
        margin-top: 28px;
    }

    .hero-visual {
        min-height: 420px;
    }

    .hero-image-wrap {
        width: min(94%, 520px);
    }

    .hero-stamp {
        width: 92px;
        height: 92px;
        font-size: 1.25rem;
    }

    .section-heading-split {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 38px;
    }

    .section-heading h2,
    .visit-copy > h2 {
        font-size: clamp(3.2rem, 14vw, 5.8rem);
    }

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

    .food-card-large {
        grid-column: span 2;
        grid-row: auto;
    }

    .food-card:nth-child(6) {
        grid-column: span 2;
    }

    .food-card-large .food-card-image,
    .food-card:nth-child(6) .food-card-image {
        height: min(64vw, 430px);
    }

    .menu-tools {
        grid-template-columns: 1fr;
    }

    .filter-list {
        justify-content: flex-start;
        flex-wrap: nowrap;
        margin-inline: -15px;
        padding: 0 15px 5px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .filter-list::-webkit-scrollbar {
        display: none;
    }

    .filter-button {
        flex: 0 0 auto;
    }

    .menu-list {
        grid-template-columns: 1fr;
    }

    .menu-status {
        align-items: flex-start;
    }

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

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

    .footer-links {
        gap: 35px;
    }

    .mobile-action-bar {
        position: fixed;
        z-index: 50;
        right: 10px;
        bottom: 10px;
        left: 10px;
        height: 62px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 16px;
        background: rgba(20, 19, 15, 0.95);
        box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
        color: var(--white);
        backdrop-filter: blur(16px);
    }

    .mobile-action-bar a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        border-right: 1px solid var(--line-light);
        font-size: 0.66rem;
        font-weight: 760;
    }

    .mobile-action-bar a:last-child {
        border-right: 0;
    }

    .mobile-action-bar svg {
        width: 20px;
        height: 20px;
        color: var(--teal);
    }
}

@media (max-width: 520px) {
    .hero-actions,
    .visit-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .quick-facts {
        grid-template-columns: 1fr;
    }

    .quick-facts > div {
        min-height: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .quick-facts dt {
        margin: 0;
    }

    .quick-facts dd {
        text-align: right;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-image-wrap {
        padding: 18px;
    }

    .hero-note {
        right: 8px;
        bottom: -8px;
        max-width: 230px;
    }

    .hero-note span {
        font-size: 0.64rem;
    }

    .hero-note strong {
        font-size: 0.7rem;
    }

    .hero-stamp {
        top: -19px;
        right: -3px;
        width: 76px;
        height: 76px;
        border-width: 4px;
        font-size: 1rem;
    }

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

    .food-card-large,
    .food-card:nth-child(6) {
        grid-column: auto;
    }

    .food-card-image,
    .food-card-large .food-card-image,
    .food-card:nth-child(6) .food-card-image {
        height: 63vw;
        min-height: 230px;
        max-height: 330px;
    }

    .menu-status {
        flex-direction: column;
        gap: 8px;
    }

    .menu-item {
        min-height: 106px;
        grid-template-columns: auto 1fr;
        gap: 13px;
        padding-inline: 12px;
    }

    .menu-item-mark {
        display: none;
    }

    .map-card,
    .map-card iframe {
        min-height: 420px;
    }

    .map-label {
        right: 12px;
        bottom: 12px;
        left: 12px;
        grid-template-columns: 1fr auto;
    }

    .map-label img {
        display: none;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .utility-bar,
    .site-header,
    .hero-actions,
    .ticker,
    .menu-tools,
    .mobile-action-bar,
    .map-card,
    .site-footer {
        display: none !important;
    }

    body,
    .menu-section {
        background: #fff;
        color: #000;
    }

    .hero,
    .menu-section {
        min-height: 0;
        background: #fff;
        color: #000;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-block: 20px;
    }

    .hero-visual,
    .favorites {
        display: none;
    }

    .menu-list {
        grid-template-columns: repeat(2, 1fr);
        background: #ddd;
    }

    .menu-item {
        min-height: 76px;
        background: #fff;
        color: #000;
    }
}
