:root {
  --ink: #171313;
  --paper: #fffaf8;
  --white: #ffffff;
  --pink: #f3c8cd;
  --pink-deep: #d87583;
  --rose: #8b3442;
  --stone: #ebe4e1;
  --muted: #6f6663;
  --line: rgba(23, 19, 19, 0.17);
  --shadow: 0 24px 70px rgba(57, 33, 31, 0.12);
  --serif: "Iowan Old Style", "Songti SC", STSong, "Noto Serif CJK SC", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

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

body.nav-open {
  overflow: hidden;
}

html[lang="zh-CN"] body {
  line-height: 1.8;
}

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

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

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--pink-deep);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 250, 248, 0.98);
  box-shadow: 0 8px 30px rgba(57, 33, 31, 0.05);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  line-height: 0.82;
  letter-spacing: 0.16em;
}

.wordmark span {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}

.wordmark small {
  align-self: flex-end;
  margin-top: 7px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.08em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}

.primary-nav a {
  position: relative;
}

.primary-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 19px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.language-switcher i {
  color: var(--line);
  font-style: normal;
}

.language-switcher [aria-current="page"] {
  color: var(--rose);
}

.language-switcher a {
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.language-switcher a:hover {
  border-color: currentColor;
  color: var(--ink);
}

.header-book {
  justify-self: end;
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 52px;
  padding: 14px 23px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-2px);
}

.button span {
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
}

.button-outline {
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 650;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 15px;
  color: var(--rose);
}

.hero {
  min-height: 760px;
  padding: 142px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 5%, rgba(243, 200, 205, 0.48), transparent 26%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
}

.eyebrow,
.section-number {
  margin: 0 0 23px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.booking-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(58px, 6.3vw, 94px);
}

html[lang="zh-CN"] .hero h1,
html[lang="zh-CN"] .section h2,
html[lang="zh-CN"] .booking-band h2 {
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.hero h1 em {
  color: var(--rose);
  font-weight: 400;
}

.hero-intro {
  max-width: 570px;
  margin: 31px 0 0;
  color: #4f4846;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 35px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 560px;
  margin: 55px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-facts div {
  padding: 18px 16px 17px 0;
}

.quick-facts div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.quick-facts dt {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
}

.quick-facts dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  z-index: 0;
  top: -56px;
  right: -70px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

.image-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 58% center;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.image-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  background: rgba(255, 250, 248, 0.89);
  backdrop-filter: blur(8px);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.hero-visual figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--pink);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 15px 0 14px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.08em;
  animation: marquee 24s linear infinite;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.marquee-track i {
  color: var(--rose);
  font-size: 12px;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  padding-top: clamp(90px, 10vw, 145px);
  padding-bottom: clamp(90px, 10vw, 145px);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 10vw;
}

.statement h2,
.section-heading h2,
.artist h2,
.visit h2 {
  font-size: clamp(48px, 5.3vw, 76px);
}

.lead {
  margin-top: 0;
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.statement-grid > div > p:last-child,
.artist-card > div:last-child > p:last-child {
  max-width: 620px;
  color: var(--muted);
}

.services,
.reviews {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.46fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 65px;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-feature {
  min-height: 430px;
  padding: clamp(30px, 4.5vw, 60px);
  background: var(--ink);
  color: var(--white);
}

.service-feature-pink {
  background: var(--pink);
  color: var(--ink);
}

.service-kicker {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 19px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-feature h3 {
  margin: 60px 0 25px;
  font-family: var(--serif);
  font-size: clamp(37px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.service-feature p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.72);
}

.service-feature-pink p {
  color: #57484a;
}

.service-feature .text-link {
  margin-top: 17px;
}

.menu {
  margin-top: 92px;
}

.menu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 22px;
}

.menu-header .eyebrow {
  margin-bottom: 8px;
}

.menu-header h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
}

.verified i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4b9a6f;
  box-shadow: 0 0 0 4px rgba(75, 154, 111, 0.12);
}

.menu-list {
  border-top: 1px solid var(--ink);
}

.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px 140px;
  align-items: center;
  gap: 35px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.menu-row h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 650;
}

.menu-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.menu-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.menu-price span {
  color: var(--muted);
  font-size: 11px;
}

.menu-price strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.menu-row .menu-price:last-child {
  grid-column: 3;
}

.compact-menus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 70px;
}

.compact-menu {
  padding: clamp(26px, 4vw, 45px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.compact-menu .menu-header {
  align-items: flex-start;
}

.compact-menu .menu-header > span {
  color: var(--muted);
  font-size: 12px;
}

.price-pairs {
  margin: 20px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.price-pairs li {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.price-pairs strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.menu-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 37px;
  padding-top: 28px;
}

.menu-note p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.artist-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.38fr) 1fr;
  align-items: center;
  gap: clamp(45px, 9vw, 130px);
  max-width: 990px;
  margin-inline: auto;
}

.artist-mark {
  display: grid;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--rose);
  font-family: var(--serif);
  font-size: 110px;
  font-style: italic;
  line-height: 1;
}

.artist-card .section-number {
  margin-bottom: 15px;
}

.artist-card .lead {
  margin: 30px 0 18px;
}

.reviews {
  background: #f3eeec;
}

.reviews .section-heading {
  align-items: end;
}

.reviews .section-heading > .text-link {
  justify-self: end;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review {
  min-height: 270px;
  margin: 0;
  padding: 34px;
  border-top: 1px solid var(--ink);
  background: var(--paper);
}

.review::before {
  color: var(--pink-deep);
  content: "✦";
}

.review p {
  margin: 43px 0 34px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 31px);
  letter-spacing: -0.025em;
  line-height: 1.26;
}

.review footer {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(400px, 1fr);
  gap: clamp(60px, 10vw, 140px);
}

.visit-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.visit-intro > p:not(.section-number) {
  max-width: 460px;
  margin: 30px 0;
  color: var(--muted);
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.visit-details {
  border-top: 1px solid var(--ink);
}

.detail-block {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.detail-block .eyebrow {
  margin-bottom: 16px;
}

.detail-block address {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 27px;
  font-style: normal;
  line-height: 1.35;
}

.detail-block > a {
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 650;
}

.policy p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hours dl {
  margin: 0;
}

.hours dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.hours dt,
.hours dd {
  margin: 0;
  font-size: 14px;
}

.hours dd {
  color: var(--muted);
}

.amenities ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenities li {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 13px;
}

.booking-band {
  padding: clamp(70px, 9vw, 120px) 0;
  background: var(--rose);
  color: var(--white);
}

.booking-band-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.booking-band .eyebrow {
  color: var(--pink);
}

.booking-band h2 {
  font-size: clamp(52px, 7vw, 90px);
}

.site-footer {
  padding: 70px 0 30px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  gap: 50px;
}

.wordmark-footer small {
  color: var(--pink);
}

.footer-grid p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
}

.site-footer nav a {
  position: relative;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 80px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-book {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .reveal[data-delay="1"] { transition-delay: 100ms; }
.js .reveal[data-delay="2"] { transition-delay: 200ms; }
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    min-height: 72px;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    width: 45px;
    height: 45px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
  }

  .nav-toggle span:not(.sr-only) {
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 200ms ease;
  }

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

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

  .primary-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 12vw;
    background: var(--pink);
    font-family: var(--serif);
    font-size: 42px;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-15px);
    visibility: hidden;
    transition: opacity 200ms ease, transform 200ms ease, visibility 0s linear 200ms;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition-delay: 0s;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    margin-right: 5px;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .hero h1 {
    font-size: clamp(60px, 11vw, 88px);
  }

  .hero-visual {
    width: min(620px, 90%);
    justify-self: end;
  }

  .image-frame img {
    aspect-ratio: 5 / 4;
  }

  .statement-grid,
  .section-heading,
  .artist-card,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .statement-grid {
    gap: 48px;
  }

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

  .section-heading > p {
    max-width: 560px;
  }

  .artist-mark {
    max-width: 190px;
  }

  .visit-intro {
    position: static;
  }

  .booking-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .site-footer nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100vw - 30px);
  }

  body {
    padding-bottom: 68px;
  }

  .header-book {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .header-actions {
    grid-column: 2;
    margin-right: 1px;
  }

  .nav-toggle {
    grid-column: 3;
  }

  .hero {
    min-height: 0;
    padding: 116px 0 58px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 73px);
  }

  .hero-intro {
    font-size: 17px;
  }

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

  .quick-facts {
    margin-top: 44px;
  }

  .quick-facts div,
  .quick-facts div + div {
    padding: 14px 9px;
  }

  .quick-facts div:first-child {
    padding-left: 0;
  }

  .quick-facts dt {
    font-size: 17px;
  }

  .quick-facts dd {
    font-size: 10px;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero-visual {
    width: calc(100% - 20px);
  }

  .hero-visual::before {
    top: -30px;
    right: -40px;
    width: 180px;
    height: 180px;
  }

  .image-frame img {
    aspect-ratio: 4 / 5;
    object-position: 59% center;
  }

  .image-note {
    right: 10px;
    bottom: 10px;
    font-size: 11px;
  }

  .marquee-track {
    font-size: 15px;
  }

  .statement h2,
  .section-heading h2,
  .artist h2,
  .visit h2 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .service-feature-grid,
  .compact-menus,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .service-feature {
    min-height: 390px;
  }

  .menu {
    margin-top: 70px;
  }

  .menu-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .menu-row {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 21px 0;
  }

  .menu-row > div:first-child {
    grid-column: 1;
  }

  .menu-row .menu-price {
    grid-column: 2;
  }

  .menu-row .menu-price:last-child {
    grid-column: 2;
  }

  .menu-row .menu-price:nth-child(3) {
    grid-column: 1 / -1;
    align-items: flex-start;
    margin-top: -10px;
  }

  .menu-row p {
    display: none;
  }

  .menu-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .artist-card {
    gap: 45px;
  }

  .artist-mark {
    max-width: 145px;
    font-size: 72px;
  }

  .review {
    min-height: 230px;
  }

  .detail-block address {
    font-size: 23px;
  }

  .hours dl > div {
    align-items: flex-start;
  }

  .hours dd {
    text-align: right;
  }

  .booking-band h2 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer nav {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 55px;
  }

  .mobile-book {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--ink);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 -10px 30px rgba(23, 19, 19, 0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
