/*
  CK Downtown Martini Lounge production stylesheet.
  Structure: tokens, base elements, shared components, page sections,
  responsive rules, and reduced-motion overrides.
*/

:root {
  color-scheme: dark;
  --ink: #fbf4e8;
  --paper: #f4e4c8;
  --muted: #c7b59c;
  --dim: #86755f;
  --gold: #c6a05b;
  --gold-strong: #f2ca74;
  --oxblood: #76232f;
  --wine: #3a0f14;
  --blue: #1d5d7e;
  --facebook-blue: #1877f2;
  --facebook-blue-hover: #3b8df5;
  --teal: #2c7b75;
  --night: #050303;
  --charcoal: #100c0a;
  --surface: rgba(20, 13, 11, 0.82);
  --surface-strong: #17100e;
  --surface-soft: rgba(251, 244, 232, 0.06);
  --line: rgba(251, 244, 232, 0.14);
  --line-strong: rgba(242, 202, 116, 0.34);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48), 0 8px 28px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.34);
  --shadow-gold: 0 18px 48px rgba(198, 160, 91, 0.18);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-press: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-xs: 3px;
  --radius-sm: 5px;
  --radius-md: 7px;
  --max: 1200px;
  --header-height: var(--header-live-height, 96px);
  --header-shell-height: var(--header-shell-live-height, 76px);
  --header-logo-height: var(--header-logo-live-height, 68px);
  --header-pad-top: var(--header-pad-live-top, 12px);
  --header-link-height: var(--header-link-live-height, 44px);
  --parallax-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  scrollbar-color: var(--gold) #090504;
}

body {
  background:
    linear-gradient(180deg, rgba(118, 35, 47, 0.16), transparent 18rem),
    linear-gradient(120deg, rgba(29, 93, 126, 0.18), transparent 34rem),
    linear-gradient(180deg, #050303 0%, #0b0605 38%, #130b09 72%, #080403 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  background-image:
    linear-gradient(rgba(251, 244, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 244, 232, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  opacity: 0.65;
  pointer-events: none;
  position: fixed;
  z-index: -3;
}

body::after {
  background:
    linear-gradient(115deg, transparent 0%, transparent 34%, rgba(242, 202, 116, 0.035) 49%, transparent 64%, transparent 100%),
    linear-gradient(180deg, rgba(251, 244, 232, 0.018), transparent 32%, rgba(29, 93, 126, 0.025) 72%, transparent);
  content: "";
  inset: -10% -18%;
  opacity: 0.72;
  pointer-events: none;
  position: fixed;
  transform: translate3d(var(--ambient-x-soft, 0px), calc(var(--ambient-y-soft, 0px) + var(--page-drift, 0px)), 0);
  transition: transform 900ms var(--ease-soft), opacity 600ms var(--ease-soft);
  z-index: -1;
}

.site-ambient {
  background:
    linear-gradient(92deg, rgba(198, 160, 91, 0.12), transparent 28%, rgba(29, 93, 126, 0.14) 56%, transparent),
    linear-gradient(180deg, transparent, rgba(118, 35, 47, 0.1) 50%, transparent);
  filter: blur(44px);
  inset: 0;
  opacity: 0.82;
  pointer-events: none;
  position: fixed;
  transform: translate3d(var(--ambient-x, 0px), calc(var(--ambient-y, 0px) + var(--page-drift, 0px)), 0);
  transition: transform 700ms var(--ease-soft);
  z-index: -2;
}

html.is-zoomed body::before,
html.is-zoomed body::after,
html.is-zoomed .site-ambient {
  opacity: 0;
  transform: none !important;
  transition: none !important;
}

html.is-zoomed [data-parallax],
html.is-zoomed .photo-frame,
html.is-zoomed .private-room-gallery figure,
html.is-zoomed .music-visual,
html.is-zoomed .program-strip li,
html.is-zoomed .image-ribbon figure,
html.is-zoomed .menu-feature-photo,
html.is-zoomed .visit-board,
html.is-zoomed .visit-photo {
  transform: none !important;
  will-change: auto;
}

html.is-zoomed .hero-media img {
  transform: scale(1.01) !important;
  will-change: auto;
}

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

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

button {
  font: inherit;
}

::selection {
  background: rgba(242, 202, 116, 0.32);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--gold-strong);
  outline-offset: 4px;
}

.scroll-progress {
  background: linear-gradient(90deg, var(--gold-strong), var(--gold), rgba(29, 93, 126, 0.9));
  box-shadow: 0 0 18px rgba(242, 202, 116, 0.24);
  height: 2px;
  left: 0;
  position: fixed;
  right: auto;
  top: 0;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  width: 100%;
  z-index: 120;
}

.skip-link {
  background: var(--gold-strong);
  border-radius: var(--radius-sm);
  color: #160d08;
  font-weight: 900;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -6rem;
  transition: top 260ms var(--ease-soft), box-shadow 260ms var(--ease-soft);
  z-index: 1000;
}

.skip-link:focus {
  box-shadow: var(--shadow-gold);
  top: 1rem;
}

main > section,
.site-footer {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

#top {
  scroll-margin-top: 0;
}

.section-shell {
  margin-inline: auto;
  max-width: var(--max);
  padding-inline: 28px;
}

.eyebrow {
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.3;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.15rem, 7.4vw, 6.9rem);
  line-height: 0.96;
  margin: 0;
  max-width: 11.2ch;
}

h2 {
  font-size: clamp(2.35rem, 5.6vw, 5.2rem);
  line-height: 1.02;
  margin: 0;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.1;
  margin: 0;
}

p {
  margin: 0;
}

.site-header {
  display: block;
  height: var(--header-height);
  left: 0;
  padding: var(--header-pad-top) 24px 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: height 340ms var(--ease-soft), padding 340ms var(--ease-soft);
  z-index: 60;
}

.header-shell {
  align-items: center;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  background:
    linear-gradient(180deg, rgba(251, 244, 232, 0.055), transparent 55%),
    rgba(5, 3, 3, 0.76);
  border: 1px solid rgba(251, 244, 232, 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.32);
  display: flex;
  height: var(--header-shell-height);
  justify-content: space-between;
  margin: 0 auto;
  max-width: calc(var(--max) + 64px);
  padding: 0 7px 0 18px;
  pointer-events: auto;
  position: relative;
  transition: background 320ms var(--ease-soft), box-shadow 320ms var(--ease-soft), border-color 320ms var(--ease-soft), height 340ms var(--ease-soft), transform 340ms var(--ease-soft);
  width: 100%;
}

.header-shell::after {
  background: linear-gradient(90deg, transparent, rgba(242, 202, 116, 0.24), transparent);
  bottom: -1px;
  content: "";
  height: 1px;
  left: 18px;
  opacity: 0.55;
  position: absolute;
  right: 18px;
}

.site-header.is-scrolled .header-shell {
  background:
    linear-gradient(180deg, rgba(251, 244, 232, 0.06), transparent 58%),
    rgba(5, 3, 3, 0.92);
  border-color: var(--line);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.46);
  transform: translate3d(0, -2px, 0);
}

.brand {
  align-items: center;
  display: flex;
  min-height: var(--header-shell-height);
}

.brand img {
  height: var(--header-logo-height);
  object-fit: contain;
  transition: filter 300ms var(--ease-soft), height 340ms var(--ease-soft), transform 300ms var(--ease-soft);
  width: auto;
}

.brand:hover img {
  filter: drop-shadow(0 0 16px rgba(242, 202, 116, 0.24));
  transform: translateY(-1px);
}

.site-nav {
  align-items: center;
  background: rgba(251, 244, 232, 0.035);
  border: 1px solid rgba(251, 244, 232, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 2px;
  padding: 4px;
}

.mobile-nav-links,
.mobile-nav-actions {
  display: contents;
}

.mobile-nav-head,
.mobile-nav-note,
.site-nav small {
  display: none;
}

.site-nav a {
  border-radius: var(--radius-xs);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  min-height: var(--header-link-height);
  padding: 12px 13px 11px;
  position: relative;
  text-transform: uppercase;
  transition: background 240ms var(--ease-soft), color 240ms var(--ease-soft), transform 240ms var(--ease-soft);
}

.site-nav a span {
  display: block;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(251, 244, 232, 0.07);
  color: var(--ink);
}

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

.site-nav a.is-active::after {
  background: var(--gold-strong);
  bottom: 4px;
  content: "";
  height: 1px;
  left: 13px;
  position: absolute;
  right: 13px;
}

.site-nav .nav-direction {
  background: rgba(251, 244, 232, 0.08);
  color: var(--ink);
}

.site-nav .nav-call {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  color: #160d08;
}

.nav-toggle {
  background:
    linear-gradient(180deg, rgba(251, 244, 232, 0.08), transparent 60%),
    rgba(251, 244, 232, 0.045);
  border: 1px solid rgba(251, 244, 232, 0.22);
  border-radius: var(--radius-sm);
  color: var(--ink);
  flex: 0 0 44px;
  display: none;
  height: 44px;
  margin-left: auto;
  position: relative;
  transition: background 220ms var(--ease-soft), border-color 220ms var(--ease-soft), box-shadow 220ms var(--ease-soft);
  width: 44px;
  z-index: 2;
}

.nav-toggle span {
  background: currentColor;
  height: 2px;
  left: 12px;
  position: absolute;
  transition: transform 220ms var(--ease-soft), width 220ms var(--ease-soft);
  width: 18px;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(251, 244, 232, 0.08);
  border-color: rgba(242, 202, 116, 0.36);
  box-shadow: 0 0 0 3px rgba(242, 202, 116, 0.08);
}

.nav-toggle span:first-child {
  top: 16px;
}

.nav-toggle span:last-child {
  top: 25px;
}

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

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

.hero {
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  overflow: clip;
  position: relative;
}

.hero-media,
.hero-media img,
.hero-scrim {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-media img {
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.025);
  transform-origin: right center;
  transition: filter 900ms var(--ease-soft), transform 1200ms var(--ease-soft);
  will-change: transform;
}

.js.is-loading .hero-media img {
  filter: blur(8px) brightness(0.72) saturate(0.9);
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.04);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(5, 3, 3, 0.86) 0%, rgba(5, 3, 3, 0.58) 42%, rgba(5, 3, 3, 0.1) 76%),
    linear-gradient(0deg, rgba(5, 3, 3, 0.94) 0%, rgba(5, 3, 3, 0.04) 48%, rgba(5, 3, 3, 0.46) 100%);
}

.hero-grid {
  align-items: end;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  min-height: 100vh;
  min-height: 100svh;
  padding-bottom: 104px;
  padding-top: calc(var(--header-height) + 56px);
  position: relative;
  z-index: 2;
}

.hero-copy-block {
  max-width: 740px;
}

.hero-copy-block,
.hero-card {
  --hover-y: 0px;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--hover-y)), 0);
}

.hero-copy-block h1 {
  font-size: clamp(3rem, 6.8vw, 6.4rem);
  max-width: 13.5ch;
}

.hero-copy {
  color: var(--paper);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  line-height: 1.55;
  margin-top: 28px;
  max-width: 36rem;
}

.hero-mobile-hours {
  display: none;
}

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

.hero-venue-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-venue-links a {
  align-items: center;
  background: rgba(5, 3, 3, 0.42);
  border: 1px solid rgba(251, 244, 232, 0.14);
  border-radius: var(--radius-sm);
  color: var(--paper);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  min-height: 42px;
  padding: 13px 14px 12px;
  text-transform: uppercase;
  transition: transform 260ms var(--ease-soft), border-color 260ms var(--ease-soft), background 260ms var(--ease-soft), color 260ms var(--ease-soft);
}

.hero-venue-links a::after {
  color: var(--gold-strong);
  content: "\203A";
  font-size: 1rem;
  line-height: 0;
  margin-left: 8px;
  transform: translateY(-1px);
}

.hero-venue-links a:hover,
.hero-venue-links a:focus-visible {
  background: rgba(251, 244, 232, 0.07);
  border-color: rgba(242, 202, 116, 0.32);
  color: var(--ink);
  transform: translateY(-1px);
}

.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.1em;
  isolation: isolate;
  min-height: 52px;
  overflow: hidden;
  padding: 0 22px;
  position: relative;
  text-transform: uppercase;
  transition: transform 260ms var(--ease-soft), border-color 260ms var(--ease-soft), background 260ms var(--ease-soft), color 260ms var(--ease-soft), box-shadow 260ms var(--ease-soft);
}

.button::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 54%);
  content: "";
  inset: 1px;
  opacity: 0.28;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.button::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-120%);
  transition: transform 650ms var(--ease-soft);
  z-index: -1;
}

.button:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.button:hover::after {
  transform: translateX(120%);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  border-color: transparent;
  box-shadow: 0 16px 42px rgba(198, 160, 91, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  color: #140b07;
}

.button.primary:hover {
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.button.secondary {
  background: rgba(251, 244, 232, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.button.quiet {
  background: transparent;
  border-color: transparent;
  color: var(--gold-strong);
  padding-left: 4px;
  padding-right: 4px;
}

.button.quiet:hover {
  background: rgba(251, 244, 232, 0.05);
  border-color: var(--line);
}

.hero-card {
  align-self: end;
  background:
    linear-gradient(135deg, rgba(251, 244, 232, 0.12), rgba(251, 244, 232, 0.03)),
    rgba(9, 5, 4, 0.68);
  border: 1px solid rgba(251, 244, 232, 0.16);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 22px;
  position: relative;
  transition: transform 520ms var(--ease-soft), border-color 520ms var(--ease-soft), box-shadow 520ms var(--ease-soft);
  will-change: transform;
}

.hero-card:hover {
  --hover-y: -2px;
  border-color: rgba(242, 202, 116, 0.28);
  box-shadow: var(--shadow), var(--shadow-gold);
}

.hero-card::before,
.visit-board::before,
.visit-hours-board::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%);
  content: "";
  height: 80px;
  left: 0;
  opacity: 0.3;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.hero-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.hero-card div,
.visit-board dl > div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

dt {
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

dd {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.15;
  margin: 0;
}

.hero-card dd {
  font-size: 1.08rem;
  line-height: 1.28;
}

.hero-card .menu-preview dd {
  color: var(--paper);
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 0.94rem;
  line-height: 1.55;
}

.hours-block dd {
  display: grid;
  gap: 8px;
}

.hours-block span {
  align-items: baseline;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.hours-block strong {
  color: var(--gold-strong);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.visit-board dl {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visit-board dl > div dd {
  font-size: 1.05rem;
  line-height: 1.28;
}

.visit-hours-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 10px;
  max-width: 23rem;
}

.visit-hours-table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.visit-hours-table th,
.visit-hours-table td {
  border-top: 1px solid rgba(251, 244, 232, 0.09);
  padding: 15px 18px;
  text-align: left;
  vertical-align: middle;
}

.visit-hours-table tr > :first-child {
  width: 22%;
}

.visit-hours-table thead th {
  border-top: 0;
  color: var(--dim);
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-hours-table tbody th {
  color: var(--paper);
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-hours-table td {
  color: var(--gold-strong);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.social-link {
  align-items: center;
  color: var(--paper);
  display: inline-flex;
  gap: 10px;
  text-decoration: none;
  transition: color 260ms var(--ease-soft), transform 260ms var(--ease-soft);
}

.social-link svg {
  color: var(--facebook-blue);
  flex: 0 0 auto;
  fill: currentColor;
  filter: drop-shadow(0 0 10px rgba(24, 119, 242, 0.24));
  height: 24px;
  width: 24px;
}

.social-link svg path {
  fill: currentColor;
}

.social-link span {
  color: var(--ink);
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--facebook-blue-hover);
  transform: translateY(-1px);
}

.social-link:hover svg,
.social-link:focus-visible svg {
  color: var(--facebook-blue-hover);
  filter: drop-shadow(0 0 14px rgba(24, 119, 242, 0.42));
}

.social-link:hover span,
.social-link:focus-visible span {
  color: var(--gold-strong);
}

.social-link--footer {
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.social-link--footer svg {
  height: 22px;
  width: 22px;
}

.hero-rail {
  align-items: center;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(5, 3, 3, 0.78), rgba(5, 3, 3, 0.66));
  border-top: 1px solid var(--line);
  bottom: 0;
  display: flex;
  gap: 0;
  left: 0;
  list-style: none;
  margin: 0;
  overflow-x: auto;
  padding: 0;
  position: absolute;
  right: 0;
  z-index: 3;
}

.hero-rail li {
  border-right: 1px solid var(--line);
  color: var(--muted);
  flex: 1 0 auto;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  min-height: 58px;
  min-width: 180px;
  padding: 21px 28px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: background 260ms var(--ease-soft), color 260ms var(--ease-soft);
}

.hero-rail li:hover {
  background: rgba(251, 244, 232, 0.045);
  color: var(--ink);
}

.intro-ledger {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 76px;
  padding-top: 76px;
}

.ledger-line {
  background:
    linear-gradient(180deg, rgba(251, 244, 232, 0.04), rgba(251, 244, 232, 0.015)),
    rgba(8, 4, 4, 0.48);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  min-height: 182px;
  padding: 26px 28px 24px;
  position: relative;
  transition: background 360ms var(--ease-soft), border-color 360ms var(--ease-soft), box-shadow 360ms var(--ease-soft);
}

.ledger-line span {
  color: var(--gold-strong);
  display: block;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  margin-bottom: 18px;
  text-transform: uppercase;
  transition: color 320ms var(--ease-soft);
}

.ledger-line strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.42rem, 2vw, 1.82rem);
  font-weight: 500;
  line-height: 1.05;
}

.ledger-line p {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 16px;
}

.ledger-line:hover {
  background:
    linear-gradient(180deg, rgba(251, 244, 232, 0.055), rgba(251, 244, 232, 0.018)),
    rgba(8, 4, 4, 0.56);
  border-color: rgba(242, 202, 116, 0.24);
  box-shadow: var(--shadow-soft);
}

.ledger-line:hover span {
  color: var(--gold-strong);
}

.room-story {
  background:
    linear-gradient(180deg, rgba(251, 244, 232, 0.03), transparent 18%),
    linear-gradient(105deg, transparent, rgba(198, 160, 91, 0.055) 50%, transparent 72%),
    linear-gradient(135deg, rgba(118, 35, 47, 0.18), transparent 42%),
    #0b0605;
  border-block: 1px solid var(--line);
  padding: 108px 0;
  position: relative;
}

.room-layout {
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.room-copy {
  align-self: center;
  position: sticky;
  top: 120px;
}

.room-copy p:not(.eyebrow),
.program-head p,
.menu-feature-copy p,
.visit-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-top: 24px;
  max-width: 38rem;
}

.room-collage {
  min-height: 590px;
  position: relative;
}

.photo-frame {
  --hover-y: 0px;
  background: var(--surface-strong);
  border: 1px solid rgba(251, 244, 232, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  isolation: isolate;
  margin: 0;
  overflow: hidden;
  position: relative;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--hover-y)), 0);
  transition: border-color 520ms var(--ease-soft), box-shadow 520ms var(--ease-soft), transform 520ms var(--ease-soft);
}

.photo-frame::after,
.private-room-gallery figure::after,
.image-ribbon figure::after,
.menu-feature-photo::after,
.visit-photo::after {
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.11) 44%, transparent 60%);
  content: "";
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-72%);
  transition: opacity 360ms var(--ease-soft), transform 820ms var(--ease-soft);
}

.photo-frame img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: filter 760ms var(--ease-soft);
  width: 100%;
}

.photo-frame:hover {
  --hover-y: 0px;
  border-color: rgba(242, 202, 116, 0.28);
  box-shadow: var(--shadow), var(--shadow-gold);
}

.photo-frame:hover::after,
.private-room-gallery figure:hover::after,
.image-ribbon figure:hover::after,
.menu-feature-photo:hover::after,
.visit-photo:hover::after {
  opacity: 0.22;
  transform: translateX(72%);
}

.photo-frame:hover img {
  filter: saturate(1.045) contrast(1.018) brightness(1.018);
}

.frame-main {
  height: 430px;
  margin-left: auto;
  width: min(100%, 720px);
}

.frame-lamp {
  bottom: 0;
  height: 320px;
  left: 0;
  position: absolute;
  width: min(42%, 300px);
}

.private-room {
  background:
    linear-gradient(180deg, rgba(5, 3, 3, 0.94), rgba(12, 6, 5, 0.98)),
    radial-gradient(circle at 78% 10%, rgba(118, 35, 47, 0.24), transparent 34%),
    #070403;
  border-bottom: 1px solid var(--line);
  padding: 96px 0;
}

.private-room-head {
  align-items: end;
  display: grid;
  gap: clamp(28px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.58fr);
  margin-bottom: 34px;
}

.private-room-head h2 {
  max-width: 12ch;
}

.private-room-head > p {
  border-left: 1px solid rgba(242, 202, 116, 0.24);
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  padding-left: clamp(20px, 3vw, 32px);
}

.private-room-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.7fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
}

.private-room-gallery--duo {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  grid-template-rows: minmax(420px, 1fr);
}

.private-room-gallery figure {
  --hover-y: 0px;
  background: var(--surface-strong);
  border: 1px solid rgba(251, 244, 232, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  margin: 0;
  overflow: hidden;
  position: relative;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--hover-y)), 0);
  transition: border-color 520ms var(--ease-soft), box-shadow 520ms var(--ease-soft), transform 520ms var(--ease-soft);
}

.private-room-gallery figure:hover {
  --hover-y: 0px;
  border-color: rgba(242, 202, 116, 0.28);
  box-shadow: var(--shadow), var(--shadow-gold);
}

.private-room-gallery img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: filter 760ms var(--ease-soft);
  width: 100%;
}

.private-room-gallery figure:hover img {
  filter: saturate(1.04) contrast(1.018) brightness(1.015);
}

.private-room-service-detail img {
  object-position: 46% 50%;
}

.private-room-main {
  grid-row: 1 / span 2;
}

.private-room-gallery--duo .private-room-main {
  grid-row: auto;
}

.private-room-gallery--duo figure {
  min-height: clamp(340px, 34vw, 520px);
}

.music-feature {
  background:
    linear-gradient(180deg, rgba(5, 3, 3, 0.92), rgba(12, 6, 5, 0.98)),
    radial-gradient(circle at 18% 22%, rgba(118, 35, 47, 0.22), transparent 34%),
    #070403;
  border-bottom: 1px solid var(--line);
  padding: 96px 0;
  position: relative;
}

.music-layout {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.82fr);
}

.music-visual {
  --hover-y: 0px;
  align-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  isolation: isolate;
  margin: 0;
  min-height: clamp(320px, 36vw, 560px);
  overflow: visible;
  place-items: center;
  position: relative;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--hover-y)), 0);
}

.music-visual::before {
  background:
    radial-gradient(ellipse at 50% 66%, rgba(242, 202, 116, 0.11), transparent 54%),
    radial-gradient(ellipse at 62% 42%, rgba(118, 35, 47, 0.12), transparent 48%);
  bottom: 2%;
  content: "";
  filter: blur(16px);
  left: -4%;
  opacity: 0.58;
  pointer-events: none;
  position: absolute;
  right: 13%;
  top: 12%;
  z-index: 0;
}

.music-visual::after {
  content: none;
}

.music-visual img {
  display: block;
  filter: brightness(0.76) saturate(0.88) contrast(1.03) drop-shadow(0 34px 48px rgba(0, 0, 0, 0.62));
  height: auto;
  margin: auto;
  max-width: min(112%, 760px);
  object-fit: contain;
  object-position: center;
  position: relative;
  transition: filter 760ms var(--ease-soft);
  width: min(112%, 760px);
  z-index: 1;
}

.music-visual:hover img {
  filter: brightness(0.79) saturate(0.92) contrast(1.04) drop-shadow(0 30px 50px rgba(0, 0, 0, 0.64));
}

.music-visual:hover {
  --hover-y: 0px;
}

.music-copy h2 {
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  max-width: 11.5ch;
}

.music-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-top: 24px;
  max-width: 35rem;
}

.music-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 28px;
  padding: 0;
}

.music-notes li {
  background: rgba(251, 244, 232, 0.055);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 12px 14px;
  text-transform: uppercase;
}

.social-link--music {
  align-items: center;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: 24px;
  max-width: 31rem;
  text-transform: uppercase;
}

.social-link--music span {
  line-height: 1.45;
}

.program {
  padding: 76px 0 70px;
  position: relative;
}

.program-head {
  align-items: center;
  display: grid;
  gap: clamp(28px, 4vw, 58px);
  grid-template-columns: minmax(420px, 0.86fr) minmax(340px, 0.72fr);
}

.program-head h2 {
  font-size: clamp(2.9rem, 4.25vw, 4.75rem);
  line-height: 0.94;
  max-width: 12.4ch;
}

.program-head > p {
  border-left: 1px solid rgba(242, 202, 116, 0.24);
  margin-top: 0;
  max-width: 38rem;
  padding-left: 26px;
}

.program-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 42px auto 0;
  max-width: var(--max);
  padding: 0;
}

.program-strip li {
  --hover-y: 0px;
  background:
    linear-gradient(145deg, rgba(251, 244, 232, 0.09), transparent 45%),
    rgba(15, 9, 8, 0.94);
  border: 1px solid rgba(251, 244, 232, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  position: relative;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--hover-y)), 0);
  transition: border-color 360ms var(--ease-soft), transform 360ms var(--ease-soft), background 360ms var(--ease-soft), box-shadow 360ms var(--ease-soft);
  will-change: transform;
}

.program-strip li::before {
  background: linear-gradient(120deg, rgba(242, 202, 116, 0.18), transparent 38%);
  content: "";
  height: 1px;
  left: 20px;
  opacity: 0.46;
  position: absolute;
  right: 20px;
  top: 0;
}

.program-strip li:hover {
  --hover-y: -2px;
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.program-strip span {
  color: var(--gold);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 0.85;
  margin-bottom: 26px;
}

.program-strip p {
  color: var(--muted);
  line-height: 1.58;
  margin-top: 18px;
}

.image-ribbon {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(220px, 0.68fr) minmax(420px, 1.28fr) minmax(220px, 0.68fr);
  margin: 0 auto;
  max-width: 1340px;
  padding: 20px 28px 88px;
}

.image-ribbon figure {
  --hover-y: 0px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  height: clamp(300px, 23vw, 350px);
  isolation: isolate;
  margin: 0;
  overflow: hidden;
  position: relative;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--hover-y)), 0);
  transition: border-color 520ms var(--ease-soft), box-shadow 520ms var(--ease-soft), transform 520ms var(--ease-soft);
}

.image-ribbon figure:first-child,
.image-ribbon figure:last-child {
  aspect-ratio: 3 / 4;
  justify-self: center;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--hover-y)), 0);
  width: auto;
}

.image-ribbon figure:hover {
  --hover-y: 0px;
  border-color: rgba(242, 202, 116, 0.28);
  box-shadow: var(--shadow), var(--shadow-gold);
}

.image-ribbon img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: filter 760ms var(--ease-soft);
  width: 100%;
}

.image-ribbon figure:nth-child(3) img {
  object-position: 50% 50%;
}

.image-ribbon figure:hover img {
  filter: saturate(1.04) contrast(1.018) brightness(1.015);
}

.menu-section {
  background:
    linear-gradient(115deg, transparent 18%, rgba(198, 160, 91, 0.045) 52%, transparent 78%),
    linear-gradient(180deg, #0b0605 0%, #120b09 100%);
  border-block: 1px solid var(--line);
  padding: 108px 0;
}

.menu-intro {
  align-items: end;
  display: grid;
  gap: clamp(28px, 6vw, 74px);
  grid-template-columns: minmax(0, 0.88fr) minmax(230px, 0.3fr);
  margin-bottom: 24px;
}

.menu-intro h2 {
  font-size: clamp(2.15rem, 4.35vw, 4rem);
  max-width: 13.5ch;
}

.menu-intro-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.62;
  margin-top: 22px;
  max-width: 45rem;
}

.menu-intro-aside {
  border-left: 1px solid rgba(242, 202, 116, 0.24);
  padding-left: clamp(20px, 3vw, 32px);
}

.menu-intro-aside p {
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.45;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.menu-intro-aside .button {
  min-width: 168px;
}

.menu-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  scroll-margin-top: calc(var(--header-height) + 10px);
}

.menu-tabs {
  background: rgba(5, 3, 3, 0.54);
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.menu-tab {
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  min-height: 46px;
  padding: 0 13px;
  text-align: left;
  text-transform: uppercase;
  transition: background 260ms var(--ease-soft), border-color 260ms var(--ease-soft), color 260ms var(--ease-soft), transform 260ms var(--ease-soft), box-shadow 260ms var(--ease-soft);
}

.menu-tab:hover,
.menu-tab:focus-visible {
  border-color: var(--line-strong);
  color: var(--ink);
}

.menu-tab:active,
.button:active,
.text-link:active {
  transform: translateY(1px);
}

.menu-tab[aria-selected="true"] {
  background: var(--gold);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  color: #160d08;
}

.menu-panel {
  background:
    linear-gradient(135deg, rgba(198, 160, 91, 0.1), transparent 34%),
    rgba(23, 16, 14, 0.96);
  border: 1px solid var(--line);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-soft);
  min-height: 650px;
  overflow: hidden;
  padding: 32px;
  position: relative;
}

.menu-panel::before {
  background: linear-gradient(90deg, rgba(29, 93, 126, 0.24), transparent);
  content: "";
  height: 1px;
  left: 32px;
  position: absolute;
  right: 32px;
  top: 0;
}

.menu-static {
  display: grid;
  gap: 42px;
}

.menu-static-head {
  border-bottom: 1px solid var(--line);
  max-width: 720px;
  padding-bottom: 26px;
}

.menu-static-head h3,
.menu-static-section-head h3 {
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1.06;
}

.menu-static-head p:not(.eyebrow),
.menu-static-section-head p {
  color: var(--muted);
  line-height: 1.58;
  margin-top: 12px;
}

.menu-static-section {
  border-top: 1px solid rgba(251, 244, 232, 0.1);
  display: grid;
  gap: 22px;
  padding-top: 32px;
}

.menu-static-section-head {
  max-width: 680px;
}

.menu-panel-head {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.menu-panel-head,
.menu-list {
  animation: panel-settle 520ms var(--ease-soft) both;
}

.menu-list {
  animation-delay: 45ms;
}

@keyframes panel-settle {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-panel-head p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.menu-count {
  color: var(--gold);
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-top: 10px;
  text-transform: uppercase;
}

.menu-list {
  column-gap: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 16px;
}

.menu-item {
  border-bottom: 1px solid rgba(251, 244, 232, 0.1);
  padding: 0 0 16px;
  position: relative;
  transition: border-color 260ms var(--ease-soft);
}

.menu-item:hover {
  border-color: rgba(242, 202, 116, 0.24);
}

.menu-tag {
  color: var(--dim);
  display: block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.menu-line {
  align-items: baseline;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.menu-line strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.18;
}

.price {
  color: var(--gold-strong);
  flex: 0 0 auto;
  font-weight: 900;
}

.menu-item p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
  margin-top: 8px;
}

.menu-feature {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  padding-bottom: 96px;
  padding-top: 96px;
}

.decision-strip {
  background:
    linear-gradient(90deg, rgba(198, 160, 91, 0.12), transparent 42%),
    linear-gradient(180deg, #070403, #0d0706);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 72px 0;
}

.decision-layout {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
}

.decision-layout h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  max-width: 12ch;
}

.decision-copy {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
  margin-top: 18px;
  max-width: 42rem;
}

.decision-actions {
  display: grid;
  gap: 12px;
}

.review-section {
  background:
    radial-gradient(circle at 78% 20%, rgba(242, 202, 116, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(251, 244, 232, 0.035), transparent 58%),
    #080403;
  border-top: 1px solid var(--line);
  padding: 92px 0;
}

.review-layout {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 82px);
  grid-template-columns: minmax(300px, 0.72fr) minmax(340px, 0.78fr);
}

.review-copy h2 {
  font-size: clamp(2.45rem, 5vw, 4.9rem);
  max-width: 9ch;
}

.review-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.62;
  margin-top: 18px;
  max-width: 39rem;
}

.google-review-button {
  gap: 10px;
  margin-top: 28px;
}

.google-icon {
  display: block;
  flex: 0 0 auto;
  height: 22px;
  width: 22px;
}

.google-icon .google-blue {
  fill: #4285f4;
}

.google-icon .google-green {
  fill: #34a853;
}

.google-icon .google-yellow {
  fill: #fbbc05;
}

.google-icon .google-red {
  fill: #ea4335;
}

.review-showcase {
  display: grid;
  gap: 14px;
}

.review-card {
  background:
    linear-gradient(145deg, rgba(251, 244, 232, 0.08), transparent 46%),
    rgba(15, 9, 8, 0.94);
  border: 1px solid rgba(251, 244, 232, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 34px);
}

.review-card-featured {
  border-color: rgba(242, 202, 116, 0.22);
}

.review-stars {
  color: var(--gold-strong);
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

.review-card-kicker {
  color: var(--muted);
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.review-card h3 {
  font-size: clamp(1.52rem, 2.5vw, 2.2rem);
  line-height: 1.04;
}

.review-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 14px;
}

.menu-feature-copy h2 {
  max-width: 11ch;
}

.text-link {
  color: var(--gold-strong);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-top: 30px;
  position: relative;
  text-transform: uppercase;
  transition: color 260ms var(--ease-soft);
}

.text-link::after {
  background: currentColor;
  bottom: -6px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0.38);
  transform-origin: left center;
  transition: transform 360ms var(--ease-soft);
  width: 100%;
}

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

.text-link:hover::after {
  transform: scaleX(1);
}

.menu-feature-photo {
  --hover-y: 0px;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  isolation: isolate;
  justify-self: end;
  margin: 0;
  max-width: 560px;
  overflow: hidden;
  position: relative;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--hover-y)), 0);
  transition: border-color 520ms var(--ease-soft), box-shadow 520ms var(--ease-soft), transform 520ms var(--ease-soft);
  width: 100%;
}

.menu-feature-photo:hover {
  --hover-y: 0px;
  border-color: rgba(242, 202, 116, 0.28);
  box-shadow: var(--shadow), var(--shadow-gold);
}

.menu-feature-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  transition: filter 760ms var(--ease-soft);
  width: 100%;
}

.menu-feature-photo:hover img {
  filter: saturate(1.04) contrast(1.018) brightness(1.015);
}

.visit {
  background:
    linear-gradient(180deg, rgba(29, 93, 126, 0.14), transparent 24rem),
    linear-gradient(115deg, transparent, rgba(118, 35, 47, 0.08) 48%, transparent 72%),
    #080403;
  border-top: 1px solid var(--line);
  padding: 104px 0;
}

.visit-layout {
  align-items: stretch;
  display: grid;
  column-gap: 34px;
  row-gap: 22px;
  grid-template-columns: minmax(320px, 0.82fr) minmax(440px, 0.92fr);
}

.visit-details {
  align-content: start;
  display: grid;
  gap: 24px;
}

.visit-copy h2 {
  max-width: 10ch;
}

.visit-board,
.visit-hours-board {
  --hover-y: 0px;
  background:
    linear-gradient(145deg, rgba(251, 244, 232, 0.08), transparent 45%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 28px;
  position: relative;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--hover-y)), 0);
  transition: border-color 420ms var(--ease-soft), box-shadow 420ms var(--ease-soft), transform 420ms var(--ease-soft);
}

.visit-hours-board {
  align-items: center;
  display: grid;
  gap: clamp(24px, 4vw, 58px);
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  padding: 26px 30px;
}

.visit-photo {
  --hover-y: 0px;
  align-self: stretch;
  aspect-ratio: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  height: 100%;
  isolation: isolate;
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  position: relative;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--hover-y)), 0);
  transition: border-color 520ms var(--ease-soft), box-shadow 520ms var(--ease-soft), transform 520ms var(--ease-soft);
}

.visit-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: filter 760ms var(--ease-soft);
  width: 100%;
}

.visit-board:hover,
.visit-hours-board:hover,
.visit-photo:hover {
  --hover-y: 0px;
  border-color: rgba(242, 202, 116, 0.26);
  box-shadow: var(--shadow), var(--shadow-gold);
}

.visit-photo:hover img {
  filter: saturate(1.035) contrast(1.016) brightness(1.012);
}

.photo-frame img,
.private-room-gallery img,
.image-ribbon img,
.menu-feature-photo img,
.visit-photo img {
  filter: brightness(0.82) saturate(0.9) contrast(1.04);
}

.photo-frame:hover img,
.private-room-gallery figure:hover img,
.image-ribbon figure:hover img,
.menu-feature-photo:hover img,
.visit-photo:hover img {
  filter: brightness(0.86) saturate(0.94) contrast(1.05);
}

.private-room-gallery--duo img {
  filter: brightness(0.94) saturate(0.96) contrast(1.03);
}

.private-room-gallery--duo figure:hover img {
  filter: brightness(0.98) saturate(1) contrast(1.04);
}

.visit-board dl {
  display: grid;
  gap: 24px;
  margin: 0;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(251, 244, 232, 0.035), transparent 26%),
    linear-gradient(105deg, rgba(118, 35, 47, 0.12), transparent 45%),
    #050303;
  border-top: 1px solid var(--line);
  color: var(--dim);
  padding: 58px 28px 96px;
}

.footer-shell {
  align-items: start;
  display: grid;
  gap: clamp(28px, 4vw, 54px);
  grid-template-columns: minmax(280px, 1.15fr) minmax(190px, 0.7fr) minmax(150px, 0.45fr) minmax(190px, 0.58fr);
  margin: 0 auto;
  max-width: var(--max);
}

.footer-brand {
  align-items: flex-start;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: Georgia, "Times New Roman", serif;
}

.footer-brand img {
  height: 88px;
  object-fit: contain;
  width: auto;
}

.footer-brand p {
  color: var(--muted);
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 28rem;
}

.footer-details,
.footer-nav,
.footer-actions {
  display: grid;
  gap: 12px;
}

.footer-details span,
.footer-nav span {
  color: var(--gold-strong);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-details p,
.footer-details a,
.footer-nav a,
.footer-bottom {
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-details p {
  color: var(--muted);
}

.site-footer a {
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 220ms var(--ease-soft);
}

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

.footer-actions {
  justify-items: start;
}

.footer-actions .button {
  min-height: 46px;
  padding-inline: 18px;
}

.footer-actions .text-link {
  margin-top: 6px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(251, 244, 232, 0.1);
  display: flex;
  justify-content: space-between;
  margin: 46px auto 0;
  max-width: var(--max);
  padding-top: 20px;
}

.footer-bottom > span:first-child {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-legal {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-legal a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--gold-strong);
}

.footer-credit {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  letter-spacing: 0;
  text-transform: none;
}

.footer-credit span {
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-credit img {
  display: block;
  height: 34px;
  image-rendering: auto;
  opacity: 0.9;
  transition: opacity 220ms var(--ease-soft), transform 220ms var(--ease-soft);
  width: auto;
}

.footer-credit:hover img,
.footer-credit:focus-visible img {
  opacity: 1;
  transform: translateY(-1px);
}

.policy-page {
  background:
    radial-gradient(circle at 18% 18%, rgba(198, 160, 91, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(5, 3, 3, 0.9), rgba(12, 6, 5, 0.98)),
    #070403;
  min-height: 100vh;
}

.policy-main {
  padding: calc(var(--header-height) + 86px) 0 92px;
}

.policy-shell {
  display: grid;
  gap: 26px;
  max-width: 980px;
}

.policy-hero {
  border-bottom: 1px solid rgba(251, 244, 232, 0.12);
  padding-bottom: 30px;
}

.policy-hero h1 {
  max-width: 10ch;
}

.policy-hero p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.62;
  margin-top: 22px;
  max-width: 46rem;
}

.policy-card {
  background:
    linear-gradient(145deg, rgba(251, 244, 232, 0.08), transparent 46%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 4vw, 38px);
}

.policy-card + .policy-card {
  margin-top: 4px;
}

.policy-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.policy-card p {
  margin-top: 16px;
}

.policy-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 1.1rem;
}

.policy-contact {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.mobile-cta {
  display: none;
}

.js [data-reveal] {
  --reveal-y: 12px;
  opacity: 0;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--hover-y, 0px) + var(--reveal-y)), 0);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}

.js [data-reveal].is-visible {
  --reveal-y: 0px;
  opacity: 1;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--hover-y, 0px) + var(--reveal-y)), 0);
}

.js [data-reveal]:nth-child(2) {
  transition-delay: 70ms;
}

.js [data-reveal]:nth-child(3) {
  transition-delay: 130ms;
}

@media (max-width: 1040px) {
  .hero-grid,
  .room-layout,
  .private-room-head,
  .music-layout,
  .program-head,
  .review-layout,
  .menu-feature,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

  .visit-details {
    gap: 22px;
  }

  .visit-photo {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
  }

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

  .menu-intro {
    align-items: start;
  }

  .room-copy {
    position: static;
  }

  .program-strip {
    grid-template-columns: repeat(2, 1fr);
    max-width: calc(100% - 56px);
  }

  .hero-rail {
    display: none;
  }

  .image-ribbon {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-inline: 28px;
    scroll-snap-type: x mandatory;
  }

  .image-ribbon figure {
    aspect-ratio: 4 / 3;
    flex: 0 0 min(46vw, 360px);
    height: auto;
    scroll-snap-align: center;
  }

  .private-room-gallery {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .private-room-gallery--duo {
    grid-template-columns: minmax(0, 1fr);
  }

  .private-room-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .private-room-gallery figure {
    aspect-ratio: 4 / 3;
  }

  .private-room-gallery--duo figure {
    min-height: auto;
    width: 100%;
  }

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

  .menu-tabs {
    border-right: 1px solid var(--line);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    flex-direction: row;
    overflow-x: auto;
  }

  .menu-panel {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .menu-tab {
    flex: 0 0 auto;
  }

  .footer-shell {
    grid-template-columns: minmax(0, 1.1fr) minmax(190px, 0.8fr);
  }

  .footer-actions {
    justify-items: start;
  }
}

@media (min-width: 761px) and (max-width: 1040px) {
  .hero {
    min-height: 90vh;
    min-height: 90svh;
  }

  .hero-grid {
    align-content: center;
    gap: 24px;
    min-height: 90vh;
    min-height: 90svh;
    padding-bottom: 48px;
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-card {
    display: none;
  }
}

@media (max-width: 900px) and (max-height: 520px) {
  :root {
    --header-height: var(--header-live-height, 70px);
    --header-shell-height: var(--header-shell-live-height, 58px);
    --header-logo-height: var(--header-logo-live-height, 52px);
    --header-pad-top: var(--header-pad-live-top, 8px);
    --header-link-height: var(--header-link-live-height, 40px);
  }

  body {
    padding-bottom: 0;
  }

  .site-header {
    height: var(--header-height);
    padding: var(--header-pad-top) 14px 0;
  }

  .header-shell {
    height: var(--header-shell-height);
    padding: 0 6px 0 14px;
  }

  .brand img {
    height: var(--header-logo-height);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    align-items: stretch;
    -webkit-backdrop-filter: blur(28px);
    backdrop-filter: blur(28px);
    background:
      linear-gradient(145deg, rgba(251, 244, 232, 0.08), transparent 42%),
      linear-gradient(180deg, rgba(5, 3, 3, 0.96), rgba(13, 7, 6, 0.98));
    border: 1px solid rgba(251, 244, 232, 0.16);
    border-radius: var(--radius-md);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.055);
    box-sizing: border-box;
    display: none;
    gap: 10px;
    grid-template-columns: 1fr;
    left: 14px;
    margin-inline: 0;
    max-height: calc(100svh - var(--header-height) - 18px);
    max-width: none;
    overflow: auto;
    overflow-x: hidden;
    padding: 14px;
    position: absolute;
    right: 14px;
    top: calc(100% + 8px);
    width: auto;
  }

  .site-nav.is-open {
    animation: mobile-menu-in 260ms var(--ease-soft) both;
    display: grid;
  }

  .mobile-nav-head,
  .mobile-nav-note {
    display: none;
  }

  .mobile-nav-links,
  .mobile-nav-actions {
    display: grid;
    min-width: 0;
  }

  .mobile-nav-links {
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
  }

  .site-nav .mobile-nav-links a {
    background: rgba(251, 244, 232, 0.045);
    border: 1px solid rgba(251, 244, 232, 0.1);
    display: grid;
    gap: 4px;
    min-height: 58px;
    padding: 12px 14px;
  }

  .site-nav .mobile-nav-links a span {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
  }

  .site-nav .mobile-nav-links a small {
    color: var(--muted);
    display: block;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .mobile-nav-actions {
    gap: 8px;
    grid-template-columns: 1fr 1fr;
  }

  .site-nav .mobile-nav-actions a {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 44px;
    padding: 12px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    transform: none;
  }

  .site-nav a.is-active::after {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-grid {
    align-content: end;
    display: grid;
    min-height: 100svh;
    padding-bottom: 24px;
    padding-top: calc(var(--header-height) + 22px);
  }

  .hero-copy-block h1 {
    font-size: clamp(2.2rem, 7vw, 3rem);
    max-width: 15ch;
  }

  .hero-copy {
    font-size: 0.96rem;
    line-height: 1.42;
    margin-top: 14px;
    max-width: 44rem;
  }

  .hero-mobile-hours {
    display: none;
  }

  .hero-actions {
    flex-direction: row;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button {
    min-height: 44px;
  }

  .hero-venue-links {
    display: none;
  }

  .mobile-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: var(--header-live-height, 76px);
    --header-shell-height: var(--header-shell-live-height, 64px);
    --header-logo-height: var(--header-logo-live-height, 58px);
    --header-pad-top: var(--header-pad-live-top, 7px);
    --header-link-height: var(--header-link-live-height, 40px);
  }

  body {
    padding-bottom: 62px;
  }

  body::before,
  body::after,
  .site-ambient {
    display: none;
  }

  .hero {
    overflow: hidden;
  }

  .section-shell {
    padding-inline: 18px;
  }

  .site-header {
    height: var(--header-height);
    padding: var(--header-pad-top) 12px 0;
  }

  .header-shell {
    height: var(--header-shell-height);
    padding: 0 6px 0 14px;
  }

  .brand img {
    height: var(--header-logo-height);
    width: auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    align-items: stretch;
    -webkit-backdrop-filter: blur(28px);
    backdrop-filter: blur(28px);
    background:
      linear-gradient(145deg, rgba(251, 244, 232, 0.08), transparent 42%),
      linear-gradient(180deg, rgba(5, 3, 3, 0.96), rgba(13, 7, 6, 0.98));
    border: 1px solid rgba(251, 244, 232, 0.16);
    border-radius: var(--radius-md);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.055);
    box-sizing: border-box;
    display: none;
    gap: 14px;
    grid-template-columns: 1fr;
    left: 12px;
    margin-inline: 0;
    max-width: none;
    max-height: calc(100svh - var(--header-height) - 22px);
    overflow: auto;
    overflow-x: hidden;
    padding: 16px;
    position: absolute;
    right: 12px;
    top: calc(100% + 10px);
    transform: translateY(-4px);
    width: auto;
  }

  .site-nav a.is-active::after {
    display: none;
  }

  .site-nav.is-open {
    animation: mobile-menu-in 260ms var(--ease-soft) both;
    display: grid;
  }

  .mobile-nav-head {
    align-items: center;
    border-bottom: 1px solid rgba(251, 244, 232, 0.1);
    display: block;
    padding: 2px 2px 14px;
  }

  .mobile-nav-head span {
    display: block;
  }

  .mobile-nav-head span {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.36rem;
    line-height: 1;
  }

  .mobile-nav-links,
  .mobile-nav-actions {
    display: grid;
    min-width: 0;
  }

  .mobile-nav-links {
    gap: 8px;
  }

  .site-nav .mobile-nav-links a {
    background: rgba(251, 244, 232, 0.045);
    border: 1px solid rgba(251, 244, 232, 0.1);
    display: grid;
    gap: 6px;
    min-height: 70px;
    padding: 15px 16px;
  }

  .site-nav .mobile-nav-links a span {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
  }

  .site-nav .mobile-nav-links a small {
    color: var(--muted);
    display: block;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .mobile-nav-actions {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .site-nav .mobile-nav-actions a {
    align-items: center;
    display: flex;
    justify-content: center;
    min-width: 0;
    min-height: 52px;
    padding: 14px 12px;
    text-align: center;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    transform: none;
  }

  .mobile-nav-note {
    border-top: 1px solid rgba(251, 244, 232, 0.1);
    color: var(--dim);
    display: block;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.45;
    padding: 2px 2px 0;
    text-transform: uppercase;
  }

  @keyframes mobile-menu-in {
    from {
      opacity: 0;
      transform: translateY(-4px) scale(0.992);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .hero {
    min-height: 92vh;
    min-height: 92svh;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 92vh;
    min-height: 92svh;
    padding-bottom: 42px;
    padding-top: calc(var(--header-height) + 36px);
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(5, 3, 3, 0.96) 0%, rgba(5, 3, 3, 0.68) 42%, rgba(5, 3, 3, 0.2) 100%),
      linear-gradient(90deg, rgba(5, 3, 3, 0.58), transparent);
  }

  h1 {
    font-size: clamp(2.42rem, 11.4vw, 3.55rem);
    max-width: 11ch;
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }

  .hero-card {
    display: none;
  }

  .hero-copy-block,
  .hero-copy {
    max-width: 100%;
    width: 100%;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.48;
    margin-top: 20px;
  }

  .hero-mobile-hours {
    background:
      linear-gradient(135deg, rgba(5, 3, 3, 0.72), rgba(15, 9, 7, 0.6)),
      rgba(5, 3, 3, 0.64);
    border: 1px solid rgba(242, 202, 116, 0.24);
    border-left: 2px solid rgba(242, 202, 116, 0.72);
    border-radius: var(--radius-sm);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
    color: var(--paper);
    display: grid;
    font-size: 0.79rem;
    font-weight: 750;
    gap: 5px;
    letter-spacing: 0.015em;
    line-height: 1.34;
    margin-top: 17px;
    max-width: min(100%, 460px);
    padding: 10px 12px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.58);
    text-transform: none;
  }

  .hero-mobile-hours span {
    display: block;
  }

  .hero-mobile-hours strong {
    color: var(--gold-strong);
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.11em;
    margin-right: 7px;
    min-width: 4.6rem;
    text-transform: uppercase;
  }

  .hero-copy-block h1 {
    font-size: clamp(2.42rem, 10.8vw, 3.42rem);
    line-height: 1;
    max-width: 11ch;
  }

  .hero-actions,
  .visit-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 24px;
  }

  .hero-venue-links {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }

  .hero-venue-links a {
    justify-content: center;
    min-height: 40px;
    text-align: center;
  }

  .hero-actions .button.quiet {
    background: rgba(251, 244, 232, 0.045);
    border-color: var(--line);
    justify-content: center;
    padding-inline: 22px;
  }

  .hero-rail {
    display: none;
  }

  .intro-ledger {
    gap: 10px;
    grid-template-columns: 1fr;
    padding-bottom: 24px;
    padding-top: 24px;
  }

  .ledger-line {
    display: grid;
    gap: 7px;
    min-height: 0;
    padding: 16px 18px;
  }

  .ledger-line:hover {
    transform: none;
  }

  .ledger-line + .ledger-line {
    border-top: 1px solid var(--line);
  }

  .ledger-line span {
    font-size: 0.66rem;
    margin-bottom: 0;
  }

  .ledger-line strong {
    font-size: 1.18rem;
    line-height: 1.12;
  }

  .ledger-line p {
    font-size: 0.92rem;
    line-height: 1.42;
    margin-top: 0;
  }

  .room-story,
  .private-room,
  .music-feature,
  .program,
  .review-section,
  .visit {
    padding-block: 56px;
  }

  .menu-section {
    padding-block: 50px 60px;
  }

  .room-collage {
    display: grid;
    gap: 16px;
    min-height: auto;
  }

  .private-room-head {
    gap: 18px;
    margin-bottom: 24px;
  }

  .private-room-head > p {
    border-left: 0;
    border-top: 1px solid rgba(242, 202, 116, 0.2);
    padding-left: 0;
    padding-top: 18px;
  }

  .private-room-gallery {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .frame-main,
  .frame-lamp {
    height: auto;
    position: static;
    width: 100%;
  }

  .frame-main img,
  .frame-lamp img {
    aspect-ratio: 4 / 3;
  }

  .frame-lamp {
    background:
      linear-gradient(90deg, rgba(10, 5, 4, 0.72), rgba(10, 5, 4, 0.24), rgba(10, 5, 4, 0.72)),
      #0b0605;
  }

  .frame-lamp::before {
    background: url("../fresh/menu-lamp-detail-640.jpg") center / cover no-repeat;
    content: "";
    filter: blur(22px) brightness(0.55) saturate(1.08);
    inset: -20px;
    opacity: 0.82;
    position: absolute;
    transform: scale(1.04);
  }

  .frame-lamp picture {
    display: block;
    height: 100%;
    position: relative;
    z-index: 1;
  }

  .frame-lamp img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .music-layout {
    gap: 28px;
  }

  .music-visual {
    justify-items: center;
    min-height: clamp(300px, 78vw, 520px);
    overflow: hidden;
    width: 100%;
  }

  .music-visual::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(100%, 520px);
  }

  .music-visual picture {
    display: grid;
    justify-items: center;
    width: 100%;
  }

  .music-visual img {
    margin-inline: auto;
    max-width: min(100%, 540px);
    width: 100%;
  }

  .music-copy h2 {
    max-width: 12.5ch;
  }

  .program-strip {
    gap: 10px;
    grid-template-columns: 1fr;
    margin-inline: 18px;
    max-width: none;
  }

  .program-head {
    align-items: start;
    gap: 20px;
  }

  .program-title-block {
    width: 100%;
  }

  .program-head h2 {
    font-size: clamp(2.35rem, 10.6vw, 3.2rem);
    line-height: 0.98;
    max-width: 12.6ch;
    text-wrap: balance;
  }

  .program-head > p {
    border-left: 0;
    border-top: 1px solid rgba(242, 202, 116, 0.2);
    max-width: 100%;
    padding-left: 0;
    padding-top: 18px;
  }

  .review-layout {
    gap: 22px;
  }

  .review-copy h2 {
    max-width: 10.5ch;
  }

  .review-card {
    padding: 22px;
  }

  .program-strip li {
    align-items: start;
    display: grid;
    gap: 3px 16px;
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 0;
    padding: 16px 18px;
  }

  .program-strip span {
    font-size: 2.28rem;
    grid-row: 1 / span 2;
    line-height: 0.88;
    margin-bottom: 0;
    padding-top: 2px;
  }

  .program-strip h3 {
    font-size: 1.22rem;
    line-height: 1.06;
  }

  .program-strip p {
    font-size: 0.94rem;
    line-height: 1.38;
    margin-top: 5px;
  }

  .image-ribbon {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding: 8px 18px 54px;
    scroll-snap-type: none;
  }

  .image-ribbon figure {
    height: auto;
    min-width: 0;
    scroll-snap-align: none;
  }

  .image-ribbon figure:first-child,
  .image-ribbon figure:last-child {
    aspect-ratio: 3 / 4;
    transform: none;
    width: 100%;
  }

  .image-ribbon figure:nth-child(2) {
    aspect-ratio: 16 / 10;
    grid-column: 1 / -1;
    order: -1;
  }

  .image-ribbon img {
    height: 100%;
  }

  .menu-intro {
    align-items: start;
    gap: 8px;
    grid-template-columns: 1fr;
    margin-bottom: 14px;
  }

  .menu-intro h2 {
    font-size: clamp(1.52rem, 6.4vw, 1.92rem);
    line-height: 1.02;
    max-width: 18ch;
  }

  .menu-intro-copy p:not(.eyebrow) {
    display: none;
  }

  .menu-intro-aside {
    display: none;
  }

  .menu-shell {
    scroll-margin-top: calc(var(--header-height) + 6px);
  }

  .menu-panel {
    min-height: auto;
    padding: 16px;
  }

  .menu-panel::before {
    left: 16px;
    right: 16px;
  }

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

  .menu-panel-head {
    display: none;
  }

  .menu-tabs {
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    background:
      linear-gradient(180deg, rgba(18, 11, 9, 0.96), rgba(9, 5, 4, 0.93));
    border-color: rgba(242, 202, 116, 0.22);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: sticky;
    padding: 8px;
    top: calc(var(--header-height) + 8px);
    scrollbar-width: none;
    overflow-x: visible;
    z-index: 18;
  }

  .menu-tab {
    font-size: 0.66rem;
    letter-spacing: 0.07em;
    min-height: 38px;
    min-width: 0;
    padding-inline: 8px;
    text-align: center;
    width: 100%;
  }

  .menu-list {
    row-gap: 12px;
  }

  .menu-item {
    padding-bottom: 12px;
  }

  .menu-tab:hover,
  .menu-tab:focus-visible {
    transform: none;
  }

  .menu-feature {
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .menu-feature-photo {
    justify-self: stretch;
    max-width: none;
  }

  .decision-strip {
    padding: 58px 0;
  }

  .decision-layout {
    grid-template-columns: 1fr;
  }

  .visit-board,
  .visit-hours-board {
    padding: 22px 18px;
  }

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

  .visit-hours-board {
    gap: 18px;
  }

  .visit-hours-heading p:not(.eyebrow) {
    max-width: 26rem;
  }

  .visit-hours-table th,
  .visit-hours-table td {
    padding: 10px 7px;
  }

  .visit-hours-table thead th {
    font-size: 0.54rem;
    letter-spacing: 0.07em;
  }

  .visit-hours-table tbody th,
  .visit-hours-table td {
    font-size: 0.62rem;
    letter-spacing: 0.02em;
  }

  .visit-hours-table td {
    line-height: 1.28;
    white-space: normal;
  }

  .hours-block span {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .hours-block strong {
    text-align: left;
  }

  .site-footer {
    padding: 46px 18px 88px;
    text-align: center;
  }

  .footer-shell {
    gap: 30px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-brand,
  .footer-details,
  .footer-nav,
  .footer-actions {
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  .footer-brand img {
    height: 78px;
  }

  .footer-brand p {
    margin-inline: auto;
    max-width: 22rem;
  }

  .footer-actions {
    justify-items: center;
    width: 100%;
  }

  .footer-actions .button {
    justify-content: center;
    width: min(100%, 320px);
  }

  .footer-actions .social-link {
    justify-content: center;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    margin-top: 34px;
    text-align: center;
  }

  .footer-legal {
    align-items: center;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
  }

  .footer-credit {
    flex-direction: column;
    justify-content: center;
  }

  .policy-main {
    padding-bottom: 78px;
    padding-top: calc(var(--header-height) + 54px);
  }

  .policy-hero h1 {
    font-size: clamp(2.42rem, 10vw, 3.32rem);
  }

  .policy-contact {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-cta {
    background: rgba(5, 3, 3, 0.96);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    position: fixed;
    right: 0;
    z-index: 80;
  }

  .mobile-cta::before {
    background: linear-gradient(90deg, transparent, rgba(242, 202, 116, 0.28), transparent);
    content: "";
    height: 1px;
    left: 16px;
    position: absolute;
    right: 16px;
    top: -1px;
  }

  .mobile-cta a {
    align-items: center;
    color: var(--ink);
    display: flex;
    font-size: 0.66rem;
    font-weight: 900;
    justify-content: center;
    letter-spacing: 0.06em;
    min-height: 58px;
    min-width: 0;
    overflow: hidden;
    padding-inline: 4px;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 220ms var(--ease-soft), color 220ms var(--ease-soft);
  }

  .mobile-cta a + a {
    border-left: 1px solid var(--line);
  }

  .mobile-cta a:hover,
  .mobile-cta a:focus-visible {
    background: rgba(251, 244, 232, 0.07);
    color: var(--gold-strong);
  }
}

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  [data-parallax],
  .photo-frame,
  .private-room-gallery figure,
  .music-visual,
  .program-strip li,
  .image-ribbon figure,
  .menu-feature-photo,
  .visit-board,
  .visit-photo {
    transform: none !important;
  }

  .js.is-loading .hero-media img {
    filter: none;
    transform: scale(1.025);
  }

  .hero-media img {
    transform: scale(1.025) !important;
  }

  .menu-panel-head,
  .menu-list {
    animation: none;
  }
}
