:root {
  color-scheme: dark;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --bg: #070707;
  --surface: #101010;
  --text: #f3f3f3;
  --muted: #bababa;
  --red: #b80d1f;
  --red-bright: #e1182f;
  --white: #ffffff;
  --border: #2a2a2a;
  --card: #0f0f0f;
  --input-bg: #090909;
  --nav-toggle-bg: #111;
  --header-bg: rgba(7, 7, 7, 0.88);
  --gallery-bg: #0a0a0a;
  --chip-bg: #0c0c0c;
  --press-card-bg: #0c0c0c;
  --press-text: rgba(255, 255, 255, 0.92);
  --menu-row-border: rgba(255, 255, 255, 0.06);
  --table-row-border: rgba(255, 255, 255, 0.06);
  --contact-row-border: rgba(255, 255, 255, 0.08);
  --hero-bg: #050505;
  --section-alt-bg: linear-gradient(180deg, #080808 0%, #060606 100%);
  --tab-active-fg: #ffffff;
  --nav-link-hover: #ffffff;
  --hero-text: #fafafa;
  --hero-muted: rgba(255, 255, 255, 0.78);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f3ee;
  --surface: #ffffff;
  --text: #1c1b19;
  --muted: #5e5a53;
  --border: #e0d9ce;
  --card: #ffffff;
  --input-bg: #fffcf7;
  --nav-toggle-bg: #ebe6df;
  --header-bg: rgba(255, 255, 255, 0.9);
  --gallery-bg: #ebe6df;
  --chip-bg: #f3efe8;
  --press-card-bg: #faf8f5;
  --press-text: #2c2926;
  --menu-row-border: rgba(0, 0, 0, 0.08);
  --table-row-border: rgba(0, 0, 0, 0.08);
  --contact-row-border: rgba(0, 0, 0, 0.08);
  --hero-bg: #121212;
  --section-alt-bg: linear-gradient(180deg, #faf8f5 0%, #f3efe8 100%);
  --tab-active-fg: #1c1b19;
  --nav-link-hover: #1c1b19;
}

html {
  scroll-behavior: smooth;
}

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

  .hero-slide {
    transition: none;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 0;
  font-feature-settings: "kern" 1, "liga" 1, "lnum" 1;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--nav-toggle-bg);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.theme-toggle:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
}

.theme-icon {
  width: 20px;
  height: 20px;
  grid-area: 1 / 1;
}

html[data-theme="dark"] .theme-icon-moon {
  display: none;
}

html[data-theme="light"] .theme-icon-sun {
  display: none;
}

.nav-toggle {
  display: none;
  width: 2.45rem;
  height: 2.45rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--nav-toggle-bg);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  height: 2px;
  background: var(--text);
  top: 50%;
  margin-top: -1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle::before {
  box-shadow: 0 -7px 0 var(--text), 0 7px 0 var(--text);
}

.nav-toggle::after {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  box-shadow: none;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  opacity: 1;
  transform: rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a {
  color: var(--muted);
  padding: 0.45rem 0;
  font-size: 0.95rem;
}

.nav-mobile a:hover {
  color: var(--white);
}

.nav-mobile.is-open {
  display: flex;
}

.hide-mobile {
  display: inline-flex;
}

@media (max-width: 900px) {
  .hide-mobile {
    display: none;
  }

  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.brand-logo {
  display: block;
  width: clamp(2.05rem, 5vw, 2.6rem);
  height: auto;
  object-fit: contain;
  filter:
    brightness(0) saturate(100%)
    invert(16%) sepia(84%) saturate(4862%) hue-rotate(344deg) brightness(91%) contrast(101%)
    drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35)) !important;
}

html[data-theme="light"] .brand-logo {
  filter:
    brightness(0) saturate(100%)
    invert(16%) sepia(84%) saturate(4862%) hue-rotate(344deg) brightness(91%) contrast(101%)
    drop-shadow(0 1px 1px rgba(255, 255, 255, 0.35)) !important;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a:not(.btn) {
  color: var(--muted);
}

.nav a:not(.btn):hover {
  color: var(--nav-link-hover);
}

.open-now-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.6rem;
  padding: 0.38rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  background: transparent;
  color: var(--muted);
}

.open-now-chip.is-open {
  color: #9be8bf;
  border-color: rgba(92, 212, 151, 0.7);
  background: rgba(40, 116, 82, 0.22);
}

.open-now-chip.is-closed {
  color: #f0b7b7;
  border-color: rgba(225, 24, 47, 0.55);
  background: rgba(120, 22, 35, 0.2);
}

html[data-theme="light"] .open-now-chip {
  color: #3e3832;
  border-color: rgba(0, 0, 0, 0.18);
  background: #fff;
}

html[data-theme="light"] .open-now-chip.is-open {
  color: #0f7f56;
  border-color: rgba(15, 127, 86, 0.55);
  background: rgba(15, 127, 86, 0.1);
}

html[data-theme="light"] .open-now-chip.is-closed {
  color: #a11b2c;
  border-color: rgba(161, 27, 44, 0.55);
  background: rgba(161, 27, 44, 0.1);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: var(--hero-bg);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--hero-bg);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
  opacity: 0;
  transition: opacity 1.35s ease-in-out;
  will-change: opacity;
  z-index: 0;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 22%, rgba(225, 24, 47, 0.22), transparent 38%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 85%),
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.02) 0 1px,
      transparent 1px 10px
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.hero-content h1 {
  color: var(--hero-text);
}

.hero .hero-subtext {
  color: var(--hero-muted);
}

.hero-logo {
  display: block;
  width: clamp(9.5rem, 22vw, 14rem);
  height: auto;
  margin: 0 0 1.05rem;
  filter: drop-shadow(0 8px 26px rgba(0, 0, 0, 0.42)) !important;
}

.hero .link-arrow {
  color: var(--hero-muted);
}

.hero .link-arrow:hover {
  color: var(--hero-text);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--hero-text);
}

.hero .btn-outline:hover {
  border-color: var(--red-bright);
  background: rgba(225, 24, 47, 0.18);
  color: var(--hero-text);
}

.eyebrow {
  font-family: var(--font-body);
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.75rem);
  margin-bottom: 0.5rem;
  line-height: 1.08;
  max-width: 14ch;
  font-weight: 600;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  margin-bottom: 0.8rem;
}

.hero-subtext {
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-body);
  background: var(--red);
  color: var(--white);
  border: 1px solid transparent;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: 180ms ease;
  display: inline-block;
}

.btn:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

html[data-theme="light"] .btn-outline {
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--text);
}

html[data-theme="light"] .hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--hero-text);
}

.btn-outline:hover {
  border-color: var(--red-bright);
  background: rgba(225, 24, 47, 0.12);
}

html[data-theme="light"] .btn-outline:hover {
  background: rgba(225, 24, 47, 0.08);
}

html[data-theme="light"] .hero .btn-outline:hover {
  background: rgba(225, 24, 47, 0.18);
  color: var(--hero-text);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-small {
  padding: 0.5rem 0.95rem;
  font-size: 0.86rem;
}

.hero-brand {
  display: inline-block;
  font-style: italic;
  font-weight: 600;
  border-bottom: 2px solid var(--red-bright);
  padding-bottom: 0.05em;
}

.section-lede {
  color: var(--muted);
  margin-top: 0.35rem;
}

.section.hotel-intro,
.section.menu-intro {
  padding-top: 1.2rem;
  padding-bottom: 1rem;
}

.hotel-intro__content,
.menu-intro__content {
  max-width: none;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: clamp(1.4rem, 3vw, 3rem);
  row-gap: 0.55rem;
  align-items: start;
  width: calc(100vw - 2rem);
  margin-left: calc(50% - 50vw + 1rem);
  margin-right: calc(50% - 50vw + 1rem);
}

.hotel-intro__title,
.menu-intro__title {
  margin: 0.15rem 0 0;
  font-family: var(--font-body);
  font-style: normal;
  font-size: clamp(1.35rem, 2.15vw, 1.95rem);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #b89448;
  grid-column: 1;
  grid-row: 1 / span 2;
  text-align: left;
  white-space: nowrap;
  overflow: visible;
  display: inline-block;
  overflow: hidden;
  max-width: 0;
  transform: translateX(24px);
  border-right: 4px solid currentColor;
  animation:
    hotel-title-typewriter 5.6s steps(34, end) 0.2s infinite,
    hotel-title-caret 0.95s step-end infinite;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.15),
    0 8px 22px rgba(0, 0, 0, 0.22);
}

.hotel-intro__title::after,
.menu-intro__title::after {
  content: "...";
  margin-left: 0.18em;
  letter-spacing: 0.04em;
}

.hotel-intro__lead,
.menu-intro__lead,
.hotel-intro__details p,
.menu-intro__details p {
  margin: 0;
  color: #4f4a43;
  font-size: clamp(0.96rem, 1.05vw, 1.03rem);
  line-height: 1.68;
  width: min(44rem, 100%);
  grid-column: 2;
  text-align: left;
  justify-self: end;
}

.hotel-intro__details,
.menu-intro__details {
  margin-top: 0.1rem;
  grid-column: 2;
  width: min(44rem, 100%);
  justify-self: end;
}

.hotel-intro__details summary,
.menu-intro__details summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #2f2f2f;
  font-size: 0.9rem;
  font-weight: 500;
}

.hotel-intro__details summary::-webkit-details-marker,
.menu-intro__details summary::-webkit-details-marker {
  display: none;
}

.hotel-intro__details summary::after,
.menu-intro__details summary::after {
  content: "›";
  transform: translateY(-0.5px);
}

.hotel-intro__details[open] summary::after,
.menu-intro__details[open] summary::after {
  transform: rotate(90deg) translateX(1px);
}

.hotel-intro__details p,
.menu-intro__details p {
  margin-top: 0.6rem;
}

html[data-theme="dark"] .hotel-intro__title,
html[data-theme="dark"] .menu-intro__title {
  color: #c7a057;
}

html[data-theme="dark"] .hotel-intro__lead,
html[data-theme="dark"] .menu-intro__lead,
html[data-theme="dark"] .hotel-intro__details p,
html[data-theme="dark"] .menu-intro__details p {
  color: #c6c0b8;
}

html[data-theme="dark"] .hotel-intro__details summary,
html[data-theme="dark"] .menu-intro__details summary {
  color: #f0efec;
}

@media (max-width: 900px) {
  .hotel-intro__content,
  .menu-intro__content {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
    margin-left: 0;
  }

  .hotel-intro__title,
  .menu-intro__title,
  .hotel-intro__lead,
  .menu-intro__lead,
  .hotel-intro__details,
  .menu-intro__details {
    grid-column: 1;
    grid-row: auto;
  }
}

@keyframes hotel-title-typewriter {
  from {
    max-width: 0;
  }
  to {
    max-width: 34ch;
  }
}

@keyframes hotel-title-caret {
  0%,
  49% {
    border-right-color: currentColor;
  }
  50%,
  100% {
    border-right-color: transparent;
  }
}

@keyframes hotel-title-quote-loop {
  0% {
    transform: translate3d(-34px, 6px, 0) scale(0.985);
    opacity: 0;
  }
  14% {
    transform: translate3d(-22px, 0, 0) scale(1);
    opacity: 1;
  }
  74% {
    transform: translate3d(-10px, 0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate3d(-72px, -6px, 0) scale(0.995);
    opacity: 0;
  }
}

.section-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-stack > .contact-chips {
  margin-top: 0;
}

.section-stack > .hours-table--full {
  margin-top: 0;
}

.section-stack > .tabs {
  margin-top: 0;
}

.section-stack > .press-note {
  margin-top: 0;
}

.experience-visual {
  margin: 0 0 1.5rem;
}

.experience-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.experience-visual figcaption {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

#about h2.about-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  line-height: 1.16;
  letter-spacing: 0.045em;
  font-feature-settings: "kern" 1, "liga" 1, "onum" 0;
  margin-bottom: 1.05rem;
  color: var(--text);
  text-wrap: balance;
}

#about .section-stack > .about-visual--section {
  margin: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

#about .about-visual--section .glide {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

#about .about-visual--section .glide__track {
  width: 100%;
  overflow: hidden;
}

#about .about-visual--section .glide__slides {
  --about-gallery-gap: clamp(0.35rem, 0.9vw, 0.8rem);
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--about-gallery-gap);
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

#about .about-visual--section .glide__slide {
  display: block;
  flex: 0 0 calc((100% - (var(--about-gallery-gap) * 2)) / 3);
  min-width: 0;
  position: relative;
  overflow: hidden;
}

#about .about-visual--section .glide__slide img {
  max-height: min(52vh, 420px);
}

#about .about-visual--section .glide__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0) 46%);
}

#about .about-glide__caption {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.65rem;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.about-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2.2vw, 1.8rem);
  background: rgba(0, 0, 0, 0.82);
}

.about-lightbox.is-open {
  display: flex;
}

.about-lightbox__close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.65);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.about-lightbox__figure {
  position: relative;
  margin: 0;
  max-width: min(1100px, 96vw);
  max-height: 92vh;
}

.about-lightbox__img {
  display: block;
  width: min(1100px, 96vw);
  max-height: 92vh;
  object-fit: contain;
}

.about-lightbox__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.15) 88%);
}

.about-lightbox__title {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 1rem;
  font-weight: 600;
}

.about-lightbox__desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
  #about .about-visual--section .glide__slide {
    flex-basis: calc((100% - var(--about-gallery-gap)) / 2);
  }
}

@media (max-width: 640px) {
  #about .about-visual--section .glide__slide {
    flex-basis: 100%;
  }
}

#about .about-visual--section img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 680px);
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  border: none;
}

#about .section-stack > .about-highlights-banner {
  margin: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

#about .about-highlights-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(48vh, 400px);
  min-height: 180px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 0;
  border: none;
}

@media (max-width: 600px) {
  #about .about-highlights-banner img {
    max-height: min(40vh, 280px);
    min-height: 160px;
  }
}

.spotlight-carousel {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  width: 100%;
}

#spotlight .section-stack > .spotlight-carousel.gallery-spotlight__shell {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  justify-self: start;
}

#spotlight > .container {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

#spotlight .section-stack {
  --spotlight-pane-h: min(68vh, 640px);
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(980px, 1.72fr);
  gap: clamp(1rem, 2.2vw, 1.8rem);
  align-items: stretch;
  padding-left: 0;
  padding-right: clamp(0.8rem, 2vw, 1.6rem);
}

#spotlight .section-stack > .spotlight-menu-tabs {
  margin-top: 0;
  max-height: var(--spotlight-pane-h);
  overflow: auto;
  align-self: stretch;
  width: 100%;
  min-width: 0;
}

#spotlight .section-stack > .spotlight-menu-tabs .tab-panel {
  max-height: calc(var(--spotlight-pane-h) - 4.5rem);
  overflow: auto;
  overflow-x: auto;
}

#spotlight .spotlight-menu-tabs .menu-columns {
  min-width: 920px;
}

.gallery-spotlight__shell {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  height: var(--spotlight-pane-h);
  min-width: 0;
}

.gallery-spotlight__stage {
  --spotlight-caption-band: clamp(3.15rem, 8.5vw, 3.85rem);
  position: relative;
  width: 100%;
  height: 100%;
  isolation: isolate;
}

.gallery-spotlight__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: transparent;
}

.gallery-spotlight__track {
  display: block;
  overflow: hidden;
  width: min(58vw, 520px);
  margin: 0 auto 0 0;
  position: relative;
  height: 100%;
  border-radius: 0;
  outline: none;
  /* Outer frame: soft lift + depth; inner hairlines for a gallery-mat finish */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.2),
    0 12px 32px rgba(0, 0, 0, 0.28),
    0 40px 80px -20px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  /* Scrollbar hidden: navigation is swipe, dots, and hover/focus arrows */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html[data-theme="light"] .gallery-spotlight__track {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 0 0 1px rgba(0, 0, 0, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 10px 28px rgba(0, 0, 0, 0.07),
    0 32px 64px -18px rgba(0, 0, 0, 0.14);
  border-color: rgba(0, 0, 0, 0.08);
  background: #fff;
}

.gallery-spotlight__track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.gallery-spotlight__track:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 0 2px var(--bg),
    0 0 0 4px var(--red-bright),
    0 12px 32px rgba(0, 0, 0, 0.28),
    0 40px 80px -20px rgba(0, 0, 0, 0.55);
}

html[data-theme="light"] .gallery-spotlight__track:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 0 0 1px rgba(0, 0, 0, 0.04),
    0 0 0 2px var(--bg),
    0 0 0 4px var(--red-bright),
    0 10px 28px rgba(0, 0, 0, 0.07),
    0 32px 64px -18px rgba(0, 0, 0, 0.14);
}

.gallery-spotlight__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-spotlight__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.gallery-spotlight__track:not(:has(.gallery-spotlight__slide.is-active)) .gallery-spotlight__slide:first-child {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.gallery-spotlight__slide > img,
.gallery-spotlight__slide > video {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  transform-origin: left center;
  display: block;
  background: transparent;
  border-radius: 0;
  transform: scale(1.01);
  transition: transform 1.9s cubic-bezier(0.22, 1, 0.36, 1);
}

#spotlight.section-alt {
  background: transparent;
}

html[data-theme="light"] #spotlight.section-alt {
  background: #fff;
}

.gallery-spotlight__slide.is-active > img {
  transform: scale(1);
}

.gallery-spotlight__slide.is-active > video {
  transform: scale(1);
}

.gallery-spotlight__slide.is-exiting {
  opacity: 0;
  visibility: visible;
  z-index: 1;
}

.gallery-spotlight__slide.is-exiting > img,
.gallery-spotlight__slide.is-exiting > video {
  transform: scale(1.08);
}

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

  .gallery-spotlight__slide > img,
  .gallery-spotlight__slide > video {
    transition: none;
  }

  .gallery-spotlight__slide.is-active > img,
  .gallery-spotlight__slide.is-active > video {
    transform: none;
  }

  .gallery-spotlight__arrow {
    transition-duration: 0.01ms;
  }

  .gallery-spotlight__dot {
    transition: none;
  }
}

.gallery-spotlight__caption {
  display: none;
}

.gallery-spotlight__caption:empty {
  display: none;
}

html[data-theme="light"] .gallery-spotlight__caption {
  background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
  border-top-color: rgba(0, 0, 0, 0.06);
}

.gallery-spotlight__arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.6rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: none;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.95);
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 12px rgba(0, 0, 0, 0.35));
  transition:
    opacity 0.28s ease,
    color 0.2s ease,
    transform 0.2s ease,
    filter 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-spotlight__stage:hover .gallery-spotlight__arrow {
    opacity: 1;
    pointer-events: auto;
  }
}

.gallery-spotlight__stage:focus-within .gallery-spotlight__arrow {
  opacity: 1;
  pointer-events: auto;
}

html[data-theme="light"] .gallery-spotlight__arrow {
  color: rgba(255, 252, 248, 0.98);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.gallery-spotlight__arrow:hover {
  color: var(--red-bright);
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.75));
  transform: translateY(-50%) scale(1.06);
}

html[data-theme="light"] .gallery-spotlight__arrow:hover {
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(225, 24, 47, 0.65)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.gallery-spotlight__arrow:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 4px;
  border-radius: 2px;
}

.gallery-spotlight__arrow--prev {
  left: clamp(0.35rem, 1.5vw, 0.85rem);
}

.gallery-spotlight__arrow--next {
  right: clamp(0.35rem, 1.5vw, 0.85rem);
}

.gallery-spotlight__arrow-icon {
  display: flex;
  line-height: 0;
}

.gallery-spotlight__arrow-icon svg {
  display: block;
}

.gallery-spotlight__chrome {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--spotlight-caption-band);
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.75rem;
  pointer-events: none;
}

.gallery-spotlight__dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  margin: 0;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: rgba(6, 6, 6, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 2px 14px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  pointer-events: auto;
}

html[data-theme="light"] .gallery-spotlight__dots {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(0, 0, 0, 0.07);
  box-shadow:
    0 2px 18px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.gallery-spotlight__dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

html[data-theme="light"] .gallery-spotlight__dot {
  background: rgba(0, 0, 0, 0.22);
}

.gallery-spotlight__dot:hover,
.gallery-spotlight__dot:focus-visible {
  background: rgba(255, 255, 255, 0.82);
  transform: scale(1.22);
}

html[data-theme="light"] .gallery-spotlight__dot:hover,
html[data-theme="light"] .gallery-spotlight__dot:focus-visible {
  background: rgba(0, 0, 0, 0.48);
}

.gallery-spotlight__dot.is-active {
  background: #fff;
  box-shadow:
    0 0 0 2px var(--red-bright),
    0 0 18px rgba(225, 24, 47, 0.45);
  transform: scale(1.12);
}

html[data-theme="light"] .gallery-spotlight__dot.is-active {
  background: var(--red);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.9),
    0 0 14px rgba(184, 13, 31, 0.38);
}

.gallery-spotlight__dot:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
}

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

@media (max-width: 640px) {
  .gallery-spotlight__track {
    width: min(86vw, 430px);
    margin: 0 auto 0 0;
    height: 100%;
  }

  .gallery-spotlight__arrow {
    padding: 0.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    top: 38%;
  }

  .gallery-spotlight__slide > img,
  .gallery-spotlight__slide > video {
    height: 100%;
  }
}

@media (max-width: 1100px) {
  #spotlight .section-stack {
    grid-template-columns: 1fr;
  }

  .gallery-spotlight__shell {
    height: auto;
  }

  .gallery-spotlight__stage {
    height: auto;
  }

  .gallery-spotlight__track {
    height: min(76vh, 760px);
  }

  #spotlight .section-stack > .spotlight-menu-tabs {
    max-height: none;
    overflow: visible;
  }

  #spotlight .section-stack > .spotlight-menu-tabs .tab-panel {
    max-height: none;
    overflow: visible;
  }
}

#spotlight {
  position: relative;
  z-index: 1;
}

.section.menu-intro {
  position: relative;
  z-index: 2;
  margin-top: clamp(1.2rem, 2.8vw, 2.2rem);
}

#menu {
  position: relative;
  z-index: 1;
}

.section {
  padding: 5.2rem 0;
}

.section-dark {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#menu.section-dark {
  background: transparent;
}

.section-alt {
  background: var(--section-alt-bg);
  border-top: 1px solid var(--border);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#about .about-highlights {
  width: 100%;
  margin: 0;
  padding: 1.5rem 0 0.25rem;
  border-top: 1px solid var(--border);
  width: calc(100vw - 2rem);
  margin-left: calc(50% - 50vw + 1rem);
  margin-right: auto;
  position: relative;
  z-index: 6;
  background: var(--bg);
}

.about-highlights__title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 0.2rem;
}

.about-highlights__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(0.8rem, 1.6vw, 1.4rem);
  row-gap: 0.2rem;
}

.about-highlights__list li {
  margin: 0;
  padding: 0.7rem 0 0.7rem 0.9rem;
  border-bottom: 1px solid var(--table-row-border);
  font-size: clamp(0.96rem, 1.05vw, 1.03rem);
  line-height: 1.68;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  position: relative;
  padding-left: 1.15rem;
}

.about-highlights__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.08rem;
  width: 2px;
  height: 0.85em;
  background: var(--red);
  border-radius: 1px;
  opacity: 0.9;
}

.about-highlights__list li:last-child {
  padding-bottom: 0.7rem;
}

.about-highlights__list li:nth-last-child(-n + 2) {
  border-bottom: none;
}

@media (max-width: 900px) {
  #about .about-highlights {
    width: 100%;
    margin-left: 0;
  }

  .about-highlights__list {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .about-highlights__list li:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--table-row-border);
  }

  .about-highlights__list li:last-child {
    border-bottom: none;
  }
}

.inline-link {
  color: var(--red-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: var(--text);
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.compact {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.tabs {
  margin-top: 1.75rem;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  border-bottom: none;
  margin-bottom: 1.35rem;
}

.tab-btn {
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.52rem 0.86rem 0.56rem;
  border: 1px solid color-mix(in srgb, var(--border) 72%, transparent 28%);
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: 180ms ease;
}

.tab-btn:hover {
  color: var(--tab-active-fg);
  border-color: rgba(225, 24, 47, 0.55);
  transform: none;
}

.tab-btn.is-active {
  color: var(--tab-active-fg);
  border-color: rgba(225, 24, 47, 0.55);
  background: rgba(225, 24, 47, 0.06);
  box-shadow: none;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  width: 100%;
}

.menu-col {
  min-width: 0;
  padding: 1.05rem 1.05rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--press-card-bg) 0%, color-mix(in srgb, var(--press-card-bg) 92%, black 8%) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.menu-heading {
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin: 0.75rem 0 0.32rem;
  letter-spacing: 0.01em;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.menu-heading:first-child {
  margin-top: 0;
}

.menu-heading::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red-bright) 0%, var(--red) 100%);
  box-shadow: 0 0 0 2px rgba(225, 24, 47, 0.16);
  flex-shrink: 0;
}

.menu-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(225, 24, 47, 0.24) 0%, transparent 100%);
  transform: translateY(1px);
}

.tab-panel[data-panel="food"] .menu-heading::before {
  background: linear-gradient(180deg, var(--red-bright) 0%, var(--red) 100%);
  box-shadow: 0 0 0 2px rgba(225, 24, 47, 0.16);
}

.tab-panel[data-panel="food"] .menu-heading::after {
  background: linear-gradient(90deg, rgba(225, 24, 47, 0.24) 0%, transparent 100%);
}

.tab-panel[data-panel="lunch"] .menu-heading::before {
  background: linear-gradient(180deg, #d4a34f 0%, #b98734 100%);
  box-shadow: 0 0 0 2px rgba(212, 163, 79, 0.2);
}

.tab-panel[data-panel="lunch"] .menu-heading::after {
  background: linear-gradient(90deg, rgba(212, 163, 79, 0.28) 0%, transparent 100%);
}

.tab-panel[data-panel="drinks"] .menu-heading::before {
  background: linear-gradient(180deg, #8e3aa8 0%, #5b2f8f 100%);
  box-shadow: 0 0 0 2px rgba(142, 58, 168, 0.2);
}

.tab-panel[data-panel="drinks"] .menu-heading::after {
  background: linear-gradient(90deg, rgba(142, 58, 168, 0.28) 0%, transparent 100%);
}

.menu-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--menu-row-border);
  font-size: 0.84rem;
}

.menu-list .dish {
  color: var(--text);
}

.menu-list .dish em {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-style: normal;
  margin-top: 0.1rem;
}

.menu-list .amt {
  color: var(--red-bright);
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.compact-menu .amt {
  font-size: 0.8rem;
}

.tab-panel {
  border: 1px solid color-mix(in srgb, var(--border) 78%, transparent 22%);
  border-radius: 0;
  padding: 1rem;
  background: var(--card);
  box-shadow: none;
}

#spotlight .spotlight-menu-tabs .tab-panel {
  background: var(--card) !important;
}

html[data-theme="light"] .tab-panel {
  background: #fff;
}

.spotlight-menu-tabs {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

#spotlight .spotlight-menu-tabs .menu-col {
  background: var(--card);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: none;
}

html[data-theme="light"] .spotlight-menu-tabs {
  background: #fff;
  border-radius: 0;
  padding: 0;
}

.press-section {
  position: relative;
}

#press .press-section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
  margin: 0 0 0.15rem;
  text-wrap: balance;
  color: var(--text);
  opacity: 0;
  transform: translate3d(0, 0.9rem, 0);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

#press .press-section__title-text {
  display: inline-block;
}

#press .press-section__title::after {
  content: "";
  display: block;
  width: min(4.5rem, 28vw);
  height: 2px;
  margin-top: 0.9rem;
  background: linear-gradient(90deg, var(--red-bright) 0%, rgba(225, 24, 47, 0.15) 100%);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

#press.press-section--visible .press-section__title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#press.press-section--visible .press-section__title::after {
  transform: scaleX(1);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.75rem;
  width: 100%;
}

.press-grid--single {
  display: block;
  position: relative;
  margin-top: 1.3rem;
}

.press-grid--single .press-card {
  display: none;
  opacity: 0;
  transform: none;
  animation: none;
}

.press-grid--single .press-card.is-active {
  display: block;
  opacity: 1;
  animation: press-single-fade 0.9s ease;
}

@keyframes press-single-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes press-card-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 1.1rem, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.press-card {
  position: relative;
  margin: 0;
  padding: 1.35rem 1.4rem 1.4rem 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  border-left: 2px solid rgba(225, 24, 47, 0.45);
  background: var(--press-card-bg);
  font-size: 1.04rem;
  line-height: 1.5;
  font-family: var(--font-display);
  color: var(--press-text);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  opacity: 0;
  transform: translate3d(0, 1.1rem, 0);
  transition:
    border-color 0.25s ease,
    box-shadow 0.3s ease;
}

.press-section--visible .press-card:nth-child(1) {
  animation: press-card-reveal 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.press-section--visible .press-card:nth-child(2) {
  animation: press-card-reveal 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.press-section--visible .press-card:nth-child(3) {
  animation: press-card-reveal 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.press-card:hover {
  border-color: rgba(225, 24, 47, 0.32);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.05) inset,
    0 18px 40px -12px rgba(0, 0, 0, 0.35);
}

html[data-theme="light"] .press-card:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 16px 36px -14px rgba(0, 0, 0, 0.12);
}

.press-card p {
  margin: 0;
}

.press-note {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 56ch;
  opacity: 0;
  transform: translate3d(0, 0.4rem, 0);
  transition:
    opacity 0.7s ease 0.4s,
    transform 0.7s ease 0.4s;
}

.press-section--visible .press-note {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  #press .press-section__title {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #press .press-section__title::after {
    transform: scaleX(1);
    transition: none;
  }

  .press-card {
    opacity: 1;
    transform: none;
    animation: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .press-note {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.chip {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--chip-bg);
  font-size: 0.85rem;
  color: var(--text);
}

.chip:hover {
  border-color: var(--red);
}

.chip-static {
  color: var(--muted);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table td {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--table-row-border);
}

.hours-table td:first-child {
  color: var(--muted);
  width: 42%;
}

.hours-table--full {
  width: 100%;
  margin-top: 0;
  table-layout: fixed;
}

.hours-table--full td:first-child {
  width: min(14rem, 28%);
}

.hours-table .sub {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}

.booking-hours {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.booking-hours__layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(0.9rem, 2vw, 1.35rem);
  align-items: stretch;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: clamp(0.8rem, 2vw, 1.6rem);
  padding-right: clamp(0.8rem, 2vw, 1.6rem);
}

.booking-hours__col {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: clamp(0.7rem, 1.2vw, 0.9rem);
  background: var(--card);
  min-height: 100%;
  box-shadow: none;
}

html[data-theme="light"] .booking-hours__col,
html[data-theme="light"] .tab-panel,
html[data-theme="light"] #spotlight .spotlight-menu-tabs .tab-panel,
html[data-theme="light"] #spotlight .spotlight-menu-tabs .menu-col {
  background: #fff !important;
}

.booking-hours__quote {
  grid-column: 1 / -1;
  margin: 0.25rem 0 0;
  padding: 0.1rem 0;
  width: 100%;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
  color: color-mix(in srgb, var(--red) 62%, var(--text) 38%);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: clamp(0.9rem, 1.08vw, 1.02rem);
  line-height: 1.38;
}

.booking-hours__quote-text {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid currentColor;
  padding-right: 0.18em;
  will-change: max-width;
}

.booking-hours__quote-text.is-typing {
  animation:
    critic-typewriter 3.9s steps(72, end) forwards,
    critic-caret 0.85s step-end infinite;
}

@keyframes critic-typewriter {
  from {
    max-width: 0;
  }
  to {
    max-width: 120ch;
  }
}

@keyframes critic-caret {
  0%,
  49% {
    border-right-color: currentColor;
  }
  50%,
  100% {
    border-right-color: transparent;
  }
}

.booking-hours__hours h2,
.booking-hours__booking h2 {
  margin-bottom: 0.55rem;
}

.booking-hours__booking > p {
  margin-top: 0;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.booking-hours__hours .hours-table td {
  padding: 0.22rem 0;
}

.booking-hours__hours .hours-table td:first-child {
  width: 36%;
}

.booking-hours__hours .map-embed {
  margin-top: auto;
}

.booking-hours__booking .map-embed,
.booking-hours__booking .map-embed iframe {
  width: 100%;
  max-width: 100%;
}

.booking-contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: start;
}

.map-note {
  margin: 0.55rem 0 0.35rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
  font-style: italic;
}

.map-note strong {
  color: #d4a34f;
  font-weight: 600;
}

.contact-section {
  align-items: start;
}

.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0.25rem 0 0.2rem;
}

.contact-social--vertical {
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.contact-social a {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--red);
  border-color: rgba(225, 24, 47, 0.65);
  background: transparent;
}

.contact-social a:hover {
  color: #fff;
  border-color: var(--red-bright);
  background: var(--red);
}

.hero-side-icons {
  position: absolute;
  right: clamp(0.15rem, 0.9vw, 0.65rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

@media (max-width: 900px) {
  .booking-contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-social--vertical {
    flex-direction: row;
    justify-content: flex-start;
  }

  .hero-side-icons {
    position: static;
    transform: none;
    margin-top: 0.85rem;
  }
}

.booking-hours__booking .reserve-form.card {
  width: 100%;
  max-width: none;
  padding: 1rem 1.05rem 1.05rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

html[data-theme="light"] .booking-hours__booking .reserve-form.card {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.booking-widget {
  margin-top: 0.35rem;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  background: #fff;
}

.booking-widget iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: 0;
}

.booking-launch.card {
  margin-top: 0.35rem;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.85rem 0.9rem;
}

.booking-launch__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.45rem;
}

.booking-launch .btn {
  padding: 0.6rem 1rem;
  font-size: 0.84rem;
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 2px;
}

.form-title {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.form-hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.vouchers-cta {
  margin-top: 0;
}

.cmp-billboard {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(110deg, rgba(184, 13, 31, 0.22) 0%, rgba(184, 13, 31, 0.06) 36%, rgba(0, 0, 0, 0.18) 100%),
    var(--card);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 52px rgba(0, 0, 0, 0.26);
}

#vouchers .container {
  width: min(1318px, 96%);
}

.cmp-billboard::before,
.cmp-billboard::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.cmp-billboard::before {
  inset: 6px;
  border: 2.8px solid #d4a34f;
  border-radius: 12px;
  opacity: 1;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.22) inset,
    0 0 18px rgba(212, 163, 79, 0.22);
}

.cmp-billboard::after {
  inset: 0;
  border-radius: 18px;
  background:
    linear-gradient(to right, #d4a34f 0 106px, transparent 106px calc(100% - 106px), #d4a34f calc(100% - 106px) 100%) top/100% 4px no-repeat,
    linear-gradient(to right, #d4a34f 0 106px, transparent 106px calc(100% - 106px), #d4a34f calc(100% - 106px) 100%) bottom/100% 4px no-repeat,
    linear-gradient(to bottom, #d4a34f 0 106px, transparent 106px calc(100% - 106px), #d4a34f calc(100% - 106px) 100%) left/4px 100% no-repeat,
    linear-gradient(to bottom, #d4a34f 0 106px, transparent 106px calc(100% - 106px), #d4a34f calc(100% - 106px) 100%) right/4px 100% no-repeat;
  opacity: 1;
}

.cmp-billboard > * {
  position: relative;
  z-index: 3;
}

.cmp-billboard__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
}

.cmp-billboard__content {
  position: relative;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  padding: clamp(0.9rem, 1.8vw, 1.2rem);
}

.cmp-billboard__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: color-mix(in srgb, var(--red-bright) 72%, #f7d29a 28%);
}

.cmp-billboard__title {
  margin: 0;
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 1.15;
}

.cmp-billboard__text {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

.cmp-billboard__cta {
  justify-self: start;
  margin-top: 0.5rem;
  padding: 0.78rem 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 208, 142, 0.55);
  background: linear-gradient(135deg, #c99336 0%, #e0b861 46%, #b9822e 100%);
  color: #170f05;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(90, 50, 5, 0.28);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.cmp-billboard__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(238, 199, 125, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(90, 50, 5, 0.3);
}

.cmp-billboard__cta:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(212, 163, 79, 0.35),
    0 0 0 6px rgba(6, 6, 6, 0.65),
    0 10px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(90, 50, 5, 0.28);
}

.cmp-billboard__content::before,
.cmp-billboard__content::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: clamp(2.2rem, 4.8vw, 3.5rem);
  height: clamp(2.2rem, 4.8vw, 3.5rem);
  border-color: color-mix(in srgb, var(--red-bright) 54%, #d8b06b 46%);
  border-style: solid;
  opacity: 0.9;
}

.cmp-billboard__content::before {
  top: 0;
  left: 0;
  border-width: 1.5px 0 0 1.5px;
}

.cmp-billboard__content::after {
  right: 0;
  bottom: 0;
  border-width: 0 1.5px 1.5px 0;
}

.cmp-billboard__meta {
  border: 1px solid color-mix(in srgb, var(--border) 68%, transparent 32%);
  border-radius: 14px;
  padding: clamp(0.9rem, 2vw, 1.15rem);
  background: color-mix(in srgb, var(--surface) 76%, transparent 24%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cmp-billboard__meta h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.vouchers-steps {
  margin: 0.5rem 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.vouchers-steps li {
  margin-bottom: 0.45rem;
}

.vouchers-how h3 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .cmp-billboard__inner {
    grid-template-columns: 1fr;
  }
}

.contact-direct {
  margin-top: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.contact-direct h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  font-family: var(--font-display);
}

.address-block {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

.map-embed {
  width: 550px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  max-width: 100%;
  background: var(--card);
}

.map-embed iframe {
  display: block;
  width: 550px;
  height: 307px;
  border: 0;
  max-width: 100%;
  background: var(--card);
}

html[data-theme="dark"] .map-embed iframe {
  /* Dark-map approximation for embedded Google Maps iframe */
  filter: grayscale(1) invert(0.92) hue-rotate(180deg) saturate(0.65) brightness(0.82) contrast(1.05);
}

html[data-theme="light"] .map-embed,
html[data-theme="light"] .map-embed iframe {
  background: #fff;
}

.contact-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-lines li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--contact-row-border);
  font-size: 0.92rem;
}

.contact-lines span {
  color: var(--muted);
}

.contact-lines a {
  color: var(--red-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-lines a:hover {
  color: var(--text);
}

.footer-fine,
.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 62ch;
  margin-top: 0.65rem;
}

.footer-fine a,
.footer-copy a {
  color: var(--red-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0.25rem 0 0.4rem;
}

.footer-social a {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #8ca8bf;
  border-color: rgba(140, 168, 191, 0.35);
  background: color-mix(in srgb, #2a3a48 68%, transparent 32%);
}

.footer-social a:hover {
  color: #fff;
  border-color: #9eb9cf;
  background: #5f7890;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
}

.accent-border {
  border-left: 3px solid var(--red);
}

.card ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
}

blockquote {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text);
}

.chef {
  color: var(--muted);
  margin-top: 0.6rem;
}

.reserve-form {
  display: grid;
  gap: 0.6rem;
}

.reserve-form label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.reserve-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.reserve-form input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--text);
  padding: 0.68rem 0.72rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.reserve-form select,
.reserve-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--text);
  padding: 0.68rem 0.72rem;
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

@media (max-width: 640px) {
  .reserve-form .form-row {
    grid-template-columns: 1fr;
  }
}

.reserve-form input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 24, 47, 0.2);
}

.reserve-form input:focus-visible {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 24, 47, 0.25);
}

.reserve-form select:focus,
.reserve-form textarea:focus,
.reserve-form select:focus-visible,
.reserve-form textarea:focus-visible {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 24, 47, 0.25);
}

.site-footer {
  padding: 1.5rem 0 2.3rem;
  color: var(--muted);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  font-size: 0.88rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.site-footer a {
  color: var(--red-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer a:hover {
  color: var(--text);
}

@media (max-width: 700px) {
  .menu-columns,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .booking-hours__layout {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 0.85rem;
    font-size: 0.92rem;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 1200px) and (min-width: 701px) {
  .menu-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

