/* =========================================
   SHOW IZAKAYA — Global Styles
   Dark, warm, wabi-sabi fine dining
   ========================================= */

/* Google Fonts */
@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,500&family=Noto+Serif+JP:wght@300;400;500;700&family=Lato:wght@300;400&display=swap');

/* CSS Variables */
:root {
  --bg-primary: #0a0806;
  --bg-secondary: #120e08;
  --bg-card: #1a140c;
  --bg-elevated: #211910;
  --gold: #c9a558;
  --gold-light: #e2c47c;
  --gold-dark: #9a7a3a;
  --copper: #b07840;
  --text-primary: #f0e8d8;
  --text-secondary: #c4b49a;
  --text-muted: #7a6a52;
  --border-gold: rgba(201, 165, 88, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --font-heading: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
  --font-jp: 'Noto Serif JP', serif;
  --font-body: 'Lato', sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.jp {
  font-family: var(--font-jp);
  font-weight: 300;
}

/* Gold accent text */
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

/* Section spacing */
section { padding: 6rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }

/* Dividers */
.divider-gold {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem auto;
}
.divider-gold-left {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}

/* Buttons */
.btn-gold {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
  background: transparent;
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-gold-fill {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--gold);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer;
  border: 1px solid var(--gold);
}
.btn-gold-fill:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* Section labels */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 400;
}

/* =========================================
   SPLASH SCREEN — Irasshaimase
   ========================================= */

#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #0a0806;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

#splash-screen.hidden { display: none; }

/* Noren curtains */
.noren-left,
.noren-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: #0a0806;
  z-index: 10;
  transition: transform 1.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.noren-left { left: 0; transform-origin: left center; }
.noren-right { right: 0; transform-origin: right center; }

/* Noren texture lines */
.noren-left::before,
.noren-right::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,165,88,0.15) 20%, rgba(201,165,88,0.15) 80%, transparent);
}
.noren-left::before { right: 0; }
.noren-right::before { left: 0; }

/* Noren fabric lines decoration */
.noren-left::after,
.noren-right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 39px,
    rgba(255,255,255,0.015) 39px,
    rgba(255,255,255,0.015) 40px
  );
}

/* Open state — curtains sweep aside */
.noren-open .noren-left { transform: translateX(-100%); }
.noren-open .noren-right { transform: translateX(100%); }

/* Splash content */
.splash-content {
  position: relative;
  z-index: 20;
  text-align: center;
  padding: 2rem;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.noren-open .splash-content {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.splash-logo {
  width: 160px;
  height: auto;
  margin: 0 auto 2.5rem;
  filter: invert(1);
  opacity: 0.9;
}

.splash-irasshaimase {
  font-family: var(--font-jp);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  line-height: 1.1;
  animation: splashGlow 3s ease-in-out infinite;
}

.splash-romaji {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--gold);
  letter-spacing: 0.25em;
  margin-top: 1.2rem;
  font-weight: 300;
  font-style: italic;
}

.splash-enter {
  margin-top: 3.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-body);
  animation: splashPulse 2.5s ease-in-out infinite;
}

.splash-skip {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-body);
  cursor: pointer;
  z-index: 30;
  transition: color 0.3s;
}
.splash-skip:hover { color: var(--gold); }

/* Ambient glow */
.splash-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,165,88,0.04) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: splashGlowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

/* Ink particles / wisps */
.splash-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  border-radius: 50%;
  background: rgba(201,165,88,0.3);
  animation: floatUp var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

@keyframes splashGlow {
  0%, 100% { text-shadow: 0 0 60px rgba(201,165,88,0.1); }
  50% { text-shadow: 0 0 80px rgba(201,165,88,0.2); }
}
@keyframes splashPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes splashGlowPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%,-50%) scale(1.1); opacity: 1; }
}
@keyframes floatUp {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 0.3; }
  100% { transform: translateY(-120px) translateX(20px); opacity: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .noren-left, .noren-right { transition: opacity 0.8s ease; }
  .noren-open .noren-left,
  .noren-open .noren-right { transform: none; opacity: 0; }
  .splash-irasshaimase { animation: none; }
  .splash-enter { animation: none; opacity: 0.6; }
  .splash-glow { animation: none; }
}

/* =========================================
   NAVIGATION
   ========================================= */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s ease, padding 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(10,8,6,0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-logo img {
  height: 72px;
  width: auto;
  filter: invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--text-primary); }

.nav-reserve {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-body);
  border: 1px solid rgba(201,165,88,0.4);
  padding: 0.55rem 1.4rem;
  transition: all 0.3s;
}
.nav-reserve:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-secondary);
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-primary);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links, .nav-reserve { display: none; }
  .nav-hamburger { display: flex; }
}

/* =========================================
   HOME — HERO
   ========================================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,6,0.3) 0%,
    rgba(10,8,6,0.4) 40%,
    rgba(10,8,6,0.75) 80%,
    rgba(10,8,6,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  animation: heroFadeIn 1.5s ease 0.5s both;
}

.hero-kana {
  font-family: var(--font-jp);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--gold);
  letter-spacing: 0.4em;
  font-weight: 300;
  margin-bottom: 1.2rem;
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: heroFadeIn 1.5s ease 1.5s both;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================
   SIGNATURE DISHES
   ========================================= */

.signature-section {
  padding: 7rem 0;
  background: var(--bg-secondary);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
}

.signature-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.signature-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.85);
}
.signature-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

.signature-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.4s;
}

.signature-name-jp {
  font-family: var(--font-jp);
  font-size: 1.4rem;
  color: var(--text-primary);
  font-weight: 300;
  line-height: 1.2;
}
.signature-name-en {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-style: italic;
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .signature-grid { grid-template-columns: 1fr; }
}

/* =========================================
   ATMOSPHERE
   ========================================= */

.atmosphere-section {
  padding: 7rem 0;
  background: var(--bg-primary);
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.atmosphere-image {
  position: relative;
  overflow: hidden;
}
.atmosphere-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.5s ease;
}
.atmosphere-image:hover img { filter: brightness(0.85); }

.atmosphere-content {
  background: var(--bg-card);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.atmosphere-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.atmosphere-body {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 2rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .atmosphere-grid { grid-template-columns: 1fr; }
  .atmosphere-content { padding: 3rem 2rem; }
  .atmosphere-image { min-height: 300px; }
}

/* =========================================
   SASHIMI SELECTION
   ========================================= */

.sashimi-section {
  padding: 7rem 0;
  background: var(--bg-secondary);
  text-align: center;
}

.sashimi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1px;
  margin-top: 4rem;
  border: 1px solid var(--border-subtle);
}

.sashimi-item {
  padding: 2rem 1rem;
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: background 0.3s;
  background: var(--bg-card);
}
.sashimi-item:hover { background: var(--bg-elevated); }

/* Photo card grid */
.sashimi-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: var(--border-subtle);
}
.sashimi-card {
  background: var(--bg-primary);
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.sashimi-card:hover { z-index: 1; transform: scale(1.02); }
.sashimi-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.sashimi-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.sashimi-card:hover .sashimi-card-img img { transform: scale(1.05); }
.sashimi-card-info {
  padding: 1.1rem 0.8rem;
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
}
.sashimi-card-noimg {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.sashimi-card-noimg .sashimi-card-info {
  border-top: none;
  padding: 2rem 1rem;
  width: 100%;
}
@media (max-width: 900px) {
  .sashimi-card-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 580px) {
  .sashimi-card-grid { grid-template-columns: repeat(2, 1fr); }
}

.sashimi-jp {
  font-family: var(--font-jp);
  font-size: 1.5rem;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 300;
}
.sashimi-en {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-body);
  display: block;
  margin-bottom: 0.2rem;
}
.sashimi-kanji {
  font-size: 0.7rem;
  color: var(--gold);
  font-family: var(--font-jp);
  display: block;
}

/* =========================================
   RESERVE BAND
   ========================================= */

.reserve-band {
  padding: 6rem 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.reserve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.reserve-block h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.reserve-block p,
.reserve-block a,
.reserve-block li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 2;
  font-weight: 300;
}
.reserve-block a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
.reserve-block a:hover { color: var(--gold-light); }
.reserve-block ul { list-style: none; }
.reserve-block .reserve-policy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
  line-height: 1.8;
}

.hours-table { width: 100%; }
.hours-table td { padding: 0.3rem 0; color: var(--text-secondary); font-size: 0.9rem; font-weight: 300; }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }

@media (max-width: 900px) {
  .reserve-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* =========================================
   MAP SECTION
   ========================================= */

.map-section {
  height: 360px;
  position: relative;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) contrast(1.1) brightness(0.7);
}

/* =========================================
   INSTAGRAM STRIP
   ========================================= */

.instagram-section {
  padding: 5rem 0;
  background: var(--bg-primary);
  text-align: center;
}

.instagram-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
}
.instagram-label a {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-body);
  transition: color 0.3s;
}
.instagram-label a:hover { color: var(--gold); }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.instagram-placeholder {
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}
.instagram-placeholder span {
  font-family: var(--font-jp);
  font-size: 1.5rem;
  color: var(--text-muted);
  opacity: 0.4;
}

@media (max-width: 600px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================
   FOOTER
   ========================================= */

footer {
  background: #060503;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 50px;
  filter: invert(1);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--text-secondary); }
.footer-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 300;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =========================================
   PAGE HEADER (inner pages)
   ========================================= */

.page-header {
  padding: 10rem 0 5rem;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201,165,88,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-header-kana {
  font-family: var(--font-jp);
  font-size: 5rem;
  color: rgba(201,165,88,0.07);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  font-weight: 700;
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--text-primary);
  font-weight: 300;
  letter-spacing: 0.05em;
  position: relative;
}

.page-header p {
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-top: 1rem;
  position: relative;
}

/* =========================================
   MENU PAGE
   ========================================= */

.menu-section { padding: 6rem 0; }

.menu-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 4rem;
}
.menu-tab {
  padding: 1rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s;
  font-family: var(--font-body);
  font-weight: 400;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}
.menu-tab.active, .menu-tab:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-category-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.menu-category-title-jp {
  font-family: var(--font-jp);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 300;
  display: block;
  margin-bottom: 2rem;
}

.menu-items { display: flex; flex-direction: column; gap: 0; }

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  gap: 2rem;
}
.menu-item:last-child { border-bottom: none; }

.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.menu-item-jp {
  font-family: var(--font-jp);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
}
.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 0.2rem;
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5rem;
}

@media (max-width: 768px) {
  .menu-columns { grid-template-columns: 1fr; }
  .menu-tabs { flex-wrap: wrap; }
}

/* =========================================
   ABOUT PAGE
   ========================================= */

.about-intro {
  padding: 7rem 0;
  background: var(--bg-primary);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-large-text {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.4;
  color: var(--text-primary);
  font-weight: 300;
  font-style: italic;
}

.about-body {
  color: var(--text-secondary);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.about-values {
  padding: 7rem 0;
  background: var(--bg-secondary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}

.value-item {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border-subtle);
}
.value-kana {
  font-family: var(--font-jp);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.6;
  display: block;
  margin-bottom: 1rem;
  font-weight: 300;
}
.value-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.value-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

@media (max-width: 768px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* =========================================
   RESERVATIONS PAGE
   ========================================= */

.reservations-section {
  padding: 7rem 0;
  background: var(--bg-primary);
}

.reservations-hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.reservations-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  max-width: 900px;
  margin: 0 auto 5rem;
}

.reservation-method {
  background: var(--bg-card);
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s;
}
.reservation-method:hover { border-color: var(--border-gold); }

.reservation-method h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.reservation-method .jp { font-size: 0.9rem; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.reservation-method p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.reservation-method a {
  color: var(--gold);
  font-size: 1.3rem;
  font-family: var(--font-heading);
  text-decoration: none;
}

.reservation-policies {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}
.reservation-policies h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}
.policy-list { list-style: none; }
.policy-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}
.policy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.policy-list li:last-child { border-bottom: none; }

@media (max-width: 600px) {
  .reservations-methods { grid-template-columns: 1fr; }
}

/* =========================================
   EVENTS / BLOG
   ========================================= */

.events-section {
  padding: 7rem 0;
  background: var(--bg-primary);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: border-color 0.3s;
}
.event-card:hover { border-color: var(--border-gold); }

.event-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.8);
}
.event-card:hover .event-card-img img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.event-card-body {
  padding: 2rem;
}
.event-card-date {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  margin-bottom: 0.8rem;
}
.event-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  font-weight: 400;
}
.event-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 900px) {
  .events-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .events-grid { grid-template-columns: 1fr; }
}

/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-section {
  padding: 7rem 0;
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text-primary);
  font-weight: 300;
  margin-bottom: 1rem;
}
.contact-info > p {
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-detail {
  margin-bottom: 2rem;
}
.contact-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  margin-bottom: 0.5rem;
  display: block;
}
.contact-detail p,
.contact-detail a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  text-decoration: none;
  display: block;
}
.contact-detail a:hover { color: var(--gold); }

.contact-form {
  background: var(--bg-card);
  padding: 3rem;
  border: 1px solid var(--border-subtle);
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.contact-form .subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  font-style: italic;
  font-family: var(--font-heading);
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* =========================================
   UTILITIES & ANIMATIONS
   ========================================= */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Section title pattern */
.section-head { text-align: center; margin-bottom: 1rem; }
.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-primary);
  font-weight: 300;
  margin: 0.8rem 0;
}
.section-head .jp-head {
  font-family: var(--font-jp);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 0.3rem;
}
.section-head p {
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-top: 0.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
