@layer foundation {
:root {
  --ink: #171713;
  --ink-soft: #2d2b26;
  --paper: #eee7da;
  --paper-light: #f8f3ea;
  --paper-deep: #ddd2c0;
  --red: #d94b2f;
  --red-dark: #762920;
  --gold: #d6a23d;
  --line: rgba(23, 23, 19, 0.2);
  --line-light: rgba(255, 255, 255, 0.22);
  --sans: Arial, Helvetica, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  --page: min(100% - 48px, 1420px);
  --page-narrow: min(100% - 48px, 1180px);
  --header-height: 82px;
  --radius: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.lang-zh {
  --sans: "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", "Noto Sans SC", Arial, sans-serif;
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", "Noto Serif SC", Georgia, serif;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

figure,
p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

button {
  font: inherit;
}

::selection {
  color: var(--paper-light);
  background: var(--red-dark);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
}

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

.topline {
  min-height: 29px;
  padding: 6px 24px 5px;
  color: var(--paper-light);
  background: var(--ink);
  display: flex;
  justify-content: center;
  gap: 38px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topline span:not(:first-child)::before {
  content: "•";
  margin-right: 38px;
  color: var(--red);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(238, 231, 218, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: var(--page);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand span {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.brand small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 26px);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.language-switcher a {
  padding: 8px 0;
  opacity: 0.46;
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a[aria-current="page"] {
  opacity: 1;
}

.site-nav > a:not(.header-reserve) {
  position: relative;
  padding: 10px 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav > a:not(.header-reserve)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-reserve {
  min-width: 110px;
  padding: 12px 18px;
  color: white;
  background: var(--ink);
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.header-reserve:hover {
  color: var(--ink);
  background: transparent;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-button i,
.menu-button i::before {
  display: block;
  width: 25px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-button i {
  margin-left: 11px;
}

.menu-button i::before {
  transform: translateY(6px);
}

.menu-button[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] i::before {
  transform: rotate(-90deg);
}

main {
  min-height: 70vh;
  overflow: hidden;
}

h1,
h2,
h3,
blockquote {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

h1 em,
h2 em {
  color: var(--red);
  font-weight: 400;
}

.lang-zh h1,
.lang-zh h2,
.lang-zh h3,
.lang-zh blockquote {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.lang-zh h1,
.lang-zh h2,
.lang-zh h3 {
  text-wrap: balance;
}

.lang-zh p,
.lang-zh li,
.lang-zh address {
  text-wrap: pretty;
}

.lang-zh .headline-keep {
  display: inline-block;
  white-space: nowrap;
}

@supports (word-break: auto-phrase) {
  .lang-zh h1,
  .lang-zh h2,
  .lang-zh h3,
  .lang-zh p,
  .lang-zh li,
  .lang-zh address {
    word-break: auto-phrase;
  }
}

.lang-zh .eyebrow,
.lang-zh .kicker,
.lang-zh .footer-label,
.lang-zh .button,
.lang-zh .text-link,
.lang-zh .quiet-link,
.lang-zh .service-note,
.lang-zh .hero-place {
  letter-spacing: 0.09em;
}

.lang-zh .hero-copy-block h1 {
  font-size: clamp(46px, 4.6vw, 72px);
}

.lang-zh .page-intro h1 {
  font-size: clamp(52px, 7vw, 104px);
}

.lang-zh .bar-hero h1 {
  font-size: clamp(52px, 6vw, 90px);
}

.lang-zh .event-hero {
  --event-hero-columns: 1.02fr 0.98fr;
  --event-hero-padding: clamp(50px, 6vw, 105px);
  --event-hero-title-size: clamp(48px, 5.25vw, 84px);
}

.eyebrow,
.kicker,
.footer-label {
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 22px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "↗";
  margin-left: 20px;
  font-size: 14px;
  line-height: 1;
}

.button.dark,
.button.primary {
  color: var(--paper-light);
  border-color: var(--ink);
  background: var(--ink);
}

.button.dark:hover,
.button.primary:hover {
  color: var(--ink);
  background: transparent;
}

.button.light {
  color: var(--paper-light);
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
}

.button.light:hover {
  color: var(--ink);
  border-color: var(--paper-light);
  background: var(--paper-light);
}

.button.accent {
  color: white;
  border-color: var(--red);
  background: var(--red);
}

.button.accent:hover {
  color: var(--red);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "↗";
  margin-left: 18px;
}

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

.light-link {
  color: var(--paper-light);
}

.quiet-link {
  color: rgba(23, 23, 19, 0.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.page-width {
  width: var(--page);
  margin-right: auto;
  margin-left: auto;
}

.page-shell {
  width: var(--page-narrow);
  margin: 0 auto;
  padding: clamp(86px, 10vw, 150px) 0 140px;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
  padding-bottom: clamp(64px, 8vw, 112px);
  border-bottom: 1px solid var(--line);
}

.page-intro h1 {
  max-width: 900px;
  font-size: clamp(60px, 9vw, 136px);
}

.page-intro-copy {
  max-width: 510px;
  padding-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
}

.page-intro-copy p + p {
  margin-top: 16px;
}

.service-note {
  margin-top: 20px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Home */
.experience-hero {
  min-height: min(740px, calc(100svh - 111px));
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(0, 1.1fr);
  color: var(--paper-light);
  background: var(--ink);
}

.hero-copy-block {
  position: relative;
  padding: clamp(64px, 5vw, 85px) max(48px, calc((100vw - 1420px) / 2));
  padding-top: 150px;
  padding-right: clamp(40px, 4.5vw, 75px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy-block h1 {
  max-width: 710px;
  font-size: clamp(56px, 5.3vw, 88px);
}

.hero-lead {
  max-width: 600px;
  margin-top: 26px;
  color: rgba(248, 243, 234, 0.78);
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.35;
}

.hero-place {
  margin-top: 26px;
  color: rgba(248, 243, 234, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--ink-soft);
}

.hero-room {
  position: absolute;
  inset: 0;
}

.hero-room picture,
.hero-pour picture {
  display: block;
  height: 100%;
}

.hero-room::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 23, 19, 0.3), transparent 36%), linear-gradient(0deg, rgba(23, 23, 19, 0.25), transparent 46%);
  content: "";
}

.hero-room img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.hero-pour {
  position: absolute;
  z-index: 2;
  right: clamp(25px, 4vw, 70px);
  bottom: clamp(25px, 5vw, 76px);
  width: min(48%, 450px);
  border: 9px solid var(--paper);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.hero-pour img {
  aspect-ratio: 1.28;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  top: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  left: auto;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  display: grid;
  place-content: center;
  color: white;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-9deg);
}

.hero-stamp i {
  color: var(--red);
  font-family: var(--serif);
  font-size: 20px;
  font-style: normal;
}

.now-strip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.now-strip > div {
  position: relative;
  min-height: 185px;
  padding: 36px clamp(25px, 3.2vw, 58px);
  border-right: 1px solid var(--line);
}

.now-strip > div:last-child {
  border-right: 0;
}

.now-strip .kicker {
  margin-bottom: 13px;
}

.now-strip p:last-child {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.48;
}

.now-number {
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(23, 23, 19, 0.35);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.rhythms-section {
  padding-top: clamp(64px, 6vw, 90px);
  padding-bottom: clamp(70px, 7vw, 100px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.65fr;
  gap: clamp(45px, 9vw, 150px);
  align-items: end;
  margin-bottom: clamp(58px, 7vw, 100px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -16px;
}

.section-heading h2 {
  max-width: 780px;
  font-size: clamp(54px, 7vw, 112px);
}

.section-heading > p,
.row-heading > div:last-child {
  max-width: 460px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.42;
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.rhythm-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  transition: color 220ms ease;
}

.rhythm-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--ink);
  content: "";
  transform: translateY(101%);
  transition: transform 280ms cubic-bezier(.2, .7, .2, 1);
}

.rhythm-card:hover {
  color: var(--paper-light);
}

.rhythm-card:hover::before {
  transform: translateY(0);
}

.rhythm-card > span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.rhythm-card p {
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rhythm-card h3 {
  font-size: clamp(36px, 3.6vw, 56px);
}

.rhythm-card small {
  display: block;
  margin-top: 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rhythm-brunch:hover::before {
  background: var(--gold);
}

.rhythm-drinks:hover::before {
  background: var(--red-dark);
}

.rhythm-music:hover::before {
  background: var(--red);
}

.food-story {
  padding-bottom: clamp(70px, 7vw, 100px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, 0.75fr);
  gap: clamp(48px, 8vw, 125px);
  align-items: center;
}

.food-collage {
  position: relative;
  min-height: min(64vw, 850px);
}

.food-tall {
  position: absolute;
  inset: 0 21% 0 0;
}

.food-tall img {
  height: 100%;
  object-fit: cover;
}

.food-wide {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: 52%;
  border: 10px solid var(--paper);
  box-shadow: 0 26px 60px rgba(23, 23, 19, 0.2);
}

.food-wide img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-copy h2 {
  font-size: clamp(52px, 5.5vw, 82px);
}

.story-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 34px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
}

.signature-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.signature-list span {
  display: flex;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.signature-list a,
.signature-dish-link span {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.signature-list a:hover,
.signature-dish-link:hover span {
  text-decoration-thickness: 2px;
}

.signature-list a:focus-visible,
.signature-panel li a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.pour-section {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--paper-light);
  background: var(--red-dark);
}

.pour-art {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: var(--red);
}

.pour-art span {
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(250px, 34vw, 600px);
  font-style: italic;
  line-height: 0.7;
  letter-spacing: -0.12em;
}

.pour-art span:first-child {
  top: -3%;
  left: -7%;
  color: var(--paper);
}

.pour-art span:nth-child(2) {
  right: -6%;
  bottom: -4%;
  color: var(--ink);
}

.pour-art i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
  background: var(--paper-light);
  font-family: var(--serif);
  font-size: 68px;
  font-style: normal;
  transform: translate(-50%, -50%) rotate(9deg);
}

.pour-copy {
  padding: clamp(70px, 9vw, 150px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pour-copy h2 {
  font-size: clamp(60px, 7vw, 112px);
}

.pour-times {
  margin: 38px 0 30px;
  border-top: 1px solid var(--line-light);
}

.pour-times span {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 27px);
}

.promotion-terms {
  max-width: 500px;
  color: rgba(248, 243, 234, 0.65);
  font-size: 11px;
  line-height: 1.6;
}

.char-pairing {
  max-width: 570px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  color: rgba(248, 243, 234, 0.78);
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.45;
}

.char-pairing strong {
  color: var(--paper-light);
  font-weight: 600;
}

.pour-links {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  align-items: flex-start;
}

.pour-links .text-link {
  align-self: flex-start;
  margin-top: 0;
}

.live-preview {
  padding-top: clamp(64px, 6vw, 90px);
  padding-bottom: clamp(70px, 7vw, 100px);
}

.row-heading {
  grid-template-columns: 1fr 0.55fr;
}

.row-heading .eyebrow {
  grid-column: auto;
  margin-bottom: 22px;
}

.row-heading h2 {
  font-size: clamp(60px, 7vw, 112px);
}

.row-heading > div:last-child .text-link {
  margin-top: 27px;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.artist-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  color: white;
  background: var(--ink-soft);
}

.artist-card::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  content: "";
}

.artist-card img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
  transition: filter 240ms ease, transform 450ms ease;
}

.artist-card:hover img {
  filter: saturate(1);
  transform: scale(1.025);
}

.artist-card figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.artist-day {
  grid-column: 1 / -1;
  margin-bottom: 5px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.artist-name {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
}

.artist-time {
  padding-bottom: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.artist-grid-compact .artist-card {
  min-height: 360px;
}

.event-preview {
  min-height: 550px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  color: var(--paper-light);
  background: var(--ink);
}

.event-preview figure {
  overflow: hidden;
}

.event-preview img {
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.event-preview > div {
  padding: clamp(40px, 4vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-preview h2 {
  font-size: clamp(52px, 5vw, 76px);
}

.event-preview p:not(.eyebrow) {
  max-width: 480px;
  margin: 30px 0 36px;
  color: rgba(248, 243, 234, 0.72);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.42;
}

.event-preview .button {
  align-self: flex-start;
}

.closing-panel {
  padding-top: clamp(70px, 7vw, 100px);
  padding-bottom: clamp(80px, 8vw, 110px);
}

.closing-panel h2 {
  max-width: 1050px;
  font-size: clamp(58px, 6.5vw, 96px);
}

.closing-panel > p:not(.eyebrow) {
  margin-top: 35px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Menu landing */
.delivery-strip,
.delivery-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 32px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.delivery-strip > div,
.delivery-note > p {
  flex: 1 1 420px;
  min-width: 0;
}

.delivery-strip {
  margin-top: 32px;
}

.delivery-strip .eyebrow {
  margin-bottom: 10px;
  color: var(--red-dark);
}

.delivery-strip h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  text-wrap: balance;
}

.delivery-strip p:not(.eyebrow),
.delivery-note p {
  max-width: 680px;
  font-size: 14px;
  line-height: 1.65;
  text-wrap: pretty;
}

.delivery-strip p:not(.eyebrow) {
  margin-top: 12px;
}

.delivery-strip > a,
.delivery-note > a {
  flex: 0 0 auto;
  max-width: 100%;
}

.delivery-strip > .button:hover {
  color: var(--paper-light);
  background: var(--ink);
}

.delivery-note {
  margin-top: 28px;
  padding: 20px 24px;
}

.delivery-note > .text-link {
  min-height: 44px;
}

.menu-landing-page .delivery-note {
  margin-top: 16px;
  padding: 10px 20px;
  gap: 4px 24px;
}

.menu-feature-list {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.delivery-strip + .menu-feature-list,
.delivery-note + .menu-feature-list {
  margin-top: 24px;
}

.menu-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.menu-card-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.menu-card-image figure {
  height: clamp(200px, 18vw, 220px);
  overflow: hidden;
}

.menu-card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.menu-card-image:hover img {
  transform: scale(1.025);
}

.menu-card-index {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--paper-light);
  background: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.menu-card-copy {
  padding: clamp(24px, 2.5vw, 32px);
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.menu-card-copy > .eyebrow {
  margin-bottom: 12px;
  line-height: 1.5;
}

.menu-card-copy h2 {
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 1.08;
  text-wrap: balance;
}

.menu-card-copy h2 a {
  text-decoration: none;
}

.menu-card-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.45;
}

.menu-card-links {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
}

.menu-card-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.signature-panel {
  margin-top: clamp(100px, 12vw, 170px);
  padding: clamp(55px, 7vw, 100px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 140px);
  color: var(--paper-light);
  background: var(--red-dark);
}

.signature-panel h2 {
  font-size: clamp(58px, 6vw, 94px);
}

.signature-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.signature-panel li {
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 23px);
}

.signature-dish-link {
  width: 100%;
  min-height: 44px;
  padding: 15px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 25px;
  text-decoration: none;
}

.signature-dish-link span {
  min-width: 0;
}

.signature-panel b {
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.menu-landing-note {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-size: 11px;
}

.menu-landing-note p {
  max-width: 700px;
}

/* Menu detail */
.menu-detail-page .page-shell {
  width: var(--page-narrow);
  padding-top: clamp(32px, 4vw, 56px);
}

.menu-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.menu-detail-page .menu-intro .page-intro {
  display: block;
  padding: 0;
  border: 0;
}

.menu-detail-page .menu-intro .page-intro h1 {
  font-size: clamp(44px, 4.7vw, 70px);
}

.menu-detail-page .menu-intro .page-intro-copy {
  max-width: 600px;
  margin-top: 18px;
  padding: 0;
}

.menu-intro .service-note {
  margin-top: 16px;
  padding-top: 12px;
}

.menu-page .menu-jump-links {
  margin-top: 16px;
}

.menu-page .delivery-note {
  margin-top: 16px;
  padding: 12px 20px;
  gap: 8px 24px;
}

.menu-switcher {
  position: sticky;
  z-index: 20;
  top: var(--header-height);
  margin: 0 -24px;
  padding: 13px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  gap: 10px;
  background: rgba(238, 231, 218, 0.96);
  backdrop-filter: blur(12px);
}

.menu-switcher a {
  padding: 8px 16px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-switcher a:hover,
.menu-switcher a[aria-current="page"] {
  border-color: var(--ink);
  background: var(--paper-light);
}

.menu-detail-feature {
  min-width: 0;
  width: 100%;
  margin: 0;
}

.menu-detail-photo {
  display: block;
  height: clamp(250px, 22vw, 280px);
  overflow: hidden;
}

.menu-detail-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--menu-photo-position, 50% 50%);
}

.menu-detail-feature figcaption {
  padding-top: 8px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
}

.menu-content {
  max-width: 1050px;
  margin: 28px auto 0;
  columns: 2 390px;
  column-gap: 90px;
}

.menu-section {
  margin: 65px 0 22px;
  padding-bottom: 13px;
  border-bottom: 3px solid var(--ink);
  break-after: avoid;
  column-span: all;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.18em;
}

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

.menu-subsection {
  margin: 30px 0 16px;
  break-after: avoid;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-item {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
}

.menu-line {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.menu-detail,
.menu-note {
  margin-top: 5px;
  color: rgba(23, 23, 19, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.menu-note {
  margin-bottom: 12px;
  font-style: italic;
}

.legal-note {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 3px solid var(--ink);
  break-inside: avoid;
  column-span: all;
  font-size: 11px;
}

.legal-note p + p {
  margin-top: 5px;
}

.menu-end-actions {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  break-inside: avoid;
  column-span: all;
}

/* Live */
.live-page-shell {
  background: var(--ink);
}

.live-hero {
  min-height: 580px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  color: var(--paper-light);
}

.live-hero > div {
  padding: clamp(55px, 5vw, 80px) max(48px, calc((100vw - 1420px) / 2));
  padding-right: clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.live-hero .page-intro {
  display: block;
  padding: 0;
  border: 0;
}

.live-hero .page-intro h1 {
  max-width: 800px;
  font-size: clamp(56px, 5.5vw, 88px);
}

.live-hero .page-intro-copy {
  max-width: 580px;
  margin-top: 26px;
}

.live-hero .service-note {
  border-color: var(--line-light);
}

.live-hero > figure {
  overflow: hidden;
}

.live-hero > figure img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.7) contrast(1.06);
}

.music-modes {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: var(--paper-light);
}

.music-modes article {
  position: relative;
  min-height: 360px;
  padding: clamp(28px, 3.5vw, 55px);
  border: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
}

.music-modes article + article {
  border-left: 0;
  background: var(--red-dark);
}

.music-modes article > span {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(248, 243, 234, 0.42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.music-modes h2 {
  max-width: 560px;
  margin-top: clamp(28px, 2.5vw, 40px);
  font-size: clamp(44px, 4.3vw, 66px);
}

.music-modes article > p:last-child {
  max-width: 520px;
  margin-top: 25px;
  color: rgba(248, 243, 234, 0.72);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.48;
}

.lineup-section {
  padding-top: clamp(55px, 6vw, 90px);
  padding-bottom: clamp(60px, 7vw, 100px);
  color: var(--paper-light);
}

.lineup-title {
  margin-bottom: 45px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.lineup-title p:last-child {
  max-width: 440px;
  color: rgba(248, 243, 234, 0.6);
  font-size: 14px;
}

.live-night-cta {
  padding: clamp(65px, 6vw, 95px) max(48px, calc((100vw - 1180px) / 2));
  color: var(--paper-light);
  background: var(--red-dark);
}

.live-night-cta h2 {
  font-size: clamp(54px, 6vw, 90px);
}

.live-night-cta > p:not(.eyebrow) {
  max-width: 490px;
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.4;
}

/* Chef */
.chef-feature {
  margin-top: clamp(75px, 10vw, 145px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(50px, 9vw, 135px);
  align-items: center;
}

.chef-images {
  position: relative;
  min-height: 700px;
}

.chef-images figure:first-child {
  position: absolute;
  inset: 0 19% 15% 0;
}

.chef-images figure:first-child img {
  height: 100%;
  object-fit: cover;
}

.chef-images figure:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  border: 9px solid var(--paper);
}

.chef-images figure:last-child img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.chef-feature article h2 {
  font-size: clamp(55px, 6.4vw, 102px);
}

.chef-feature article > p:not(.eyebrow) {
  margin-top: 27px;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
}

.chef-feature blockquote {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: var(--red-dark);
  font-size: clamp(29px, 3vw, 45px);
  line-height: 1.1;
}

.food-principles {
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.food-principles > div {
  min-height: 285px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.food-principles span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.food-principles h3 {
  margin-top: clamp(72px, 8.5vw, 112px);
  font-size: 55px;
}

.food-principles p {
  max-width: 300px;
  margin-top: 12px;
  font-size: 12px;
}

.char-feature {
  margin-top: 120px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  color: var(--paper-light);
  background: var(--ink);
}

.char-feature figure {
  min-height: 650px;
  overflow: hidden;
}

.char-feature figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.char-feature article {
  padding: clamp(60px, 8vw, 115px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.char-feature h2 {
  font-size: clamp(55px, 6vw, 96px);
}

.char-feature article > p:not(.eyebrow, .char-service) {
  max-width: 610px;
  margin-top: 30px;
  color: rgba(248, 243, 234, 0.76);
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.45;
}

.char-service {
  max-width: 610px;
  margin-top: 32px;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
  color: rgba(248, 243, 234, 0.68);
  font-size: 12px;
  line-height: 1.6;
}

.char-service strong {
  display: block;
  margin-bottom: 5px;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}

.char-feature .actions {
  margin-top: 36px;
}

.weekend-callout {
  margin-top: 120px;
  padding: clamp(50px, 7vw, 95px);
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 60px;
  color: var(--paper-light);
  background: var(--ink);
}

.weekend-callout h2 {
  max-width: 700px;
  font-size: clamp(55px, 6vw, 95px);
}

.weekend-callout > div > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 25px;
  color: rgba(248, 243, 234, 0.7);
  font-family: var(--serif);
  font-size: 20px;
}

.weekend-callout figure {
  grid-row: span 2;
}

.weekend-callout figure img {
  height: 100%;
  min-height: 370px;
  object-fit: cover;
}

.weekend-callout .actions {
  align-self: end;
}

/* Bar */
.bar-page {
  background: var(--ink);
}

.bar-hero {
  min-height: calc(100svh - 111px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  color: var(--paper-light);
}

.bar-hero > figure {
  overflow: hidden;
}

.bar-hero > figure img {
  height: 100%;
  object-fit: cover;
}

.bar-hero > div {
  padding: clamp(70px, 9vw, 150px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bar-hero h1 {
  font-size: clamp(66px, 8vw, 128px);
}

.bar-hero > div > p:not(.eyebrow, .service-note) {
  max-width: 650px;
  margin-top: 34px;
  color: rgba(248, 243, 234, 0.75);
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 27px);
  line-height: 1.4;
}

.bar-hero .service-note {
  max-width: 540px;
  border-color: var(--line-light);
}

.bar-notes {
  padding-top: 130px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--paper-light);
}

.bar-notes > div {
  min-height: 400px;
  padding: 30px;
  border: 1px solid var(--line-light);
  border-right: 0;
  display: flex;
  flex-direction: column;
}

.bar-notes > div:last-child {
  border-right: 1px solid var(--line-light);
}

.bar-notes > div > span {
  color: rgba(248, 243, 234, 0.42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.bar-notes .eyebrow {
  margin-top: auto;
  margin-bottom: 14px;
  color: var(--red);
}

.bar-notes h2 {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1;
}

.bar-notes p:last-child {
  margin-top: 20px;
  color: rgba(248, 243, 234, 0.6);
  font-size: 12px;
}

.afternoon-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--ink);
  background: var(--paper);
}

.afternoon-detail .pour-art {
  min-height: 650px;
}

.afternoon-detail > div:last-child {
  padding: clamp(65px, 8vw, 125px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.afternoon-detail h2 {
  font-size: clamp(62px, 7vw, 112px);
}

.afternoon-detail .promotion-terms {
  color: rgba(23, 23, 19, 0.65);
}

.afternoon-detail .char-pairing {
  border-color: var(--line);
  color: rgba(23, 23, 19, 0.72);
}

.afternoon-detail .char-pairing strong {
  color: var(--ink);
}

.afternoon-detail .pour-times {
  border-color: var(--line);
}

.afternoon-detail .pour-times span {
  border-color: var(--line);
}

/* Events */
.event-page {
  background: var(--paper-light);
}

.event-hero {
  min-height: calc(100svh - 111px);
  display: grid;
  grid-template-columns: var(--event-hero-columns, 1.15fr 0.85fr);
  color: var(--paper-light);
  background: var(--ink);
}

.event-hero > figure {
  overflow: hidden;
}

.event-hero > figure img {
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  opacity: 0.86;
}

.event-hero > div {
  padding: var(--event-hero-padding, clamp(70px, 8vw, 130px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-hero h1 {
  font-size: var(--event-hero-title-size, clamp(68px, 8vw, 132px));
}

.event-hero > div > p:not(.eyebrow) {
  max-width: 570px;
  margin: 34px 0 38px;
  color: rgba(248, 243, 234, 0.72);
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.4;
}

.event-hero .button {
  align-self: flex-start;
}

.event-options {
  padding-top: clamp(100px, 12vw, 170px);
  padding-bottom: clamp(100px, 12vw, 170px);
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(50px, 10vw, 150px);
}

.event-options header h2 {
  font-size: clamp(58px, 6vw, 96px);
}

.event-options > div {
  border-top: 1px solid var(--line);
}

.event-options article {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 45px 0.55fr 1fr;
  gap: 20px;
  align-items: baseline;
}

.event-options article span {
  font-size: 9px;
  font-weight: 800;
}

.event-options article h3 {
  font-size: clamp(32px, 3vw, 46px);
}

.event-options article p {
  font-size: 12px;
}

.event-credentials {
  margin-bottom: clamp(90px, 10vw, 145px);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  background: var(--paper);
}

.event-credentials-copy {
  padding: clamp(55px, 7vw, 95px);
  color: var(--paper-light);
  background: var(--ink);
}

.event-credentials-copy .eyebrow {
  color: var(--red);
}

.event-credentials-copy h2 {
  font-size: clamp(48px, 5.2vw, 82px);
}

.event-credentials-copy > p:last-child {
  max-width: 650px;
  margin-top: 30px;
  color: rgba(248, 243, 234, 0.74);
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.48;
}

.event-capability-list {
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.event-capability-list li {
  min-height: 190px;
  padding: 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.event-capability-list li:nth-child(2n) {
  border-right: 0;
}

.event-capability-list li:nth-child(n + 3) {
  border-bottom: 0;
}

.event-capability-list span {
  color: var(--red-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.event-capability-list strong {
  margin-top: auto;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.12;
}

.enquiry-guide {
  margin-bottom: 150px;
  padding: clamp(55px, 7vw, 100px);
  color: var(--paper-light);
  background: var(--red-dark);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px 100px;
}

.enquiry-guide h2 {
  font-size: clamp(50px, 5vw, 82px);
}

.enquiry-guide ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.enquiry-guide li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 24px);
}

.enquiry-guide li span {
  display: inline-block;
  width: 42px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
}

.enquiry-action {
  grid-column: 2;
}

.enquiry-action p {
  margin-bottom: 25px;
  color: rgba(248, 243, 234, 0.68);
}

/* Acoustic design */
.acoustic-note {
  margin-bottom: clamp(80px, 9vw, 130px);
  padding-top: clamp(40px, 5vw, 65px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(35px, 7vw, 100px);
  align-items: start;
}

.acoustic-note h2 {
  max-width: 650px;
  font-size: clamp(44px, 4.7vw, 72px);
  text-wrap: balance;
}

.acoustic-note > div > p,
.story-acoustics article > p:not(.eyebrow) {
  max-width: 580px;
  font-size: 17px;
  line-height: 1.65;
}

.acoustic-note .text-link,
.story-acoustics .text-link {
  margin-top: 28px;
}

.acoustic-note-live {
  color: var(--paper-light);
  border-color: var(--line-light);
}

.acoustic-note-live > div > p {
  color: rgba(248, 243, 234, 0.78);
}

.story-acoustics {
  margin-top: clamp(80px, 10vw, 130px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(35px, 6vw, 90px);
  align-items: start;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.story-acoustics h2 {
  font-size: clamp(44px, 5vw, 76px);
  text-wrap: balance;
}

.story-acoustics article > p:not(.eyebrow) {
  margin-top: 24px;
}

.story-acoustics figcaption {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.5;
}

.lang-zh .acoustic-note h2,
.lang-zh .story-acoustics h2 {
  font-size: clamp(36px, 4.3vw, 62px);
}

/* Acoustic illustrations and consultant report details */
.acoustic-illustration {
  scroll-margin-top: calc(var(--header-height) + 24px);
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.acoustic-illustration-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.acoustic-illustration-panel {
  padding: 10px clamp(16px, 2.3vw, 32px);
}

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

.acoustic-illustration-panel h3 {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0;
}

.acoustic-illustration-panel h3 > span {
  color: var(--red-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.acoustic-illustration-panel > img {
  height: auto;
  max-height: 110px;
  margin: 8px 0;
  object-fit: contain;
}

.acoustic-illustration-panel > p {
  font-size: 12px;
  line-height: 1.5;
}

.acoustic-layer-key {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.acoustic-layer-key li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11px;
  line-height: 1.45;
}

.acoustic-layer-key li > span {
  display: grid;
  flex: 0 0 20px;
  height: 20px;
  place-items: center;
  color: var(--paper-light);
  background: var(--ink);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.story-acoustics .acoustic-illustration > figcaption {
  margin-top: 0;
  padding: 10px 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
}

.acoustic-report-intro {
  scroll-margin-top: calc(var(--header-height) + 24px);
  margin-top: 60px;
}

.acoustic-report-intro h3 {
  margin-top: 18px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.15;
  text-wrap: balance;
}

.acoustic-report-intro > p:last-child {
  max-width: 720px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.7;
}

.acoustic-report-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 28px;
  margin-top: 32px;
}

.acoustic-report-figure {
  min-width: 0;
}

.acoustic-report-wide {
  grid-column: 1 / -1;
}

.acoustic-report-link {
  display: block;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
}

.acoustic-report-link:hover,
.acoustic-report-link:focus-visible {
  border-color: var(--red-dark);
}

.acoustic-report-image {
  display: grid;
  place-items: center;
  padding: 20px;
}

.acoustic-report-image img {
  height: 390px;
  object-fit: contain;
}

.acoustic-report-wide .acoustic-report-image img {
  height: auto;
}

.acoustic-enlarge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 48px;
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  background: var(--paper-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.acoustic-enlarge > span {
  font-size: 18px;
}

.acoustic-report-figure figcaption {
  margin-top: 20px;
}

.acoustic-report-page {
  color: var(--red-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.acoustic-report-figure h4 {
  margin: 10px 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
}

.acoustic-report-figure figcaption > p:last-child {
  max-width: 720px;
  font-size: 14px;
  line-height: 1.7;
}

/* Acoustic design detail */
.acoustic-breadcrumb {
  margin-bottom: 42px;
  font-size: 11px;
  line-height: 1.6;
}

.acoustic-breadcrumb ol {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
}

.acoustic-breadcrumb li + li::before {
  content: "/";
  margin-right: 16px;
  color: var(--red-dark);
}

.acoustic-detail .page-intro h1 {
  font-size: clamp(54px, 6.8vw, 104px);
}

.lang-zh .acoustic-detail .page-intro h1 {
  font-size: clamp(46px, 6.2vw, 86px);
}

.acoustic-jump {
  margin-top: 32px;
}

.acoustic-intention {
  margin-top: clamp(75px, 9vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.acoustic-detail h2 {
  font-size: clamp(40px, 4.5vw, 68px);
  text-wrap: balance;
}

.lang-zh .acoustic-detail h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.acoustic-intention article > p:not(.eyebrow),
.acoustic-section-intro {
  max-width: 720px;
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.7;
}

.acoustic-intention figure {
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
}

.acoustic-intention figcaption {
  margin-top: 14px;
  font-size: 12px;
}

.acoustic-section {
  margin-top: clamp(80px, 10vw, 130px);
  padding-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--line);
}

.acoustic-treatment-grid,
.acoustic-stage-grid {
  display: grid;
  gap: 32px;
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
}

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

.acoustic-stage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.acoustic-treatment-grid article {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
}

.acoustic-stage-grid li {
  padding-top: 28px;
  border-top: 2px solid var(--red-dark);
}

.acoustic-step {
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.acoustic-treatment-grid h3,
.acoustic-stage-grid h3 {
  margin-top: 26px;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.12;
  text-wrap: balance;
}

.acoustic-treatment-grid p,
.acoustic-stage-grid p {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.7;
}

.acoustic-results {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.acoustic-chart {
  margin-top: 40px;
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.acoustic-chart h3,
.acoustic-specifications h3 {
  font-size: 30px;
  line-height: 1.2;
}

.acoustic-chart figcaption p {
  max-width: 800px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.65;
}

.acoustic-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 700;
}

.acoustic-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.acoustic-legend i {
  width: 28px;
  height: 10px;
}

.acoustic-chart .original {
  background: var(--ink-soft);
}

.acoustic-chart .optimised {
  background: repeating-linear-gradient(135deg, transparent 0 6px, rgba(248, 243, 234, 0.3) 6px 8px), var(--red-dark);
}

.acoustic-scale {
  margin-top: 18px;
  font-size: 12px;
}

.acoustic-chart-rows {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.acoustic-chart-rows li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.acoustic-frequency {
  font-size: 15px;
  font-weight: 700;
}

.acoustic-frequency small,
.acoustic-bar small {
  font-size: 11px;
  font-weight: 400;
}

.acoustic-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 14px;
  align-items: center;
  min-height: 26px;
}

.acoustic-bar-track {
  height: 12px;
  background: var(--paper-deep);
}

.acoustic-bar-fill {
  display: block;
  height: 100%;
}

.acoustic-bar strong {
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

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

.acoustic-specifications {
  margin-top: 24px;
  border: 1px solid var(--line);
}

.acoustic-specifications summary {
  padding: 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.acoustic-specifications summary::marker {
  color: var(--red-dark);
}

.acoustic-specifications[open] summary {
  border-bottom: 1px solid var(--line);
}

.acoustic-specifications-body {
  padding: clamp(20px, 4vw, 44px);
}

.acoustic-specifications dl {
  margin: 28px 0 36px;
  font-size: 14px;
}

.acoustic-specifications dl > div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
}

.acoustic-specifications dt {
  font-weight: 700;
}

.acoustic-specifications dd {
  margin: 0;
}

.acoustic-table-scroll {
  max-width: 100%;
  overflow-x: auto;
}

.acoustic-table-scroll table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.acoustic-table-scroll caption {
  margin-bottom: 16px;
  text-align: left;
  font-weight: 700;
}

.acoustic-table-scroll th,
.acoustic-table-scroll td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.acoustic-table-scroll thead th {
  max-width: 180px;
  vertical-align: bottom;
}

.acoustic-table-scroll td:last-child {
  background: var(--paper-deep);
  font-weight: 700;
}

.acoustic-source {
  margin-top: 36px;
  padding-left: 22px;
  border-left: 2px solid var(--red-dark);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.7;
}

.acoustic-source p + p {
  margin-top: 10px;
}

.acoustic-detail-close .quiet-link {
  display: inline-block;
  margin-top: 32px;
}

/* Story */
.story-page {
  --story-gap: clamp(56px, 6vw, 88px);
}

.story-page .page-shell {
  padding: clamp(48px, 6vw, 80px) 0 0;
}

.story-page .page-intro {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 48px;
}

.story-page .page-intro h1 {
  font-size: clamp(56px, 7vw, 104px);
  text-wrap: balance;
}

.story-page.lang-zh .page-intro h1 {
  font-size: clamp(40px, 6vw, 76px);
}

.story-page .page-intro-copy {
  padding-bottom: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
}

.story-page .page-intro-copy p + p {
  margin-top: 20px;
}

.story-manifesto {
  margin-top: var(--story-gap);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.story-manifesto > figure {
  height: clamp(280px, 30vw, 400px);
  min-width: 0;
}

.story-manifesto figure img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.story-manifesto h2 {
  font-size: clamp(40px, 4.6vw, 66px);
  text-wrap: balance;
}

.story-manifesto > div > p:not(.eyebrow) {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
}

.story-page .story-acoustics {
  margin-top: var(--story-gap);
}

.story-pillars {
  margin-top: var(--story-gap);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-pillars article {
  min-width: 0;
  border: 1px solid var(--line);
  border-right: 0;
  background: var(--paper-light);
  display: flex;
  flex-direction: column;
}

.story-pillars article:last-child {
  border-right: 1px solid var(--line);
}

.story-pillar-image {
  flex: 0 0 auto;
  height: 220px;
}

.story-pillar-image picture {
  display: block;
  height: 100%;
}

.story-pillar-image img {
  height: 100%;
  object-fit: cover;
}

.story-pillar-food img {
  object-position: 50% 65%;
}

.story-pillar-bar img {
  object-position: 35% 50%;
}

.story-pillar-music img {
  object-position: 50% 34%;
}

.story-pillar-copy {
  flex: 1;
  padding: clamp(20px, 2.3vw, 30px);
  display: flex;
  flex-direction: column;
}

.story-pillar-copy > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-pillars h2 {
  margin-top: 18px;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1.05;
}

.story-pillars p {
  margin: 18px 0 24px;
  font-size: 14px;
  line-height: 1.65;
}

.story-pillars .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.press-feature {
  margin-top: var(--story-gap);
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.press-feature h2 {
  font-size: clamp(36px, 4vw, 56px);
}

.press-feature article {
  min-width: 0;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.press-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.press-feature article > p {
  max-width: 650px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.press-feature .text-link {
  margin-top: 24px;
}

.story-close {
  margin-top: var(--story-gap);
  padding: clamp(48px, 6vw, 80px) max(24px, calc((100% - 1180px) / 2));
  color: var(--paper-light);
  background: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: center;
}

.story-close h2 {
  font-size: clamp(48px, 6vw, 84px);
}

.story-close-action > p {
  max-width: 460px;
  font-size: 17px;
  line-height: 1.65;
}

.story-close .actions {
  margin-top: 24px;
  gap: 20px;
}

/* Visit */
.visit-grid {
  margin-top: 95px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.visit-card,
.hours-card {
  min-height: 520px;
  padding: clamp(40px, 6vw, 78px);
}

.visit-card {
  border-right: 1px solid var(--line);
}

.visit-card address {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(29px, 3.5vw, 52px);
  font-style: normal;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.parking-note {
  margin-top: 45px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.hours-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-family: var(--serif);
  font-size: 18px;
}

.hours-list strong {
  font-weight: 600;
}

.visit-reserve {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  color: var(--paper-light);
  background: var(--ink);
}

.visit-reserve figure img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.visit-reserve > div {
  padding: clamp(50px, 7vw, 95px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-reserve h2 {
  font-size: clamp(55px, 6vw, 92px);
}

.visit-reserve > div > p:not(.eyebrow) {
  margin: 25px 0 32px;
  color: rgba(248, 243, 234, 0.66);
  font-family: var(--serif);
  font-size: 19px;
}

.visit-reserve .button {
  align-self: flex-start;
}

.reservation-confirmation-note {
  max-width: 56ch;
  margin-top: 14px;
  color: rgba(35, 31, 26, 0.64);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.55;
}

.reservation-confirmation-note-dark,
.live-night-cta > .reservation-confirmation-note,
.visit-reserve > div > .reservation-confirmation-note {
  margin: 14px 0 0;
  color: rgba(248, 243, 234, 0.68);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.55;
}

.menu-reservation-confirmation {
  column-span: all;
}

/* Footer and motion */
.site-footer {
  padding: 75px max(24px, calc((100vw - 1420px) / 2)) 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.7fr 0.7fr;
  gap: 50px;
  color: var(--paper-light);
  background: var(--ink);
}

.footer-brand > a {
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 78px);
  font-weight: 700;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.footer-brand p {
  max-width: 290px;
  margin-top: 14px;
  color: rgba(248, 243, 234, 0.55);
  font-family: var(--serif);
}

.footer-label {
  margin-bottom: 18px;
  color: rgba(248, 243, 234, 0.45);
}

.footer-address address {
  margin-bottom: 15px;
  font-style: normal;
}

.footer-address,
.footer-links {
  font-size: 12px;
  line-height: 1.65;
}

.footer-address > a {
  color: var(--paper-light);
}

.footer-links a {
  display: block;
  width: fit-content;
  color: var(--paper-light);
  text-decoration: none;
}

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

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  color: rgba(248, 243, 234, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-actions {
  display: none;
}

.can-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2, .7, .2, 1);
}

.can-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Browsing shortcuts and the homepage CHAR feature */
.rhythms-section .section-heading {
  display: block;
  margin-bottom: 32px;
}

.rhythms-section .section-heading .eyebrow {
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 10px;
}

.rhythms-section .section-heading h2,
.home-page .row-heading h2 {
  font-size: clamp(46px, 5vw, 72px);
}

.home-page .row-heading {
  margin-bottom: 40px;
  gap: 40px 70px;
}

.home-pour {
  min-height: 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.home-char-photo {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.home-char-photo img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 50% 65%;
}

.home-pour .pour-copy {
  padding: clamp(40px, 4.5vw, 70px);
}

.home-pour .pour-copy h2 {
  font-size: clamp(46px, 4.3vw, 66px);
}

.home-pour .pour-copy h2 em {
  color: var(--paper-light);
}

.home-pour .pour-times {
  margin: 26px 0 20px;
}

.home-pour .promotion-terms {
  font-size: 14px;
}

.home-pour .char-pairing {
  margin-top: 20px;
  font-size: 20px;
}

.menu-landing-page .page-shell {
  padding-top: clamp(48px, 5vw, 80px);
}

.menu-landing-page .page-intro,
.menu-detail-page .page-intro {
  padding-bottom: 36px;
  gap: 32px 50px;
}

.menu-landing-page .page-intro h1,
.menu-detail-page .page-intro h1 {
  font-size: clamp(48px, 5.5vw, 84px);
}

.menu-landing-page .page-intro-copy,
.menu-detail-page .page-intro-copy {
  font-size: 21px;
}

.menu-quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.menu-quick-links a {
  min-width: 0;
  min-height: 56px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
}

.menu-quick-links a:hover,
.menu-quick-links a:focus-visible {
  color: var(--paper-light);
  background: var(--ink);
}

.menu-jump-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
  margin-top: 24px;
}

.menu-jump-links > span {
  margin-right: 4px;
  font-size: 13px;
}

.menu-jump-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.menu-section,
.menu-subsection[id],
.menu-item[id] {
  scroll-margin-top: calc(var(--header-height) + 90px);
}

.lineup-section {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.lineup-title h2 {
  font-size: clamp(38px, 4vw, 56px);
}

.lineup-jump {
  margin-top: 28px;
}

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

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

@media (max-width: 1100px) {
  :root {
    --page: min(100% - 36px, 1420px);
    --page-narrow: min(100% - 36px, 1180px);
  }

  .topline span:nth-child(3) {
    display: none;
  }

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

  .hero-copy-block {
    padding-left: 32px;
    padding-right: 32px;
  }

  .now-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .now-strip > div:nth-child(2) {
    border-right: 0;
  }

  .now-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .rhythm-card {
    min-height: 210px;
  }

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

  .food-story {
    gap: 55px;
  }

  .site-footer {
    grid-template-columns: 1.2fr 1fr 0.75fr;
  }

  .site-footer > .footer-links:nth-of-type(2) {
    display: none;
  }
}

@media (max-width: 1000px) {
  :root {
    --header-height: 70px;
  }

  body {
    padding-bottom: 61px;
  }

  .topline {
    justify-content: space-between;
    gap: 10px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .topline span:not(:first-child)::before {
    margin-right: 12px;
  }

  .topline span:nth-child(2) {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 auto;
    height: calc(100svh - var(--header-height));
    padding: 45px 24px 100px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--paper-light);
    background: var(--ink);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transition: opacity 260ms ease, visibility 0s 260ms;
  }

  .site-nav[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }

  .site-nav > a:not(.header-reserve) {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
    letter-spacing: -0.025em;
    text-transform: none;
  }

  .site-nav > a:not(.header-reserve)::after {
    display: none;
  }

  .site-nav .language-switcher {
    padding: 17px 0;
    border-bottom: 1px solid var(--line-light);
    color: var(--paper-light);
    font-size: 14px;
  }

  .site-nav .header-reserve {
    margin-top: 30px;
    min-height: 52px;
    color: white;
    border-color: var(--red);
    background: var(--red);
  }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: 61px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: var(--ink);
  }

  .mobile-actions a {
    min-width: 0;
    display: grid;
    place-items: center;
    color: var(--paper-light);
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
  }

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

  .mobile-actions .is-primary {
    background: var(--red);
  }
}

@media (max-width: 900px) {
  .experience-hero,
  .bar-hero,
  .event-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy-block {
    min-height: 650px;
    padding: 80px 24px;
    justify-content: flex-start;
  }

  .hero-copy-block > .eyebrow {
    max-width: calc(100% - 150px);
    margin-bottom: 50px;
  }

  .bar-hero > div,
  .event-hero > div {
    min-height: 600px;
    padding: 80px 24px;
  }

  .hero-stamp {
    top: 24px;
    right: 24px;
    left: auto;
  }

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

  .bar-hero > figure,
  .event-hero > figure {
    min-height: 620px;
    order: 2;
  }

  .page-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-intro-copy {
    max-width: 650px;
  }

  .menu-intro {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: 24px;
  }

  .story-page .page-intro,
  .story-close {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-pillar-image {
    height: clamp(200px, 45vw, 320px);
  }

  .story-pillars article + article {
    border-top: 0;
  }

  .section-heading,
  .row-heading,
  .food-story,
  .event-preview,
  .live-hero,
  .chef-feature,
  .char-feature,
  .story-manifesto,
  .story-acoustics,
  .acoustic-intention,
  .acoustic-stage-grid,
  .acoustic-note,
  .press-feature {
    grid-template-columns: 1fr;
  }

  .acoustic-illustration-panel > img {
    max-height: 190px;
  }

  .section-heading .eyebrow {
    margin-bottom: -5px;
  }

  .food-story {
    gap: 70px;
  }

  .food-collage {
    min-height: 850px;
  }

  .story-copy {
    max-width: 650px;
  }

  .press-feature article {
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pour-section,
  .afternoon-detail {
    grid-template-columns: 1fr;
  }

  .pour-art,
  .afternoon-detail .pour-art {
    min-height: 590px;
  }

  .event-preview figure {
    min-height: 550px;
  }

  .event-preview > div {
    min-height: 560px;
  }

  .signature-panel,
  .event-options,
  .event-credentials,
  .enquiry-guide {
    grid-template-columns: 1fr;
  }

  .event-capability-list {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .enquiry-action {
    grid-column: auto;
  }

  .live-hero > div {
    min-height: 630px;
    padding: 80px 24px;
  }

  .live-hero > figure {
    min-height: 500px;
  }

  .chef-images {
    min-height: 760px;
  }

  .char-feature figure {
    min-height: 620px;
  }

  .bar-notes,
  .food-principles,
  .story-pillars,
  .music-modes {
    grid-template-columns: 1fr;
  }

  .music-modes article + article {
    border-top: 0;
    border-left: 1px solid var(--line-light);
  }

  .bar-notes > div,
  .food-principles > div,
  .story-pillars article {
    min-height: 260px;
    border-right: 1px solid var(--line-light);
  }

  .food-principles > div,
  .story-pillars article {
    border-color: var(--line);
  }

  .weekend-callout,
  .visit-grid,
  .visit-reserve {
    grid-template-columns: 1fr;
  }

  .weekend-callout figure {
    grid-row: auto;
    order: 2;
  }

  .visit-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100% - 28px);
    --page-narrow: calc(100% - 28px);
  }

  .topline {
    font-size: 8px;
  }

  .topline span:nth-child(4)::before {
    display: none;
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .brand small {
    display: none;
  }

  .brand span {
    font-size: 27px;
  }

  .hero-copy-block {
    min-height: auto;
    padding: 80px 18px 65px;
    justify-content: flex-start;
  }

  .hero-copy-block > .eyebrow {
    margin-bottom: 22px;
  }

  .bar-hero > div,
  .event-hero > div {
    min-height: 520px;
    padding: 65px 18px;
  }

  .hero-copy-block h1,
  .bar-hero h1,
  .event-hero h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .lang-zh .hero-copy-block h1,
  .lang-zh .bar-hero h1,
  .lang-zh .event-hero h1 {
    font-size: clamp(46px, 13vw, 64px);
  }

  .lang-zh .page-intro h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .hero-lead {
    font-size: 19px;
  }

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

  .hero-pour {
    right: 14px;
    bottom: 18px;
    width: 58%;
    border-width: 6px;
  }

  .hero-stamp {
    top: 18px;
    right: 18px;
    left: auto;
    width: 86px;
    height: 86px;
  }

  .now-strip {
    grid-template-columns: 1fr 1fr;
  }

  .now-strip > div {
    min-height: 165px;
    padding: 30px 17px;
  }

  .now-strip p:last-child {
    font-size: 14px;
  }

  .rhythms-section,
  .live-preview {
    padding-top: 60px;
    padding-bottom: 65px;
  }

  .section-heading {
    display: block;
    margin-bottom: 45px;
  }

  .section-heading h2,
  .row-heading h2 {
    font-size: 52px;
  }

  .section-heading > p,
  .row-heading > div:last-child {
    margin-top: 25px;
    font-size: 18px;
  }

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

  .rhythm-card {
    min-height: 175px;
    padding: 18px 14px;
  }

  .rhythm-card h3 {
    font-size: clamp(30px, 8.5vw, 38px);
  }

  .chef-images {
    min-height: 560px;
  }

  .food-collage {
    min-height: 0;
    display: grid;
    gap: 14px;
  }

  .food-tall,
  .food-wide {
    position: static;
    width: 100%;
  }

  .food-tall {
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }

  .food-tall img {
    object-position: 50% 50%;
  }

  .food-wide {
    border: 0;
    box-shadow: none;
  }

  .story-copy h2,
  .pour-copy h2,
  .event-preview h2,
  .live-night-cta h2,
  .afternoon-detail h2 {
    font-size: 55px;
  }

  .pour-art,
  .afternoon-detail .pour-art {
    min-height: 430px;
  }

  .pour-art span {
    font-size: 210px;
  }

  .pour-art i {
    width: 100px;
    height: 100px;
    font-size: 48px;
  }

  .pour-copy,
  .afternoon-detail > div:last-child,
  .event-preview > div {
    min-height: auto;
    padding: 70px 20px;
  }

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

  .artist-card,
  .artist-grid-compact .artist-card {
    min-height: 490px;
  }

  .event-preview figure {
    min-height: 400px;
  }

  .closing-panel {
    padding-top: 65px;
    padding-bottom: 75px;
  }

  .closing-panel h2 {
    font-size: 58px;
  }

  .page-shell {
    padding-top: 75px;
    padding-bottom: 105px;
  }

  .page-intro {
    padding-bottom: 58px;
  }

  .page-intro h1,
  .live-hero .page-intro h1 {
    font-size: 57px;
  }

  .page-intro-copy {
    font-size: 19px;
  }

  .menu-feature-list {
    margin-top: 24px;
    grid-template-columns: 1fr;
  }

  .menu-landing-page .delivery-note {
    padding: 10px 16px;
  }

  .menu-card-image figure {
    height: clamp(160px, 44vw, 180px);
  }

  .menu-card,
  .menu-card:nth-child(even) {
    gap: 0;
  }

  .menu-card-copy h2 {
    font-size: clamp(34px, 9.5vw, 42px);
  }

  .menu-card-copy {
    padding: 22px 20px;
  }

  .signature-panel {
    margin-top: 80px;
    padding: 45px 22px;
  }

  .signature-panel h2 {
    font-size: 52px;
  }

  .signature-panel li {
    font-size: 16px;
  }

  .menu-landing-note,
  .menu-end-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-switcher {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .menu-switcher a {
    flex: 0 0 auto;
  }

  .menu-content {
    margin-top: 28px;
    columns: 1;
  }

  .menu-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding-bottom: 20px;
  }

  .menu-detail-page .menu-intro .page-intro h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .menu-detail-page .menu-intro .page-intro-copy {
    margin-top: 14px;
  }

  .menu-intro .service-note {
    margin-top: 12px;
    padding-top: 10px;
  }

  .menu-detail-photo {
    height: clamp(180px, 52vw, 220px);
  }

  .menu-section {
    margin-top: 52px;
  }

  .live-hero > div {
    min-height: 540px;
    padding: 70px 18px;
  }

  .live-hero > figure {
    min-height: 340px;
  }

  .music-modes {
    padding-top: 70px;
  }

  .music-modes article {
    min-height: 340px;
    padding: 32px 22px;
  }

  .music-modes h2 {
    font-size: 48px;
  }

  .lineup-title {
    display: block;
  }

  .lineup-title p:last-child {
    margin-top: 18px;
  }

  .live-night-cta {
    padding: 75px 20px;
  }

  .chef-feature {
    margin-top: 70px;
  }

  .char-feature {
    margin-top: 75px;
  }

  .char-feature figure {
    min-height: 430px;
  }

  .char-feature article {
    padding: 60px 20px;
  }

  .chef-feature article h2,
  .char-feature h2,
  .weekend-callout h2,
  .event-options header h2,
  .enquiry-guide h2 {
    font-size: 52px;
  }

  .lang-zh .pour-copy h2,
  .lang-zh .afternoon-detail h2,
  .lang-zh .char-feature h2 {
    font-size: 44px;
  }

  .pour-links {
    flex-direction: column;
  }

  .food-principles {
    margin-top: 75px;
  }

  .weekend-callout {
    margin-top: 75px;
    padding: 50px 20px;
  }

  .event-options article {
    grid-template-columns: 32px 1fr;
  }

  .event-options article p {
    grid-column: 2;
  }

  .event-credentials {
    margin-bottom: 75px;
  }

  .event-credentials-copy {
    padding: 55px 20px;
  }

  .event-credentials-copy h2 {
    font-size: 48px;
  }

  .lang-zh .event-credentials-copy h2 {
    font-size: 44px;
  }

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

  .event-capability-list li,
  .event-capability-list li:nth-child(2n),
  .event-capability-list li:nth-child(n + 3) {
    min-height: 135px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .event-capability-list li:last-child {
    border-bottom: 0;
  }

  .enquiry-guide {
    margin-bottom: 90px;
    padding: 50px 22px;
  }

  .acoustic-detail h2 {
    font-size: 40px;
  }

  .lang-zh .acoustic-detail h2 {
    font-size: 32px;
  }

  .acoustic-report-gallery,
  .acoustic-treatment-grid,
  .acoustic-specifications dl > div {
    grid-template-columns: 1fr;
  }

  .acoustic-specifications dl > div {
    gap: 8px;
  }

  .acoustic-report-image {
    padding: 12px;
  }

  .acoustic-report-image img {
    height: auto;
    max-height: 390px;
  }

  .acoustic-chart {
    padding: 24px 16px;
  }

  .acoustic-chart-rows li {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
  }

  .acoustic-bar {
    grid-template-columns: minmax(0, 1fr) 51px;
    gap: 8px;
  }

  .acoustic-note h2,
  .story-acoustics h2 {
    font-size: 42px;
  }

  .lang-zh .acoustic-note h2,
  .lang-zh .story-acoustics h2 {
    font-size: 36px;
  }

  .story-page .page-intro {
    padding-bottom: 36px;
    gap: 28px;
  }

  .story-page .page-intro h1 {
    font-size: 48px;
  }

  .story-page.lang-zh .page-intro h1 {
    font-size: 40px;
  }

  .story-page .page-intro-copy,
  .story-manifesto > div > p:not(.eyebrow) {
    font-size: 16px;
  }

  .story-manifesto h2 {
    font-size: 40px;
  }

  .press-feature {
    padding: 32px 0;
    gap: 28px;
  }

  .press-feature h2 {
    font-size: 38px;
  }

  .press-meta {
    flex-direction: column;
    gap: 8px;
  }

  .story-close {
    padding: 48px 14px;
    gap: 28px;
  }

  .story-close h2 {
    font-size: 48px;
  }

  .visit-grid {
    margin-top: 65px;
  }

  .visit-card,
  .hours-card {
    min-height: auto;
    padding: 45px 22px;
  }

  .visit-card address {
    font-size: 31px;
  }

  .hours-list li {
    font-size: 15px;
  }

  .visit-reserve {
    margin-top: 70px;
  }

  .visit-reserve figure img {
    min-height: 310px;
  }

  .site-footer {
    padding: 65px 20px 35px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 5px;
  }

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

  .actions .button {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .hero-copy-block {
    min-height: 0;
    padding-bottom: 60px;
  }

  .hero-copy-block > .eyebrow {
    margin-bottom: 32px;
  }

  .home-pour {
    grid-template-columns: 1fr;
  }

  .home-char-photo {
    min-height: 0;
    height: clamp(320px, 60vw, 520px);
  }

  .home-pour .pour-copy {
    padding: 44px 24px;
  }

  .event-preview > div {
    min-height: 0;
  }

  .live-hero > div {
    min-height: 0;
    padding: 60px 24px;
  }
}

@media (max-width: 640px) {
  .hero-copy-block h1 {
    font-size: clamp(48px, 13vw, 62px);
  }

  .lang-zh .hero-copy-block h1 {
    font-size: clamp(40px, 11vw, 54px);
  }

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

  .home-pour .pour-copy {
    padding: 38px 20px;
  }

  .home-pour .pour-copy h2 {
    font-size: clamp(38px, 10.5vw, 48px);
  }

  .lang-zh .home-pour .pour-copy h2 {
    font-size: clamp(30px, 8.3vw, 40px);
  }

  .home-pour .char-pairing {
    font-size: 18px;
  }

  .home-page .row-heading h2,
  .rhythms-section .section-heading h2 {
    font-size: 42px;
  }

  .artist-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .artist-grid-compact .artist-card {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .artist-grid-compact .artist-card figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .artist-grid-compact .artist-name {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .menu-quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .menu-landing-page .page-intro h1,
  .menu-detail-page .page-intro h1 {
    font-size: 46px;
  }

  .menu-landing-page .page-intro-copy,
  .menu-detail-page .page-intro-copy {
    font-size: 19px;
  }

  .menu-jump-links {
    gap: 2px 6px;
  }

  .menu-jump-links > span {
    width: 100%;
  }

  .live-hero .page-intro h1 {
    font-size: 48px;
  }

  .lang-zh .live-hero .page-intro h1 {
    font-size: 44px;
  }
}

/* A local context link on Visit pages. */
.park-context { margin-top: clamp(44px, 7vw, 90px); padding-top: clamp(28px, 4vw, 48px); border-top: 1px solid var(--line); max-width: 850px; }
.park-context h2 { font-family: var(--serif); font-size: clamp(28px, 3.2vw, 42px); font-weight: 400; letter-spacing: -.025em; line-height: 1.2; }
.park-context > p:not(.eyebrow) { margin: 20px 0; max-width: 720px; color: var(--ink-soft); }
.park-context .text-link { display: inline-block; }

}
/* Current visual system. Legacy component structure is isolated in the foundation layer. */
:root {
  --page: min(100% - 80px, 1360px);
  --page-narrow: min(100% - 80px, 1180px);
  --header-height: 80px;
  --section-space: 64px;
  --group-space: 24px;
  --muted: #545149;
}

body { font-size: 16px; line-height: 1.6; }
main { overflow: clip; }
h1, h2, h3 { font-family: var(--sans); font-weight: 400; line-height: 1.15; letter-spacing: -0.025em; }
h1, h2 { font-size: clamp(28px, 2.8vw, 40px); }
h3 { font-size: 22px; }
h1 em, h2 em { color: inherit; font: inherit; letter-spacing: inherit; }
main p, .site-footer p { font-family: var(--sans); font-size: 16px; line-height: 1.6; }
main .eyebrow, .kicker, .footer-label { font-family: var(--sans); font-size: 13px; font-weight: 400; line-height: 1.5; letter-spacing: 0.06em; }
.eyebrow { margin-bottom: 16px; }
.lang-zh h1, .lang-zh h2, .lang-zh h3 { line-height: 1.35; }
.lang-zh :is(h1, h2, h3, p, a, small, span, button, blockquote) { letter-spacing: 0; }
.lang-zh .hero-title-line { white-space: normal; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; box-shadow: 0 0 0 2px var(--paper-light); }
.page-shell { padding-block: var(--section-space); }
.page-intro { gap: 24px 48px; padding-bottom: 40px; }
.page-intro-copy { font-family: var(--sans); font-size: 17px; line-height: 1.6; }
.page-intro-copy p + p { margin-top: 16px; }
.service-note, .parking-note { font-family: var(--sans); font-size: 16px; font-weight: 400; line-height: 1.6; letter-spacing: 0; text-transform: none; opacity: 1; }
.section-heading { margin-bottom: 24px; }
.row-heading { gap: 24px 48px; margin-bottom: 24px; }
.actions { gap: 16px; margin-top: 24px; }
.button, .header-reserve { min-height: 46px; padding: 12px 20px; font-size: 13px; font-weight: 500; line-height: 1.5; letter-spacing: 0.05em; }
.button::after { margin-left: 16px; }
.button.dark, .button.primary, .button.accent, .header-reserve { color: var(--paper-light); background: var(--ink); border: 1px solid var(--ink); }
.button.light { color: var(--ink); background: transparent; border: 1px solid var(--ink); }
.button:hover, .header-reserve:hover { color: var(--paper-light); background: var(--ink-soft); border-color: var(--ink-soft); }
.text-link, .quiet-link { display: inline-flex; align-items: center; min-height: 44px; font-family: var(--sans); font-size: 14px; font-weight: 400; line-height: 1.5; letter-spacing: 0; text-transform: none; }
.text-link { border: 0; text-decoration: underline; text-underline-offset: 6px; }
.text-link:hover, .quiet-link:hover { text-decoration-thickness: 2px; }
.site-nav { gap: clamp(14px, 1.5vw, 24px); }
.site-nav > a { font-family: var(--sans); font-size: 13px; font-weight: 400; letter-spacing: 0.045em; min-height: 44px; display: inline-flex; align-items: center; }
.site-nav > a:not(.header-reserve) { color: var(--ink); }
.site-nav > a[aria-current="page"] { text-decoration: underline; text-underline-offset: 7px; }
.site-nav > a:not(.header-reserve)::after { display: none; }
.site-nav > .header-reserve { padding: 12px 18px; }
.language-switcher { gap: 10px; font-size: 13px; font-weight: 400; }
.language-switcher a { display: inline-flex; align-items: center; min-height: 44px; opacity: 1; }
.language-switcher a[aria-current="page"] { text-decoration: underline; text-underline-offset: 5px; }
.language-switcher span { opacity: 0.4; }
.brand { flex-shrink: 0; align-items: flex-end; min-height: 44px; padding-block: 6px; }
.brand-logo { width: 152px; height: auto; flex-shrink: 0; filter: brightness(0); }
.brand small { font-weight: 500; line-height: 1; letter-spacing: 0.1em; }
.header-tools { display: none; }
.menu-button { min-width: 60px; min-height: 44px; font-size: 13px; font-weight: 400; letter-spacing: 0.05em; }

/* An expressive invitation, grounded in real service and a daylight dining room. */
.experience-hero { --hero-accent: #ee7657; grid-template-columns: minmax(0, 9fr) minmax(0, 11fr); min-height: 680px; color: var(--paper-light); background: var(--ink); }
.hero-copy-block { display: flex; flex-direction: column; justify-content: center; padding: 36px clamp(32px, 3.6vw, 56px); }
.hero-stamp { position: static; align-self: flex-start; width: auto; height: auto; display: flex; align-items: center; gap: 12px; margin: 0 0 24px; padding: 0; border: 0; color: var(--paper-light); background: none; border-radius: 0; transform: none; font-family: var(--sans); font-size: 12px; font-weight: 400; line-height: 1; letter-spacing: 0.08em; }
.hero-stamp-arrow { display: block; flex: none; width: 16px; height: 12px; fill: none; stroke: var(--hero-accent); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.hero-stamp span { font-size: inherit; }
.hero-copy-block .eyebrow { max-width: none; margin: 0 0 20px; color: #d5cec1; }
.hero-copy-block h1 { max-width: 13ch; margin: 0; font-family: var(--serif); font-size: clamp(48px, 4.5vw, 64px); font-weight: 400; line-height: 1.04; letter-spacing: -0.035em; text-wrap: balance; }
.hero-title-line { display: block; white-space: normal; }
.hero-copy-block h1 em { display: block; margin-top: 8px; color: var(--hero-accent); font-style: italic; }
.hero-lead { max-width: 43ch; margin-top: 24px; color: #d5cec1; opacity: 1; }
.hero-lead strong { display: block; margin-bottom: 6px; color: var(--paper-light); font-weight: 500; }
.hero-copy-block .actions { flex-wrap: wrap; gap: 12px; }
.hero-copy-block .button { padding-inline: 16px; }
.hero-copy-block .button.dark { background: var(--hero-accent); border-color: var(--hero-accent); color: var(--ink); }
.hero-copy-block .button.light { border-color: #a7a194; color: var(--paper-light); }
.hero-copy-block .button.dark:hover { background: #fa967b; border-color: #fa967b; }
.hero-copy-block .button.light:hover { background: var(--paper-light); border-color: var(--paper-light); color: var(--ink); }
.hero-place { margin-top: 24px; color: #c0b9ac; font-size: 13px; font-weight: 400; line-height: 1.6; letter-spacing: 0; text-transform: none; opacity: 1; }
.hero-visual { min-height: 680px; }
.hero-room { inset: 0; margin: 0; }
.hero-room img { object-position: 50% 46%; }
.hero-room::after, .hero-visual::after { display: none; }
.home-page :is(.home-menus, .live-preview, .closing-panel) h2 { font-family: var(--serif); }
.now-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); padding-inline: max(40px, calc((100vw - 1360px) / 2)); }
.now-strip > div { min-height: 0; padding: 24px; }
.now-strip > div:first-child { padding-left: 0; }
.now-strip .kicker { margin-bottom: 12px; }
.now-strip p:not(.kicker) { font-family: var(--sans); font-size: 16px; line-height: 1.6; }
.home-menus { padding-block: var(--section-space); }
.home-menus .section-heading { display: block; }
.home-menu-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.home-menu-card { min-width: 0; color: var(--ink); text-decoration: none; }
.home-menu-card figure { height: 220px; overflow: hidden; }
.home-menu-card img { height: 100%; object-fit: cover; transition: transform 220ms ease; }
.home-menu-card:first-child img { object-position: 50% 55%; }
.home-menu-card:nth-child(2) img { object-position: 50% 24%; }
.home-menu-card:nth-child(3) img { object-position: 50% 58%; }
.responsive-photo { display: block; width: 100%; height: 100%; }
.menu-photo-contain .menu-detail-photo { background: #292927; }
.menu-photo-contain img { object-fit: contain; object-position: center; }
.home-menu-card:hover img { transform: scale(1.025); }
.home-menu-card h3 { display: flex; justify-content: space-between; gap: 12px; margin-top: 16px; font-size: 18px; font-weight: 500; line-height: 1.4; letter-spacing: 0; }
.home-menu-card h3 span { font-size: 18px; font-weight: 400; }
.home-menu-card p { margin-top: 8px; font-size: 16px; }
.home-pour { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); color: var(--paper-light); background: var(--ink); }
.home-char-photo { min-height: 480px; }
.home-char-photo { background: #24272a; }
.home-char-photo img { object-fit: cover; object-position: 50% 65%; }
.home-pour .pour-copy { padding: 48px clamp(32px, 4vw, 64px); }
.home-pour .pour-copy h2 { font-family: var(--sans); font-size: clamp(28px, 2.8vw, 40px); line-height: 1.2; }
.home-pour .pour-times { margin: 24px 0 16px; gap: 12px; }
.pour-times span { font-family: var(--sans); font-size: 18px; font-weight: 500; line-height: 1.5; }
.home-pour .promotion-terms, .promotion-terms { max-width: 60ch; font-size: 16px; line-height: 1.6; color: inherit; opacity: 1; }
.home-pour .char-pairing, .char-pairing { margin-top: 16px; font-size: 16px; font-family: var(--sans); line-height: 1.6; }
.char-pairing strong { font-weight: 500; }
.pour-links { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 16px; }
.home-chef { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 64px; padding-block: var(--section-space); }
.home-chef > figure { width: 100%; max-width: 315px; justify-self: center; }
.home-chef img { width: 100%; height: auto; object-fit: contain; }
.home-chef h2 { font-family: var(--serif); font-size: 40px; }
.home-chef p:not(.eyebrow) { max-width: 48ch; margin: 24px 0 16px; }
.home-chef-links { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.live-preview { padding: 0 0 var(--section-space); }
.artist-grid { gap: 24px; }
.artist-grid-compact .artist-card img { height: 280px; aspect-ratio: auto; object-fit: cover; }
.artist-card figcaption { padding: 16px 0; border-bottom: 1px solid var(--line); }
.artist-day, .artist-time { font-family: var(--sans); font-size: 16px; font-weight: 400; letter-spacing: 0; }
.artist-name { font-family: var(--sans); font-size: 18px; font-weight: 500; }
.home-discover { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); align-items: center; gap: 24px 48px; padding-block: 32px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.home-evening-photo { grid-row: span 2; min-width: 0; }
.home-evening-photo img { height: 360px; object-fit: cover; object-position: 50% 64%; }
.home-evening-photo figcaption { margin-top: 12px; font-size: 13px; line-height: 1.5; color: var(--muted); }
.home-discover h2 { font-size: 28px; }
.home-discover p { max-width: 52ch; margin: 16px 0 8px; }
.closing-panel { padding-block: var(--section-space); text-align: left; }
.closing-panel h2 { font-size: 40px; }
.closing-panel > p { margin: 24px 0 0; }
.closing-panel .actions { justify-content: flex-start; }

/* Menu browsing: readable prices and a compact introduction. */
.menu-landing-page .page-shell, .menu-detail-page .page-shell { padding-top: 32px; }
.menu-landing-page .page-intro { padding-bottom: 24px; gap: 24px; }
.menu-landing-page .page-intro h1, .menu-detail-page .menu-intro .page-intro h1 { font-size: 40px; }
.menu-landing-page .page-intro-copy, .menu-detail-page .page-intro-copy { font-family: var(--sans); font-size: 16px; }
.menu-quick-links { gap: 16px; margin-top: 0; }
.menu-quick-links a { min-height: 48px; font-size: 16px; font-weight: 400; }
.menu-feature-list { gap: 40px 24px; margin-top: 32px; }
.menu-card-image, .menu-card-image figure { height: 240px; min-height: 0; }
.menu-card-image[href$="/menu/food-menu"] img { object-position: 50% 65%; }
.menu-card-image[href$="/menu/weekend-brunch"] img { object-position: 50% 82%; }
.menu-card-image[href$="/menu/drinks"] img { object-position: 50% 53%; }
.menu-card-image[href$="/menu/dessert"] img { object-position: 50% 65%; }
.menu-card-copy { padding-top: 16px; }
.menu-card-copy h2 { font-size: 28px; }
.menu-card-copy .eyebrow { font-size: 16px; text-transform: none; letter-spacing: 0; margin-bottom: 12px; }
.menu-card-links { margin-top: 12px; gap: 16px; }
.menu-card-copy > p:not(.eyebrow) { margin-top: 12px; }
.menu-intro { gap: 24px 48px; grid-template-columns: minmax(0, 1fr) minmax(280px, 380px); padding-bottom: 16px; }
.menu-detail-page .menu-intro .page-intro-copy { margin-top: 16px; }
.menu-detail-page .menu-intro .page-intro { padding: 0; }
.menu-detail-photo { height: 220px; }
.menu-detail-feature figcaption { font-size: 13px; line-height: 1.5; padding-top: 8px; }
.menu-intro .service-note { padding-top: 0; border: 0; }
.menu-switcher { gap: 8px; margin-inline: 0; padding: 8px 0; top: var(--header-height); }
.menu-switcher a { display: flex; align-items: center; justify-content: center; min-height: 44px; padding: 8px 16px; font-size: 14px; font-weight: 400; letter-spacing: 0.04em; }
.menu-jump-links { gap: 4px 16px; padding: 8px 0; }
.menu-jump-links a, .menu-jump-links > span { font-size: 14px; font-weight: 400; line-height: 1.5; }
.menu-jump-links a { display: inline-flex; align-items: center; min-height: 44px; }
.menu-content { margin-top: 24px; column-gap: 48px; }
.menu-section { margin: 40px 0 12px; padding-bottom: 12px; border-bottom-width: 1px; font-size: 18px; font-weight: 500; line-height: 1.4; letter-spacing: 0.04em; }
.menu-section:first-child { margin-top: 0; }
.menu-subsection { margin: 24px 0 8px; font-size: 16px; font-weight: 500; line-height: 1.5; letter-spacing: 0.04em; }
.menu-item { padding: 16px 0; }
.menu-line { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; font-family: var(--sans); font-size: 17px; font-weight: 500; line-height: 1.5; }
.menu-name { min-width: 0; }
.menu-price { flex-shrink: 0; text-align: right; font-variant-numeric: tabular-nums; }
.menu-price-detailed { flex-shrink: 1; max-width: 55%; }
.menu-separator { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.menu-detail, .menu-note { font-size: 16px; line-height: 1.6; color: var(--muted); font-style: normal; }
.menu-note { margin-bottom: 8px; }
.menu-promotion { column-span: all; margin-bottom: 24px; padding: 16px 20px; background: var(--paper-light); border: 1px solid var(--line); }
.menu-promotion .menu-section { border: 0; padding: 0; margin: 0 0 8px; }
.menu-promotion .menu-item { padding: 0; border: 0; }
.menu-promotion .menu-note, .menu-promotion .menu-detail { margin: 4px 0 0; color: var(--ink); }
.menu-promotion-windows { display: flex; flex-wrap: wrap; gap: 4px 24px; }
.menu-promotion-windows p { font-weight: 500; }
.legal-note { margin-top: 40px; padding-top: 16px; border-top-width: 1px; font-size: 16px; }
.menu-content > .delivery-note { column-span: all; margin-top: 24px; }
.delivery-note p { font-size: 16px; }
.signature-panel { padding-block: 40px; margin-top: 40px; border-top-width: 1px; }
.signature-panel h2 { font-size: 32px; }
.signature-dish-link { font-family: var(--sans); font-size: 17px; font-weight: 500; }

/* Shared inner pages retain their stories, images and business information. */
.chef-story, .char-feature, .chef-principles, .food-highlights, .lineup-section, .music-modes, .acoustic-note, .event-formats, .enquiry-guide, .story-pillars, .press-feature, .visit-grid { margin-top: 0; padding-block: var(--section-space); }
.chef-story article p, .char-feature article p, .event-hero-copy p, .story-manifesto p, .story-pillars p, .visit-reserve p { font-family: var(--sans); font-size: 17px; line-height: 1.6; }
.chef-images { min-height: 0; }
.chef-images figure:only-child { position: relative; inset: auto; width: 81%; margin-inline: auto; border: 0; }
.chef-images figure:only-child img { height: auto; aspect-ratio: auto 1107 / 1660; object-fit: contain; object-position: center; }
.char-feature figure { min-height: 0; aspect-ratio: 3 / 2; align-self: center; }
.char-feature figure img { object-fit: contain; object-position: center; }
.char-feature-kitchen figure { width: 100%; max-width: 520px; aspect-ratio: 4 / 5; justify-self: center; }
.char-feature-kitchen figure img { object-fit: cover; object-position: 50% 80%; filter: brightness(1.12); }
.weekend-callout figure img { object-position: 50% 62%; }
.bar-hero > figure img { object-position: 50% 78%; }
.bar-hero .button.light { color: var(--paper-light); border-color: var(--paper-light); }

/* Phoebe photography: complete scenes sit beside the existing page content. */
.story-design-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; min-width: 0; height: clamp(280px, 30vw, 400px); }
.story-design-photos figure { min-width: 0; height: 100%; overflow: hidden; }
.story-design-photos figure img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.story-design-photos figure:first-child img { object-position: 50% 28%; }

/* Keep the acoustic overview compact beside the story and on small screens. */
.story-acoustics .acoustic-illustration { width: 100%; max-width: 400px; justify-self: center; }
.acoustic-illustration-header { gap: 12px; padding: 8px 16px; }
.acoustic-illustration-panel { padding: 8px 16px; }
.acoustic-illustration-panel h3 { gap: 10px; font-size: 16px; line-height: 1.35; }
.acoustic-illustration-panel > img { display: block; width: 100%; height: 90px; max-height: 90px; margin: 6px 0; object-fit: contain; }
.acoustic-illustration-panel > p { font-size: 13px; line-height: 1.45; }
.acoustic-layer-key { gap: 8px; }
.acoustic-layer-key li { gap: 6px; font-size: 12px; line-height: 1.4; }
.acoustic-layer-key li > span { flex-basis: 18px; height: 18px; }
.story-acoustics .acoustic-illustration > figcaption { padding: 8px 16px; font-size: 11px; line-height: 1.4; }
@media (min-width: 901px) {
  .story-acoustics .acoustic-illustration-panel > img { height: 75px; max-height: 75px; }
  .story-page .press-feature { margin-top: 20px; }
}
@media (max-width: 640px) {
  .acoustic-layer-key { grid-template-columns: 1fr; gap: 4px; }
  .acoustic-layer-key li { align-items: center; }
}

.afternoon-detail { align-items: center; }
.afternoon-table-photo { aspect-ratio: 3 / 2; min-width: 0; overflow: hidden; }
.afternoon-table-photo img { height: 100%; object-fit: contain; }
.afternoon-detail > div:last-child { padding: 48px clamp(28px, 4vw, 64px); }
.afternoon-detail h2 { font-size: 40px; line-height: 1.2; }
.event-options { grid-template-columns: 1fr 1fr; gap: 24px 48px; padding-block: var(--section-space); }
.event-options header { grid-column: 2; }
.event-options > div { grid-column: 2; grid-row: 2; }
.event-options .event-table-photo { grid-column: 1; grid-row: 1 / span 2; aspect-ratio: 3 / 2; align-self: center; min-width: 0; background: #191a16; overflow: hidden; }
.event-table-photo img { height: 100%; object-fit: contain; }
@media (max-width: 900px) {
  .afternoon-detail { grid-template-columns: 1fr; }
  .afternoon-detail > div:last-child { padding: 32px 20px; }
  .afternoon-detail h2 { font-size: 30px; }
  .event-options { grid-template-columns: 1fr; gap: 24px; }
  .event-options header, .event-options > div, .event-options .event-table-photo { grid-column: 1; grid-row: auto; }
}
.story-pillar-food img { object-fit: cover; object-position: 50% 65%; }
.story-pillar-food { background: #24272a; }
.visit-reserve figure { align-self: center; }
.visit-reserve figure img { height: auto; min-height: 0; aspect-ratio: 1400 / 787; object-fit: contain; }
.chef-story blockquote, .story-manifesto blockquote { font-size: 28px; line-height: 1.4; }
.live-hero .page-intro, .bar-hero > div, .event-hero-copy { padding-block: 48px; }
.live-hero, .bar-hero, .event-hero { min-height: 0; }
.live-hero > figure, .bar-hero > figure { min-height: 480px; }
.music-modes article > span, .enquiry-guide li > span { font-size: 13px; font-weight: 400; }
.live-night-cta, .story-close { padding-block: var(--section-space); }
.visit-card address { font-family: var(--sans); font-size: 26px; line-height: 1.4; }
.hours-list li { font-family: var(--sans); font-size: 17px; }
.hours-list strong { font-weight: 500; }
.site-footer { padding-block: 48px 24px; }
.footer-brand > a { display: inline-flex; align-items: center; min-height: 44px; max-width: 100%; }
.footer-logo { width: 245px; max-width: 100%; height: auto; }
.footer-links { font-family: var(--sans); font-size: 16px; }
.footer-links a { min-height: 36px; display: flex; align-items: center; }
.footer-bottom { font-size: 12px; }

@media (max-width: 1150px) and (min-width: 1001px) {
  .brand small { display: none; }
  .site-nav { gap: 14px; }
}
@media (max-width: 1000px) {
  :root { --page: calc(100% - 48px); --page-narrow: calc(100% - 48px); --header-height: 70px; }
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
  /* Keep the compact header and its original white logo as one contrast pair. */
  .site-header { color: var(--paper-light); background: var(--ink); border-bottom-color: var(--line-light); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .brand, .menu-button { color: var(--paper-light); }
  .brand-logo { filter: none; }
  .header-tools { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
  .header-language { gap: 4px; color: inherit; font-size: 12px; letter-spacing: 0; }
  .header-language a { justify-content: center; min-width: 28px; padding: 8px 2px; }
  .header-tools .menu-button { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; min-width: 44px; min-height: 44px; padding: 4px 0 10px; line-height: 1; }
  .header-tools .menu-button i { margin-left: 0; }
  .site-nav > a { font-family: var(--sans); font-size: 18px; font-weight: 400; min-height: 48px; }
  .site-nav > a:not(.header-reserve) { color: var(--paper-light); }
  .site-nav > .header-reserve { background: var(--paper-light); color: var(--ink); border-color: var(--paper-light); }
  .site-nav { gap: 16px; padding: 32px 24px calc(96px + env(safe-area-inset-bottom)); }
  .site-nav .language-switcher { display: none; }
  .mobile-actions { height: calc(60px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); background: var(--paper-light); }
  .mobile-actions a { min-height: 60px; font-size: 12px; font-weight: 500; letter-spacing: 0.05em; color: var(--ink); }
  .mobile-actions a.is-primary { background: var(--ink); color: var(--paper-light); }
  .now-strip { padding-inline: 24px; grid-template-columns: 1fr 1fr; }
  .now-strip > div { padding: 20px 24px; }
  .now-strip > div:nth-child(odd) { padding-left: 0; }
  .home-menu-grid { gap: 24px 16px; grid-template-columns: 1fr 1fr; }
  .home-menu-card figure { height: 220px; }
}
@media (max-width: 900px) {
  .experience-hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy-block { padding: 40px 24px; }
  .hero-stamp { margin-bottom: 24px; }
  .hero-copy-block .eyebrow { margin-bottom: 16px; }
  .hero-copy-block h1 { font-size: 52px; }
  .hero-lead { max-width: 50ch; margin-top: 16px; }
  .hero-place { margin-top: 24px; }
  .hero-visual { min-height: 440px; }
  .home-pour { grid-template-columns: 1fr 1fr; }
  .home-pour .pour-copy { padding: 32px 24px; }
  .home-char-photo { min-height: 400px; }
  .home-chef { gap: 32px; }
  .home-discover { gap: 32px; }
  .menu-intro { grid-template-columns: 1fr 280px; gap: 24px; }
  .menu-switcher { top: var(--header-height); }
}
@media (max-width: 640px) {
  :root { --page: calc(100% - 40px); --page-narrow: calc(100% - 40px); --section-space: 40px; --group-space: 16px; }
  .brand { align-items: center; }
  .brand-logo, .footer-logo { width: 116px; }
  h1, h2 { font-size: 30px; }
  h3 { font-size: 22px; }
  .page-intro { padding-bottom: 24px; gap: 16px; }
  .hero-copy-block { padding: 28px 20px; }
  .hero-copy-block h1 { font-size: 38px; }
  .lang-zh .hero-copy-block h1 { max-width: 9em; font-size: 34px; }
  .hero-stamp { margin-bottom: 20px; }
  .hero-title-line { white-space: normal; }
  .hero-copy-block .eyebrow { font-size: 12px; }
  .hero-copy-block .actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-copy-block .button { padding-inline: 10px; font-size: 12px; white-space: normal; }
  .hero-copy-block .button::after { display: none; }
  .hero-place { font-size: 13px; }
  .hero-visual { min-height: 340px; }
  .hero-room img { object-position: 50% 42%; }
  .now-strip { padding-inline: 20px; }
  .now-strip > div { padding: 20px 0; border: 0; }
  .now-strip > div:nth-child(even) { padding-left: 16px; }
  .now-strip > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .now-strip p:not(.kicker) { font-size: 16px; }
  .home-menu-card figure { height: 160px; }
  .home-menu-card h3 { font-size: 17px; }
  .home-menu-card p { margin-top: 8px; }
  .home-pour { grid-template-columns: 1fr; }
  .home-char-photo { min-height: 260px; }
  .home-pour .pour-copy { padding: 32px 20px; }
  .home-pour .pour-copy h2 { font-size: 30px; }
  .pour-times span { font-size: 18px; }
  .home-chef { grid-template-columns: 1fr; gap: 24px; }
  .home-chef h2 { font-size: 32px; }
  .home-chef p:not(.eyebrow) { margin-block: 16px 8px; }
  .row-heading { gap: 16px; }
  .artist-grid { gap: 24px 16px; }
  .artist-grid-compact .artist-card img { height: 220px; }
  .artist-card figcaption { padding-block: 12px; }
  .artist-name { font-size: 18px; }
  .artist-day, .artist-time { font-size: 16px; }
  .home-discover { grid-template-columns: 1fr; gap: 32px; padding-block: 32px; }
  .home-evening-photo { grid-row: auto; }
  .home-evening-photo img { height: auto; aspect-ratio: 4 / 3; }
  .home-discover h2 { font-size: 26px; }
  .closing-panel h2 { font-size: 30px; }
  .menu-landing-page .page-shell { padding-top: 24px; }
  .menu-detail-page .page-shell { padding-top: 16px; }
  .menu-landing-page .page-intro h1, .menu-detail-page .menu-intro .page-intro h1 { font-size: 30px; }
  .menu-quick-links { gap: 12px; }
  .menu-quick-links a { min-height: 48px; font-size: 16px; }
  .menu-intro { grid-template-columns: 1fr; gap: 12px; padding-bottom: 12px; }
  .menu-intro .eyebrow { display: none; }
  .menu-detail-page .menu-intro .page-intro-copy { margin-top: 12px; }
  .menu-detail-page .menu-intro .page-intro-copy > p { margin-top: 0; }
  .menu-intro .service-note { margin-top: 8px; }
  .menu-detail-photo { height: 180px; }
  .menu-detail-feature figcaption { padding-top: 4px; font-size: 12px; }
  .menu-switcher { justify-content: space-between; gap: 0; margin-inline: -20px; padding: 0 12px; }
  .menu-switcher a { padding-inline: 12px; font-size: 13px; letter-spacing: 0; }
  .menu-jump-links { flex-wrap: nowrap; justify-content: flex-start; gap: 0 16px; overflow-x: auto; scrollbar-width: thin; padding-block: 4px; margin-top: 4px; }
  .menu-jump-links > span { display: none; }
  .menu-jump-links a { flex-shrink: 0; font-size: 14px; }
  .menu-content { columns: auto; margin-top: 4px; }
  .menu-section { margin-top: 32px; }
  .menu-line { font-size: 17px; gap: 12px; }
  .menu-price-detailed { flex: 1 0 100%; max-width: none; text-align: left; }
  .menu-line:has(.menu-price-detailed) { flex-wrap: wrap; gap: 4px; }
  .menu-promotion { padding: 12px 16px; margin-bottom: 8px; }
  .menu-promotion .menu-section { font-size: 13px; line-height: 1.5; }
  .menu-promotion-windows { gap: 4px 8px; }
  .menu-promotion + .menu-section { margin-top: 12px; padding-bottom: 8px; }
  .menu-promotion + .menu-section + .menu-subsection { margin-top: 8px; }
  .menu-card-image, .menu-card-image figure { height: 200px; }
  .menu-card-copy h2 { font-size: 26px; }
  .signature-panel h2 { font-size: 28px; }
  .live-hero .page-intro, .bar-hero > div, .event-hero-copy { padding-block: 32px; }
  .live-hero > figure, .bar-hero > figure { min-height: 340px; }
  .visit-card address { font-size: 24px; }
  .site-footer { padding-block: 40px 24px; }
}

/* Verified authority archive and clearer private-event formats. */
.press-links { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 18px; }
.press-links .text-link { margin-top: 0; }
.press-page .page-intro { margin-bottom: 0; }
.press-lead { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 84px); align-items: center; padding-block: var(--section-space); border-bottom: 1px solid var(--line); }
.press-lead > figure { min-width: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink); }
.press-lead > figure img { width: 100%; height: 100%; object-fit: cover; }
.press-lead > article { max-width: 620px; }
.press-byline { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; padding-block: 12px; border-block: 1px solid var(--line); font-family: var(--sans); font-size: 12px; line-height: 1.5; }
.press-lead h2 { margin-top: 24px; font-size: clamp(38px, 5vw, 68px); }
.press-lead article > p:not(.eyebrow):not(.press-topics) { margin-top: 20px; font-size: 17px; line-height: 1.65; }
.press-topics { margin-top: 20px; font-family: var(--sans); font-size: 13px; letter-spacing: .06em; }
.press-lead .button { margin-top: 26px; }
.press-facts { padding-block: var(--section-space); }
.press-facts > header { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 24px 48px; align-items: end; margin-bottom: 32px; }
.press-facts > header h2 { font-size: clamp(38px, 5vw, 68px); }
.press-fact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-block: 1px solid var(--line); }
.press-fact-grid article { min-width: 0; padding: 28px; }
.press-fact-grid article + article { border-left: 1px solid var(--line); }
.press-fact-grid span { font-family: var(--sans); font-size: 12px; }
.press-fact-grid h3 { margin-top: 28px; }
.press-fact-grid p { margin-top: 14px; font-size: 15px; line-height: 1.65; }
.press-contact { margin-bottom: var(--section-space); padding: clamp(36px, 5vw, 64px); display: grid; grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr); gap: 28px clamp(40px, 7vw, 100px); align-items: end; color: var(--paper-light); background: var(--ink); }
.press-contact h2 { font-size: clamp(38px, 4.5vw, 64px); }
.press-contact > div:last-child > p { max-width: 600px; color: rgba(248, 243, 234, .78); }
.event-formats { grid-column: 1 / -1; margin-top: 16px; padding: 28px 0 0; border-top: 1px solid var(--line); }
.event-formats > p:not(.eyebrow) { max-width: 820px; font-size: 16px; line-height: 1.65; }
.event-format-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; padding: 0; list-style: none; }
.event-format-list li { padding: 10px 14px; border: 1px solid var(--line); font-family: var(--sans); font-size: 13px; line-height: 1.4; }
.bar-search-note { max-width: 620px; margin-top: 18px; font-size: 16px; line-height: 1.65; }

@media (max-width: 900px) {
  .press-lead, .press-contact, .press-facts > header { grid-template-columns: 1fr; }
  .press-fact-grid { grid-template-columns: 1fr 1fr; }
  .press-fact-grid article:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid var(--line); border-left: 0; }
  .event-options .event-formats { grid-column: 1; }
}
@media (max-width: 640px) {
  .press-lead { gap: 26px; }
  .press-fact-grid { grid-template-columns: 1fr; }
  .press-fact-grid article + article, .press-fact-grid article:nth-child(3) { grid-column: auto; border-top: 1px solid var(--line); border-left: 0; }
  .press-contact { padding: 32px 20px; }
  .event-formats { padding-top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .can-reveal [data-reveal] { opacity: 1; transform: none; }
}

/* Weekly music leads; occasional events and the archive sit below it. */
.whats-on-hero { display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: var(--paper-light); }
.whats-on-intro { align-self: center; padding: 32px max(40px, calc((100vw - 1360px) / 2)); padding-right: 40px; }
.whats-on-intro .eyebrow { color: #c5beaf; }
.whats-on-intro h1 { font-family: var(--serif); font-size: clamp(36px, 3.8vw, 56px); line-height: 1.08; letter-spacing: -.025em; }
.whats-on-intro h1 em { color: #ee7657; font-style: italic; }
.whats-on-lead { max-width: 43ch; margin-top: 16px; color: #e1d9cc; }
.whats-on-intro .whats-on-rhythm { margin-top: 20px; font-size: 18px; color: var(--paper-light); }
.whats-on-hero-actions { flex-wrap: wrap; gap: 12px 24px; }
.whats-on-hero-actions .button { font-size: 14px; letter-spacing: 0; text-transform: none; }
.whats-on-hero-actions .button.dark { color: var(--ink); background: var(--paper-light); border-color: var(--paper-light); }
.whats-on-hero-actions .button.dark:hover { background: #ee7657; border-color: #ee7657; }
.whats-on-hero-actions .text-link { color: var(--paper-light); }
.whats-on-hero > figure { position: relative; min-width: 0; min-height: 360px; overflow: hidden; }
.whats-on-hero > figure > picture { position: absolute; inset: 0; }
.whats-on-hero img { height: 100%; object-fit: cover; object-position: 50% 45%; }
.whats-on-music { --muted: #c5beaf; --line: var(--line-light); background: var(--ink); color: var(--paper-light); }
.whats-on-jumps { display: flex; flex-wrap: wrap; column-gap: 36px; padding-block: 12px; border-bottom: 1px solid var(--line); }
.whats-on-jumps a { display: inline-flex; align-items: center; min-height: 44px; font-size: 14px; text-decoration: none; }
.whats-on-jumps a:hover { text-decoration: underline; text-underline-offset: 6px; }
.whats-on-jumps .weekly-jump { font-weight: 600; }
.whats-on-shell :is(section, details)[id] { scroll-margin-top: calc(var(--header-height) + 24px); }
.weekly-evenings { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding-top: 28px; }
.weekly-evenings > article { padding: 28px 32px; border: 1px solid var(--line-light); }
.weekly-evenings .eyebrow { margin-bottom: 16px; }
.weekly-evenings h2 { font-size: 30px; line-height: 1.2; }
.weekly-evenings h2 + p { margin-top: 16px; max-width: 52ch; color: #e1d9cc; }
.weekly-live-evening { background: var(--red-dark); }
.weekly-evenings .weekly-live-evening { border-left: 0; }
.special-events-section { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 16px 64px; padding-block: 36px 24px; align-items: start; }
.special-events-section > .special-events-eyebrow { grid-column: 1 / -1; margin: 0; }
.special-events-section h2 { font-size: 28px; }
.special-event-intro > p { margin-top: 16px; max-width: 56ch; }
.special-events-section .special-entry-note { max-width: 48ch; font-size: 14px; color: var(--muted); }
.special-event-enquiry { padding-left: 28px; border-left: 1px solid var(--line); }
.special-event-links { display: flex; flex-direction: column; align-items: flex-start; margin-top: 8px; }
.whats-on-weekly { padding-block: 36px 32px; }
.whats-on-section-heading { display: grid; grid-template-columns: 1.25fr 1fr; align-items: end; gap: 24px 80px; margin-bottom: 28px; }
.whats-on-section-heading > p { max-width: 48ch; color: var(--muted); }
.whats-on-weekly .whats-on-section-heading > p { font-size: 14px; max-width: 46ch; }
.schedule-updates { text-underline-offset: 4px; }
.schedule-updates:hover { text-decoration-thickness: 2px; }
.whats-on-weekly .artist-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
/* All four original posters are 1080 × 1440. Keep their lettering inside the card. */
.whats-on-weekly .artist-card { min-width: 0; min-height: 0; aspect-ratio: 3 / 4; }
.whats-on-weekly .artist-card > :is(img, picture) { position: absolute; inset: 0; width: 100%; height: 100%; }
.whats-on-weekly .artist-card img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: contain; filter: none; }
.whats-on-weekly .artist-card:hover img { transform: none; filter: none; }
.whats-on-weekly .artist-card::after { inset: 50% 0 0; background: linear-gradient(transparent, rgba(0, 0, 0, .25) 35%, rgba(0, 0, 0, .92)); }
.whats-on-weekly .artist-card figcaption { inset: auto 18px 18px; grid-template-columns: minmax(0, 1fr) auto; gap: 6px 12px; padding: 0; border: 0; }
.whats-on-weekly .artist-day { margin: 0; font-size: 13px; line-height: 1.4; }
.whats-on-weekly .artist-name { font-size: 18px; line-height: 1.35; }
.whats-on-weekly .artist-time { padding: 0; font-size: 14px; line-height: 1.5; white-space: nowrap; }
.weekly-footnote { display: flex; align-items: center; justify-content: space-between; gap: 12px 32px; margin-top: 12px; }
.weekly-footnote p { font-size: 14px; color: var(--muted); }
.weekly-footnote .text-link { flex-shrink: 0; }
.past-events-section { padding-block: 24px 36px; border-top: 1px solid var(--line); }
.past-events-section h2 { font-size: 28px; }
.past-events-heading { margin-bottom: 20px; }
.past-events-heading > p { max-width: 60ch; margin-top: 12px; color: var(--muted); }
.event-archive-list { border-top: 1px solid var(--line); }
.past-event { border-bottom: 1px solid var(--line); }
.past-event summary { display: grid; grid-template-columns: minmax(110px, .7fr) minmax(0, 3fr) auto; align-items: center; gap: 24px; padding: 18px 0; cursor: pointer; list-style: none; }
.past-event summary::-webkit-details-marker { display: none; }
.past-event summary::marker { content: ''; }
.past-event summary:hover .past-event-title { text-decoration: underline; text-underline-offset: 6px; }
.past-event summary:focus-visible { outline-offset: -2px; }
.past-event time { align-self: start; padding-top: 4px; font-size: 16px; }
.past-event-name { display: grid; gap: 6px; min-width: 0; }
.past-event-kind { color: var(--muted); font-size: 14px; }
.past-event-title { font-size: 22px; line-height: 1.4; }
.past-event-artist { color: var(--muted); font-size: 16px; }
.past-event-action { display: inline-flex; align-items: center; gap: 20px; font-size: 14px; }
.event-plus { font-size: 28px; line-height: 1; font-weight: 300; }
.past-event[open] .event-plus { transform: rotate(45deg); }
.past-event-details { padding: 0 24px 28px calc((100% - 130px) * .7 / 3.7 + 24px); max-width: 1080px; }
.past-event-details p + p { margin-top: 16px; }
.past-event-details .event-ended { color: var(--muted); font-size: 14px; }
.past-event-details dl { margin: 24px 0 12px; }
.past-event-details dl > div { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 12px 24px; margin-top: 16px; }
.past-event-details dt { font-size: 14px; color: var(--muted); }
.past-event-details dd { font-size: 16px; margin: 0; }
.more-past-events > summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 52px; padding-block: 12px; font-size: 14px; list-style: none; cursor: pointer; }
.more-past-events > summary::-webkit-details-marker { display: none; }
.more-past-events > summary::marker { content: ''; }
.more-past-events > summary:hover { text-decoration: underline; text-underline-offset: 5px; }
.more-past-events > summary > span { font-size: 24px; line-height: 1; }
.more-past-events[open] > summary > span { transform: rotate(45deg); }
.more-past-events[open] > div { border-top: 1px solid var(--line); }
.whats-on-dining-band { background: var(--red-dark); color: var(--paper-light); }
.whats-on-dining { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 32px 64px; padding-block: 40px; }
.whats-on-dining > div > p:not(.eyebrow) { max-width: 57ch; margin-top: 16px; }
.whats-on-dining .eyebrow { color: #e1d9cc; }
.whats-on-dining .actions { flex-wrap: wrap; gap: 12px 24px; }
.whats-on-dining .button { font-size: 14px; letter-spacing: 0; text-transform: none; }
.whats-on-dining .button.dark { color: var(--ink); background: var(--paper-light); border-color: var(--paper-light); }
.whats-on-dining .button.dark:hover { background: var(--paper-deep); border-color: var(--paper-deep); }
.whats-on-dining .reservation-confirmation-note { font-size: 14px; color: #e1d9cc; }
.whats-on-private { border-left: 1px solid var(--line-light); padding-left: 32px; }
.whats-on-private > p { margin-top: 16px; }
.whats-on-private > .text-link { margin-top: 12px; }
.whats-on-acoustics { display: flex; width: fit-content; }
.lang-zh .whats-on-intro h1 { font-family: var(--sans); font-size: clamp(32px, 3.2vw, 48px); line-height: 1.4; }
.lang-zh .whats-on-intro h1 em { font-style: normal; }
@media (max-width: 1000px) {
  .whats-on-intro { padding: 32px; }
  .whats-on-hero > figure { min-height: 360px; }
  .special-events-section, .whats-on-section-heading, .whats-on-dining { column-gap: 32px; }
  .weekly-evenings > article { padding: 24px; }
  .whats-on-weekly .artist-card figcaption { inset: auto 14px 14px; gap: 6px 8px; }
  .whats-on-weekly .artist-name { font-size: 16px; }
  .whats-on-weekly .artist-time { font-size: 13px; }
}
@media (max-width: 900px) {
  .whats-on-weekly .artist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .whats-on-hero { grid-template-columns: 1fr; }
  .whats-on-intro { padding: 32px 20px; }
  .whats-on-intro h1 { font-size: 40px; }
  .whats-on-lead { margin-top: 16px; }
  .whats-on-intro .whats-on-rhythm { margin-top: 16px; }
  .whats-on-hero > figure { height: 180px; min-height: 0; }
  .whats-on-hero img { object-position: 50% 45%; }
  .whats-on-jumps { column-gap: 20px; row-gap: 0; padding-block: 8px; }
  .weekly-evenings { grid-template-columns: 1fr; padding-top: 20px; }
  .weekly-evenings > article { padding: 24px; }
  .weekly-evenings h2 { font-size: 28px; }
  .weekly-evenings .weekly-live-evening { border-left: 1px solid var(--line-light); border-top: 0; }
  .special-events-section, .whats-on-section-heading, .whats-on-dining { grid-template-columns: 1fr; }
  .whats-on-weekly, .whats-on-dining { padding-block: 36px; }
  .special-events-section { padding-block: 28px 24px; row-gap: 16px; }
  .special-event-enquiry { padding: 4px 0 0; border-left: 0; }
  .past-events-section { padding-block: 24px 28px; }
  .whats-on-section-heading { gap: 16px; margin-bottom: 24px; }
  .whats-on-weekly .artist-grid { gap: 16px; }
  .weekly-footnote { flex-wrap: wrap; gap: 4px 20px; }
  .past-event summary { grid-template-columns: minmax(0, 1fr) auto; gap: 10px 20px; padding-block: 20px; }
  .past-event time { grid-column: 1 / -1; padding: 0; font-size: 14px; color: var(--muted); }
  .past-event-title { font-size: 22px; }
  .past-event-action { align-self: start; gap: 12px; }
  .past-event-artist { font-size: 14px; }
  .past-event-details { padding: 0 0 24px; }
  .past-event-details dl > div { grid-template-columns: 1fr; gap: 4px; }
  .whats-on-private { border-left: 0; border-top: 1px solid var(--line-light); padding: 24px 0 0; }
  .lang-zh .whats-on-intro h1 { font-size: clamp(28px, 7.6vw, 38px); }
}
@media (max-width: 480px) {
  .whats-on-weekly .artist-grid { gap: 12px; }
  .whats-on-weekly .artist-card::after { inset: 45% 0 0; background: linear-gradient(transparent, rgba(0, 0, 0, .76) 40%, rgba(0, 0, 0, .94)); }
  .whats-on-weekly .artist-card figcaption { inset: auto 12px 12px; gap: 5px 6px; }
  .whats-on-weekly .artist-day { grid-column: 1; grid-row: 1; font-size: 12px; }
  .whats-on-weekly .artist-time { grid-column: 2; grid-row: 1; font-size: 12px; }
  .whats-on-weekly .artist-name { grid-column: 1 / -1; grid-row: 2; }
}
@media (max-width: 350px) {
  .whats-on-weekly .artist-card::after { inset: 30% 0 0; }
  .whats-on-weekly .artist-card figcaption { grid-template-columns: 1fr; gap: 3px; }
  .whats-on-weekly .artist-time { grid-column: 1; grid-row: 3; }
}

.event-hero-assurance{max-width:540px;margin-top:16px!important;color:rgba(248,243,234,.62)!important;font-family:var(--sans)!important;font-size:12px!important;line-height:1.55!important}.event-mid-cta{margin-top:clamp(36px,5vw,70px);margin-bottom:clamp(75px,9vw,120px);padding:clamp(38px,5vw,64px);display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,.72fr);gap:30px clamp(40px,7vw,100px);align-items:end;border:1px solid var(--line);background:var(--paper)}.event-mid-cta h2{font-size:clamp(42px,4.5vw,68px)}.event-mid-cta-copy{max-width:620px}.event-mid-cta-copy>p{font-size:16px;line-height:1.65}.event-mid-cta .actions{margin-top:22px}.event-mid-cta .event-confirmation-note{margin-top:14px;font-size:11px;line-height:1.55;color:rgba(23,23,19,.62)}@media(max-width:640px){.event-mid-cta{grid-template-columns:1fr;margin-top:28px;margin-bottom:70px;padding:36px 20px;gap:22px}.event-mid-cta h2{font-size:44px}.event-mid-cta .actions{align-items:stretch}.event-mid-cta .button,.event-mid-cta .text-link{width:100%}}

/* Compact, progressively enhanced visitor information; no images or layout changes. */
.discovery-guide {
  width: min(1180px, calc(100% - 48px));
  margin: clamp(32px, 5vw, 64px) auto;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, currentColor 22%, transparent);
}
.discovery-guide h2 { margin: 0 0 20px; font-size: clamp(1.35rem, 2.5vw, 1.9rem); line-height: 1.25; }
.discovery-guide details { border-top: 1px solid color-mix(in srgb, currentColor 15%, transparent); }
.discovery-guide summary { cursor: pointer; padding: 16px 0; font-weight: 500; line-height: 1.5; }
.discovery-guide details p { max-width: 76ch; margin: 0 0 20px; line-height: 1.7; overflow-wrap: anywhere; }
.discovery-guide summary:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.discovery-links { display: flex; flex-wrap: wrap; gap: 12px 24px; padding-top: 20px; }
.discovery-links a { max-width: 100%; overflow-wrap: anywhere; }
@media (max-width: 640px) { .discovery-guide { width: calc(100% - 40px); } }

/* Mobile customer-journey refinements. Appended after the core stylesheet. */
@media (max-width: 1000px) {
  :root { --mobile-action-height: 58px; }
  body { padding-bottom: calc(var(--mobile-action-height) + env(safe-area-inset-bottom)); }
  .mobile-actions {
    height: calc(var(--mobile-action-height) + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-actions a {
    min-height: var(--mobile-action-height);
    font-size: 10px;
    letter-spacing: .06em;
  }
}

@media (max-width: 640px) {
  /* Keep Bar and Private Events visually strong without making the hero two screens tall. */
  .bar-hero > div,
  .event-hero > div {
    min-height: 0;
    padding: 52px 18px 56px;
  }
  .bar-hero > figure,
  .event-hero > figure {
    min-height: 380px;
  }
  .bar-hero h1,
  .event-hero h1 {
    font-size: clamp(48px, 14vw, 64px);
  }
}
