/* ============================================================
   KIKO RAMEN & SUSHI — LUXURY REDESIGN
   White Luxe × Japanese Elegance × Playful Soul
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Manrope:wght@300;400;500;600;700;800&family=Noto+Serif+JP:wght@300;400;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #F8F6F2;
  --bg-alt:      #F2EEE8;
  --white:       #FFFFFF;
  --ink:         #1A1410;
  --ink-soft:    #3A2E26;
  --muted:       #8C7B6E;
  --border:      #E5DDD4;
  --red:         #C8102E;
  --red-dark:    #A30D24;
  --red-pale:    #FDE8EC;
  --gold:        #C4973F;
  --gold-light:  #EDCB7A;
  --gold-pale:   #FAF4E8;
  --sakura:      #F5C6D0;
  --sakura-pale: #FDF2F5;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-body:   'Manrope', system-ui, sans-serif;
  --font-jp:     'Noto Serif JP', serif;
  --container:   1320px;
  --gutter:      clamp(20px, 5vw, 64px);
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;
  --r-pill:999px;
  --sh-sm:   0 1px 8px rgba(26,20,16,.05), 0 2px 16px rgba(26,20,16,.04);
  --sh-md:   0 4px 24px rgba(26,20,16,.08), 0 8px 48px rgba(26,20,16,.06);
  --sh-lg:   0 12px 60px rgba(26,20,16,.13), 0 24px 80px rgba(26,20,16,.08);
  --sh-card: 0 2px 12px rgba(26,20,16,.06), 0 6px 32px rgba(26,20,16,.07);
  --ease:        cubic-bezier(.25,.1,.25,1);
  --ease-out:    cubic-bezier(0,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --dur:         .3s;
  --dur-slow:    .65s;
  --topbar-h:    38px;
  --header-h:    76px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); background: var(--bg); color: var(--ink); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }

/* ── Label Helper ────────────────────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.label::before { content: ''; display: inline-block; width: 22px; height: 1px; background: var(--gold); }
.label-red { color: var(--red); }
.label-red::before { background: var(--red); }
.label-white { color: rgba(255,255,255,.6); }
.label-white::before { background: rgba(255,255,255,.4); }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section    { padding: clamp(64px, 9vw, 120px) 0; }
.section-sm { padding: clamp(40px, 5vw, 72px) 0; }
.section-lg { padding: clamp(80px, 12vw, 160px) 0; }
.section-white     { background: var(--white); }
.section-alt       { background: var(--bg-alt); }
.section-ink       { background: var(--ink); }
.section-red       { background: var(--red); }
.section-sakura    { background: var(--sakura-pale); }
.section-gold-pale { background: var(--gold-pale); }
.text-center { text-align: center; }

/* ── Loader ─────────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity .55s var(--ease), visibility .55s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-brand {
  display: flex; align-items: center; gap: 14px;
  animation: loaderPulse 1.7s ease-in-out infinite;
}
.loader-logo { height: 44px; width: auto; }
.loader-kiko {
  font-family: var(--font-jp); font-size: 2rem; font-weight: 700;
  color: var(--ink); letter-spacing: .03em; line-height: 1;
}
.loader-line {
  width: 48px; height: 2px;
  background: linear-gradient(to right, var(--red), var(--gold));
  border-radius: 2px;
  animation: lineGrow 1.7s ease-in-out infinite;
}
@keyframes loaderPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.55;transform:scale(.96)} }
@keyframes lineGrow { 0%,100%{width:24px;opacity:.35} 50%{width:60px;opacity:1} }

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
  height: var(--topbar-h); background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; letter-spacing: .06em; color: rgba(255,255,255,.6);
}
.topbar-inner { display: flex; align-items: center; gap: 16px; white-space: nowrap; overflow: hidden; }
.topbar a { color: rgba(255,255,255,.78); transition: color var(--dur); }
.topbar a:hover { color: var(--gold-light); }
.topbar-sep { opacity: .25; }
.topbar-rating { color: var(--gold-light); font-weight: 600; }

/* ── Header ─────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 900;
  height: var(--header-h);
  background: rgba(248,246,242,.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur);
}
.header.scrolled { box-shadow: var(--sh-md); }
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  height: 100%; display: flex; align-items: center; gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img { height: 38px; width: auto; }
.logo-text {
  display: flex; flex-direction: column; align-items: center;
  gap: 0; line-height: 1;
}
.logo-kiko {
  font-family: var(--font-jp); font-size: 1.35rem; font-weight: 700;
  color: var(--ink); letter-spacing: .04em; line-height: 1;
}
.logo-label {
  font-family: var(--font-body); font-size: .56rem; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); line-height: 1; margin-top: 3px;
}

/* Nav */
.nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-link {
  display: block; padding: 7px 15px;
  font-size: .77rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-soft); border-radius: var(--r-pill);
  transition: color var(--dur), background var(--dur);
  position: relative;
}
.nav-link:hover { color: var(--red); }
.nav-link.active { color: var(--red); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2px; background: var(--gold); border-radius: 2px;
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; width: 36px; height: 36px; border-radius: var(--r-sm);
}
.hamburger span {
  display: block; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform var(--dur), opacity var(--dur);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 899;
  padding: 28px var(--gutter) 40px;
  flex-direction: column; gap: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  display: flex;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-list { display: flex; flex-direction: column; }
.mobile-nav-link {
  display: block; padding: 18px 0;
  font-family: var(--font-serif); font-size: 1.9rem; font-weight: 400;
  color: var(--ink); border-bottom: 1px solid var(--border);
  transition: color var(--dur), padding-left var(--dur);
}
.mobile-nav-link:hover { color: var(--red); padding-left: 10px; }
.mobile-actions { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 30px; font-family: var(--font-body);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--r-pill);
  transition: all var(--dur) var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn-primary {
  background: var(--red); color: white;
  box-shadow: 0 4px 20px rgba(200,16,46,.28);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,16,46,.38); }
.btn-gold { background: var(--gold); color: white; box-shadow: 0 4px 20px rgba(196,151,63,.28); }
.btn-gold:hover { background: #b0852e; transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--border); color: var(--ink-soft); background: transparent; }
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.4); color: white; background: transparent; }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-ghost { color: var(--ink-soft); background: transparent; }
.btn-ghost:hover { color: var(--red); }
.btn-ink { background: var(--ink); color: white; }
.btn-ink:hover { background: var(--ink-soft); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-sm  { padding: 8px 18px; font-size: .7rem; }
.btn-lg  { padding: 16px 40px; font-size: .84rem; }
.btn-xl  { padding: 20px 52px; font-size: .88rem; letter-spacing: .14em; }
.btn-full { width: 100%; justify-content: center; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100svh - var(--topbar-h) - var(--header-h));
  min-height: 580px; display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 9s var(--ease-out);
}
.hero-bg.pan { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    130deg,
    rgba(26,20,16,.8) 0%,
    rgba(26,20,16,.52) 45%,
    rgba(26,20,16,.28) 100%
  );
}
#sakuraCanvas {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1; width: 100%; height: 100%;
}
.hero-sun {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: clamp(280px, 38vw, 540px); height: clamp(280px, 38vw, 540px);
  border-radius: 50%;
  border: 1.5px solid rgba(200,16,46,.22);
  pointer-events: none; z-index: 1;
}
.hero-sun::before {
  content: ''; position: absolute; inset: 22px; border-radius: 50%;
  border: 1px solid rgba(200,16,46,.12);
}
.hero-sun::after {
  content: ''; position: absolute; inset: 50px; border-radius: 50%;
  background: rgba(200,16,46,.05);
}
.hero-kanji {
  position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%);
  font-family: var(--font-jp); font-size: clamp(80px, 14vw, 190px); font-weight: 700;
  color: rgba(255,255,255,.05); writing-mode: vertical-rl;
  pointer-events: none; z-index: 1; line-height: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
  font-size: .7rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-light);
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold-light); }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 8.5vw, 9.5rem);
  font-weight: 300; color: white; line-height: 1.0; margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.1rem); color: rgba(255,255,255,.7);
  max-width: 460px; line-height: 1.78; margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.42); font-size: .64rem;
  letter-spacing: .2em; text-transform: uppercase;
  animation: scrollFloat 2.4s ease-in-out infinite;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.42), transparent);
}
@keyframes scrollFloat { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(9px)} }

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  position: relative; padding: clamp(56px, 8vw, 96px) 0;
  background: var(--ink); text-align: center; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .22; }
.page-hero-kanji {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: clamp(20px, 6vw, 80px);
  pointer-events: none; overflow: hidden;
  font-family: var(--font-jp); font-size: clamp(100px, 20vw, 260px);
  color: rgba(255,255,255,.04); font-weight: 700;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 300; color: white; line-height: 1.1; margin-bottom: 16px; margin-top: 14px;
}
.page-hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem); color: rgba(255,255,255,.6);
  max-width: 500px; margin: 0 auto; line-height: 1.78;
}

/* ── Marquee ─────────────────────────────────────────────────── */
.marquee {
  background: var(--ink); color: var(--gold-light);
  height: 46px; display: flex; align-items: center; overflow: hidden;
}
.marquee-track {
  display: flex; align-items: center;
  animation: marqueeScroll 32s linear infinite; white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px; padding: 0 28px;
  font-size: .66rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
}
.marquee-item::after { content: '✦'; font-size: .5rem; opacity: .5; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Stats Row ───────────────────────────────────────────────── */
.stats-row { background: var(--white); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: clamp(24px, 3vw, 36px) 16px;
  border-right: 1px solid var(--border); text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400; color: var(--ink); line-height: 1;
}
.stat-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.stat-gold { color: var(--gold); }

/* ── Section Header ──────────────────────────────────────────── */
.section-header { margin-bottom: clamp(36px, 5vw, 60px); }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }
.section-header.center .gold-rule { margin-left: auto; margin-right: auto; }
.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400; line-height: 1.1; color: var(--ink); margin-top: 12px;
}
.section-title em { font-style: italic; color: var(--red); }
.section-title .light { font-weight: 300; }
.section-sub {
  margin-top: 14px; font-size: clamp(.88rem, 1.4vw, 1rem);
  color: var(--muted); line-height: 1.78; max-width: 560px;
}
.gold-rule {
  display: block; width: 40px; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 2px; margin-top: 18px;
}

/* ── Feature Cards ───────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  padding: clamp(28px, 3vw, 40px); border-radius: var(--r-lg);
  background: var(--white); border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--r-md); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.fi-red    { background: var(--red-pale); }
.fi-gold   { background: var(--gold-pale); }
.fi-sakura { background: var(--sakura-pale); }
.feature-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; margin-bottom: 10px; }
.feature-text { font-size: .88rem; color: var(--muted); line-height: 1.72; }

/* ── Split Layout ────────────────────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.split.wide-img  { grid-template-columns: 1.15fr 1fr; }
.split.wide-text { grid-template-columns: 1fr 1.15fr; }
.split-img {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; aspect-ratio: 4/5;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.split-img:hover img { transform: scale(1.04); }
.split-img-dot {
  position: absolute; bottom: -20px; right: -20px;
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--red); opacity: .09; pointer-events: none;
}
.split-text { padding: clamp(0px, 2vw, 24px) 0; }
.split-text .section-title { font-size: clamp(1.8rem, 4vw, 3.2rem); }

/* ── Dish Cards ──────────────────────────────────────────────── */
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dish-card {
  border-radius: var(--r-xl); overflow: hidden;
  background: var(--white); box-shadow: var(--sh-card);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.dish-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.dish-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.dish-card:hover .dish-img img { transform: scale(1.07); }
.dish-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--red); color: white;
  font-size: .6rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; padding: 5px 12px; border-radius: var(--r-pill);
}
.dish-badge-gold { background: var(--gold); }
.dish-body { padding: clamp(20px, 2.5vw, 28px); }
.dish-name { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 500; margin-bottom: 8px; }
.dish-desc { font-size: .86rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.dish-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dish-price { font-family: var(--font-serif); font-size: 1.5rem; color: var(--red); font-weight: 600; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  padding: clamp(24px, 3vw, 36px); border-radius: var(--r-xl);
  background: var(--white); box-shadow: var(--sh-card);
  position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.testimonial-card::before {
  content: '❝';
  position: absolute; top: -6px; right: 20px;
  font-size: 5.5rem; line-height: 1; color: var(--sakura);
  font-family: Georgia, serif; pointer-events: none;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; font-size: .88rem; color: var(--gold); }
.testimonial-text {
  font-family: var(--font-serif); font-size: 1.08rem; font-style: italic;
  line-height: 1.78; color: var(--ink-soft); margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sakura-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.1rem; color: var(--red); font-weight: 600;
}
.testimonial-name { font-size: .84rem; font-weight: 700; color: var(--ink); }
.testimonial-location { font-size: .74rem; color: var(--muted); }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative; overflow: hidden; text-align: center;
}
.cta-banner::before {
  content: '紀子';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-jp); font-size: 22vw; font-weight: 700;
  color: rgba(255,255,255,.03); pointer-events: none; white-space: nowrap; line-height: 1;
}
.cta-banner-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300; color: white; margin-bottom: 12px;
}
.cta-banner-sub {
  font-size: 1rem; color: rgba(255,255,255,.65);
  max-width: 460px; margin: 0 auto 36px; line-height: 1.72;
}
.cta-banner-actions { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ── Sushi Feast Game ────────────────────────────────────────── */
.game-section { position: relative; overflow: hidden; }
.game-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(245,198,208,.35) 0%, transparent 65%);
  pointer-events: none;
}
.game-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.game-info .section-title { font-size: clamp(1.8rem, 4vw, 3rem); }
.game-info-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.game-pill {
  padding: 7px 16px; border-radius: var(--r-pill);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.game-pill-red { background: var(--red-pale); color: var(--red); }
.game-pill-gold { background: var(--gold-pale); color: var(--gold); }
.game-pill-sakura { background: var(--sakura-pale); color: #b5526c; }

/* -- Game Boy Device ----------------------------------------- */
.gameboy-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  width: 100%;
}
.gameboy {
  width: min(320px, 100%);
  background: linear-gradient(170deg, #ecddc6 0%, #ddc9a8 55%, #cdb890 100%);
  border-radius: 12px 12px 52px 52px;
  padding: 16px 16px 18px;
  box-shadow:
    0 0 0 1px #b89a78,
    0 28px 80px rgba(80,40,0,.28),
    0 8px 24px rgba(80,40,0,.14),
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -1px 0 rgba(100,60,10,.2);
  position: relative;
  user-select: none;
}
.gb-top {
  background: #c8b28c; border-radius: 8px 8px 3px 3px;
  padding: 10px 10px 8px; margin-bottom: 4px;
}
.gb-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.gb-wordmark {
  font-size: .5rem; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(70,40,10,.42);
  display: flex; align-items: baseline; gap: 5px;
}
.gb-color-word { color: #c8102e; opacity: .9; letter-spacing: .14em; }
.gb-led {
  width: 8px; height: 8px; border-radius: 50%;
  background: #b89a74; box-shadow: 0 0 0 2px rgba(80,40,0,.1);
  transition: background .4s, box-shadow .4s;
}
.gb-led.on {
  background: #ff88b8;
  box-shadow: 0 0 8px #ff88b8, 0 0 18px rgba(255,136,184,.45), 0 0 0 2px rgba(255,136,184,.15);
}
.gb-screen-bezel {
  background: #2e1a0a; border-radius: 5px; padding: 8px 8px 6px;
  box-shadow: inset 0 2px 12px rgba(0,0,0,.7), inset 0 0 0 1px rgba(0,0,0,.25);
}
.gb-screen {
  position: relative; border-radius: 3px; overflow: hidden;
  background: #140a02; box-shadow: inset 0 0 24px rgba(0,0,0,.8);
}
#sushiCanvas {
  display: block; width: 100%; aspect-ratio: 4 / 3;
  image-rendering: pixelated; image-rendering: crisp-edges;
}
.gb-screen-label {
  text-align: center; font-size: .44rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(70,40,10,.28); margin-top: 6px;
}
.gb-controls {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 4px 4px; min-height: 106px;
}
.gb-dpad {
  display: grid;
  grid-template-columns: 34px 34px 34px;
  grid-template-rows: 34px 34px 34px;
  width: 102px; height: 102px;
}
.gb-dpad-corner { background: transparent; pointer-events: none; }
.gb-dpad-center { background: #a87e58; pointer-events: none; }
.gb-dpad-btn {
  background: #a87e58; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(70,40,10,.28); font-size: .48rem;
  touch-action: none; user-select: none; -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent; outline: none;
  transition: background .08s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}
.gb-dpad-up    { border-radius: 5px 5px 0 0; }
.gb-dpad-down  { border-radius: 0 0 5px 5px; }
.gb-dpad-left  { border-radius: 5px 0 0 5px; }
.gb-dpad-right { border-radius: 0 5px 5px 0; }
.gb-dpad-btn:active,
.gb-dpad-btn.pressed { background: #8a6438; box-shadow: inset 0 1px 4px rgba(0,0,0,.35); color: rgba(70,40,10,.6); }
.gb-sys-btns {
  display: flex; flex-direction: column; gap: 10px;
  align-items: center; transform: rotate(-20deg);
}
.gb-sys-btn {
  background: #b89060; border: none;
  color: rgba(70,40,10,.48); font-size: .49rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 20px; cursor: pointer;
  box-shadow: 0 3px 0 #8a6838, inset 0 1px 0 rgba(255,255,255,.28);
  transition: transform .08s, box-shadow .08s, color .1s;
  white-space: nowrap; touch-action: none;
  -webkit-tap-highlight-color: transparent; outline: none;
  user-select: none; -webkit-user-select: none;
}
.gb-sys-btn:hover { color: rgba(70,40,10,.75); }
.gb-sys-btn:active { transform: translateY(2px); box-shadow: 0 1px 0 #8a6838; }
.gb-sys-start { color: rgba(200,16,46,.78); }
.gb-sys-start:hover { color: var(--red); }
.gb-ab-btns {
  display: flex; flex-direction: column; gap: 10px;
  transform: rotate(-20deg); align-items: center;
}
.gb-ab-btn {
  width: 42px; height: 42px; border-radius: 50%; border: none;
  cursor: pointer; font-weight: 800; font-size: .78rem;
  touch-action: none; user-select: none; -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent; outline: none;
  transition: transform .08s, box-shadow .08s;
}
.gb-btn-a {
  background: radial-gradient(circle at 38% 32%, #e8234a, #c8102e);
  color: #fff;
  box-shadow: 0 5px 0 #7a0018, 0 8px 20px rgba(200,16,46,.5);
  align-self: flex-end;
}
.gb-btn-b {
  background: radial-gradient(circle at 38% 32%, #e87898, #c8506a);
  color: rgba(255,255,255,.92);
  box-shadow: 0 5px 0 #8a2840, 0 8px 16px rgba(200,80,106,.4);
  align-self: flex-start;
}
.gb-btn-a:active, .gb-btn-a.pressed { transform: translateY(4px); box-shadow: 0 1px 0 #7a0018, 0 2px 6px rgba(200,16,46,.3); }
.gb-btn-b:active, .gb-btn-b.pressed { transform: translateY(4px); box-shadow: 0 1px 0 #8a2840, 0 2px 5px rgba(200,80,106,.2); }
.gb-speaker { display: flex; justify-content: flex-end; padding: 8px 10px 2px 0; }
.gb-speaker-grid {
  display: grid; grid-template-columns: repeat(6, 5px);
  gap: 4px; transform: rotate(-20deg);
}
.gb-speaker-grid span {
  width: 5px; height: 5px; border-radius: 50%;
  background: #9a7048;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.25), 0 1px 0 rgba(255,255,255,.18);
}

.game-reward {
  margin-top: 18px; padding: 20px; border-radius: var(--r-lg);
  background: var(--gold-pale); border: 1px solid rgba(196,151,63,.3);
  display: none;
}
.game-reward.show { display: block; }
.game-reward-title { font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 12px; }
.game-reward-form { display: flex; gap: 10px; }
.game-reward-input {
  flex: 1; padding: 10px 16px;
  border: 1.5px solid var(--border); border-radius: var(--r-pill);
  font-size: .86rem; outline: none; background: var(--white);
  transition: border-color var(--dur);
}
.game-reward-input:focus { border-color: var(--gold); }
.game-code-display {
  margin-top: 14px; padding: 12px 16px;
  background: var(--white); border-radius: var(--r-md);
  border: 1px solid rgba(196,151,63,.3);
  font-family: var(--font-serif); font-size: 1.2rem;
  color: var(--red); text-align: center; letter-spacing: .1em;
}

/* ── Menu Page ───────────────────────────────────────────────── */
.menu-sticky-nav {
  position: sticky; top: var(--header-h); z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--border);
  overflow-x: auto; scrollbar-width: none;
}
.menu-sticky-nav::-webkit-scrollbar { display: none; }
.menu-nav-list {
  display: flex; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
}
.menu-nav-btn {
  padding: 15px 20px; white-space: nowrap;
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color var(--dur), border-color var(--dur);
}
.menu-nav-btn:hover, .menu-nav-btn.active { color: var(--red); border-bottom-color: var(--red); }
.menu-section-block {
  padding: clamp(40px, 5vw, 64px) 0; border-bottom: 1px solid var(--border);
}
.menu-section-block:last-of-type { border-bottom: none; }
.menu-section-heading {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; margin-bottom: clamp(20px, 3vw, 32px);
  display: flex; align-items: center; gap: 16px;
}
.menu-section-heading::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.menu-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px;
  border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--border);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.menu-item:hover { border-color: rgba(196,151,63,.35); box-shadow: var(--sh-sm); }
.menu-item-body { flex: 1; }
.menu-item-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; margin-bottom: 4px; }
.menu-item-desc { font-size: .82rem; color: var(--muted); line-height: 1.55; }
.menu-item-price { font-family: var(--font-serif); font-size: 1.15rem; color: var(--red); font-weight: 600; flex-shrink: 0; }
.menu-tag {
  display: inline-block; margin-top: 5px; padding: 2px 8px;
  background: var(--gold-pale); border-radius: var(--r-pill);
  font-size: .64rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
}
.menu-tag-veg   { background: #e8f5e9; color: #388e3c; }
.menu-tag-spicy { background: var(--red-pale); color: var(--red); }

/* ── Gallery Page ────────────────────────────────────────────── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px; gap: 16px;
}
.gallery-item {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; cursor: pointer; background: var(--bg-alt);
}
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.tall   { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,.7) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--dur);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: white; font-family: var(--font-serif); font-size: .95rem; font-style: italic; }
.gallery-zoom {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  border-radius: 50%; background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: .9rem;
  opacity: 0; transform: scale(.8);
  transition: opacity var(--dur), transform var(--dur);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(26,20,16,.96);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; visibility: hidden;
  transition: opacity var(--dur-slow), visibility var(--dur-slow);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner { position: relative; max-width: 900px; width: 100%; }
.lightbox-img { width: 100%; border-radius: var(--r-lg); display: block; }
.lightbox-caption {
  text-align: center; margin-top: 14px;
  color: rgba(255,255,255,.6); font-family: var(--font-serif); font-style: italic; font-size: 1rem;
}
.lightbox-close {
  position: fixed; top: 20px; right: 20px; width: 44px; height: 44px;
  border-radius: 50%; background: rgba(255,255,255,.1); color: white; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur); cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: white; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur); cursor: pointer;
}
.lightbox-nav:hover { background: rgba(255,255,255,.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ── Reviews Page ────────────────────────────────────────────── */
.rating-display {
  display: flex; flex-direction: column; align-items: center;
  padding: clamp(40px, 5vw, 60px) 0; text-align: center;
}
.rating-big {
  font-family: var(--font-serif); font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 300; color: var(--ink); line-height: 1;
}
.rating-stars-row { display: flex; gap: 4px; font-size: 1.4rem; color: var(--gold); margin: 8px 0; }
.rating-count { font-size: .9rem; color: var(--muted); }
.badge-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px;
  border-radius: var(--r-pill); font-size: .74rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.badge-outline { border: 1.5px solid var(--border); color: var(--muted); }
.badge-red    { background: var(--red-pale); color: var(--red); }
.badge-gold   { background: var(--gold-pale); color: var(--gold); }
.badge-sakura { background: var(--sakura-pale); color: #b5526c; }

/* ── FAQ Page ─────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-serif); font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500; color: var(--ink); transition: color var(--dur);
}
.faq-question:hover { color: var(--red); }
.faq-question[aria-expanded="true"] { color: var(--red); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--muted); transition: all var(--dur);
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--red); border-color: var(--red); color: white; transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-out), padding .45s; }
.faq-answer.open { max-height: 280px; padding-bottom: 22px; }
.faq-answer p { font-size: .94rem; color: var(--muted); line-height: 1.82; }

/* ── Contact Page ─────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-card {
  background: var(--ink); color: white; border-radius: var(--r-xl);
  padding: clamp(36px, 4vw, 52px);
  position: sticky; top: calc(var(--header-h) + 24px);
}
.contact-card-title {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 32px;
}
.contact-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: rgba(255,255,255,.08); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 4px;
}
.contact-value { font-size: .92rem; color: rgba(255,255,255,.88); line-height: 1.55; }
.contact-value a { color: rgba(255,255,255,.88); transition: color var(--dur); }
.contact-value a:hover { color: var(--gold-light); }
.contact-card-actions { display: flex; flex-direction: column; gap: 10px; }
.contact-form-wrap {
  background: var(--white); border-radius: var(--r-xl);
  padding: clamp(36px, 4vw, 52px); box-shadow: var(--sh-card);
}
.contact-form-title { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 400; margin-bottom: 6px; }
.contact-form-sub { font-size: .88rem; color: var(--muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%; padding: 13px 18px;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-size: .91rem; color: var(--ink); background: var(--bg);
  outline: none; transition: border-color var(--dur), box-shadow var(--dur);
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(196,151,63,.12);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-map { border-radius: var(--r-xl); overflow: hidden; margin-top: 24px; height: 260px; box-shadow: var(--sh-sm); }
.contact-map iframe { width: 100%; height: 100%; display: block; border: none; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon { width: 40px; height: 40px; background: rgba(255,255,255,.08); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail-label { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 4px; }
.contact-detail-value { font-size: .92rem; color: rgba(255,255,255,.88); line-height: 1.6; }
.contact-phone { color: var(--gold-light) !important; font-weight: 600; }
.contact-map-link { display: inline-block; margin-top: 6px; font-size: .82rem; color: var(--gold-light); transition: opacity var(--dur); }
.contact-map-link:hover { opacity: .7; }
.contact-order-link { color: var(--gold-light) !important; }
.contact-hours { display: flex; flex-direction: column; gap: 4px; margin-top: 2px; }
.contact-hours-row { display: flex; justify-content: space-between; gap: 24px; font-size: .88rem; color: rgba(255,255,255,.78); }
.contact-order-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 0; }
.contact-card-header { margin-bottom: 6px; }
.contact-card-header .section-title { color: white; }
.contact-card-header .label { color: rgba(255,255,255,.5); }
.contact-card-header .gold-rule { background: rgba(196,151,63,.4); }
.form-select { cursor: pointer; }
.form-success { display: none; margin-top: 20px; padding: 18px 20px; background: rgba(196,151,63,.08); border: 1px solid rgba(196,151,63,.3); border-radius: var(--r-md); text-align: center; }
.form-success.visible { display: block; }
.form-success-icon { display: block; font-size: 1.8rem; color: var(--gold); margin-bottom: 8px; }
.form-success p { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.map-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--ink); color: rgba(255,255,255,.6);
  padding: clamp(48px, 7vw, 80px) 0 clamp(20px, 3vw, 32px);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(36px, 5vw, 52px);
  border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 24px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo-img { height: 30px; filter: brightness(0) invert(1); }
.footer-logo-kiko { font-family: var(--font-jp); font-size: 1.4rem; font-weight: 700; color: white; }
.footer-desc { font-size: .83rem; line-height: 1.68; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: rgba(255,255,255,.5);
  transition: all var(--dur);
}
.footer-social-a:hover { background: var(--red); border-color: var(--red); color: white; transform: translateY(-2px); }
.footer-col-title {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: white; margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: .83rem; color: rgba(255,255,255,.52); transition: color var(--dur); }
.footer-link:hover { color: var(--gold-light); }
.footer-hours-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: .81rem;
}
.footer-hours-day  { color: rgba(255,255,255,.42); }
.footer-hours-time { color: rgba(255,255,255,.82); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; font-size: .74rem; color: rgba(255,255,255,.3); flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-link { color: rgba(255,255,255,.3); transition: color var(--dur); }
.footer-bottom-link:hover { color: rgba(255,255,255,.55); }

/* ── Editable Tag ────────────────────────────────────────────── */
.editable-tag {
  display: inline-block; padding: 1px 6px;
  background: rgba(196,151,63,.12); border: 1px dashed rgba(196,151,63,.4);
  border-radius: 3px; font-size: .64rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); vertical-align: middle; margin-left: 4px;
}

/* ── Reveal Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: .1s; }
.reveal-2 { transition-delay: .2s; }
.reveal-3 { transition-delay: .3s; }
.reveal-4 { transition-delay: .4s; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .feature-grid      { grid-template-columns: repeat(2, 1fr); }
  .dish-grid         { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-top        { grid-template-columns: repeat(2, 1fr); }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
}
@media (max-width: 860px) {
  .nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  /* Split: luxury full-bleed image section on mobile */
  .section:has(.split) { padding: 0; position: relative; overflow: hidden; }
  .split, .split.wide-img, .split.wide-text {
    display: flex; flex-direction: column; justify-content: flex-end;
    gap: 0; position: relative;
    min-height: clamp(460px, 105vw, 580px);
  }
  /* Image: true full-bleed background */
  .split-img {
    position: absolute; top: 0;
    left: 50%; transform: translateX(-50%);
    width: 100vw; height: 100%;
    border-radius: 0; aspect-ratio: unset; order: unset; z-index: 0;
  }
  /* Two-layer overlay: subtle top, strong bottom — keeps image visible + text readable */
  .split-img::after {
    content: ''; position: absolute; inset: 0;
    background:
      linear-gradient(to bottom,
        rgba(12,7,4,.08)  0%,
        rgba(12,7,4,.08) 28%,
        rgba(12,7,4,.62) 58%,
        rgba(12,7,4,.82) 100%
      );
  }
  .split-img-dot { display: none; }
  /* Text: anchored to bottom, no top padding needed */
  .split-text {
    position: relative; z-index: 1; order: unset;
    padding: 28px 0 clamp(36px, 6vw, 52px);
  }
  /* Luxury white text on dark gradient */
  .split-text .section-title,
  .split-text .section-title .light { color: #fff; }
  .split-text .section-title em     { color: var(--gold-light); }
  .split-text .section-sub,
  .split-text p                      { color: rgba(255,255,255,.78); font-size: .88rem; }
  .split-text .label                 { color: rgba(255,255,255,.6); }
  .split-text .label::before         { background: var(--gold-light); opacity: .7; }
  .split-text .gold-rule             { opacity: .55; }
  .split-text .btn-ink               { background: #fff; color: var(--ink); }
  .split-text .btn-outline           { border-color: rgba(255,255,255,.4); color: #fff; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-card { position: static; }
  .game-layout { grid-template-columns: 1fr; }
  .hero-sun { display: none; }
  /* Game: mobile layout - tighter margins */
  .game-info { display: none; }
  .game-layout { gap: 0; justify-items: center; }
  .game-section { padding: 28px 0; }
  .game-section .container { padding-left: 6px; padding-right: 6px; }
  .gameboy-wrap { max-width: min(420px, calc(100vw - 12px)); margin: 0 auto; }
}
@media (max-width: 600px) {
  :root { --topbar-h: 0px; --header-h: 64px; }
  .topbar { display: none; }
  .feature-grid                  { grid-template-columns: 1fr; }
  .dish-grid                     { grid-template-columns: 1fr; }
  .testimonial-grid              { grid-template-columns: 1fr; }
  .testimonial-card:nth-child(3) { display: none; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gallery-item.span-2 { grid-column: span 1; }
  .gallery-item.tall   { grid-row: span 1; }
  .menu-grid     { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .hero-kanji    { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner-actions { flex-direction: column; align-items: stretch; }
  .mobile-menu   { top: var(--header-h); }
  /* Game reward - stack form on small screens */
  .game-reward-form { flex-direction: column; }
  .game-reward-input { border-radius: var(--r-md); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .marquee-track { animation: none; }
}

/* ── PWA / Standalone ───────────────────────────────────────── */

/* Safe area padding for notched/dynamic-island devices */
.topbar  { padding-top: env(safe-area-inset-top, 0px); }
.header  { padding-top: env(safe-area-inset-top, 0px); }
.footer  { padding-bottom: env(safe-area-inset-bottom, 0px); }
.mobile-menu { padding-bottom: env(safe-area-inset-bottom, 0px); }

/* In standalone / installed PWA — hide topbar, compensate header */
@media (display-mode: standalone) {
  .topbar { display: none; }
  :root   { --topbar-h: 0px; }
  body    { overscroll-behavior-y: none; }
}

/* ── Install Banner ─────────────────────────────────────────── */
.pwa-install-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1200;
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 14px 20px;
  padding-bottom: max(14px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(26,20,16,.1);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.pwa-install-banner.visible { transform: translateY(0); }
.pwa-install-logo {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  object-fit: contain; image-rendering: pixelated; flex-shrink: 0;
}
.pwa-install-text { flex: 1; min-width: 0; }
.pwa-install-text strong { display: block; font-size: .84rem; font-weight: 700; color: var(--ink); }
.pwa-install-text span   { display: block; font-size: .74rem; color: var(--muted); margin-top: 1px; }
.pwa-install-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.pwa-install-dismiss {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 1rem; line-height: 1;
  padding: 4px; transition: color var(--dur);
}
.pwa-install-dismiss:hover { color: var(--ink); }
