:root {
  --bg: #fbf7f1;
  --bg-deep: #f1e4d1;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #fffdf8;
  --text: #2f241a;
  --muted: #6f6256;
  --gold: #c8a04a;
  --border: rgba(111, 98, 86, 0.12);
  --shadow: 0 12px 36px rgba(47, 36, 26, 0.06);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(251, 247, 241, 0.93), rgba(251, 247, 241, 0.96)),
    url("Background2.png") center top / cover fixed no-repeat,
    url("Background1.png") center top / cover fixed no-repeat,
    linear-gradient(180deg, var(--bg), #fcfbf8 44%, var(--bg-deep));
  color: var(--text);
  font-family: "Inter", "Segoe UI", "Helvetica Neue", system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

picture {
  display: block;
}

.topbar,
main,
.footer {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0.75rem;
  background: rgba(251, 247, 241, 0.96);
  border-bottom: 1px solid rgba(111, 98, 86, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark,
.footer-mark {
  width: 72px;
  height: 72px;
  flex: none;
}

.brand-mark img,
.footer-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.eyebrow,
.kicker,
.feature-label,
.menu-note span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--muted);
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a,
.menu-note a {
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.menu-note a:hover,
.menu-note a:focus-visible {
  color: var(--gold);
}

main {
  display: grid;
  gap: 0;
  padding: 0.75rem 0 2rem;
}

.home-scene,
.atmosphere-scene,
.menu-shell {
  transition:
    opacity 320ms linear,
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.home-scene {
  display: grid;
  gap: 1.5rem;
}

.atmosphere-scene {
  display: grid;
  gap: 1rem;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  padding: clamp(1.3rem, 3vw, 2.25rem);
  overflow: hidden;
}

.hero-copy {
  padding: clamp(0.2rem, 1vw, 0.6rem);
  display: grid;
  align-content: center;
}

.kicker {
  margin: 0 0 0.85rem;
}

h1,
h2,
h3,
.floating-title {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 13ch;
}

h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.lede {
  max-width: 58ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--text);
  color: #fffaf3;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #433326;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(111, 98, 86, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.metric {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(111, 98, 86, 0.1);
}

.metric-value {
  display: block;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.metric-label {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: start center;
  min-height: 520px;
}

.hero-logo {
  width: min(100%, 380px);
  max-height: 420px;
  height: auto;
  object-fit: contain;
}

.experience,
.menu-shell {
  padding: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
}

.section-heading h2 {
  margin-top: 0.3rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.35rem;
}

.feature-card p {
  color: var(--muted);
  margin: 0.8rem 0 0;
}

.menu-shell {
  padding: clamp(1.1rem, 2.5vw, 1.9rem);
}

.atmosphere-heading {
  align-items: end;
}

.atmosphere-summary {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
}

.slideshow {
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.72);
}

.slideshow-stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
}

.slideshow-viewport {
  position: relative;
  min-height: min(70vh, 700px);
  border-radius: calc(var(--radius-xl) - 6px);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 236, 223, 0.92));
  border: 1px solid rgba(111, 98, 86, 0.1);
}

.slideshow-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 900ms ease,
    transform 900ms ease;
  will-change: opacity, transform;
}

.slideshow-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-arrow {
  appearance: none;
  border: 1px solid rgba(111, 98, 86, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.slideshow-arrow:hover,
.slideshow-arrow:focus-visible {
  transform: translateY(-1px);
  border-color: var(--gold);
  color: var(--gold);
}

.slideshow-footer {
  display: flex;
  gap: 1rem;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
}

.slideshow-label {
  margin: 0 0 0.2rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.slideshow-copy {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
}

.slideshow-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.slideshow-dot {
  appearance: none;
  border: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(111, 98, 86, 0.22);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.slideshow-dot.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

.menu-pdf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: #fffaf3;
  border-bottom: 0;
}

.menu-pdf-button:hover,
.menu-pdf-button:focus-visible {
  color: #fffaf3;
  background: #433326;
}

.menu-heading {
  margin-bottom: 0.35rem;
}

.menu-heading h2 {
  max-width: 33ch;
  line-height: 0.96;
  text-wrap: balance;
}

.menu-controls {
  display: inline-flex;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(111, 98, 86, 0.1);
  gap: 0.25rem;
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--text);
}

.lang-btn.is-active {
  background: var(--text);
  color: #fff9f0;
}

.menu-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.95rem;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--muted);
}

.menu-note a {
  color: var(--text);
  border-bottom: 1px solid rgba(200, 160, 74, 0.35);
  padding-bottom: 0.1rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.menu-section {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(111, 98, 86, 0.1);
}

.menu-section h3 {
  margin-bottom: 0.95rem;
}

.menu-items {
  display: grid;
  gap: 0.85rem;
}

.menu-item {
  display: grid;
  gap: 0.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(111, 98, 86, 0.09);
}

.menu-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.menu-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.85rem;
}

.menu-item-title {
  font-weight: 800;
}

.menu-item-price {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.menu-item-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-section.is-full {
  grid-column: 1 / -1;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0 2.2rem;
  color: var(--muted);
}

.footer p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.footer div {
  text-align: right;
}

.hero,
.experience,
.menu-shell,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.anim {
  opacity: 1;
  transform: translateY(0);
}

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

  .home-scene,
  .menu-shell,
  .topbar,
  .button,
  .nav a,
  .menu-note a,
  .lang-btn {
    transition: none !important;
  }
}

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

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

  .section-heading,
  .menu-heading,
  .footer,
  .topbar {
    align-items: start;
    flex-direction: column;
  }

  .nav,
  .footer div {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .slideshow-stage {
    grid-template-columns: 1fr;
  }

  .slideshow-arrow {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .topbar,
  main,
  .footer {
    width: min(100vw - 1.1rem, 1180px);
  }

  main {
    padding-top: 0.7rem;
    gap: 1.1rem;
  }

  .hero,
  .menu-shell {
    padding: 1rem;
  }

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

  h1 {
    max-width: 9ch;
  }

  .menu-item-head {
    flex-direction: column;
  }

  .slideshow-viewport {
    min-height: 52vh;
  }
}

/* Scene-snap layout overrides */
:root {
  --header-h: 88px;
  --scene-h: calc(100vh - var(--header-h));
}

html {
  scroll-behavior: auto;
}

body {
  overflow: hidden;
}

.topbar {
  position: fixed;
  top: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100vw - 2rem));
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(47, 36, 26, 0.06);
}

.stage {
  position: fixed;
  inset: 0;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 0.6rem);
  width: 100%;
  margin: 0;
}

.scene-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.scene {
  position: absolute;
  inset: 0;
  width: min(1180px, calc(100vw - 2rem));
  height: var(--scene-h);
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 24px, 0) scale(0.985);
  will-change: transform, opacity;
}

.scene.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.scene-home {
  grid-template-rows: 1fr auto;
}

.scene-atmosphere,
.scene-menu {
  grid-template-rows: auto 1fr;
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.menu-shell {
  height: 100%;
  display: grid;
  gap: 0.9rem;
}

.menu-scroll {
  height: calc(var(--scene-h) - 9rem);
  overflow: auto;
  padding-right: 0.35rem;
}

.footer {
  display: none;
}

@media (max-width: 980px) {
  :root {
    --header-h: 128px;
  }

  .stage {
    padding-top: calc(var(--header-h) + 0.45rem);
  }

  .scene {
    width: min(100vw - 1rem, 1180px);
    height: calc(100vh - var(--header-h) - 0.45rem);
  }

  .topbar {
    align-items: start;
    flex-direction: column;
    padding: 0.9rem 1rem;
  }

  .hero,
  .experience-strip,
  .menu-grid {
    grid-template-columns: 1fr;
  }

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

  .slideshow-stage {
    grid-template-columns: 1fr;
  }

  .slideshow-arrow {
    justify-self: start;
  }

  .menu-scroll {
    height: calc(100vh - var(--header-h) - 12rem);
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 145px;
  }

  .nav {
    gap: 0.75rem;
    font-size: 0.9rem;
  }

  .brand-mark,
  .footer-mark {
    width: 50px;
    height: 50px;
  }

  .hero,
  .menu-shell,
  .slideshow {
    padding: 0.95rem;
  }

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

  .scene {
    width: min(100vw - 0.75rem, 1180px);
  }

  .menu-scroll {
    height: calc(100vh - var(--header-h) - 13rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene-track,
  .slideshow-slide,
  .slideshow-dot,
  .slideshow-arrow,
  .button,
  .nav a,
  .menu-note a,
  .lang-btn {
    transition: none !important;
  }
}

/* Final scene cleanup overrides */
:root {
  --header-h: 72px;
  --scene-h: calc(100vh - var(--header-h));
}

.topbar {
  position: fixed;
  top: 0.45rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100vw - 1rem));
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(47, 36, 26, 0.05);
}

.brand {
  gap: 0.6rem;
}

.brand-mark,
.footer-mark {
  width: 64px;
  height: 64px;
}

.subtle {
  font-size: 0.8rem;
}

.nav {
  gap: 0.65rem;
  font-size: 0.8rem;
}

.stage {
  padding-top: calc(var(--header-h) + 0.25rem);
}

.scene {
  width: min(1180px, calc(100vw - 1rem));
  height: var(--scene-h);
}

.hero {
  padding: 0.9rem 1.1rem;
  gap: 1.4rem;
}

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

h1 {
  font-size: clamp(2.25rem, 4.3vw, 3.7rem);
  line-height: 1.05;
  max-width: 14ch;
}

.lede {
  max-width: 52ch;
  font-size: 0.98rem;
}

.hero-actions {
  margin-top: 1rem;
}

.hero-metrics {
  margin-top: 1rem;
}

.experience-strip {
  gap: 0.8rem;
}

.slideshow-stage {
  grid-template-columns: 1fr;
}

.slideshow-arrow {
  display: none;
}

.slideshow-viewport {
  min-height: min(58vh, 560px);
}

.menu-note {
  gap: 0.3rem 0.7rem;
  margin-bottom: 0.3rem;
}

.menu-pdf-button {
  display: none;
}

.menu-shell {
  gap: 0.55rem;
}

.menu-scroll {
  height: calc(var(--scene-h) - 7.2rem);
}

.scene-home,
.scene-atmosphere,
.scene-menu {
  align-content: start;
  padding-top: 0.35rem;
}

@media (max-width: 980px) {
  :root {
    --header-h: 98px;
  }

  .topbar {
    width: min(100vw - 0.7rem, 1180px);
    padding: 0.55rem 0.7rem;
  }

  .scene {
    width: min(100vw - 0.7rem, 1180px);
  }

  .hero {
    padding: 0.8rem;
  }

  h1 {
    font-size: clamp(2rem, 5.4vw, 3.2rem);
  }

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

  .slideshow-viewport {
    min-height: min(52vh, 500px);
  }

  .menu-scroll {
    height: calc(100vh - var(--header-h) - 9.5rem);
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 90px;
  }

  .topbar {
    top: 0.35rem;
    padding: 0.3rem 0.45rem;
  }

  .brand-mark,
  .footer-mark {
    width: 40px;
    height: 40px;
  }

  .nav {
    gap: 0.3rem;
    font-size: 0.6rem;
    line-height: 1.1;
  }

  .nav a[href$=".pdf"] {
    display: none;
  }

  .hero {
    padding: 0.7rem;
  }

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

  .menu-scroll {
    height: calc(100vh - var(--header-h) - 10rem);
  }
}

/* Document-flow override: lets the page scroll fully again. */
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
  overscroll-behavior-y: none;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: none;
  background:
    linear-gradient(rgba(251, 247, 241, 0.92), rgba(251, 247, 241, 0.96)),
    url("Background2.png") center top / cover fixed no-repeat,
    url("Background1.png") center top / cover fixed no-repeat,
    linear-gradient(180deg, var(--bg), #fcfbf8 44%, var(--bg-deep));
}

body::before {
  background-image:
    linear-gradient(rgba(47, 36, 26, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 36, 26, 0.02) 1px, transparent 1px);
  opacity: 0.35;
}

.topbar {
  position: sticky;
  top: 0;
  left: auto;
  transform: none;
  width: min(1180px, calc(100vw - 1rem));
  margin-top: 0.4rem;
}

.stage {
  position: relative;
  inset: auto;
  overflow: visible;
  padding-top: 0.7rem;
}

.scene-track {
  position: static;
  height: auto;
}

.scene {
  position: relative;
  inset: auto;
  width: min(1180px, calc(100vw - 1rem));
  min-height: calc(100svh - 5.5rem);
  height: auto;
  overflow: visible;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
  margin: 0 auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scene-home,
.scene-atmosphere,
.scene-menu {
  align-content: start;
  padding-top: 0.35rem;
}

.experience-strip {
  padding-bottom: 0.5rem;
}

.menu-shell {
  height: auto;
  overflow: visible;
}

.menu-scroll {
  height: auto;
  max-height: none;
  overflow: visible;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100vw - 1rem));
  margin: 0 auto;
  padding: 0.4rem 0 1.4rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .topbar {
    position: sticky;
    top: 0;
    width: min(100vw - 0.7rem, 1180px);
  }

  .scene {
    width: min(100vw - 0.7rem, 1180px);
    min-height: calc(100svh - 6.25rem);
  }

  .footer {
    width: min(100vw - 0.7rem, 1180px);
  }
}

@media (max-width: 640px) {
  .scene {
    width: min(100vw - 0.65rem, 1180px);
    min-height: calc(100svh - 7rem);
  }

  .footer {
    width: min(100vw - 0.65rem, 1180px);
  }
}

/* Final fade-scene override: one section visible at a time. */
html {
  overflow: hidden;
  scroll-behavior: auto;
  overscroll-behavior: none;
}

body {
  overflow: hidden;
  overscroll-behavior: none;
}

.topbar {
  position: fixed !important;
  top: 0.45rem;
  left: 50%;
  transform: translateX(-50%) !important;
  width: min(1180px, calc(100vw - 1rem));
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(47, 36, 26, 0.05);
  z-index: 30;
}

.stage {
  position: fixed !important;
  inset: 0 !important;
  overflow: hidden !important;
  width: 100% !important;
  margin: 0 !important;
  padding-top: calc(var(--header-h) + 0.25rem) !important;
}

.scene-track {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}

.scene {
  position: absolute !important;
  inset: 0 !important;
  width: min(1180px, calc(100vw - 1rem)) !important;
  height: var(--scene-h) !important;
  margin: 0 auto !important;
  display: grid !important;
  align-content: start !important;
  gap: 1rem !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate3d(0, 18px, 0) scale(0.99) !important;
  transition:
    opacity 320ms ease,
    transform 320ms ease;
  will-change: opacity, transform;
  overflow: hidden !important;
}

.scene.is-active {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

.scene.is-exiting {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate3d(0, -12px, 0) scale(0.985) !important;
}

.scene-home {
  grid-template-rows: 1fr auto;
}

.scene-atmosphere,
.scene-menu {
  grid-template-rows: auto 1fr;
}

.experience-strip {
  padding-bottom: 0.5rem;
}

.menu-shell {
  height: 100% !important;
  display: grid !important;
  grid-template-rows: auto auto minmax(0, 1fr) !important;
  gap: 0.45rem !important;
  overflow: hidden !important;
}

.menu-scroll {
  height: auto !important;
  min-height: 0 !important;
  overflow: auto !important;
  padding-right: 0.35rem !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.menu-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.15rem;
}

.menu-review-button {
  min-width: 10rem;
}

.mobile-scenes {
  display: none !important;
}

@media (max-width: 980px) {
  :root {
    --header-h: 98px;
  }

  .topbar {
    width: min(100vw - 0.7rem, 1180px);
    padding: 0.55rem 0.7rem;
  }

  .scene {
    width: min(100vw - 0.7rem, 1180px);
    height: calc(100svh - var(--header-h) - 0.45rem);
  }

  .hero {
    padding: 0.8rem;
  }

  h1 {
    font-size: clamp(2rem, 5.4vw, 3.2rem);
  }

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

  .slideshow-viewport {
    min-height: min(52vh, 500px);
  }

  .menu-scroll {
    height: auto;
  }

  .menu-footer {
    justify-content: stretch;
  }

  .menu-review-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 430px) {
  :root {
    --header-h: 58px;
  }

  .topbar {
    top: 0.25rem;
    width: calc(100vw - 0.8rem);
    padding: 0.08rem 0.28rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.18rem;
  }

  .brand {
    gap: 0.18rem;
    min-width: 0;
    flex: 0 1 auto;
  }

  .brand-mark,
  .footer-mark {
    width: 48px;
    height: 48px;
    flex: none;
  }

  .brand-copy .eyebrow {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    line-height: 1;
  }

  .nav {
    display: none;
  }

  .nav-pdf {
    display: none;
  }

  .mobile-scenes {
    display: none !important;
  }

  .mobile-scene-btn {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 0.52rem 0.35rem;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 0.74rem;
    font-weight: 700;
  }

  .mobile-scene-btn.is-active {
    background: var(--text);
    color: #fffaf3;
  }

  .scene {
    width: calc(100vw - 0.45rem) !important;
    height: calc(100svh - var(--header-h) - 0.35rem) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: calc(env(safe-area-inset-bottom) + 4rem) !important;
    scroll-padding-bottom: calc(env(safe-area-inset-bottom) + 4rem);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.62rem !important;
  }

  .hero-copy {
    padding: 0.05rem 0 0;
  }

  .hero-logo {
    display: none;
  }

  .kicker,
  .feature-label,
  .menu-note span {
    font-size: 0.6rem;
  }

  h1 {
    font-size: clamp(1.65rem, 8.6vw, 2.1rem);
    max-width: 14ch;
    line-height: 0.98;
  }

  .lede {
    margin-top: 0.8rem;
    font-size: 0.92rem;
    max-width: 34ch;
  }

  .hero-actions {
    flex-direction: row;
    align-items: stretch;
    gap: 0.45rem;
    margin-top: 0.9rem;
  }

  .button {
    width: auto;
    flex: 1;
    padding: 0.72rem 0.7rem;
    font-size: 0.88rem;
  }

  .experience-strip {
    gap: 0.55rem;
    padding-bottom: calc(env(safe-area-inset-bottom) + 4rem);
  }

  .feature-card {
    padding: 0.85rem;
  }

  .feature-card h3 {
    font-size: clamp(1.05rem, 5.2vw, 1.35rem);
    line-height: 1.02;
  }

  .section-heading {
    gap: 0.55rem;
  }

  .menu-heading {
    margin-bottom: 0.15rem;
  }

  .menu-heading h2 {
    max-width: 16ch;
    font-size: clamp(1.55rem, 8.1vw, 2.05rem);
    line-height: 0.96;
  }

  .menu-controls {
    width: 100%;
  }

  .menu-controls .lang-btn {
    flex: 1;
    padding: 0.58rem 0.75rem;
    font-size: 0.82rem;
  }

  .menu-note {
    font-size: 0.7rem;
    gap: 0.2rem 0.45rem;
    margin-bottom: 0.15rem;
  }

  .menu-shell {
    gap: 0.3rem !important;
  }

  .menu-scroll {
    padding-right: 0.2rem !important;
  }

  .menu-grid {
    gap: 0.55rem;
  }

  .menu-section {
    padding: 0.82rem;
  }

  .menu-section h3 {
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
  }

  .menu-item {
    gap: 0.2rem;
    padding-top: 0.65rem;
  }

  .menu-item-head {
    gap: 0.45rem;
  }

  .menu-item-title,
  .menu-item-price {
    font-size: 0.88rem;
  }

  .menu-item-desc {
    font-size: 0.84rem;
  }

  .slideshow {
    padding: 0.72rem;
    gap: 0.6rem;
  }

  .slideshow-viewport {
    min-height: 38svh;
  }

  .slideshow-footer {
    gap: 0.45rem;
  }

  .slideshow-copy {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 58px;
  }

  .topbar {
    top: 0.35rem;
    width: calc(100vw - 0.8rem);
    padding: 0.08rem 0.3rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.18rem;
  }

  .brand-mark,
  .footer-mark {
    width: 48px;
    height: 48px;
    flex: none;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 0.7rem;
  }

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

  .scene {
    width: min(100vw - 0.65rem, 1180px);
    height: calc(100svh - var(--header-h) - 0.35rem);
    padding-bottom: calc(env(safe-area-inset-bottom) + 4rem);
    scroll-padding-bottom: calc(env(safe-area-inset-bottom) + 4rem);
  }

  .menu-scroll {
    height: auto;
  }

  .menu-footer {
    justify-content: stretch;
  }

  .menu-review-button {
    width: 100%;
    min-width: 0;
  }

  .mobile-scenes {
    display: none !important;
  }

  .subtle[data-mobile-hide="true"] {
    display: none !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  html {
    overflow-y: auto;
    overscroll-behavior-y: auto;
  }

  body {
    overflow-y: auto;
    overscroll-behavior-y: auto;
  }

  .topbar {
    position: sticky !important;
    top: 0.35rem;
    left: auto;
    transform: none !important;
  }

  .stage {
    position: relative !important;
    inset: auto !important;
    overflow: visible !important;
    padding-top: 0.7rem !important;
  }

  .scene-track {
    position: static !important;
    height: auto !important;
  }

  .scene {
    position: relative !important;
    inset: auto !important;
    width: min(100vw - 0.65rem, 1180px) !important;
    min-height: calc(100svh - 7rem) !important;
    height: auto !important;
    margin: 0 auto !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    overflow: visible !important;
  }

  .scene-home,
  .scene-atmosphere,
  .scene-menu {
    align-content: start !important;
    padding-top: 0.35rem !important;
  }

  .menu-shell {
    height: auto !important;
    overflow: visible !important;
  }

  .menu-scroll {
    height: auto !important;
    overflow: visible !important;
    -webkit-overflow-scrolling: auto;
    overscroll-behavior: auto;
    touch-action: auto;
  }
}
