/* ═══════════════════════════════════════════════════
   麵屋六花 — Stylesheet
   Palette:
     --ink:    #1a1714  (deep sumi ink)
     --washi:  #e8e0d0  (washi paper warm white)
     --ash:    #3a3530  (ash grey)
     --gold:   #c9a84c  (kinkaku gold)
     --rouge:  #8b2318  (urushi lacquer red)
     --slate:  #5a6e73  (misty slate)
     --mist:   #f2ede4  (pale fog)
   ═══════════════════════════════════════════════════ */

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: #1a1714;
  color: #e8e0d0;
  font-family: 'Noto Serif JP', 'Shippori Mincho', serif;
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #1a1714; }
::-webkit-scrollbar-thumb { background: #c9a84c; border-radius: 2px; }

/* ─── Loader ─────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: #1a1714;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#inkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.loader-text {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.15em;
}

.loader-kanji {
  font-family: 'Noto Serif JP', serif;
  font-weight: 200;
  font-size: clamp(4rem, 12vw, 9rem);
  color: #e8e0d0;
  opacity: 0;
  transform: translateY(20px);
  animation: kanjiIn 0.8s ease forwards;
  letter-spacing: 0.08em;
}

.loader-kanji:nth-child(2) { animation-delay: 0.25s; }

@keyframes kanjiIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Header / Nav ───────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 64px;
  display: flex;
  align-items: center;
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
}

#site-header.scrolled {
  background: rgba(26, 23, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 1; }

.nav-links {
  list-style: none;
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.nav-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #e8e0d0;
  position: relative;
}

.nav-ja {
  font-family: 'Noto Serif JP', serif;
  font-weight: 200;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}

.nav-en {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: #c9a84c;
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 0.5px;
  background: #c9a84c;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-links a:hover .nav-ja { color: #c9a84c; }

.nav-mon { opacity: 0.6; transition: opacity 0.3s; }
.nav-mon:hover { opacity: 1; }

/* ─── Hero ───────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px clamp(2rem, 8vw, 8rem) 4rem;
  overflow: hidden;
  background: #1a1714;
}

#noodleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero-eyebrow {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: #5a6e73;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeSlideUp 1s 1.5s ease forwards;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 200;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeSlideUp 1.1s 1.7s ease forwards;
}

.hero-kanji {
  display: block;
  font-size: clamp(4.5rem, 9vw, 8rem);
  letter-spacing: -0.02em;
  color: #e8e0d0;
  position: relative;
}

.hero-kanji::before {
  content: attr(data-char);
  position: absolute;
  inset: 0;
  color: #c9a84c;
  opacity: 0.12;
  transform: translate(3px, 3px);
}

.hero-romaji {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: clamp(0.8rem, 1.8vw, 1.1rem);
  letter-spacing: 0.5em;
  color: #c9a84c;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.hero-tagline {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  line-height: 2;
  color: #c0b8a8;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeSlideUp 1.1s 2s ease forwards;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  opacity: 0;
  animation: fadeSlideUp 1s 2.2s ease forwards;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: linear-gradient(to right, transparent, #c9a84c55);
  max-width: 60px;
}
.hero-divider::after {
  background: linear-gradient(to left, transparent, #c9a84c55);
}

.hero-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: #8a9a9e;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp 1s 2.3s ease forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #e8e0d0;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  padding-bottom: 0.5rem;
  border-bottom: 0.5px solid rgba(201,168,76,0.5);
  transition: color 0.3s, border-color 0.3s, gap 0.3s;
  opacity: 0;
  animation: fadeSlideUp 1s 2.5s ease forwards;
}

.hero-cta:hover {
  color: #c9a84c;
  border-color: #c9a84c;
  gap: 1.4rem;
}

.hero-bowl-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: bowlReveal 1.5s 2s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
}

.hero-bowl {
  width: clamp(220px, 38vw, 420px);
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.7));
  animation: bowlFloat 6s ease-in-out infinite;
}

@keyframes bowlReveal {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes bowlFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeSlideUp 1s 3s ease forwards;
}

.hero-scroll-hint span {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: #5a6e73;
  text-transform: uppercase;
}

.scroll-line {
  width: 0.5px;
  height: 40px;
  background: linear-gradient(to bottom, #c9a84c, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.6); opacity: 1; }
}

/* ─── Seigaiha Divider ───────────────────────────── */
.seigaiha-divider {
  width: 100%;
  height: 60px;
  overflow: hidden;
  opacity: 0.3;
}

.seigaiha-divider img { width: 100%; height: 60px; object-fit: cover; }

/* ─── Wave Divider ───────────────────────────────── */
.wave-divider {
  width: 100%;
  height: 60px;
  overflow: hidden;
}

.wave-divider img { width: 100%; height: 60px; }

/* ─── Section Concept ────────────────────────────── */
.section-concept {
  background: #f2ede4;
  color: #1a1714;
  padding: clamp(4rem, 10vw, 8rem) clamp(2rem, 8vw, 8rem);
  position: relative;
  overflow: hidden;
}

.section-concept::before {
  content: '素';
  position: absolute;
  top: -0.1em;
  right: -0.05em;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 22vw;
  color: #1a1714;
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.concept-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 3rem;
  align-items: start;
}

.concept-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 3rem;
}

.concept-number {
  font-family: 'Noto Serif JP', serif;
  font-weight: 200;
  font-size: 2rem;
  color: #c9a84c;
  writing-mode: horizontal-tb;
}

.vertical-rule {
  width: 0.5px;
  flex: 1;
  min-height: 120px;
  background: linear-gradient(to bottom, #c9a84c, transparent);
}

.section-eyebrow {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: #5a6e73;
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.4;
  margin-bottom: 2rem;
  color: #1a1714;
}

.section-menu .section-title,
.section-ingredients .section-title,
.section-access .section-title {
  color: #e8e0d0;
}

.concept-body p {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 2.2;
  color: #3a3530;
  margin-bottom: 1.2rem;
}

.concept-quote {
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid #c9a84c;
}

.concept-quote p {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 2;
  color: #3a3530;
  font-style: normal;
}

.concept-quote cite {
  display: block;
  margin-top: 0.8rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #8a8070;
  font-style: normal;
}

.concept-right { padding-top: 4rem; }

.concept-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 0;
}

.stat-num {
  font-family: 'Noto Serif JP', serif;
  font-weight: 200;
  font-size: 2.8rem;
  color: #8b2318;
  line-height: 1;
}

.stat-unit {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: #3a3530;
  margin-top: -0.2rem;
}

.stat-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: #8a8070;
  margin-top: 0.2rem;
}

.stat-divider {
  height: 0.5px;
  background: linear-gradient(to right, #c9a84c, transparent);
}

/* ─── Menu Section ───────────────────────────────── */
.section-menu {
  background: #1a1714;
  padding: clamp(4rem, 10vw, 8rem) clamp(2rem, 8vw, 8rem);
  position: relative;
}

.section-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  text-align: center;
}

.menu-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background: #221f1b;
  border: 0.5px solid rgba(201, 168, 76, 0.18);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
  grid-column: span 4;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a84c, transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.menu-card:hover::before { opacity: 1; }
.menu-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}

.menu-card--featured {
  grid-column: span 6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  background: #272320;
}

.menu-card--wide {
  grid-column: span 6;
}

.menu-card-num {
  font-family: 'Noto Serif JP', serif;
  font-weight: 200;
  font-size: 1rem;
  color: #c9a84c;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.menu-card-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-card-image img {
  width: 100%;
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6));
  animation: bowlFloat 6s ease-in-out infinite;
}

.menu-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,35,24,0.15), transparent 70%);
  pointer-events: none;
}

.menu-card-category {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: #c9a84c;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.menu-card-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #e8e0d0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.menu-card-title ruby rt {
  font-size: 0.55em;
  color: #8a9a9e;
  letter-spacing: 0.1em;
}

.menu-card-desc {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 2;
  color: #9a9080;
}

.menu-card-footer {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.menu-price {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #c9a84c;
  letter-spacing: 0.05em;
}

.menu-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.62rem;
  color: #5a6e73;
}

.toppings-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.topping-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 70px;
}

.topping-item img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform 0.3s;
}

.topping-item:hover img { transform: scale(1.1) rotate(5deg); }

.topping-item span {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: #8a9080;
  text-align: center;
  white-space: nowrap;
}

.menu-seasonal {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  border: 0.5px solid rgba(201, 168, 76, 0.2);
}

.menu-seasonal img { opacity: 0.5; }

.menu-seasonal p {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  color: #8a9080;
}

/* ─── Ingredients Section ────────────────────────── */
.section-ingredients {
  background: #1e1c18;
  padding: clamp(4rem, 10vw, 8rem) clamp(2rem, 8vw, 8rem);
  position: relative;
  overflow: hidden;
}

.ingredients-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 28vw;
  color: #e8e0d0;
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.ingredients-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ingredient-row {
  display: grid;
  grid-template-columns: 60px 1fr 100px;
  gap: 2.5rem;
  align-items: center;
  padding: 2.8rem 0;
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.12);
}

.ingredient-row:last-child { border-bottom: none; }

.ingredient-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: #c9a84c;
  opacity: 0.7;
}

.ingredient-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: #e8e0d0;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.ingredient-content p {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 2.2;
  color: #9a9080;
}

.ingredient-icon {
  display: flex;
  justify-content: center;
}

.ingredient-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 0.8px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.4s;
}

.ingredient-circle::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 0.4px solid rgba(201, 168, 76, 0.15);
}

.ingredient-circle:hover { border-color: rgba(201, 168, 76, 0.7); }

.ingredient-kanji {
  font-family: 'Noto Serif JP', serif;
  font-weight: 200;
  font-size: 1.6rem;
  color: #c9a84c;
}

/* ─── Poem Section ───────────────────────────────── */
.section-poem {
  position: relative;
  background: #1a1714;
  padding: clamp(5rem, 12vw, 10rem) 2rem;
  text-align: center;
  overflow: hidden;
}

#inkBgCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.poem-content {
  position: relative;
  z-index: 2;
}

.poem-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: #5a6e73;
  margin-bottom: 3rem;
}

.poem-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.poem-line {
  font-family: 'Noto Serif JP', serif;
  font-weight: 200;
  font-size: clamp(1.6rem, 5vw, 3.5rem);
  color: #e8e0d0;
  letter-spacing: 0.25em;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease var(--delay), transform 0.8s ease var(--delay);
}

.poem-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.poem-author {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: #5a6e73;
  margin-top: 1rem;
}

/* ─── Access Section ─────────────────────────────── */
.section-access {
  background: #1e1c18;
  padding: clamp(4rem, 10vw, 8rem) clamp(2rem, 8vw, 8rem);
}

.access-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.access-block { margin-bottom: 2.5rem; }
.access-block:last-child { margin-bottom: 0; }

.access-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.access-block address,
.access-block p {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 2;
  color: #c0b8a8;
  font-style: normal;
}

.hours-table {
  border-collapse: collapse;
  width: 100%;
}

.hours-table td {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: #c0b8a8;
  padding: 0.3rem 0;
  line-height: 1.8;
}

.hours-table td:first-child {
  width: 80px;
  color: #8a9080;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.closed-row td { color: #8b2318 !important; opacity: 0.9; }

.access-link {
  color: #c9a84c;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}
.access-link:hover { opacity: 0.7; }

.access-note {
  font-size: 0.72rem !important;
  color: #5a6e73 !important;
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

.access-map-wrap {
  border: 0.5px solid rgba(201, 168, 76, 0.2);
  overflow: hidden;
  position: sticky;
  top: 80px;
}

.access-map { width: 100%; }
.map-svg { display: block; width: 100%; height: auto; }

/* ─── Footer ─────────────────────────────────────── */
.site-footer {
  background: #100e0c;
  padding: clamp(3rem, 8vw, 5rem) clamp(2rem, 8vw, 8rem);
  border-top: 0.5px solid rgba(201, 168, 76, 0.12);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand { text-align: left; }

.footer-name-ja {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: #e8e0d0;
  letter-spacing: 0.2em;
}

.footer-name-en {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: #c9a84c;
  margin-top: 0.2rem;
  text-transform: uppercase;
}

.footer-year {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #5a6e73;
  margin-top: 0.2rem;
}

.footer-mon-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-rule {
  display: block;
  width: 60px;
  height: 0.4px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-nav a {
  font-family: 'Noto Serif JP', serif;
  font-weight: 200;
  font-size: 0.88rem;
  color: #8a8070;
  text-decoration: none;
  letter-spacing: 0.15em;
  transition: color 0.3s;
}

.footer-nav a:hover { color: #c9a84c; }

.footer-nav span {
  color: rgba(201,168,76,0.3);
  font-size: 0.6rem;
}

.footer-copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #3a3530;
}

/* ─── Reveal Animations ──────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up    { transform: translateY(30px); }
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.reveal-up[data-delay="100"]  { transition-delay: 0.1s; }
.reveal-up[data-delay="200"]  { transition-delay: 0.2s; }
.reveal-up[data-delay="300"]  { transition-delay: 0.3s; }
.reveal-up[data-delay="400"]  { transition-delay: 0.4s; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-bowl-wrap {
    grid-row: 1;
    opacity: 0;
    animation: bowlReveal 1.5s 1.8s cubic-bezier(0.2,0.8,0.3,1) forwards;
  }

  .hero-divider { justify-content: center; }
  .hero-cta { justify-content: center; }

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

  .concept-left,
  .concept-right { display: none; }

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

  .menu-card,
  .menu-card--featured,
  .menu-card--wide {
    grid-column: span 1;
    display: block;
  }

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

  .ingredient-row {
    grid-template-columns: 48px 1fr;
    gap: 1.5rem;
  }

  .ingredient-icon { display: none; }
}

@media (max-width: 600px) {
  .nav-links li:not(:first-child):not(:last-child) { display: none; }
}

/* ─── Reduced Motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
