:root {
  --ink: #f6efe0;
  --muted: #c9bea8;
  --dim: #958870;
  --coal: #07100f;
  --charcoal: #111715;
  --panel: #18221f;
  --panel-2: #202722;
  --moss: #6e8d7d;
  --sea: #6ba7a0;
  --ember: #efbd68;
  --fire: #d76643;
  --paper: #f4ead5;
  --line: rgba(246, 239, 224, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

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

body {
  margin: 0;
  background: var(--coal);
  color: var(--ink);
  font-family:
    "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(7, 16, 15, 0.88), rgba(7, 16, 15, 0.96)),
    url("assets/photos/private-corner.jpg") center / cover;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(246, 239, 224, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 224, 0.24) 1px, transparent 1px);
  background-size: 64px 64px;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  font-size: 4rem;
  max-width: 880px;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--coal);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  color: var(--ink);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    padding 180ms ease;
}

.site-header.solid,
.site-header.is-scrolled {
  background: rgba(7, 16, 15, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(239, 189, 104, 0.55);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid transparent;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(246, 239, 224, 0.06);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(7, 16, 15, 0.72);
  color: var(--ink);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(300px, 380px);
  column-gap: 32px;
  justify-content: center;
  align-items: end;
  padding: 128px 32px 38px;
}

.hero picture,
.hero picture img,
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: saturate(0.95) contrast(1.08);
  transform: scale(1.01);
  transition:
    opacity 360ms ease,
    filter 360ms ease,
    transform 900ms ease;
}

.hero.is-swapping picture img {
  opacity: 0.58;
  filter: saturate(1.18) contrast(1.2);
  transform: scale(1.045);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 16, 15, 0.84), rgba(7, 16, 15, 0.2) 58%),
    linear-gradient(0deg, rgba(7, 16, 15, 0.88), rgba(7, 16, 15, 0.08) 48%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 96px;
  height: 2px;
  opacity: 0.88;
  background: repeating-linear-gradient(
    90deg,
    rgba(239, 189, 104, 0.9) 0 10px,
    transparent 10px 38px
  );
}

.hero::before {
  content: "";
  position: absolute;
  left: -5vw;
  right: -5vw;
  top: 82px;
  height: 74px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 50%, rgba(239, 189, 104, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at 17% 54%, rgba(239, 189, 104, 0.7) 0 3px, transparent 4px),
    radial-gradient(circle at 27% 45%, rgba(239, 189, 104, 0.86) 0 4px, transparent 5px),
    radial-gradient(circle at 41% 56%, rgba(239, 189, 104, 0.72) 0 3px, transparent 4px),
    radial-gradient(circle at 54% 48%, rgba(239, 189, 104, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at 66% 58%, rgba(239, 189, 104, 0.7) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 46%, rgba(239, 189, 104, 0.84) 0 4px, transparent 5px),
    radial-gradient(circle at 91% 55%, rgba(239, 189, 104, 0.72) 0 3px, transparent 4px);
  animation: lanternPulse 3.2s ease-in-out infinite;
}

.ember-field {
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.ember-field span {
  position: absolute;
  bottom: -20px;
  width: 3px;
  height: 18px;
  background: linear-gradient(rgba(239, 189, 104, 0), rgba(239, 189, 104, 0.82));
  opacity: 0.38;
  animation: emberRise 7s linear infinite;
}

.ember-field span:nth-child(1) {
  left: 12%;
  animation-delay: -2s;
}

.ember-field span:nth-child(2) {
  left: 28%;
  animation-delay: -5s;
}

.ember-field span:nth-child(3) {
  left: 48%;
  animation-delay: -3.4s;
}

.ember-field span:nth-child(4) {
  left: 62%;
  animation-delay: -1s;
}

.ember-field span:nth-child(5) {
  left: 78%;
  animation-delay: -6s;
}

.ember-field span:nth-child(6) {
  left: 91%;
  animation-delay: -4.3s;
}

@keyframes lanternPulse {
  0%,
  100% {
    opacity: 0.62;
  }
  50% {
    opacity: 1;
  }
}

@keyframes emberRise {
  from {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  to {
    transform: translateY(-520px) translateX(58px) rotate(18deg);
    opacity: 0;
  }
}

.hero-content {
  width: 100%;
  max-width: 720px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--ember);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 640px;
  font-size: 1.15rem;
  color: rgba(246, 239, 224, 0.84);
}

.hero-mode-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(720px, 100%);
  gap: 1px;
  margin-top: 28px;
  border: 1px solid rgba(239, 189, 104, 0.34);
  background: rgba(239, 189, 104, 0.22);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.mode-button {
  min-height: 70px;
  padding: 14px;
  border: 0;
  color: var(--muted);
  background: rgba(7, 16, 15, 0.72);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.mode-button span {
  display: block;
  margin-bottom: 4px;
  color: var(--sea);
  font-size: 0.75rem;
}

.mode-button:hover,
.mode-button.active {
  color: var(--ink);
  background: rgba(239, 189, 104, 0.16);
}

.mode-button.active {
  box-shadow: inset 0 -3px 0 var(--ember);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ember);
  border-color: var(--ember);
  color: #11100d;
}

.button-ghost {
  color: var(--ink);
  background: rgba(246, 239, 224, 0.08);
}

.hero-news {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  border: 1px solid rgba(239, 189, 104, 0.5);
  background:
    linear-gradient(rgba(12, 19, 18, 0.88), rgba(12, 19, 18, 0.78)),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(246, 239, 224, 0.04) 18px 19px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-news-label {
  padding: 12px 16px;
  background: var(--fire);
  color: white;
  font-weight: 900;
}

.hero-news a {
  display: block;
  padding: 16px;
  border-top: 1px solid var(--line);
}

.hero-news strong {
  display: block;
  margin-bottom: 4px;
}

.hero-news span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.board-status {
  padding: 16px;
  border-top: 1px solid var(--line);
}

.board-status span {
  margin-bottom: 8px;
  color: var(--ember);
  font-weight: 900;
}

.board-status i {
  position: relative;
  display: block;
  height: 8px;
  overflow: hidden;
  background: rgba(246, 239, 224, 0.14);
}

.board-status i::before {
  content: "";
  position: absolute;
  inset: 0 18% 0 0;
  background: linear-gradient(90deg, var(--sea), var(--ember), var(--fire));
  animation: heatLine 2.4s ease-in-out infinite;
}

@keyframes heatLine {
  0%,
  100% {
    transform: translateX(-8%);
  }
  50% {
    transform: translateX(8%);
  }
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper);
  color: var(--coal);
}

.ticker-track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding: 12px 32px;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-weight: 900;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-45%);
  }
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.ritual-item {
  min-height: 260px;
  padding: 28px;
  background: rgba(24, 34, 31, 0.92);
}

.ritual-number {
  display: block;
  margin-bottom: 42px;
  color: var(--sea);
  font-size: 2.7rem;
  font-weight: 900;
}

.skewer-stage {
  position: relative;
}

.skewer-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 220px;
  width: min(100vw, 1180px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(239, 189, 104, 0.42), transparent);
}

.skewer-conveyor {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 16px;
}

.skewer-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(239, 189, 104, 0.26);
  background:
    linear-gradient(180deg, rgba(246, 239, 224, 0.05), transparent 46%),
    rgba(15, 22, 20, 0.9);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.skewer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 189, 104, 0.7);
  background:
    linear-gradient(180deg, rgba(239, 189, 104, 0.1), transparent 50%),
    rgba(22, 30, 27, 0.94);
}

.skewer-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 3px 9px;
  color: #0b1211;
  background: var(--ember);
  font-size: 0.78rem;
  font-weight: 900;
}

.skewer-card p {
  margin-bottom: 0;
}

.folklore-lab {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.folklore-copy {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(239, 189, 104, 0.32);
  background:
    linear-gradient(120deg, rgba(7, 16, 15, 0.84), rgba(24, 34, 31, 0.9)),
    url("assets/photos/garden-movie.jpg") center / cover;
  box-shadow: var(--shadow);
}

.folklore-copy::after {
  content: "YHUO";
  position: absolute;
  right: -12px;
  bottom: -36px;
  color: rgba(239, 189, 104, 0.08);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
}

.folklore-copy h2,
.folklore-copy p,
.folklore-copy .eyebrow {
  position: relative;
  z-index: 1;
}

.myth-line {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--ember);
  background: rgba(7, 16, 15, 0.62);
  color: var(--ink);
  font-weight: 900;
}

.fortune-machine {
  display: grid;
  align-content: space-between;
  min-height: 430px;
  padding: 24px;
  border: 1px solid rgba(107, 167, 160, 0.42);
  background:
    radial-gradient(circle at 80% 0, rgba(107, 167, 160, 0.22), transparent 34%),
    #09100f;
}

.fortune-screen {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(246, 239, 224, 0.14);
  background:
    linear-gradient(rgba(7, 16, 15, 0.54), rgba(7, 16, 15, 0.92)),
    repeating-linear-gradient(0deg, rgba(107, 167, 160, 0.08) 0 1px, transparent 1px 9px);
}

.fortune-kicker {
  width: fit-content;
  margin-bottom: 18px;
  padding: 4px 10px;
  color: #09100f;
  background: var(--sea);
  font-weight: 900;
}

.fortune-screen strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.6rem;
  line-height: 1.18;
}

.fortune-screen p {
  margin-bottom: 0;
}

.fortune-button {
  width: 100%;
  margin-top: 18px;
  border: 0;
  cursor: pointer;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 0;
}

.character-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(239, 189, 104, 0.24);
  background:
    linear-gradient(180deg, rgba(246, 239, 224, 0.04), transparent 45%),
    rgba(24, 34, 31, 0.86);
}

.character-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--sea);
  font-weight: 900;
}

.character-card h3 {
  font-size: 1.45rem;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-height: 620px;
  border-block: 1px solid var(--line);
  background: #0e1716;
}

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

.feature-copy {
  align-self: center;
  padding: 56px;
}

.mini-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.mini-menu a,
.tab-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(246, 239, 224, 0.06);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.mini-menu a:hover,
.tab-button.active,
.tab-button:hover {
  border-color: var(--ember);
  background: rgba(239, 189, 104, 0.14);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
}

.live-board {
  width: min(1240px, calc(100% - 40px));
  padding: 88px 30px;
  border: 1px solid rgba(239, 189, 104, 0.34);
  background:
    linear-gradient(120deg, rgba(15, 22, 20, 0.88), rgba(7, 16, 15, 0.96)),
    repeating-linear-gradient(0deg, rgba(246, 239, 224, 0.045) 0 1px, transparent 1px 24px);
  box-shadow: inset 0 0 0 10px rgba(246, 239, 224, 0.025);
}

.live-board .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.news-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(24, 34, 31, 0.78);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 189, 104, 0.52);
  background: rgba(32, 39, 34, 0.96);
}

.news-card.large {
  grid-row: span 2;
  min-height: 460px;
  background:
    linear-gradient(rgba(7, 16, 15, 0.36), rgba(7, 16, 15, 0.88)),
    url("assets/photos/garden-movie.jpg") center / cover;
}

.news-date {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 4px 10px;
  background: var(--sea);
  color: #07100f;
  font-weight: 900;
}

.gallery-strip {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.72fr;
  gap: 0;
  padding: 0;
  border-block: 1px solid var(--line);
}

.gallery-strip img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-right: 1px solid var(--line);
}

.reservation-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 32px;
  border-top: 1px solid var(--line);
  background: #070b0b;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.page-main {
  padding-top: 86px;
}

.page-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 54px 0 26px;
}

.page-hero.compact {
  min-height: 460px;
}

.page-hero h1 {
  font-size: 3.3rem;
}

.page-hero img,
.hero-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.visit-hero img {
  aspect-ratio: 1 / 1;
  object-position: center;
}

.tab-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-tabs {
  padding-top: 16px;
  padding-bottom: 22px;
}

.menu-section {
  border-top: 1px solid var(--line);
}

.menu-section.is-hidden {
  display: none;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.menu-layout.reverse {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
}

.menu-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.menu-list.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  padding: 20px;
  background: rgba(24, 34, 31, 0.9);
}

.menu-row span {
  font-weight: 900;
}

.menu-row strong {
  color: var(--ember);
}

.menu-row em {
  grid-column: 1 / -1;
  color: var(--muted);
  font-style: normal;
}

.placeholder-stack {
  display: grid;
  gap: 16px;
}

.generated-photo {
  width: 100%;
  min-height: 190px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(239, 189, 104, 0.28);
  background: rgba(246, 239, 224, 0.045);
}

.generated-photo.tall {
  aspect-ratio: 3 / 4;
}

.generated-photo.hero-placeholder,
.generated-photo.map-placeholder {
  min-height: 360px;
}

.skewer-photo {
  width: calc(100% + 48px);
  height: 190px;
  margin: -24px -24px 22px;
  object-fit: cover;
  border-bottom: 1px solid rgba(239, 189, 104, 0.24);
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.placeholder-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.menu-cards,
.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cocktail-grid {
  grid-template-columns: repeat(4, 1fr);
}

.drink-card,
.cocktail-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(24, 34, 31, 0.86);
}

.drink-card strong,
.cocktail-grid strong {
  color: var(--ember);
}

.space-story {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.space-block {
  border: 1px solid var(--line);
  background: rgba(24, 34, 31, 0.86);
}

.space-block.wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
}

.space-block img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.space-block.wide img {
  height: 520px;
}

.space-block div {
  padding: 24px;
}

.space-block.wide div {
  align-self: end;
  padding: 36px;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(24, 34, 31, 0.78);
}

.featured-news {
  background: rgba(32, 39, 34, 0.92);
}

.news-detail img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.news-detail > div:last-child {
  align-self: center;
  padding: 22px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ember);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

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

.visit-panel {
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(24, 34, 31, 0.84);
}

.visit-panel.dark {
  background: #090f0e;
}

.map-panel {
  padding: 0;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

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

.hours-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.note {
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--dim);
}

.clean-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.clean-list li + li {
  margin-top: 10px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 108px;
  }

  .hero-news {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 32px;
    width: 100%;
  }

  .feature-split,
  .folklore-lab,
  .page-hero,
  .menu-layout,
  .menu-layout.reverse,
  .space-block.wide,
  .news-detail {
    grid-template-columns: 1fr;
  }

  .ritual-grid,
  .skewer-conveyor,
  .character-grid,
  .menu-cards,
  .cocktail-grid,
  .placeholder-grid,
  .placeholder-grid.four,
  .space-story,
  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-strip img {
    height: 320px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  h1,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .site-header {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(7, 16, 15, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 112px 20px 24px;
  }

  .hero::after {
    left: 20px;
    right: 20px;
    top: 84px;
  }

  .hero-shade {
    background: rgba(7, 16, 15, 0.62);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-mode-panel {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .mode-button {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mode-button span {
    margin-bottom: 0;
  }

  .hero::before {
    top: 72px;
  }

  .section,
  .page-hero {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 62px 0;
  }

  .page-main {
    padding-top: 74px;
  }

  .page-hero,
  .page-hero.compact {
    min-height: auto;
    padding-top: 36px;
  }

  .ritual-grid,
  .skewer-conveyor,
  .character-grid,
  .menu-cards,
  .cocktail-grid,
  .placeholder-grid,
  .placeholder-grid.four,
  .space-story,
  .visit-grid,
  .menu-list.two-col,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    padding: 30px 20px;
  }

  .skewer-card {
    min-height: 330px;
  }

  .live-board {
    width: min(100% - 28px, 1180px);
    padding: 62px 14px;
  }

  .folklore-copy {
    padding: 28px 22px;
  }

  .fortune-machine {
    min-height: 380px;
  }

  .feature-split {
    min-height: auto;
  }

  .feature-media img {
    height: 360px;
  }

  .space-block img,
  .space-block.wide img {
    height: 300px;
  }

  .reservation-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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