:root {
  color-scheme: light;
  --page: #f3eee4;
  --surface: #faf6ed;
  --surface-strong: #e5dece;
  --ink: #181b18;
  --muted: #62675f;
  --line: rgb(24 27 24 / 18%);
  --reservation-surface: #643125;
  --reservation-surface-deep: #29211d;
  --reservation-accent: var(--theme-accent, #a95236);
  --reservation-text: #fff8eb;
  --header-height: 5.25rem;
  --content-width: 86rem;
  --edge: clamp(1.25rem, 4vw, 4.5rem);
  --paragraph-size: .64rem;
  --display-font: Georgia, "Times New Roman", serif;
  --body-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display-tracking: -.025em;
  --display-tracking-compact: -.015em;
}

html[data-site-font="modern_sans"] { --display-font: "Avenir Next", Avenir, Montserrat, "Helvetica Neue", Arial, sans-serif; --body-font: "Avenir Next", Avenir, Montserrat, "Helvetica Neue", Arial, sans-serif; }
html[data-site-font="rounded_sans"] { --display-font: "Arial Rounded MT Bold", Nunito, Arial, sans-serif; --body-font: Nunito, "Helvetica Neue", Arial, sans-serif; }
html[data-site-font="classic_serif"] { --display-font: Georgia, "Times New Roman", serif; --body-font: Georgia, "Times New Roman", serif; }
html[data-site-font="system"] { --display-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; --body-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --page: #111411;
    --surface: #171b17;
    --surface-strong: #222820;
    --ink: #f2eee4;
    --muted: #b0b5ad;
    --line: rgb(255 255 255 / 17%);
    --reservation-surface: #51281f;
    --reservation-surface-deep: #1d1917;
    --reservation-accent: var(--theme-accent, #91432f);
    --reservation-text: #fff4e3;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--page); color: var(--ink); font: 400 1rem/1.65 var(--body-font); }
p { font-size: var(--paragraph-size); }
body.navigation-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.skip-link { position: fixed; z-index: 100; top: .75rem; left: .75rem; transform: translateY(-160%); border-radius: 999px; padding: .6rem 1rem; background: var(--ink); color: var(--page); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: relative; z-index: 20; display: flex; min-height: var(--header-height); align-items: center; gap: 2rem; border-bottom: 1px solid var(--line); padding: .8rem var(--edge); background: color-mix(in srgb, var(--surface) 94%, transparent); }
.site-logo { flex: 0 0 auto; max-width: 10.5rem; color: var(--ink); font-size: .95rem; font-weight: 700; letter-spacing: .005em; line-height: 1.1; text-decoration: none; }
.site-logo img { width: auto; max-height: 2.5rem; object-fit: contain; }
.navigation-panel { display: flex; min-width: 0; flex: 1; align-items: center; justify-content: flex-end; gap: clamp(1.5rem, 3vw, 3.25rem); }
.main-navigation { display: flex; align-items: center; gap: clamp(.9rem, 1.7vw, 1.7rem); }
.main-navigation a { position: relative; color: var(--muted); font-size: .77rem; font-weight: 600; letter-spacing: .075em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.main-navigation a::after { position: absolute; right: 0; bottom: -.45rem; left: 0; height: 1px; background: var(--theme-accent); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.main-navigation a:hover, .main-navigation a:focus-visible, .main-navigation a[aria-current="page"] { color: var(--ink); }
.main-navigation a:hover::after, .main-navigation a:focus-visible::after, .main-navigation a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.language-switcher, .location-switcher { flex: 0 0 auto; border-left: 1px solid var(--line); padding-left: 1rem; }
.language-switcher { width: 4.75rem; }
.location-switcher { width: min(12rem, 20vw); }
:is(.language-switcher, .location-switcher) .custom-select { position: relative; width: 100%; }
:is(.language-switcher, .location-switcher) .custom-select__native { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
:is(.language-switcher, .location-switcher) .custom-select__trigger { display: flex; width: 100%; min-height: 2.25rem; align-items: center; justify-content: space-between; gap: .5rem; border: 0; padding: .35rem .2rem; background: transparent; color: var(--ink); cursor: pointer; font-size: .75rem; font-weight: 700; letter-spacing: .04em; }
:is(.language-switcher, .location-switcher) .custom-select__value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
:is(.language-switcher, .location-switcher) .custom-select__chevron { width: .4rem; height: .4rem; flex: 0 0 auto; margin: 0 .2rem .2rem 0; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); transition: transform .2s ease; }
:is(.language-switcher, .location-switcher) .custom-select__trigger[aria-expanded="true"] .custom-select__chevron { margin-bottom: -.2rem; transform: rotate(225deg); }
:is(.language-switcher, .location-switcher) .custom-select__list { position: absolute; z-index: 50; top: calc(100% + .45rem); right: 0; display: grid; width: max(100%, 8rem); border: 1px solid var(--line); padding: .3rem; background: var(--surface); box-shadow: 0 .75rem 2rem rgb(0 0 0 / 14%); }
:is(.language-switcher, .location-switcher) .custom-select__list[hidden] { display: none; }
:is(.language-switcher, .location-switcher) .custom-select__option { width: 100%; border: 0; padding: .45rem .6rem; background: transparent; color: var(--muted); cursor: pointer; font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-align: left; }
:is(.language-switcher, .location-switcher) .custom-select__option:hover, :is(.language-switcher, .location-switcher) .custom-select__option:focus-visible, :is(.language-switcher, .location-switcher) .custom-select__option[aria-selected="true"] { background: color-mix(in srgb, var(--theme-primary) 13%, transparent); color: var(--ink); }
.nav-toggle { display: none; width: 2.75rem; height: 2.75rem; border: 1px solid var(--line); border-radius: 50%; align-items: center; justify-content: center; background: transparent; color: var(--ink); cursor: pointer; }
.nav-toggle > span:not(.visually-hidden) { position: absolute; width: 1rem; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle > span:nth-child(1) { transform: translateY(-.28rem); }
.nav-toggle > span:nth-child(3) { transform: translateY(.28rem); }
.navigation-open .nav-toggle > span:nth-child(1) { transform: rotate(45deg); }
.navigation-open .nav-toggle > span:nth-child(2) { opacity: 0; }
.navigation-open .nav-toggle > span:nth-child(3) { transform: rotate(-45deg); }

.home-hero { position: relative; min-height: calc(100svh - var(--header-height)); display: grid; place-items: center; overflow: hidden; padding: clamp(4rem, 10vw, 9rem) var(--edge); background: linear-gradient(140deg, var(--theme-primary), color-mix(in srgb, var(--theme-primary) 52%, var(--surface-strong))); color: #fff; isolation: isolate; }
.home-hero__slides { position: absolute; z-index: -2; inset: 0; overflow: hidden; }
.home-hero__slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity var(--hero-transition-duration, 800ms) ease; }
.home-hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.home-hero__slide.is-active { z-index: 1; opacity: 1; }
.home-hero[data-animation="slide"] .home-hero__slide { opacity: 1; transform: translateX(100%); transition: transform var(--hero-transition-duration, 800ms) cubic-bezier(.65, 0, .35, 1); }
.home-hero[data-animation="slide"] .home-hero__slide.is-active { transform: translateX(0); }
.home-hero[data-animation="none"] .home-hero__slide { transition: none; }
.home-hero--with-image::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgb(0 0 0 / 25%), rgb(0 0 0 / 48%)); content: ""; }
.home-hero__content { width: min(68rem, 100%); text-align: center; }
.home-hero__slide-content[hidden] { display: none; }
.home-hero__slide-content.is-active { animation: home-hero-content-in .45s ease both; }
@keyframes home-hero-content-in { from { opacity: 0; transform: translateY(.6rem); } to { opacity: 1; transform: none; } }
.home-hero h1 { margin: 0; font: 500 clamp(4rem, 12vw, 10.5rem)/.85 var(--display-font); letter-spacing: var(--display-tracking); text-wrap: balance; }
.home-hero__logo { width: min(25rem, 60vw); max-height: 12rem; margin-inline: auto; object-fit: contain; }
.home-hero__claim, .home-hero__eyebrow { max-width: 40rem; margin: 2rem auto 0; font-size: clamp(.9rem, 1.5vw, 1.2rem); font-weight: 600; letter-spacing: .18em; line-height: 1.5; text-transform: uppercase; }
.home-hero__description { max-width: 42rem; margin: 1.5rem auto 0; font-size: clamp(.85rem, 1.3vw, 1.05rem); }
.home-hero__button { display: inline-flex; min-height: 2.8rem; align-items: center; justify-content: center; margin-top: 1.8rem; border: 1px solid currentColor; padding: .65rem 1.25rem; font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: background-color .2s ease, color .2s ease; }
.home-hero__button:hover, .home-hero__button:focus-visible { background: #fff; color: var(--theme-primary); }
.scroll-cue { position: absolute; bottom: 2rem; width: 2.75rem; height: 2.75rem; border: 1px solid rgb(255 255 255 / 60%); border-radius: 50%; }
.scroll-cue span { position: absolute; top: .85rem; left: 1.05rem; width: .55rem; height: .55rem; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); }
.hero-slider-controls { position: absolute; right: var(--edge); bottom: 2rem; display: flex; align-items: center; gap: .75rem; }
.hero-slider-toggle { display: grid; width: 2.75rem; height: 2.75rem; place-items: center; border: 1px solid rgb(255 255 255 / 60%); border-radius: 50%; padding: 0; background: transparent; color: #fff; cursor: pointer; }
.hero-slider-toggle:hover, .hero-slider-toggle:focus-visible { background: rgb(255 255 255 / 14%); }
.hero-slider-status { min-width: 3rem; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-align: right; }

.section-label { display: flex; justify-content: center; padding-top: .4rem; writing-mode: vertical-rl; }
.section-label span { color: var(--muted); font-size: 1.1rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow { margin: 0 0 1.2rem; color: var(--theme-primary); font-size: .73rem; font-weight: 750; letter-spacing: .2em; line-height: 1.4; text-transform: uppercase; }
.story-section { display: grid; grid-template-columns: 5rem minmax(18rem, .8fr) minmax(28rem, 1.2fr); column-gap: clamp(2rem, 4vw, 4rem); width: min(var(--content-width), 100%); align-items: start; margin-inline: auto; padding: clamp(5rem, 10vw, 10rem) var(--edge); }
.editorial-section { display: grid; grid-template-columns: 7rem minmax(0, 1fr); column-gap: clamp(2rem, 5vw, 5rem); width: min(var(--content-width), 100%); margin-inline: auto; padding: clamp(5rem, 10vw, 10rem) var(--edge); }
.story-section__content { max-width: 34rem; }
.editorial-section__content { width: min(58rem, 100%); max-width: 58rem; justify-self: center; }
.editorial-section__content > :first-child { margin-top: 0; }
.section-label--sticky { position: sticky; top: clamp(1.25rem, 3vh, 2rem); align-self: start; justify-content: flex-start; padding-top: 0; }
.story-section h2, .reservation-section__title, .hours-contact h2, .page-hero h1 { margin: 0; font: 500 clamp(3.15rem, 8vw, 7.5rem)/.91 var(--display-font); letter-spacing: var(--display-tracking); text-wrap: balance; }
.editorial-lead { max-width: 48rem; margin: 2.25rem 0 0; font: 400 clamp(.864rem, 1.6vw, 1.28rem)/1.45 var(--display-font); white-space: pre-line; }
.rich-copy > :first-child { margin-top: 0; }
.rich-copy > :last-child { margin-bottom: 0; }
.rich-copy p, .rich-copy ul, .rich-copy ol, .rich-copy blockquote { margin: 0 0 1em; font: inherit; }
.rich-copy h2, .rich-copy h3 { margin: 1.5em 0 .55em; font-family: var(--display-font); font-weight: 500; line-height: 1.1; }
.rich-copy h2 { font-size: 1.55em; }
.rich-copy h3 { font-size: 1.25em; }
.rich-copy blockquote { border-left: 2px solid var(--theme-primary); padding-left: 1em; }
.rich-copy a { text-underline-offset: .2em; }
.body-copy { max-width: 43rem; margin: 1.75rem 0 0; color: var(--muted); white-space: pre-line; }
.text-link { display: inline-flex; gap: .75rem; align-items: center; margin-top: 2rem; font-size: .75rem; font-weight: 700; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.text-link span { color: var(--theme-accent); font-size: 1.1rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(.3rem); }

.story-section__media-rail { position: sticky; top: 0; display: flex; height: 100svh; align-items: center; margin-left: clamp(1.5rem, 3vw, 3rem); }
.story-section__media { display: grid; width: 100%; height: min(clamp(31rem, 43vw, 43rem), calc(100svh - var(--header-height) - var(--header-height) - 1rem)); grid-template-columns: 1.05fr .95fr; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: clamp(.45rem, .8vw, .8rem); }
.story-image { min-width: 0; min-height: 0; margin: 0; overflow: hidden; background: var(--surface-strong); }
.story-section__media--count-4 { height: min(clamp(37rem, 49vw, 49rem), calc(100svh - var(--header-height) - var(--header-height) - 1rem)); grid-template-rows: repeat(2, minmax(0, 1fr)) minmax(9rem, .58fr); }
.story-section__media--count-4 .story-image--1 { grid-row: 1 / 3; }
.story-section__media--count-4 .story-image--4 { grid-column: 1 / -1; }
.story-section__media--count-3 .story-image:first-child { grid-row: 1 / 3; }
.story-section__media--count-2 { grid-template-rows: 1fr; }
.story-section__media--count-1 { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.story-image img, .editorial-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.story-image:hover img { transform: scale(1.025); }

.reservation-section { display: grid; place-items: center; min-height: 32rem; padding: clamp(5rem, 9vw, 9rem) var(--edge); background: radial-gradient(circle at 18% 12%, color-mix(in srgb, var(--reservation-accent) 58%, transparent), transparent 38%), linear-gradient(135deg, var(--reservation-surface-deep), var(--reservation-surface) 62%, var(--reservation-accent)); color: var(--reservation-text); text-align: center; }
.reservation-section__eyebrow { margin: 0 0 1.2rem; color: currentColor; font-size: .73rem; font-weight: 750; letter-spacing: .2em; line-height: 1.4; text-transform: uppercase; }
.reservation-section__title { max-width: 10ch; }
.reservation-section__action { display: inline-flex; margin-top: 2.5rem; border: 1px solid currentColor; border-radius: 999px; padding: .8rem 1.5rem; font-size: .73rem; font-weight: 700; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; transition: background-color .2s ease, color .2s ease; }
.reservation-section__action:hover, .reservation-section__action:focus-visible { background: var(--reservation-text); color: var(--reservation-surface-deep); }
.hours-contact { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); }
.hours-contact__hours, .hours-contact__details { padding: clamp(4rem, 7vw, 7rem) var(--edge); }
.hours-contact__hours { background: var(--surface); }
.hours-contact__details { background: var(--theme-secondary); color: #171a16; }
.hours-contact__details .eyebrow { color: inherit; opacity: .7; }
.hours-contact h2 { font-size: clamp(2.7rem, 6vw, 5.5rem); }
.schedule-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 5rem); margin-top: 3.5rem; }
.schedule-columns h3 { margin: 0 0 1.25rem; font: 500 1.2rem/1.3 var(--display-font); }
.schedule-list { margin: 0; }
.schedule-row { display: grid; grid-template-columns: minmax(6.5rem, 1fr) auto; gap: 1rem; border-bottom: 1px solid var(--line); padding: .55rem 0; }
.schedule-row dt, .schedule-row dd { margin: 0; font-size: .8rem; }
.schedule-row dd { display: flex; flex-direction: column; text-align: right; }
.public-special-hours { margin-top: 3.5rem; border-top: 1px solid var(--line); padding-top: 2rem; }
.public-special-hours h3 { margin: 0 0 1rem; font: 500 1.2rem/1.3 var(--display-font); }
.public-special-hours dl { margin: 0; }
.public-special-hours dl > div { display: grid; grid-template-columns: minmax(12rem, 1fr) auto; gap: 1rem; border-bottom: 1px solid var(--line); padding: .7rem 0; }
.public-special-hours dt { display: flex; gap: 1rem; }
.public-special-hours dt span { color: var(--muted); }
.public-special-hours dd { display: flex; flex-direction: column; margin: 0; text-align: right; }
.public-special-hours dd small { margin-right: .4rem; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.contact-details { display: grid; gap: 1.25rem; margin: 2.5rem 0; }
.contact-detail { display: grid; gap: .25rem; }
.contact-detail dt { color: inherit; font-size: .66rem; font-weight: 700; letter-spacing: .1em; opacity: .62; text-transform: uppercase; }
.contact-detail dd { min-width: 0; margin: 0; font-size: 1rem; line-height: 1.5; }
.contact-detail address { margin: 0; font: inherit; }
.contact-detail a { overflow-wrap: anywhere; text-underline-offset: .25em; }

.inner-page { min-height: 70vh; }
.page-hero { position: relative; display: grid; min-height: clamp(27rem, 64vh, 47rem); place-items: center; overflow: hidden; padding: clamp(4rem, 9vw, 9rem) var(--edge); background: linear-gradient(140deg, var(--theme-primary), color-mix(in srgb, var(--theme-primary) 52%, var(--surface-strong))); color: #fff; isolation: isolate; text-align: center; }
.page-hero__slides { position: absolute; z-index: -2; inset: 0; overflow: hidden; }
.page-hero__slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity var(--hero-transition-duration, 800ms) ease; }
.page-hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__slide.is-active { z-index: 1; opacity: 1; }
.page-hero[data-animation="slide"] .page-hero__slide { opacity: 1; transform: translateX(100%); transition: transform var(--hero-transition-duration, 800ms) cubic-bezier(.65, 0, .35, 1); }
.page-hero[data-animation="slide"] .page-hero__slide.is-active { transform: translateX(0); }
.page-hero[data-animation="none"] .page-hero__slide { transition: none; }
.page-hero--with-image::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgb(0 0 0 / 25%), rgb(0 0 0 / 52%)); content: ""; }
.page-hero__content { width: min(68rem, 100%); }
.page-hero__slide-content[hidden] { display: none; }
.page-hero__slide-content.is-active { animation: page-hero-content-in .45s ease both; }
.page-hero__description { max-width: 40rem; margin: 1.5rem auto 0; }
.page-hero__button { display: inline-flex; min-height: 2.8rem; align-items: center; justify-content: center; margin-top: 1.8rem; border: 1px solid currentColor; padding: .65rem 1.25rem; font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: background-color .2s ease, color .2s ease; }
.page-hero__button:hover, .page-hero__button:focus-visible { background: #fff; color: var(--theme-primary); }
@keyframes page-hero-content-in { from { opacity: 0; transform: translateY(.6rem); } to { opacity: 1; transform: none; } }
.page-hero h1 { max-width: 12ch; margin-inline: auto; }
.page-hero .eyebrow { color: currentColor; }
.page-hero__intro { max-width: 38rem; margin: 1.5rem auto 0; color: currentColor; }
.editorial-image { width: min(52rem, 100%); aspect-ratio: 4 / 3; margin: clamp(3rem, 7vw, 6rem) 0 0; overflow: hidden; background: var(--surface-strong); }
.menu-list { width: min(66rem, calc(100% - 2 * var(--edge))); margin: clamp(4rem, 8vw, 8rem) auto; }
.menu-category { display: grid; grid-template-columns: minmax(12rem, .7fr) minmax(0, 1.3fr); gap: clamp(2rem, 7vw, 7rem); border-top: 1px solid var(--line); padding: clamp(3rem, 6vw, 5.5rem) 0; }
.menu-category header h2 { margin: 0; font: 500 clamp(2rem, 4vw, 3.5rem)/1 var(--display-font); letter-spacing: var(--display-tracking-compact); }
.menu-category header p, .dish p { color: var(--muted); }
.dish { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; border-bottom: 1px solid var(--line); padding: 1rem 0; }
.dish:first-child { padding-top: 0; }
.dish h3, .dish p { margin: 0; }
.dish h3 { font-size: .95rem; }
.dish p { margin-top: .3rem; font-size: .544rem; }
.dish strong { font-size: .85rem; white-space: nowrap; }
.empty-state { width: min(66rem, calc(100% - 2 * var(--edge))); margin: 4rem auto 8rem; color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(var(--content-width), 100%); margin-inline: auto; padding: clamp(5rem, 9vw, 9rem) var(--edge); }
.contact-grid > * { min-height: 15rem; border-left: 1px solid var(--line); padding-left: clamp(1.5rem, 4vw, 4rem); }
.contact-details--large { align-content: center; gap: 1.5rem; margin: 0; }
.contact-details--large .contact-detail dd { font: 400 clamp(1.25rem, 2.5vw, 2rem)/1.35 var(--display-font); }

.location-selection-page { min-height: 70vh; }
.location-selection-header { width: min(var(--content-width), 100%); margin-inline: auto; }
.location-selection-header h1 { max-width: 12ch; margin: 0; font: 500 clamp(3.2rem, 8vw, 7.5rem)/.9 var(--display-font); letter-spacing: var(--display-tracking); text-wrap: balance; }
.location-selection-header > p:last-child { max-width: 38rem; margin: 1.5rem 0 0; color: var(--muted); }
.location-selection-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(var(--content-width), calc(100% - 2 * var(--edge))); gap: clamp(1rem, 3vw, 2rem); margin: clamp(3rem, 7vw, 6rem) auto; }
.location-card { display: flex; min-height: 22rem; flex-direction: column; justify-content: space-between; gap: 3rem; border: 1px solid var(--line); padding: clamp(1.5rem, 4vw, 3rem); background: var(--surface); transition: border-color .2s ease, transform .2s ease; }
.location-card:hover { border-color: var(--theme-primary); transform: translateY(-.2rem); }
.location-card h2 { max-width: 13ch; margin: 0; font: 500 clamp(2rem, 4vw, 3.8rem)/.95 var(--display-font); letter-spacing: var(--display-tracking-compact); }
.location-card address, .location-card div > p:not(.eyebrow) { margin: 1.3rem 0 0; color: var(--muted); font: inherit; }
.location-card div > p:not(.eyebrow) { font-size: var(--paragraph-size); }
.location-card__action { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 1rem; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.location-card__action span { font-size: 1rem; transition: transform .2s ease; }
.location-card__action:hover span { transform: translateX(.3rem); }

.content-page { width: min(70rem, calc(100% - 2 * var(--edge))); min-height: 60vh; margin-inline: auto; padding: clamp(5rem, 9vw, 9rem) 0; }
.content-page h1 { margin: 0; font: 500 clamp(3rem, 8vw, 7rem)/.92 var(--display-font); letter-spacing: var(--display-tracking); }
.content-page > p:not(.eyebrow) { color: var(--muted); }
.legal-content { width: min(58rem, calc(100% - 2 * var(--edge))); margin-inline: auto; padding: clamp(5rem, 9vw, 9rem) 0; }
.legal-copy { max-width: 50rem; margin-top: clamp(2.5rem, 6vw, 5rem); color: var(--muted); overflow-wrap: anywhere; }
.legal-copy h2, .legal-copy h3 { margin: 2.3em 0 .7em; color: var(--ink); font-family: var(--display-font); font-weight: 500; line-height: 1.15; }
.legal-copy h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.legal-copy h3 { font-size: clamp(1.25rem, 3vw, 1.65rem); }
.legal-copy p, .legal-copy ul, .legal-copy ol, .legal-copy blockquote { margin: 0 0 1.2rem; }
.legal-copy a { color: var(--ink); text-underline-offset: .25em; }
.legal-copy blockquote { border-left: 2px solid var(--theme-primary); padding-left: 1.2rem; }

.theme-status-page { width: 100%; height: 100vh; overflow: hidden; }
.site-status { position: relative; display: grid; width: 100%; height: 100vh; min-height: 0; grid-template-rows: minmax(0, 1fr) auto; align-items: center; overflow: hidden; padding: clamp(1.5rem, 4vh, 4rem) var(--edge); isolation: isolate; }
.site-status::before { position: absolute; z-index: -2; width: min(58rem, 90vw); height: min(58rem, 90vw); border: 1px solid var(--line); border-radius: 50%; content: ""; inset: 50% auto auto 64%; transform: translate(-50%, -50%); }
.site-status__mark { position: absolute; z-index: -1; width: clamp(13rem, 30vw, 30rem); height: clamp(13rem, 30vw, 30rem); border-radius: 50%; background: color-mix(in srgb, var(--theme-primary) 20%, var(--surface)); filter: blur(.2px); inset: 50% auto auto 64%; transform: translate(-50%, -50%); }
.theme-status-page--maintenance .site-status__mark { border-radius: 42% 58% 53% 47%; background: color-mix(in srgb, var(--theme-accent) 24%, var(--surface)); }
.site-status__content { width: min(55rem, 100%); align-self: center; }
.site-status__brand { display: inline-flex; max-width: 13rem; margin-bottom: clamp(2rem, 7vh, 5rem); color: var(--ink); font-weight: 700; line-height: 1.1; }
.site-status__brand picture { display: contents; }
.site-status__brand img { width: auto; max-height: 4.5rem; object-fit: contain; }
.site-status__eyebrow { margin: 0 0 1rem; color: var(--theme-primary); font-size: .73rem; font-weight: 750; letter-spacing: .2em; text-transform: uppercase; }
.site-status h1 { max-width: 12ch; margin: 0; font: 500 clamp(2.75rem, 7vw, 6.25rem)/.94 var(--display-font); letter-spacing: var(--display-tracking-compact); text-wrap: balance; }
.site-status__text { max-width: 36rem; margin: clamp(1.15rem, 3vh, 2rem) 0 0; color: var(--muted); font-size: clamp(.85rem, 1.25vw, 1.02rem); }
.site-status__footer { display: flex; align-self: end; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 3rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.site-status__name { margin: 0; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.site-status__footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .6rem 1.25rem; }
.site-status__footer a { color: var(--muted); font-size: .72rem; text-underline-offset: .25em; }
.site-status__footer a:hover, .site-status__footer a:focus-visible { color: var(--ink); }
.site-footer { --footer-text: #f7f1e7; --footer-muted: #aaa59d; --footer-line: rgb(255 255 255 / 17%); border-top: 1px solid var(--footer-line); padding: clamp(3.5rem, 7vw, 6rem) var(--edge) 1.5rem; background: #171817; color: var(--footer-text); }
.site-footer__main { display: flex; width: min(var(--content-width), 100%); align-items: flex-start; justify-content: space-between; gap: clamp(2rem, 5vw, 5rem); margin-inline: auto; }
.site-footer__brand-column { max-width: 26rem; flex: 1 1 26rem; }
.footer-brand { display: inline-flex; max-width: 13rem; color: var(--footer-text); font: 500 clamp(2.1rem, 4vw, 3.8rem)/.92 var(--display-font); letter-spacing: var(--display-tracking); text-decoration: none; }
.footer-brand img { width: auto; max-height: 4rem; object-fit: contain; }
.footer-claim { max-width: 27rem; margin: 1.5rem 0 0; color: var(--footer-muted); white-space: pre-line; }
.footer-column { display: flex; min-width: 8rem; flex: 0 1 13rem; flex-direction: column; align-items: flex-start; gap: .45rem; font-size: .82rem; }
.footer-column a, .footer-legal a, .footer-legal button { color: var(--footer-muted); text-decoration: none; text-underline-offset: .25em; }
.footer-column a:hover, .footer-column a:focus-visible, .footer-legal a:hover, .footer-legal a:focus-visible, .footer-legal button:hover, .footer-legal button:focus-visible { color: var(--footer-text); text-decoration: underline; }
.footer-heading { margin: 0 0 .8rem; color: var(--footer-text); font-size: .65rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-contact address { margin: 0 0 .3rem; color: var(--footer-muted); font: inherit; }
.site-footer__bottom { display: flex; width: min(var(--content-width), 100%); align-items: center; justify-content: space-between; gap: 2rem; margin: clamp(3rem, 7vw, 6rem) auto 0; border-top: 1px solid var(--footer-line); padding-top: 1.25rem; }
.site-footer__bottom > p { margin: 0; color: var(--footer-muted); font-size: .7rem; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .7rem 1.4rem; font-size: .72rem; }
.footer-legal button { border: 0; padding: 0; background: transparent; cursor: pointer; font: inherit; }

@media (max-width: 68rem) {
  .nav-toggle { position: relative; display: inline-flex; margin-left: auto; }
  .navigation-panel { position: fixed; inset: var(--header-height) 0 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 2.5rem; overflow-y: auto; padding: 3rem var(--edge); background: var(--surface); opacity: 0; pointer-events: none; transform: translateY(-1rem); transition: opacity .2s ease, transform .2s ease; }
  .navigation-open .navigation-panel { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-navigation { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .main-navigation a { font: 500 clamp(2rem, 7vw, 4rem)/1.1 var(--display-font); letter-spacing: var(--display-tracking-compact); text-transform: none; }
  .language-switcher, .location-switcher { width: min(18rem, 100%); border-left: 0; padding-left: 0; }
  .hours-contact { grid-template-columns: 1fr; }
  .story-section { grid-template-columns: 5rem minmax(0, 1fr); }
  .story-section__media-rail { position: static; grid-column: 2; height: auto; margin-top: 3rem; margin-left: 0; }
  .story-section__media { height: clamp(28rem, 68vw, 42rem); }
  .story-section__media--count-4 { height: clamp(34rem, 80vw, 48rem); }
  .site-footer__main { flex-wrap: wrap; }
  .site-footer__brand-column { min-width: 100%; }
}

@media (max-width: 45rem) {
  :root { --header-height: 4.5rem; }
  .site-logo { max-width: 9rem; }
  .site-logo img { max-height: 2.2rem; }
  .home-hero { min-height: calc(85svh - var(--header-height)); }
  .story-section, .editorial-section { grid-template-columns: 1fr; }
  .section-label { display: none; }
  .story-section__media-rail { grid-column: auto; }
  .story-section__media { height: clamp(24rem, 115vw, 34rem); }
  .story-section__media--count-4 { height: clamp(29rem, 135vw, 40rem); }
  .schedule-columns, .menu-category, .contact-grid { grid-template-columns: 1fr; }
  .menu-category { gap: 2.5rem; }
  .contact-grid { gap: 3rem; }
  .contact-grid > * { min-height: 0; }
  .location-selection-grid { grid-template-columns: 1fr; }
  .site-footer__main { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__brand-column { grid-column: 1 / -1; }
  .footer-column { min-width: 0; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: .8rem; }
  .footer-legal { justify-content: flex-start; }
  .site-status::before, .site-status__mark { inset: 24% auto auto 82%; }
  .site-status__brand { margin-bottom: clamp(2rem, 6vh, 3.5rem); }
  .site-status__footer { align-items: flex-start; flex-direction: column; }
  .site-status__footer nav { justify-content: flex-start; }
}

@media (max-height: 42rem) {
  .site-status { padding-block: 1.1rem; }
  .site-status__brand { max-width: 9rem; margin-bottom: 1.25rem; }
  .site-status__brand img { max-height: 2.75rem; }
  .site-status__eyebrow { margin-bottom: .55rem; }
  .site-status h1 { font-size: clamp(2.2rem, 8vh, 4rem); }
  .site-status__text { margin-top: .8rem; font-size: .82rem; }
  .site-status__footer { margin-top: 1rem; padding-top: .65rem; }
}

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