:root {
  --peach: #e85b6d;
  --peach-deep: #b93f4f;
  --gold: #b98555;
  --gold-dark: #8b613b;
  --cream: #fae2e3;
  --rice: #f7d6d9;
  --ink: #2c2a28;
  --muted: #756d66;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(83, 48, 34, 0.16);
  /* Noto Serif TC is Google's web distribution of 思源宋體. */
  --font-heading: "Noto Serif TC";
  --font-body: "Microsoft JhengHei";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.8;
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
}

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

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

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  align-items: center;
  background: linear-gradient(180deg, rgba(44, 42, 40, 0.44), rgba(44, 42, 40, 0));
  border-bottom: 1px solid transparent;
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 16px clamp(20px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, backdrop-filter 0.25s ease;
  z-index: 20;
}

.site-header.is-scrolled {
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 239, 0.97);
  border-bottom-color: rgba(185, 133, 85, 0.2);
  box-shadow: 0 12px 36px rgba(70, 42, 24, 0.1);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 188px;
}

.brand-mark {
  display: grid;
  flex: 0 0 46px;
  height: 46px;
  place-items: center;
  width: 46px;
}

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

.brand-lockup {
  display: grid;
  gap: 3px;
  width: 118px;
}

.brand-wordmark {
  aspect-ratio: 1146 / 235;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.brand-wordmark img {
  filter: brightness(0) invert(1);
  left: 0;
  max-width: none;
  position: absolute;
  top: 0;
  transform: translate(-21.35%, -62.65%);
  transition: filter 0.25s ease;
  width: 174.52%;
}

.site-header.is-scrolled .brand-wordmark img {
  filter: brightness(0);
}

.brand-english-wordmark {
  aspect-ratio: 958 / 90;
  display: block;
  overflow: hidden;
  position: relative;
  width: 88%;
}

.brand-english-wordmark img {
  filter: brightness(0) invert(1);
  left: 0;
  max-width: none;
  position: absolute;
  top: 0;
  transform: translate(-26%, -78.5%);
  transition: filter 0.25s ease;
  width: 208.77%;
}

.site-header.is-scrolled .brand-english-wordmark img {
  filter: brightness(0);
}

.brand strong,
.site-footer strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong {
  color: var(--cream);
}

.site-header.is-scrolled .brand strong {
  color: var(--ink);
}

.brand small,
.site-footer span {
  color: var(--gold-dark);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.brand small {
  color: rgba(255, 248, 239, 0.88);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.site-header.is-scrolled .brand small {
  color: var(--gold-dark);
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2.6vw, 30px);
  justify-content: center;
}

.hero-japanese-slogan {
  filter: brightness(0) saturate(100%) invert(87%) sepia(43%) saturate(695%) hue-rotate(328deg) brightness(103%) contrast(101%);
  height: auto;
  margin-bottom: 16px;
  max-width: min(100%, 610px);
  width: 100%;
}

.desktop-nav a {
  color: rgba(255, 248, 239, 0.9);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  position: relative;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
}

.site-header.is-scrolled .desktop-nav a {
  color: var(--muted);
}

.site-header.is-scrolled .desktop-nav a:hover,
.site-header.is-scrolled .desktop-nav a.is-active {
  color: var(--peach-deep);
}

.desktop-nav a::after {
  background: var(--cream);
  border-radius: 999px;
  bottom: -8px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
  width: 22px;
}

.site-header.is-scrolled .desktop-nav a::after {
  background: var(--peach);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.header-booking,
.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-booking,
.btn.primary {
  background: var(--peach);
  color: var(--white);
}

.header-booking {
  background: rgba(255, 248, 239, 0.14);
  border: 1px solid rgba(255, 248, 239, 0.42);
  color: var(--cream);
  backdrop-filter: blur(8px);
}

.site-header.is-scrolled .header-booking {
  background: var(--peach);
  border-color: transparent;
  color: var(--white);
}

.btn.ghost {
  border: 1px solid rgba(185, 133, 85, 0.5);
  color: var(--gold-dark);
}

.hero .btn.ghost {
  background: rgba(255, 248, 239, 0.12);
  border-color: rgba(255, 248, 239, 0.52);
  color: var(--cream);
  backdrop-filter: blur(8px);
}

.btn.light {
  background: var(--cream);
  color: var(--peach-deep);
}

.header-booking:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  align-items: center;
  display: flex;
  gap: clamp(24px, 3vw, 40px);
  min-height: 100vh;
  overflow: hidden;
  padding: 120px clamp(20px, 7vw, 96px) 86px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(44, 42, 40, 0.72) 0%, rgba(44, 42, 40, 0.44) 42%, rgba(44, 42, 40, 0.12) 74%),
    linear-gradient(0deg, rgba(44, 42, 40, 0.38), rgba(44, 42, 40, 0.08));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-content {
  color: var(--cream);
  max-width: 620px;
  position: relative;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.24);
  z-index: 3;
}

.eyebrow {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
}

h1 {
  color: var(--cream);
  font-size: clamp(58px, 7.2vw, 102px);
  font-weight: 700;
  margin-bottom: 8px;
  white-space: nowrap;
}

.hero-subtitle {
  color: #ffd9a1;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  margin-bottom: 20px;
}

.hero-copy {
  color: rgba(255, 248, 239, 0.9);
  font-size: clamp(16px, 1.25vw, 20px);
  max-width: 540px;
}

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

.hero-visual {
  aspect-ratio: 1;
  display: grid;
  min-height: 360px;
  place-items: center;
  position: relative;
  z-index: 1;
}

.photo-hero {
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  inset: 0;
  max-height: none;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.photo-hero::after {
  background: linear-gradient(180deg, transparent 58%, rgba(44, 42, 40, 0.42));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-photo {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  position: absolute;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 7s ease;
  width: 100%;
}

.hero-photo.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-brand-title {
  aspect-ratio: 1146 / 235;
  margin: 0 0 18px;
  max-width: none;
  overflow: hidden;
  position: relative;
  width: min(80%, 450px);
}

.hero-brand-title img {
  filter: brightness(0) invert(1);
  left: 0;
  max-width: none;
  position: absolute;
  top: 0;
  transform: translate(-21.35%, -62.65%);
  width: 174.52%;
}

.hero-photo-caption {
  bottom: 24px;
  color: var(--cream);
  left: auto;
  position: absolute;
  right: clamp(20px, 6vw, 88px);
  text-align: right;
  z-index: 2;
}

.hero-photo-caption span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-photo-caption strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.25;
}

.table-scene {
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 30%, transparent 31%),
    repeating-conic-gradient(from 0deg, rgba(185, 133, 85, 0.17) 0 9deg, transparent 9deg 18deg);
  border: 2px solid rgba(185, 133, 85, 0.25);
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: grid;
  max-width: 560px;
  place-items: center;
  position: relative;
  width: min(86vw, 560px);
}

.table-scene::after {
  border: 2px solid rgba(185, 133, 85, 0.38);
  border-radius: 50%;
  content: "";
  inset: 34px;
  position: absolute;
}

.hotpot {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 58%;
  z-index: 2;
}

.pot-rim {
  background: linear-gradient(135deg, #f5d5b7, #9a6641);
  border-radius: 50%;
  height: 86px;
  position: relative;
  width: 100%;
}

.soup {
  background: radial-gradient(circle at 35% 35%, #ffd9a1, #ef8b4c 42%, #b84b36);
  border: 12px solid #4a3328;
  border-radius: 50%;
  height: 70px;
  margin-top: -78px;
  overflow: hidden;
  position: relative;
  width: 86%;
  z-index: 3;
}

.pot-base {
  background: linear-gradient(#53382b, #2e201b);
  border-radius: 0 0 30px 30px;
  height: 74px;
  margin-top: -10px;
  width: 88%;
}

.ingredient {
  position: absolute;
}

.tofu {
  background: #fff1cd;
  height: 16px;
  left: 28%;
  top: 28%;
  transform: rotate(12deg);
  width: 22px;
}

.leaf {
  background: #5a8c4d;
  border-radius: 80% 0;
  height: 18px;
  right: 25%;
  top: 32%;
  transform: rotate(-20deg);
  width: 30px;
}

.shrimp {
  border: 6px solid #fff1cd;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 22%;
  height: 28px;
  left: 44%;
  width: 36px;
}

.mushroom {
  background: #f1d0aa;
  border-radius: 18px 18px 4px 4px;
  height: 18px;
  left: 15%;
  top: 50%;
  width: 28px;
}

.meat {
  background: #f28385;
  border-radius: 12px;
  bottom: 16%;
  height: 16px;
  right: 18%;
  transform: rotate(-16deg);
  width: 54px;
}

.plate {
  background: #fffdf8;
  border: 1px solid rgba(185, 133, 85, 0.45);
  border-radius: 50%;
  box-shadow: 0 14px 40px rgba(83, 48, 34, 0.12);
  height: 24%;
  position: absolute;
  width: 24%;
  z-index: 1;
}

.plate-left {
  bottom: 17%;
  left: 12%;
}

.plate-right {
  right: 10%;
  top: 19%;
}

.chopsticks {
  background: var(--gold-dark);
  border-radius: 999px;
  height: 5px;
  position: absolute;
  right: 16%;
  top: 62%;
  transform: rotate(-28deg);
  width: 38%;
  z-index: 3;
}

.chopsticks::after {
  background: var(--gold-dark);
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 14px;
  width: 100%;
}

.steam {
  border-left: 2px solid rgba(185, 133, 85, 0.42);
  border-radius: 50%;
  height: 120px;
  position: absolute;
  top: 10%;
  width: 44px;
  z-index: 3;
}

.steam-a {
  left: 42%;
  animation: steam 4.8s ease-in-out infinite;
}

.steam-b {
  left: 52%;
  animation: steam 5.4s ease-in-out infinite 0.5s;
}

.steam-c {
  left: 34%;
  animation: steam 5.8s ease-in-out infinite 1s;
}

@keyframes steam {
  0%,
  100% {
    opacity: 0.2;
    transform: translateY(20px) scaleY(0.8);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-8px) scaleY(1);
  }
}

.hero-strip {
  align-items: center;
  border-top: 1px solid rgba(185, 133, 85, 0.25);
  bottom: 0;
  display: flex;
  gap: 22px;
  justify-content: center;
  left: clamp(20px, 6vw, 88px);
  min-height: 54px;
  position: absolute;
  right: clamp(20px, 6vw, 88px);
  z-index: 4;
}

.hero-strip span {
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-weight: 900;
}

.ticker {
  align-items: center;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: center;
  padding: 16px clamp(20px, 6vw, 88px);
}

.ticker span {
  font-size: 14px;
  font-weight: 800;
}

.ticker span::before {
  color: #ffd9a1;
  content: "✦";
  margin-right: 10px;
}

.section {
  padding: clamp(74px, 10vw, 128px) clamp(20px, 6vw, 88px);
}

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

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  margin-bottom: 28px;
}

.story-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: 1fr minmax(280px, 0.78fr);
}

.story-main {
  border-left: 4px solid var(--peach);
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.75;
  padding-left: clamp(22px, 4vw, 42px);
}

.story-main p:last-child {
  margin-bottom: 0;
}

.brand-panel {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.75), transparent 62%),
    linear-gradient(135deg, rgba(232, 91, 109, 0.07), rgba(185, 133, 85, 0.08));
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  min-height: 420px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 64px);
  place-items: center;
}

.brand-panel img {
  height: auto;
  max-height: 360px;
  object-fit: contain;
  width: min(100%, 520px);
}

.experience {
  background:
    linear-gradient(rgba(250, 226, 227, 0.94), rgba(250, 226, 227, 0.94)),
    repeating-linear-gradient(135deg, rgba(185, 133, 85, 0.12) 0 1px, transparent 1px 38px);
}

.experience-layout {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
}

.photo-story {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  height: clamp(760px, 72vw, 920px);
  margin-top: 42px;
}

.photo-story figure {
  background: var(--cream);
  border: 1px solid rgba(185, 133, 85, 0.24);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.photo-story-main {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
}

.photo-story-link {
  display: block;
  height: 100%;
  overflow: hidden;
}

.photo-story-link img {
  transition: transform 0.35s ease;
}

.photo-story-link:hover img {
  transform: scale(1.025);
}

.photo-story figure:nth-child(2) {
  grid-column: 6 / 10;
  grid-row: 1;
}

.photo-story figure:nth-child(3) {
  grid-column: 10 / 13;
  grid-row: 1;
}

.photo-story figure:nth-child(4) {
  grid-column: 6 / 13;
  grid-row: 2;
}

.photo-story figure:nth-child(5) {
  grid-column: 1 / 8;
  grid-row: 3;
}

.photo-story figure:nth-child(6) {
  grid-column: 8 / 13;
  grid-row: 3;
}

.photo-story img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.photo-story-main img {
  object-position: center;
}

.photo-story figure:nth-child(2) img {
  object-position: center;
}

.photo-story figure:nth-child(3) img {
  object-position: center 42%;
}

.photo-story figure:nth-child(4) img,
.photo-story figure:nth-child(5) img,
.photo-story figure:nth-child(6) img {
  object-position: center;
}

.photo-story figcaption {
  background: linear-gradient(180deg, transparent, rgba(44, 42, 40, 0.8));
  bottom: 0;
  color: var(--white);
  font-weight: 900;
  left: 0;
  padding: 48px 18px 18px;
  position: absolute;
  right: 0;
}

.experience-feature {
  border-left: 1px solid rgba(185, 133, 85, 0.32);
  padding: clamp(22px, 4vw, 44px);
}

.experience-feature:last-child {
  border-right: 1px solid rgba(185, 133, 85, 0.32);
}

.experience-feature span {
  color: var(--peach);
  display: block;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 28px;
}

.experience-feature h3 {
  font-size: clamp(18px, 1.8vw, 28px);
  margin-bottom: 16px;
  white-space: nowrap;
}

.experience-feature p {
  color: var(--muted);
}

.venue {
  background: var(--cream);
}

.venue-grid {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

.venue-grid .section-heading {
  min-width: 0;
}

.venue .section-heading h2 {
  font-size: clamp(28px, 2.8vw, 40px);
  margin-bottom: 0;
}

.venue-grid p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 0;
}

.venue-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.35fr 1fr;
  margin-top: 42px;
}

.venue-gallery figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.venue-gallery img {
  aspect-ratio: 16 / 10;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.venue-gallery .venue-wide {
  grid-row: span 2;
}

.venue-gallery .venue-wide img {
  aspect-ratio: 16 / 13;
}

.venue-gallery figcaption {
  background: rgba(44, 42, 40, 0.72);
  bottom: 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  left: 16px;
  letter-spacing: 0.12em;
  padding: 8px 12px;
  position: absolute;
  text-transform: uppercase;
}

.features {
  background: var(--cream);
}

.feature-grid,
.store-grid,
.news-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.feature-grid {
  border-bottom: 1px solid rgba(185, 133, 85, 0.22);
  border-top: 1px solid rgba(185, 133, 85, 0.22);
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-inline: auto;
  max-width: 1120px;
}

.feature-card,
.store-card,
.news-card {
  background: var(--cream);
  border: 1px solid rgba(185, 133, 85, 0.24);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-card:hover,
.store-card:hover,
.news-card:hover,
.operation-grid article:hover,
.menu-page:hover,
.menu-highlights article:hover {
  border-color: rgba(232, 91, 109, 0.38);
  box-shadow: 0 18px 48px rgba(83, 48, 34, 0.12);
  transform: translateY(-4px);
}

.feature-card {
  align-items: start;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(185, 133, 85, 0.18);
  border-radius: 0;
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: 1fr;
  padding: clamp(24px, 3vw, 34px) clamp(18px, 3vw, 34px);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card:hover {
  border-color: rgba(185, 133, 85, 0.45);
  box-shadow: none;
  transform: none;
}

.feature-number {
  color: var(--peach);
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  opacity: 0.5;
}

.feature-card h3 {
  font-size: clamp(24px, 2.5vw, 34px);
  margin: 0 0 12px;
}

.store-card h3 {
  font-size: 26px;
  margin: 14px 0 12px;
}

.feature-card p,
.store-card p,
.news-card p {
  color: var(--muted);
}

.news {
  background: var(--cream);
}

.menu-section {
  background:
    linear-gradient(180deg, var(--cream), var(--cream)),
    radial-gradient(circle at 10% 10%, rgba(232, 91, 109, 0.12), transparent 28%);
}

.menu-intro {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr minmax(280px, 0.7fr);
}

.menu-copy {
  color: var(--muted);
  font-size: 18px;
}

.menu-copy .btn {
  margin-top: 18px;
}

.dish-showcase {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}

.experience .section-heading,
.features .section-heading,
.venue .section-heading,
.booking-band > div,
.operations .section-heading {
  max-width: none;
}

.experience .section-heading h2,
.features .section-heading h2,
.venue .section-heading h2,
.booking-band h2,
.operations .section-heading h2 {
  font-size: clamp(30px, 4vw, 58px);
  white-space: nowrap;
}

.dish-showcase figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.dish-showcase img {
  aspect-ratio: 4 / 5;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.dish-showcase figcaption {
  background: linear-gradient(180deg, transparent, rgba(44, 42, 40, 0.78));
  bottom: 0;
  color: var(--white);
  left: 0;
  padding: 44px 24px 22px;
  position: absolute;
  right: 0;
}

.dish-showcase span {
  color: rgba(255, 248, 239, 0.82);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.dish-showcase strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
}

.menu-highlights {
  display: grid;
  border-bottom: 1px solid rgba(185, 133, 85, 0.22);
  border-top: 1px solid rgba(185, 133, 85, 0.22);
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin: 48px 0 30px;
}

.menu-highlights article {
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(185, 133, 85, 0.22);
  border-radius: 0;
  padding: clamp(24px, 3vw, 36px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.menu-highlights article:last-child {
  border-right: 0;
}

.menu-highlights article:hover {
  border-color: rgba(185, 133, 85, 0.45);
  box-shadow: none;
  transform: none;
}

.menu-highlights span {
  color: var(--peach);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-highlights h3 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 16px 0 10px;
}

.menu-highlights p {
  color: var(--muted);
  margin-bottom: 0;
}

.menu-carousel {
  position: relative;
}

.menu-gallery {
  display: grid;
  gap: 18px;
  grid-auto-columns: clamp(190px, 22vw, 280px);
  grid-auto-flow: column;
  overflow-x: auto;
  padding: 6px 4px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.menu-page {
  background: #fffdf8;
  border: 1px solid rgba(185, 133, 85, 0.24);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 10px;
  overflow: hidden;
  padding: 10px;
  text-align: left;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  scroll-snap-align: start;
}

.menu-page img {
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.menu-page.cover {
  grid-column: auto;
}

.menu-page span {
  color: var(--gold-dark);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  padding: 0 2px 2px;
}

.menu-carousel-control {
  align-items: center;
  background: rgba(255, 248, 239, 0.96);
  border: 1px solid rgba(185, 133, 85, 0.32);
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(83, 48, 34, 0.16);
  color: var(--peach-deep);
  cursor: pointer;
  display: flex;
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  height: 52px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
  width: 52px;
  z-index: 5;
}

.menu-carousel-control:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.menu-carousel-prev {
  left: -18px;
}

.menu-carousel-next {
  right: -18px;
}

.menu-lightbox {
  align-items: center;
  background: rgba(44, 42, 40, 0.82);
  display: grid;
  inset: 0;
  justify-items: center;
  opacity: 0;
  padding: 28px clamp(18px, 4vw, 54px);
  pointer-events: none;
  position: fixed;
  transition: opacity 0.24s ease;
  z-index: 60;
}

.menu-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-lightbox figure {
  display: grid;
  gap: 12px;
  margin: 0;
  max-height: 92vh;
  max-width: min(900px, 82vw);
}

.menu-lightbox img {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  max-height: 84vh;
  object-fit: contain;
  width: 100%;
}

.menu-lightbox figcaption {
  color: var(--cream);
  font-weight: 900;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  align-items: center;
  background: rgba(255, 248, 239, 0.94);
  border: 0;
  border-radius: 50%;
  color: var(--peach-deep);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  height: 56px;
  justify-content: center;
  line-height: 1;
  position: fixed;
  transition: transform 0.2s ease;
  width: 56px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  transform: scale(1.06);
}

.lightbox-close {
  right: 24px;
  top: 24px;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
}

.lightbox-next {
  right: 24px;
  top: 50%;
}

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

.news-card {
  background: #fffdf8;
  min-height: 260px;
}

.news-card img {
  display: block;
  margin: calc(clamp(22px, 3vw, 34px) * -1) calc(clamp(22px, 3vw, 34px) * -1) 24px;
  max-width: none;
  width: calc(100% + clamp(22px, 3vw, 34px) * 2);
}

.news-card.featured {
  background: #fffdf8;
  color: var(--ink);
  overflow: hidden;
}

.news-card.featured img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.news-card.future {
  background: var(--rice);
}

.news-card.announcement {
  background: var(--rice);
  overflow: hidden;
}

.news-card .news-poster {
  display: block;
  margin: calc(clamp(22px, 3vw, 34px) * -1) calc(clamp(22px, 3vw, 34px) * -1) 24px;
  overflow: hidden;
}

.news-poster img {
  aspect-ratio: 1 / 1.414;
  margin: 0;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.news-card span {
  color: var(--gold-dark);
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.news-card.featured span,
.news-card.featured p,
.news-card.featured a {
  color: var(--muted);
}

.news-card.featured span {
  color: var(--gold-dark);
}

.news-card h3 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 14px;
}

.news-card a {
  color: var(--gold-dark);
  display: inline-block;
  font-weight: 900;
  margin-top: 16px;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.booking-band {
  align-items: center;
  background: var(--peach);
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: clamp(44px, 7vw, 86px) clamp(20px, 6vw, 88px);
}

.booking-band .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.booking-band h2 {
  margin-bottom: 0;
  max-width: 780px;
}

.store-grid {
  grid-template-columns: repeat(3, 1fr);
}

.store-card {
  background: #fffdf8;
}

.store-card span {
  color: var(--peach-deep);
  display: block;
  font-weight: 900;
  margin: 8px 0 18px;
}

.store-card a {
  color: var(--gold-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.guide {
  background:
    linear-gradient(rgba(255, 248, 239, 0.92), rgba(255, 248, 239, 0.92)),
    repeating-linear-gradient(90deg, rgba(185, 133, 85, 0.16) 0 1px, transparent 1px 70px);
}

.guide-list {
  display: grid;
  gap: 14px;
  margin: 36px auto 0;
  max-width: 980px;
}

.guide-list p {
  background: rgba(255, 255, 255, 0.72);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  color: var(--muted);
  margin: 0;
  padding: 18px 22px;
}

.operations {
  background:
    linear-gradient(rgba(82, 42, 32, 0.66), rgba(82, 42, 32, 0.72)),
    url("assets/photos/dining-room.jpg") center / cover;
  color: var(--white);
}

.operations .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.operation-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin: 42px auto 0;
  max-width: 1120px;
}

.operation-grid article {
  background: rgba(255, 248, 239, 0.11);
  border: 0;
  border-right: 1px solid rgba(255, 248, 239, 0.24);
  padding: clamp(24px, 4vw, 42px);
}

.operation-grid article:last-child {
  border-right: 0;
}

.operation-grid strong {
  color: #ffe0b3;
  display: block;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

.operation-grid h3 {
  font-size: 28px;
}

.operation-grid p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0;
}

.contact {
  background: #fffdf8;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  margin-top: 18px;
}

.contact-copy {
  color: var(--muted);
  font-size: 19px;
}

.contact-copy .btn {
  margin-top: 20px;
}

.contact-form {
  background: var(--cream);
  border: 1px solid rgba(185, 133, 85, 0.24);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.contact-form label {
  color: var(--gold-dark);
  display: grid;
  font-weight: 900;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fffdf8;
  border: 1px solid rgba(185, 133, 85, 0.32);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 10px 14px;
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form button {
  background: var(--peach);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 50px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: var(--peach-deep);
  transform: translateY(-2px);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast {
  background: var(--ink);
  border: 1px solid rgba(255, 248, 239, 0.22);
  border-radius: 999px;
  bottom: 24px;
  box-shadow: 0 18px 44px rgba(44, 42, 40, 0.22);
  color: var(--cream);
  font-weight: 900;
  left: 50%;
  opacity: 0;
  padding: 12px 20px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 40;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast.is-error {
  background: #8e2635;
}

.site-footer {
  align-items: center;
  background: var(--peach);
  color: var(--cream);
  display: grid;
  gap: 28px;
  justify-items: center;
  padding: clamp(64px, 9vw, 108px) clamp(20px, 6vw, 88px) 46px;
  position: relative;
  text-align: center;
}

.footer-brand img {
  filter: brightness(0) invert(1);
  height: auto;
  max-width: min(260px, 62vw);
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: var(--cream);
  display: inline-flex;
  height: 54px;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 54px;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.footer-social svg {
  fill: currentColor;
  height: 25px;
  width: 25px;
}

.footer-social .line-monochrome {
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.footer-social .line-monochrome text {
  fill: currentColor;
  font-family: Arial, sans-serif;
  font-size: 5px;
  font-weight: 700;
  letter-spacing: -0.25px;
  stroke: none;
}

.footer-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  justify-content: center;
  max-width: 1080px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  padding: 0 22px;
  position: relative;
}

.footer-nav a + a::before {
  background: rgba(255, 255, 255, 0.36);
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  margin: 0;
}

.back-to-top {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  bottom: 34px;
  color: var(--white);
  display: inline-flex;
  font-size: 34px;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: clamp(22px, 4vw, 56px);
  width: 58px;
}

.legal-body {
  background: #fffdf8;
}

.legal-header {
  align-items: center;
  background: rgba(255, 248, 239, 0.96);
  border-bottom: 1px solid rgba(185, 133, 85, 0.22);
  display: flex;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.legal-brand strong {
  color: var(--ink);
}

.legal-brand small {
  color: var(--gold-dark);
}

.legal-home {
  background: var(--peach);
  border-color: transparent;
  color: var(--white);
}

.legal-page {
  padding: clamp(56px, 8vw, 92px) clamp(20px, 6vw, 88px);
}

.legal-hero {
  margin: 0 auto 44px;
  max-width: 980px;
  text-align: center;
}

.legal-hero h1 {
  color: var(--peach-deep);
  font-size: clamp(44px, 7vw, 86px);
  white-space: normal;
}

.legal-hero p {
  color: var(--muted);
  font-weight: 800;
}

.legal-content {
  background: var(--cream);
  border: 1px solid rgba(185, 133, 85, 0.24);
  border-radius: 8px;
  color: var(--muted);
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(26px, 5vw, 64px);
}

.legal-content h2 {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  margin: 42px 0 12px;
}

.legal-content h2:first-of-type {
  margin-top: 24px;
}

.legal-content ul {
  margin: 0 0 20px;
  padding-left: 1.3em;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-note {
  background: #fffdf8;
  border-left: 4px solid var(--peach);
  border-radius: 8px;
  color: var(--ink);
  margin-top: 42px;
  padding: 18px 20px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    display: grid;
    gap: 7px;
    height: 42px;
    padding: 0;
    width: 42px;
  }

  .menu-toggle span {
    background: var(--cream);
    border-radius: 999px;
    display: block;
    height: 2px;
    transition: transform 0.25s ease;
    width: 28px;
  }

  .site-header.is-scrolled .menu-toggle span {
    background: var(--ink);
  }

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

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

  .mobile-nav {
    background: rgba(255, 248, 239, 0.98);
    border-bottom: 1px solid rgba(185, 133, 85, 0.22);
    box-shadow: 0 18px 38px rgba(70, 42, 24, 0.1);
    display: none;
    left: 0;
    padding: 96px 24px 24px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 15;
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 16px;
  }

  .mobile-nav a {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
  }

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

  .hero {
    padding-top: 118px;
  }

  .hero-visual {
    grid-row: 1;
    min-height: 300px;
  }

  .photo-hero {
    aspect-ratio: auto;
    max-height: none;
  }

  .hero-content {
    grid-row: 2;
  }

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

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

  .feature-card {
    border-bottom: 1px solid rgba(185, 133, 85, 0.18);
    border-right: 0;
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .menu-intro,
  .venue-grid,
  .menu-highlights {
    grid-template-columns: 1fr;
  }

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

  .menu-highlights article {
    border-bottom: 1px solid rgba(185, 133, 85, 0.22);
    border-right: 0;
  }

  .menu-highlights article:last-child {
    border-bottom: 0;
  }

  .menu-gallery {
    grid-auto-columns: clamp(180px, 36vw, 260px);
  }

  .experience-layout,
  .operation-grid,
  .dish-showcase,
  .photo-story {
    grid-template-columns: 1fr;
  }

  .photo-story {
    grid-template-rows: none;
    height: auto;
  }

  .photo-story-main {
    grid-row: auto;
  }

  .photo-story figure {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-story img,
  .photo-story-main img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .operation-grid article {
    border-bottom: 1px solid rgba(255, 248, 239, 0.24);
    border-right: 0;
  }

  .operation-grid article:last-child {
    border-bottom: 0;
  }

  .experience-feature,
  .experience-feature:last-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(185, 133, 85, 0.32);
  }

  .news-card.featured,
  .contact-layout {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    padding: 13px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand-lockup {
    width: 104px;
  }

  .brand small {
    font-size: 10px;
  }

  .brand-mark {
    flex-basis: 40px;
    height: 40px;
    width: 40px;
  }

  .header-booking {
    display: none;
  }

  .hero {
    display: block;
    gap: 22px;
    min-height: auto;
    padding-bottom: 84px;
  }

  .hero-content {
    margin-inline: auto;
    max-width: 620px;
    width: 100%;
  }

  h1 {
    font-size: clamp(54px, 17vw, 78px);
  }

  .experience .section-heading h2,
  .features .section-heading h2,
  .venue .section-heading h2,
  .booking-band h2,
  .operations .section-heading h2 {
    white-space: normal;
  }

  .experience-feature h3 {
    font-size: clamp(16px, 5vw, 22px);
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .hero-japanese-slogan {
    margin-inline: auto;
    max-width: min(610px, calc(100vw - 72px));
  }

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

  .btn {
    width: 100%;
  }

  .hero-strip {
    border-top: 1px solid rgba(185, 133, 85, 0.25);
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: space-around;
    margin: 30px auto 0;
    min-height: auto;
    padding-top: 14px;
    position: static;
    width: 100%;
  }

  .table-scene {
    width: min(88vw, 360px);
  }

  .photo-hero {
    aspect-ratio: auto;
    width: 100%;
  }

  .photo-story {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
  }

  .photo-story figure,
  .photo-story figure:nth-child(n),
  .photo-story-main {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-story img,
  .photo-story-main img,
  .venue-gallery img,
  .venue-gallery .venue-wide img,
  .dish-showcase img {
    aspect-ratio: 4 / 3;
  }

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

  .venue-gallery .venue-wide {
    grid-row: auto;
  }

  .feature-grid,
  .store-grid,
  .news-grid,
  .operation-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .feature-number {
    font-size: 32px;
  }

  .menu-gallery {
    grid-auto-columns: min(72vw, 260px);
    padding-inline: 2px;
  }

  .menu-lightbox figure {
    max-width: 86vw;
  }

  .menu-carousel-control {
    display: none;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    font-size: 34px;
    height: 46px;
    width: 46px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .story-main {
    font-size: 16px;
  }

  .site-footer {
    justify-items: center;
    gap: 14px;
  }

  .footer-nav {
    display: grid;
    gap: 10px;
  }

  .footer-nav a {
    font-size: 16px;
    padding: 0;
  }

  .footer-nav a + a::before {
    display: none;
  }

  .back-to-top {
    bottom: 18px;
    height: 48px;
    right: 18px;
    width: 48px;
  }
}

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

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
