/* ═══════════════════════════════════════════════════════
   style.css  —  鮨Tsuyoshi  /  Light Theme
   Aesthetic inspired by dreamfield.cc
   Clean luxury · Warm cream · Montserrat body · Rose accent
═══════════════════════════════════════════════════════ */

:root {
  --bg:        #FDFBF7;
  --bg2:       #F5EFE6;
  --bg3:       #EDE5D8;
  --text:      #2C2826;
  --text2:     #6B5E54;
  --muted:     #9A8E86;
  --rose:      #B87878;
  --rose-lt:   #C99090;
  --rose-dim:  #9A6565;
  --rose-dry:  #B47C89;
  --line:      rgba(155,120,110,0.18);
  --line2:     rgba(155,120,110,0.10);
  --serif-jp:  'Noto Serif JP', serif;
  --serif-en:  'Cormorant Garamond', Georgia, serif;
  --serif-body:'EB Garamond', Georgia, serif;
  --sans:      'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 3px rgba(60,40,30,0.07), 0 1px 2px rgba(60,40,30,0.04);
  --shadow-md: 0 4px 18px rgba(60,40,30,0.10), 0 2px 6px rgba(60,40,30,0.06);
  --r:         4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background: #F5EFE6; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.8;
  overflow-x: hidden;
  padding-top: 70px;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(184,120,120,0.28); border-radius: 2px; }

/* ════════════════════════════════ NAV ════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 70px;
  z-index: 200;
  background: rgba(253,251,247,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
#nav.scrolled {
  background: rgba(253,251,247,0.98);
  box-shadow: var(--shadow-sm);
}
#nav.nav-transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}
#nav.nav-transparent .nav-toggle span {
  background: rgba(255, 255, 255, 0.9);
}
#nav.nav-transparent .nav-logo-img {
  opacity: 1;
}

.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img { height: 2rem; width: auto; opacity: 0.82; transition: opacity 0.3s; }
.nav-logo-img:hover { opacity: 1; }

/* Desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { width: 100%; }

.nav-reserve {
  display: none;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--rose);
  border: 1px solid var(--rose-dim);
  padding: 0.48rem 1.2rem;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.nav-reserve:hover { background: var(--rose); color: var(--bg); border-color: var(--rose); }

/* Hamburger (always visible) */
.nav-toggle {
  display: flex;
  background: none; border: none; cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 300;
}
.nav-toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--text2);
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1), opacity 0.25s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 140;
  background: rgba(44,40,38,0.38);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.nav-backdrop.open { opacity: 1; visibility: visible; }
.nav-overlay {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw); height: 100%;
  z-index: 150;
  background: rgba(253,251,247,0.99);
  backdrop-filter: blur(20px);
  transform: translateX(100%);
  overflow-y: auto;
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1);
}
.nav-overlay.open { transform: translateX(0); }
.nav-overlay-inner {
  display: flex; flex-direction: column;
  padding: 88px 2rem 3rem; gap: 0;
}
.nav-overlay-links { list-style: none; }
.nav-overlay-links li { border-bottom: 1px solid var(--line2); }
.nav-overlay-links a {
  display: flex; align-items: baseline; gap: 0.8em;
  text-decoration: none;
  padding: 1rem 0;
  font-family: var(--serif-jp);
  font-size: 1rem; font-weight: 300;
  color: var(--text2); letter-spacing: 0.15em;
  transition: color 0.25s;
}
.nav-overlay-links a:hover,
.nav-overlay-links a.active { color: var(--text); }
.overlay-en {
  font-family: var(--serif-en);
  font-size: 0.7rem; font-style: italic;
  letter-spacing: 0.2em;
  color: var(--rose-dim);
}
.overlay-reserve {
  margin-top: 2rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  color: var(--rose);
  border: 1px solid var(--rose-dim);
  padding: 0.8rem 2rem;
  text-align: center;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}
.overlay-reserve:hover { background: var(--rose); color: var(--bg); }

/* ════════════════════════════════ FLOAT CTA ════════════════════════════════ */
.float-cta {
  position: fixed; right: 1.8rem; bottom: 2.5rem;
  z-index: 190; transition: opacity 0.3s;
}
.float-btn {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  padding: 0.65rem 1.3rem;
  border: 1px solid; display: block;
  transition: all 0.3s; border-radius: 2px;
  box-shadow: var(--shadow-sm);
}
.float-btn.primary { background: var(--rose); color: var(--bg); border-color: var(--rose); }
.float-btn.primary:hover { background: var(--rose-dim); border-color: var(--rose-dim); color: #fff; }

/* ════════════════════════════════ SHARED UTILITIES ════════════════════════════════ */
section { position: relative; }

.section-label {
  font-size: 0.63rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--rose-dim);
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before {
  content: '';
  display: inline-block; width: 2rem; height: 1px;
  background: var(--rose-dim);
}

.reveal {
  opacity: 0; transform: translateY(56px);
  transition: opacity 0.9s cubic-bezier(.22,.61,.36,1), transform 0.9s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.14s; }
.reveal-delay-2 { transition-delay: 0.28s; }
.reveal-delay-3 { transition-delay: 0.44s; }
.reveal-delay-4 { transition-delay: 0.60s; }

/* ════════════════════════════════ PAGE HERO (sub-pages) ════════════════════════════════ */
.page-hero {
  padding: 8rem 4rem 5rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero.has-bg {
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  border-bottom: none;
  min-height: 320px;
}
.page-hero.has-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 9, 5, 0.52);
  pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-title {
  font-family: var(--serif-jp);
  font-weight: 200;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--text);
  letter-spacing: 0.1em;
  margin-top: 0.6rem;
  line-height: 1.1;
}
.page-title-en {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.3em;
  margin-top: 0.8rem;
}
.page-hero.has-bg .page-title { color: #F0E6D0; }
.page-hero.has-bg .page-title-en { color: rgba(201, 148, 58, 0.85); }
.page-hero.has-bg .section-label { color: rgba(240, 230, 208, 0.7); }
.page-hero.has-bg .section-label::before { background: rgba(201, 148, 58, 0.6); }

/* ════════════════════════════════ RESERVATION SPLIT HERO ════════════════════════════════ */
.page-hero.reservation-split {
  padding: 0;
  display: flex;
  align-items: stretch;
  min-height: 380px;
}
.reservation-text-col {
  flex: 1;
  padding: 8rem 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reservation-photo-col {
  width: 44%;
  position: relative;
  overflow: hidden;
}
.reservation-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Homepage: extend hero behind transparent nav */
.page-home { padding-top: 0 !important; }
.page-home #hero { height: 100vh; }

/* ════════════════════════════════ HERO (index) ════════════════════════════════ */
#hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  height: calc(100vh - 70px);
  min-height: 620px;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem max(3rem, 4vw) 4rem max(3.5rem, 6vw);
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.hero-left-inner { max-width: 420px; width: 100%; }
.hero-label {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  color: var(--rose-dim);
  margin-bottom: 2rem;
  display: block;
  opacity: 0;
  transform: translateY(16px);
}
.hero-label.lbl-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.22,.61,.36,1);
}
.hero-title {
  font-family: var(--serif-jp);
  font-weight: 200;
  font-size: clamp(2.3rem, 3.4vw, 4.1rem);
  color: var(--text2);
  letter-spacing: 0.06em;
  line-height: 1.08;
  margin-bottom: 2.2rem;
}
.hero-sub {
  font-family: var(--serif-jp);
  font-size: clamp(0.76rem, 0.92vw, 0.88rem);
  color: var(--text2);
  letter-spacing: 0.12em;
  line-height: 2;
  margin-bottom: 3rem;
  opacity: 0; transform: translateY(22px);
}
.hero-sub.sub-in {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.22,.61,.36,1);
}
.hero-scroll-btn {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #C9943A;
  opacity: 0;
  z-index: 5;
  padding: 0.5rem;
  transition: opacity 0.75s ease;
  line-height: 0;
}
.hero-scroll-btn svg {
  width: 2.8rem;
  height: 2.8rem;
  display: block;
  filter: drop-shadow(0 0 6px rgba(201,148,58,0.25));
}
.hero-scroll-btn.cta-in {
  opacity: 1;
  animation: scrollChevron 2.2s ease-in-out infinite 0.4s;
}
@keyframes scrollChevron {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
  display: block;
  transform: scale(1.04);
  transition: transform 8s cubic-bezier(.14,.6,.36,1);
}
.hero-right.img-loaded img { transform: scale(1); }
.hero-right::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 110px;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* ─── Hero char animation ─── */
.hc-outer {
  display: inline-block; overflow: hidden;
  vertical-align: bottom; line-height: 1.35;
}
.hc-inner {
  display: inline-block;
  transform: translateY(108%);
  transition: transform 0.78s cubic-bezier(.22,.61,.36,1);
}
.hc-inner.hc-in { transform: translateY(0); }

/* ════════════════════════════════ THREE POINTS (index) ════════════════════════════════ */
#points {
  background: #fff;
  padding: 3.5rem 4rem;
}
.points-header { max-width: 1200px; margin: 0 auto; }
.points-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px; margin: 0 auto;
}
.point-item {
  padding: 1.4rem 3.2rem;
}
.point-num {
  font-family: var(--serif-en);
  font-style: italic; font-weight: 300;
  font-size: 4rem;
  color: rgba(184,120,120,0.14);
  line-height: 1; margin-bottom: 1rem; display: block;
}
.point-jp {
  font-family: var(--serif-jp); font-weight: 300;
  font-size: 1.2rem; color: var(--rose);
  letter-spacing: 0.1em; margin-bottom: 0.3rem; display: block;
}
.point-en {
  font-family: var(--serif-en); font-style: italic;
  font-size: 0.82rem; color: var(--rose-dim);
  letter-spacing: 0.2em; display: block; margin-bottom: 1.2rem;
}
.point-desc {
  font-size: 0.83rem; font-weight: 400;
  color: var(--text2); line-height: 1.95; letter-spacing: 0.02em;
}
.point-desc--art {
  font-family: var(--serif-jp); font-weight: 200;
  font-size: clamp(0.82rem, 1.0vw, 0.96rem);
  color: var(--text); line-height: 1.95;
  letter-spacing: 0.08em; text-align: center;
}

/* ════════════════════════════════ EDITORIAL PANELS (index) ════════════════════════════════ */
.editorial-panel {
  display: grid;
  min-height: 82vh;
  overflow: hidden;
}
.panel--img-left  { grid-template-columns: 58fr 42fr; }
.panel--img-right { grid-template-columns: 42fr 58fr; }

.ep-img-wrap {
  position: relative;
  overflow: hidden;
}
.ep-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ep-img-wrap:hover .ep-img { transform: scale(1.04); }

.ep-img-wrap.brush-right {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cfilter id='f' x='-10%25' y='-5%25' width='130%25' height='110%25'%3E%3CfeGaussianBlur stdDeviation='2.8'/%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M-5,-5 L82,-5 C78,6 86,13 81,21 C77,30 85,37 80,46 C76,55 84,62 79,71 C75,80 83,87 78,96 L76,105 L-5,105Z' fill='black' filter='url(%23f)'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cfilter id='f' x='-10%25' y='-5%25' width='130%25' height='110%25'%3E%3CfeGaussianBlur stdDeviation='2.8'/%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M-5,-5 L82,-5 C78,6 86,13 81,21 C77,30 85,37 80,46 C76,55 84,62 79,71 C75,80 83,87 78,96 L76,105 L-5,105Z' fill='black' filter='url(%23f)'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
.ep-img-wrap.brush-left {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cfilter id='f' x='-30%25' y='-5%25' width='130%25' height='110%25'%3E%3CfeGaussianBlur stdDeviation='2.8'/%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M105,-5 L18,-5 C22,6 14,13 19,21 C23,30 15,37 20,46 C24,55 16,62 21,71 C25,80 17,87 22,96 L24,105 L105,105Z' fill='black' filter='url(%23f)'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cfilter id='f' x='-30%25' y='-5%25' width='130%25' height='110%25'%3E%3CfeGaussianBlur stdDeviation='2.8'/%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M105,-5 L18,-5 C22,6 14,13 19,21 C23,30 15,37 20,46 C24,55 16,62 21,71 C25,80 17,87 22,96 L24,105 L105,105Z' fill='black' filter='url(%23f)'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.ep-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem 6rem;
  background: var(--bg);
}
.panel--img-right .ep-text { padding: 7rem 8rem 7rem 6rem; }

.ep-label {
  display: block;
  font-family: var(--serif-en); font-style: italic; font-weight: 300;
  font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.4rem;
}
.ep-title {
  font-family: var(--serif-jp); font-weight: 200;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  color: var(--text); letter-spacing: 0.12em;
  line-height: 1.2; margin: 0 0 2.2rem;
}
.ep-desc {
  font-size: 0.9rem; color: var(--muted);
  line-height: 2.3; margin-bottom: 3.2rem;
  max-width: 26em;
}
.ep-desc--art {
  font-family: var(--serif-jp); font-weight: 300;
  font-size: clamp(0.88rem, 1.1vw, 1.0rem);
  line-height: 2.5; letter-spacing: 0.06em;
}
.ep-link {
  font-family: var(--serif-en); font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--rose-dry); text-decoration: none;
  border-bottom: 1px solid var(--rose-dry);
  padding-bottom: 0.35rem;
  display: inline-flex; align-items: center; gap: 0.7rem;
  align-self: flex-start;
  transition: color 0.4s, border-color 0.4s, gap 0.4s;
}
.ep-link:hover { color: var(--rose-dim); border-color: var(--rose-dim); gap: 1.1rem; }

/* ════════════════════════════════ SWEETS INTERLUDE (index) ════════════════════════════════ */
.sweets-interlude {
  background: var(--bg2);
  padding: 3.5rem 4rem;
}
.sweets-interlude-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.4rem 3.2rem;
}
.sweets-interlude .point-desc--art {
  color: #6B4226;
  font-weight: 400;
  text-align: center;
}

/* ════════════════════════════════ SWEETS CTA (index) ════════════════════════════════ */
#sweets-cta {
  background: #fff;
}
#sweets-cta .ep-link { color: var(--rose-dry); border-color: var(--rose-dry); }
#sweets-cta .ep-link:hover { color: var(--rose-dim); border-color: var(--rose-dim); }
#sweets-cta .ep-title {
  font-size: clamp(1.3rem, 2.2vw, 2.2rem);
  color: #C4959C;
}
.ep-title-num {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
.sweets-cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem; align-items: center;
}
.sweets-cta-title {
  font-family: var(--serif-jp); font-weight: 200;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: var(--text); letter-spacing: 0.1em;
  margin: 0.8rem 0 1.5rem; line-height: 1.2;
}
.sweets-cta-desc {
  font-size: 0.88rem; color: var(--muted);
  line-height: 2.0; margin-bottom: 2.5rem;
}
.sweets-cta-link {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.8rem;
  border-bottom: 1px solid var(--rose-dim); padding-bottom: 0.3rem;
  transition: color 0.3s, border-color 0.3s;
}
.sweets-cta-link span { transition: transform 0.3s; }
.sweets-cta-link:hover { color: var(--rose-lt); border-color: var(--rose-lt); }
.sweets-cta-link:hover span { transform: translateX(4px); }
.sweets-cta-visual { position: relative; }
.sweets-cta-visual img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  display: block; border-radius: var(--r);
  box-shadow: var(--shadow-md);
}
.sweets-cta-visual::before {
  content: '';
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid rgba(184,120,120,0.28);
  border-radius: var(--r); z-index: -1;
}

/* ════════════════════════════════ CONTACT / FOOTER (index) ════════════════════════════════ */
#contact {
  background: var(--bg);
  padding: 7rem 4rem;
}
.contact-inner { max-width: 1200px; margin: 0 auto; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-top: 3.5rem; align-items: stretch;
}
.contact-col { display: flex; flex-direction: column; gap: 0; justify-content: space-between; }
.contact-item { padding-bottom: 2rem; margin-bottom: 2rem; }
.contact-item h4 {
  font-family: var(--serif-jp);
  font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--rose-dim); margin-bottom: 0.6rem;
}
.contact-item p {
  font-family: var(--serif-jp); font-size: 0.88rem; font-weight: 300;
  color: var(--text2); line-height: 1.9;
}
.contact-item a {
  font-family: var(--serif-jp); font-size: 0.88rem;
  color: var(--text2); text-decoration: none;
}
.contact-item a:hover { color: var(--rose); }
.contact-ig { display: flex; flex-direction: row; gap: 1rem; margin-top: 0.2rem; align-items: center; flex-wrap: wrap; }
.ig-link {
  font-size: 0.83rem; font-weight: 400;
  color: var(--rose); text-decoration: none; letter-spacing: 0.03em;
}
.ig-link:hover { color: var(--rose-lt); text-decoration: underline; }
.parking-note {
  font-size: 0.75rem; color: var(--muted);
  margin-top: 0.5rem; line-height: 1.75;
}
.map-btn, .tel-btn {
  display: inline-block; margin-top: 0.8rem;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; color: var(--rose);
  border: 1px solid var(--rose-dim);
  padding: 0.5rem 1.2rem; border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}
.rh-cell .tel-btn {
  font-size: 0.78rem;
  padding: 0.75rem 2.2rem;
  letter-spacing: 0.16em;
}
.map-btn:hover, .tel-btn:hover { background: var(--rose); color: #fff; }
.contact-item a.map-btn:hover, .contact-item a.tel-btn:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: 5rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.footer-nav-wrap { margin-top: 5rem; }
.footer-nav-wrap .footer-bottom { margin-top: 0; border-top: none; padding-top: 1.5rem; }
.footer-logo-img-sm { height: 1.8rem; width: auto; opacity: 0.62; }
.footer-copy {
  font-size: 0.68rem; letter-spacing: 0.1em; color: var(--muted);
}

/* ════════════════════════════════ FOOTER SIMPLE ════════════════════════════════ */
.footer-simple {
  background: var(--bg2);
  border-top: 1px solid var(--line);
}
.footer-main {
  padding: 3.5rem 4rem;
  max-width: 1200px; margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left {
  display: flex; flex-direction: row; align-items: center; gap: 3rem;
}
.footer-logo-link {
  display: block; opacity: 0.72; transition: opacity 0.25s;
}
.footer-logo-link:hover { opacity: 1; }
.footer-logo-img {
  height: 2.4rem; width: auto; display: block;
}
.footer-nav {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.65rem 2.4rem;
}
.footer-nav-link {
  font-family: var(--serif-jp);
  font-size: 0.8rem; font-weight: 300;
  letter-spacing: 0.1em; color: var(--text2);
  text-decoration: none; transition: color 0.25s;
}
.footer-nav-link:hover { color: var(--rose); }
.footer-info-right {
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: flex-start; align-self: flex-start;
}
.footer-info-row {
  display: flex; gap: 4rem; align-items: flex-start;
}
.footer-info-row:nth-child(2) { align-items: flex-end; }
.footer-info-item {
  display: flex; flex-direction: column; gap: 0.5rem;
  min-width: 160px;
}
.footer-info-label {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose-dim); font-family: var(--sans);
}
.footer-info-val {
  font-family: var(--serif-jp);
  font-size: 0.88rem; font-weight: 300;
  color: var(--text2); letter-spacing: 0.04em;
  text-decoration: none; line-height: 1.7;
}
a.footer-info-val { transition: color 0.25s; }
a.footer-info-val:hover { color: var(--rose); }
.footer-ig-group {
  display: flex; flex-direction: column; gap: 0.25rem;
}
.footer-ig {
  font-family: var(--serif-jp);
  font-size: 0.85rem; font-weight: 300;
  color: var(--text2); text-decoration: none;
  letter-spacing: 0.03em; transition: color 0.25s; display: block;
}
.footer-ig:hover { color: var(--rose); }
.footer-bottom-bar {
  padding: 1.1rem 4rem;
  border-top: 1px solid var(--line2);
  display: flex; align-items: center; justify-content: center;
}
.footer-copy {
  font-family: var(--serif-en);
  font-size: 0.68rem; letter-spacing: 0.12em; color: var(--muted);
  text-align: center;
}

/* ════════════════════════════════ BRAND STORY ════════════════════════════════ */
#story { background: var(--bg); padding: 6rem 4rem 8rem; }
.story-inner { max-width: 1200px; margin: 0 auto; }
.story-blocks {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem 6rem; margin-top: 4rem;
}
.story-block-label {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose-dim);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.story-block-label::after {
  content: ''; flex: 1; height: 1px;
  background: var(--line); max-width: 2.5rem;
}
.label-en {
  font-family: var(--serif-en); font-style: italic;
  font-size: 0.7rem; color: var(--rose-dim);
  letter-spacing: 0.15em; opacity: 0.85; margin-left: 0.4rem;
}
.story-block p {
  font-size: 0.88rem; color: var(--text2); line-height: 2.0;
  font-family: var(--serif-jp); font-weight: 300; letter-spacing: 0.03em;
}
.story-block p + p { margin-top: 1rem; }
.story-full { grid-column: 1 / -1; }
.story-promise {
  border-top: 1px solid var(--line);
  padding-top: 3rem; margin-top: 1rem;
}
.story-promise p {
  font-size: 0.9rem; color: var(--text2); line-height: 2.0;
  font-family: var(--serif-jp); font-weight: 300; letter-spacing: 0.03em;
}

/* ════════════════════════════════ CHEF ════════════════════════════════ */
#chef { background: var(--bg); padding: 6rem 4rem 8rem; }
.chef-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 6rem; align-items: start;
}
.chef-photo-col { display: flex; flex-direction: column; gap: 2.5rem; }
.chef-photo-wrap { position: relative; max-width: 82%; margin: 0 auto; }
.chef-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  display: block; border-radius: var(--r);
  filter: grayscale(15%) contrast(1.03);
  box-shadow: var(--shadow-md);
}
.chef-photo-frame {
  position: absolute; inset: -1rem;
  border: 1px solid rgba(184,120,120,0.22);
  pointer-events: none;
  border-radius: calc(var(--r) + 6px);
}
.chef-photo-label {
  position: absolute; bottom: -0.8rem; left: 1.2rem;
  background: var(--rose); color: var(--bg);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 2px;
}
.chef-info { padding-top: 0.5rem; }
.chef-name-jp {
  font-family: var(--serif-jp); font-weight: 200;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--text); letter-spacing: 0.12em; line-height: 1.1;
  margin-top: 0.5rem;
}
.chef-title {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.5rem; margin-bottom: 2.5rem;
}
/* Quote below photo */
.chef-quote {
  background: var(--bg2);
  border-left: 3px solid var(--rose-dim);
  padding: 1.5rem 1.8rem;
  border-radius: 0 var(--r) var(--r) 0;
  position: relative;
}
.chef-quote::before {
  content: '\201C';
  font-family: var(--serif-en); font-size: 4rem;
  color: var(--rose-dim); opacity: 0.3;
  position: absolute; top: -0.8rem; left: 1rem; line-height: 1;
}
.chef-quote p {
  font-family: var(--serif-jp); font-size: 0.88rem; font-weight: 300;
  color: var(--text2); line-height: 2.1; letter-spacing: 0.04em;
  position: relative; z-index: 1;
}
.chef-career {
  margin-bottom: 2.5rem;
  border-left: 1px solid var(--line);
  padding-left: 1.6rem;
}
.career-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.4rem 0; border-bottom: 1px solid var(--line2);
  position: relative;
}
.career-item::before {
  content: '';
  position: absolute; left: calc(-1.6rem - 3px); top: 1.2rem;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 3px var(--bg);
}
.career-year {
  font-family: var(--serif-en); font-style: italic; font-weight: 700;
  font-size: 0.85rem; color: var(--rose);
  min-width: 4.5rem; letter-spacing: 0.05em; padding-top: 0.05rem;
}
.career-desc {
  font-size: 0.83rem; color: var(--text2);
  line-height: 1.75; letter-spacing: 0.02em;
}
.chef-philosophy { margin-bottom: 2rem; }
.chef-philosophy h3 {
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rose-dim); margin-bottom: 1.2rem;
}
.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line);
  border-radius: var(--r); overflow: hidden;
}
.philo-item {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 1.4rem 1.6rem; background: var(--bg);
}
.philo-item strong {
  font-family: var(--serif-jp); font-size: 0.85rem; font-weight: 500;
  color: var(--rose); letter-spacing: 0.12em;
}
.philo-item p {
  font-size: 0.8rem; color: var(--text2); line-height: 1.85; margin: 0;
}

/* ════════════════════════════════ EXPERIENCE ════════════════════════════════ */
#experience { background: var(--bg); padding: 4rem 4rem 2rem; }
.exp-inner { max-width: 1200px; margin: 0 auto; }
.exp-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  margin-top: 1rem; margin-bottom: 1.5rem;
  border-radius: var(--r); overflow: hidden;
}
.exp-intro-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--line);
  text-align: center; background: transparent;
}
.exp-intro-item:last-child { border-right: none; }
.exp-intro-num {
  font-family: var(--serif-en); font-style: italic; font-weight: 300;
  font-size: 2.5rem; color: var(--rose); display: block; line-height: 1;
}
.exp-intro-unit {
  font-family: var(--serif-jp); font-size: 0.75rem; font-weight: 300;
  color: var(--muted); letter-spacing: 0.12em; display: block; margin-top: 0.2rem;
}
.exp-intro-label {
  font-size: 0.78rem; color: var(--text2);
  letter-spacing: 0.06em; margin-top: 0.7rem; display: block;
}
.exp-flow h3 {
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rose-dim); margin-bottom: 2rem;
}
.flow-steps {
  display: flex; gap: 0; align-items: stretch;
  margin-bottom: 5rem; overflow-x: auto; padding-bottom: 0.5rem;
}
.flow-step { flex: 1; min-width: 80px; text-align: center; position: relative; }
.flow-step::after {
  content: ''; position: absolute;
  top: 1.2rem; right: 0; width: 1px; height: 1.4rem;
  background: var(--line);
}
.flow-step:last-child::after { display: none; }
.flow-dot {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  border: 1px solid var(--rose-dim);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.7rem; background: var(--bg2);
}
.flow-dot-inner { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--rose); }
.flow-step-name {
  font-size: 0.7rem; font-weight: 500;
  color: var(--text2); letter-spacing: 0.06em; display: block;
}
.exp-seasons { border-top: 1px solid var(--line); padding-top: 4rem; }
.exp-seasons h3 {
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rose-dim); margin-bottom: 2.5rem;
}
.seasons-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
}
.season-card {
  padding: 2rem 1.5rem;
  background: var(--bg2);
  border-radius: var(--r); position: relative;
  transition: box-shadow 0.3s;
}
.season-card:hover { box-shadow: var(--shadow-md); }
.season-kanji {
  font-family: var(--serif-jp); font-weight: 200;
  font-size: 4rem; color: rgba(184,120,120,0.09);
  position: absolute; top: 0.8rem; right: 1rem; line-height: 1;
}
.season-name {
  font-family: var(--serif-jp); font-weight: 400;
  font-size: 1rem; color: var(--rose); letter-spacing: 0.08em; margin-bottom: 0.2rem;
}
.season-en {
  font-family: var(--serif-en); font-style: italic;
  font-size: 0.75rem; color: var(--muted);
  letter-spacing: 0.12em; display: block; margin-bottom: 1rem;
}
.season-items { list-style: none; }
.season-items li {
  font-size: 0.78rem; color: var(--text2); line-height: 1.85;
  padding-left: 0.8rem; position: relative;
}
.season-items li::before { content: '·'; position: absolute; left: 0; color: var(--rose-dim); }

/* ════════════════════════════════ SPACE ════════════════════════════════ */
#space { background: var(--bg); padding: 6rem 4rem 8rem; }
.space-inner { max-width: 1200px; margin: 0 auto; }
.space-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 5rem; align-items: center; margin-top: 3rem;
}
.space-img-main {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  display: block; border-radius: var(--r); box-shadow: var(--shadow-md);
}
.space-features { display: flex; flex-direction: column; }
.space-feature {
  padding: 1.5rem 0; border-bottom: 1px solid var(--line2);
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.space-feature:last-child { border-bottom: none; }
.space-feature-icon {
  display: inline-block; width: 3px; height: 1.8rem;
  background: var(--rose-dim); min-width: 3px;
  border-radius: 1px; flex-shrink: 0; margin-top: 0.2rem;
}
.space-feature-title {
  font-family: var(--serif-jp); font-weight: 400;
  font-size: 0.88rem; color: #8B4A4A; letter-spacing: 0.08em; margin-bottom: 0.3rem;
}
.space-feature-desc {
  font-size: 0.82rem; color: var(--text2); line-height: 1.88;
}

/* ════════════════════════════════ PRODUCTS ════════════════════════════════ */
#products { background: var(--bg); padding: 6rem 4rem 8rem; }
.products-inner { max-width: 1200px; margin: 0 auto; }
.products-intro { max-width: 640px; margin-bottom: 5rem; }
.products-intro p {
  font-size: 0.88rem; color: var(--text2); line-height: 2.0; margin-top: 1rem;
  font-family: var(--serif-jp); font-weight: 300; letter-spacing: 0.03em;
}
.product-grid { display: flex; flex-direction: column; }
.product-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  padding: 5rem 0;
}
.product-card:nth-child(even) .product-img-wrap { order: 2; }
.product-card:nth-child(even) .product-body { order: 1; }
.product-img-wrap { overflow: hidden; border-radius: var(--r); box-shadow: var(--shadow-md); max-width: 85%; margin: 0 auto; }
.product-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
  transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
}
.product-card:hover .product-img { transform: scale(1.03); }
.product-label {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--rose-dim); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.product-label::before {
  content: ''; display: inline-block;
  width: 1.8rem; height: 1px; background: var(--rose-dim);
}
.product-name {
  font-family: var(--serif-jp); font-weight: 200;
  font-size: clamp(1.3rem, 2vw, 1.7rem); color: var(--text);
  letter-spacing: 0.1em; margin-bottom: 1.2rem; line-height: 1.4;
}
.product-flavor {
  font-size: 0.85rem; color: var(--text2);
  line-height: 1.95; margin-bottom: 1.5rem;
  font-family: var(--serif-jp); font-weight: 300; letter-spacing: 0.03em;
}
.product-meta {
  font-size: 0.8rem; color: var(--text2); line-height: 2.1;
  border-top: 1px solid var(--line2); padding-top: 1.2rem;
  font-family: var(--serif-jp); font-weight: 300;
}
.product-meta span { color: var(--rose); font-weight: 600; font-family: var(--sans); }
.product-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.8rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose); text-decoration: none;
  border-bottom: 1px solid var(--rose-dim); padding-bottom: 0.3rem;
  transition: all 0.3s;
}
.product-btn::after { content: '→'; transition: transform 0.3s; }
.product-btn:hover { color: var(--rose-lt); border-color: var(--rose-lt); }
.product-btn:hover::after { transform: translateX(4px); }
.order-rules { margin-top: 6rem; padding-top: 4rem; }
.order-rules h2 {
  font-family: var(--serif-jp); font-weight: 200;
  font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--text);
  letter-spacing: 0.1em; margin: 1rem 0 3rem;
}
.order-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 5rem;
}
.order-section h4 {
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rose-dim); margin-bottom: 1rem;
}
.order-section p, .order-section li {
  font-size: 0.83rem; color: var(--text2); line-height: 1.95;
}
.order-section ul { list-style: none; padding: 0; }
.order-section li { padding-left: 0.9rem; position: relative; }
.order-section li::before { content: '—'; position: absolute; left: 0; color: var(--rose-dim); }

/* ════════════════════════════════ RESERVATION ════════════════════════════════ */
#reserve { background: var(--bg); padding: 6rem 4rem 8rem; }
.reserve-inner { max-width: 1200px; margin: 0 auto; }
.rules-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 3rem;
}
.rule-block {
  background: var(--bg2);
  border-radius: var(--r);
  padding: 2rem 2.2rem;
}
.rule-block.full-width { grid-column: 1 / -1; }
.rule-block h4 {
  font-family: var(--serif-jp); font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--rose-dim); margin-bottom: 1rem;
  padding-bottom: 0.8rem; border-bottom: 1px solid var(--line);
}
.rule-block ul { list-style: none; padding: 0; }
.rule-block li {
  font-size: 0.83rem; color: var(--text2); line-height: 1.95;
  padding-left: 1rem; position: relative;
}
.rule-block li::before { content: '·'; position: absolute; left: 0; color: var(--rose-dim); font-size: 1.2em; line-height: 1.7; }
.rule-block p { font-size: 0.83rem; color: var(--text2); line-height: 1.95; }
.highlight { color: var(--rose); font-weight: 600; }
.cancel-items { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.cancel-item {
  background: var(--bg3);
  border-left: 3px solid rgba(107,94,84,0.35);
  border-radius: 0 var(--r) var(--r) 0; padding: 1rem 1.5rem;
}
.cancel-item.cancel-warn {
  background: rgba(184,120,120,0.15);
  border-left-color: rgba(184,120,120,0.55);
}
.cancel-item.cancel-warn .ci-time { color: #A04040; }
.ci-time {
  font-family: var(--serif-en); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; color: var(--text); margin-bottom: 0.3rem;
}
.ci-rule { font-size: 0.83rem; color: var(--text2); line-height: 1.8; }
.reserve-hero-quad {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem 5rem;
  margin-top: 4rem; padding-top: 4rem; border-top: 1px solid var(--line);
}
.rh-cell { display: flex; flex-direction: column; gap: 0.4rem; font-family: var(--serif-en); }
.rh-cell h4 {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-dim); margin-bottom: 0.6rem;
}
.rh-right { padding-left: 3rem; }
.reserve-phone-num {
  font-family: var(--sans); font-size: 1.8rem; font-weight: 300; font-style: normal;
  color: var(--text); letter-spacing: 0.06em;
}
.reserve-phone-note { font-family: var(--serif-jp); font-size: 0.82rem; color: var(--muted); margin-top: 0.2rem; font-style: normal; }
.hours-item {
  display: flex; gap: 1.5rem; align-items: baseline;
  padding: 0.5rem 0;
}
.hours-session {
  font-family: var(--serif-jp); font-size: 0.85rem; font-weight: 400;
  color: var(--text2); min-width: 2rem; letter-spacing: 0.1em;
}
.hours-time {
  font-family: var(--serif-en); font-size: 1.05rem; font-weight: 400;
  color: var(--text); letter-spacing: 0.06em;
}

/* ════════════════════════════════ EXPERIENCE PHOTO BREAK ════════════════════════════════ */
.exp-photo-break { background: var(--bg2); overflow: hidden; }
.exp-photo-wrap { position: relative; }
.exp-photo {
  width: 100%; height: 60vh; object-fit: cover; display: block;
  filter: grayscale(10%) contrast(1.02);
}
.exp-photo-caption {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-family: var(--serif-jp); font-size: 0.7rem; font-weight: 300;
  letter-spacing: 0.32em; color: rgba(253,251,247,0.9);
  text-align: center; white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,0.42);
}

/* ════════════════════════════════ STORY PHOTO ACCENT ════════════════════════════════ */
.story-photo-accent { max-width: 680px; margin: 5rem auto 0; }
.story-photo {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
  border-radius: var(--r);
  filter: grayscale(15%) contrast(1.03);
  box-shadow: var(--shadow-md);
}

/* ════════════════════════════════ SPACE WIDE PHOTO ════════════════════════════════ */
.space-photo-row { margin-top: 4rem; }
.space-img-wide {
  width: 100%; aspect-ratio: 21/9; object-fit: cover; display: block;
  border-radius: var(--r);
  filter: grayscale(12%) contrast(1.02);
  box-shadow: var(--shadow-md);
}

/* ════════════════════════════════ STORY IMAGE SPLIT ════════════════════════════════ */
.story-img-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-img-split + .story-img-split {
  margin-top: 7rem;
  padding-top: 6rem;
}
.story-char {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--line);
}
.story-split-photo {
  width: 88%; aspect-ratio: 4/3; object-fit: cover; display: block;
  margin: 0 auto;
  border-radius: var(--r);
  filter: grayscale(10%) contrast(1.02);
  box-shadow: var(--shadow-md);
}
.story-split-text { padding-left: 1rem; }
.story-pillars { display: flex; flex-direction: column; gap: 2.8rem; }
.story-pillar-item {
  display: flex; align-items: flex-start; gap: 1.6rem;
}
.story-pillar-jp {
  font-family: var(--serif-jp); font-weight: 200;
  font-size: 2rem; color: var(--rose-dim);
  letter-spacing: 0.05em; line-height: 1.2;
  min-width: 1.4rem; text-align: center;
}
.story-pillar-en {
  font-family: var(--serif-en); font-style: italic;
  font-size: 0.68rem; color: var(--muted);
  letter-spacing: 0.22em; display: block; margin-top: 0.5rem;
}
.story-pillar-desc {
  font-size: 0.85rem; color: var(--text2);
  font-family: var(--serif-jp); font-weight: 300;
  line-height: 1.9; letter-spacing: 0.03em;
  padding-top: 0.2rem;
}

/* ════════════════════════════════ EXPERIENCE TOP PHOTO ════════════════════════════════ */
.exp-top-photo {
  width: 100%; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.exp-top-photo-img {
  width: 100%; max-height: 72vh;
  object-fit: cover; object-position: center;
  display: block;
  filter: grayscale(8%) contrast(1.02);
}

/* ════════════════════════════════ RESPONSIVE ════════════════════════════════ */
@media (max-width: 1024px) {
  #nav { padding: 0 2rem; }

  #hero { grid-template-columns: 1fr 1fr; }
  .hero-left { padding: 3rem 3rem 3rem 3.5rem; }
  .hero-left-inner { max-width: 380px; }

  .points-grid { max-width: 100%; }
  .point-item { padding: 2.5rem 1.5rem; }

  .editorial-panel,
  .panel--img-left,
  .panel--img-right { grid-template-columns: 1fr; min-height: auto; }
  .ep-img-wrap { height: 65vw; -webkit-mask-image: none !important; mask-image: none !important; }
  .panel--img-right .ep-img-wrap { order: -1; }
  .ep-text,
  .panel--img-right .ep-text { padding: 4rem 2rem 4.5rem; }

  .sweets-cta-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .sweets-cta-visual { max-width: 420px; }

  .chef-inner { grid-template-columns: 1fr; gap: 3rem; }
  .chef-photo-col { max-width: 360px; }

  .space-grid { grid-template-columns: 1fr; gap: 3rem; }

  .seasons-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .product-card { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 0; }
  .product-card:nth-child(even) .product-img-wrap,
  .product-card:nth-child(even) .product-body { order: unset; }
  .product-img { aspect-ratio: 4/5; }

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

@media (max-width: 768px) {
  body { padding-top: 60px; }
  #nav { padding: 0 1.5rem; height: 60px; }
  .page-home #hero { height: 100svh; }

  /* Hero mobile: image fills screen, text overlaid at bottom */
  #hero { display: block; height: calc(100svh - 60px); min-height: 560px; position: relative; }
  .hero-right { position: absolute; inset: 0; }
  .hero-right::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 22%, rgba(253,251,247,0.68) 55%, var(--bg) 80%);
    z-index: 1;
  }
  .hero-right::before { display: none; }
  .hero-left {
    position: relative; z-index: 2;
    height: 100%;
    padding: 2rem 2rem 3.5rem;
    align-items: flex-end; justify-content: flex-start;
    background: transparent;
  }
  .hero-left-inner { max-width: 100%; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.2rem); }

  .page-hero { padding: 4rem 1.5rem 2.2rem; }
  .page-hero.has-bg { min-height: 208px; }
  .page-hero.reservation-split { padding: 0; flex-direction: column; min-height: auto; }
  .reservation-text-col { padding: 5rem 1.5rem 3rem; }
  .reservation-photo-col { width: 100%; height: 260px; }
  #story, #chef, #experience, #space, #products, #reserve { padding: 4rem 1.5rem 5.5rem; }
  #points, #sweets-cta, #contact { padding: 4.5rem 1.5rem; }
  .footer-main { padding: 3rem 1.5rem; flex-direction: column; gap: 3rem; align-items: center; text-align: center; }
  .footer-left { gap: 2rem; flex-direction: column; align-items: center; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; }
  .footer-info-right { gap: 1.5rem; align-items: center; width: 100%; }
  .footer-info-row { flex-direction: column; gap: 1.5rem; align-items: center; }
  .footer-info-row:nth-child(2) { align-items: center; }
  .footer-info-item { min-width: 140px; align-items: center; display: flex; flex-direction: column; }
  .footer-ig-group { align-items: center; }
  .footer-bottom-bar { padding: 1rem 1.5rem; }

  .story-img-split { grid-template-columns: 1fr; gap: 3rem; }
  .story-img-split + .story-img-split { margin-top: 3rem; padding-top: 3rem; }
  .story-img-split .story-split-photo { order: -1; }
  .story-split-text { padding-left: 0; }
  .story-char { margin-top: 3.5rem; padding-top: 3rem; }
  .exp-top-photo-img { max-height: 55vw; }

  .order-rules { padding-left: 1rem; }
  .reserve-hero-quad { padding-left: 1.5rem; }

  .exp-intro-grid { grid-template-columns: 1fr; }
  .exp-intro-item { border-right: none; border-bottom: 1px solid var(--line); }
  .exp-intro-item:last-child { border-bottom: none; }

  .product-body { padding: 0 1rem; }
  .order-grid { grid-template-columns: 1fr; gap: 2rem; }
  .rules-grid { grid-template-columns: 1fr; }
  .reserve-hero-quad { grid-template-columns: 1fr; }
  .rh-right { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 1.5rem; }

  .footer-bottom { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .footer-copy { font-size: 0.65rem; }

  .sweets-cta-inner { gap: 3rem; }
  .sweets-cta-visual { max-width: 320px; }

  .sweets-interlude { padding: 4.5rem 1.5rem; }
  .sweets-interlude-inner { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .seasons-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════ INTRO OVERLAY ════════════════════════════════ */
#page-intro {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
}
#page-intro.intro-exit {
  animation: introSlideUp 0.85s cubic-bezier(0.77,0,0.18,1) forwards;
  pointer-events: none;
}
@keyframes introSlideUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}
.intro-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.intro-logo {
  width: 115px; height: auto;
  opacity: 0;
  filter: blur(12px);
  transform: scale(1.2);
  transition: opacity 1.1s ease, filter 1.1s ease, transform 1.2s cubic-bezier(.22,.61,.36,1);
}
.intro-logo.intro-show { opacity: 1; filter: blur(0); transform: scale(1); }
.intro-name {
  display: block;
  font-family: var(--serif-jp); font-weight: 200;
  font-size: 1.9rem; letter-spacing: 0.22em;
  color: var(--text);
  margin-top: 1.4rem;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.85s ease 0.55s, transform 0.85s ease 0.55s;
}
.intro-name.intro-show { opacity: 1; transform: translateY(0); }
.intro-divider {
  display: block;
  width: 0; height: 1px;
  background: rgba(184,120,120,0.38);
  margin: 1rem auto;
  transition: width 1s ease 0.9s;
}
.intro-divider.intro-show { width: 56px; }
.intro-tagline {
  display: block;
  font-family: var(--serif-en); font-style: italic;
  font-size: 0.74rem; letter-spacing: 0.3em;
  color: var(--rose-dim);
  opacity: 0;
  transition: opacity 0.8s ease 1.1s;
}
.intro-tagline.intro-show { opacity: 1; }
.intro-skip {
  position: absolute;
  bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.62rem; letter-spacing: 0.2em;
  color: var(--muted); font-family: var(--sans);
  opacity: 0; transition: opacity 0.5s ease 1.6s;
  cursor: pointer; user-select: none; white-space: nowrap;
}
.intro-skip.intro-show { opacity: 1; }

/* ════════════════════════════════ INK TRANSITION ════════════════════════════════ */
#ink-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #F5EFE6;
  pointer-events: none;
  opacity: 0;
}
#ink-transition.ink-cover {
  animation: inkCover 0.45s ease forwards;
  pointer-events: all;
}
#ink-transition.ink-reveal {
  animation: inkReveal 0.45s ease forwards;
}
@keyframes inkCover {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes inkReveal {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* ════════════════════════════════ SCROLL PROGRESS ════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 70px;
  right: 0;
  width: 2px;
  height: 0%;
  background: linear-gradient(to bottom, var(--rose), rgba(184,120,120,0.18));
  z-index: 180;
  border-radius: 0 0 2px 2px;
  transition: height 0.08s linear;
}

/* ════════════════════════════════ HERO CANVAS (feature 1) ════════════════════════════════ */
#heroCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 1;
  pointer-events: none;
}

/* ════════════════════════════════ SEASON HORIZONTAL SCROLL (feature 7) ════════════════════════════════ */
.season-scroll-outer {
  position: relative;
  height: 200vh;
}
.season-scroll-sticky {
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.season-scroll-header {
  padding: 2.2rem 4rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  flex-shrink: 0;
}
.season-scroll-header h3 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-dim);
}
.season-progress-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.season-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(184,120,120,0.22);
  transition: background 0.4s, transform 0.4s;
}
.season-dot.active {
  background: var(--rose);
  transform: scale(1.4);
}
.season-scroll-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.season-scroll-track {
  display: flex;
  height: 100%;
  will-change: transform;
}
.season-panel {
  min-width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
  flex-shrink: 0;
}
.season-panel-inner {
  max-width: 820px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 5rem;
  align-items: center;
}
.season-panel-kanji {
  font-family: var(--serif-jp);
  font-weight: 200;
  font-size: clamp(8rem, 16vw, 14rem);
  color: rgba(184,120,120,0.08);
  line-height: 1;
  text-align: center;
  transition: color 0.8s;
  user-select: none;
}
.season-panel.s-active .season-panel-kanji {
  color: rgba(184,120,120,0.18);
}
.season-panel-name {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--rose);
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.season-panel-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.9rem;
}
.season-panel-items {
  list-style: none;
}
.season-panel-items li {
  font-size: 0.78rem;
  color: var(--text2);
  line-height: 2.0;
  font-family: var(--serif-jp);
  font-weight: 300;
  padding-left: 1.2rem;
  position: relative;
}

/* — Two-season pair layout — */
.season-pair-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  max-width: 1100px;
  width: 100%;
  align-items: center;
}
.season-half {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  padding: 0 4rem;
}
.season-half-kanji {
  font-family: var(--serif-jp);
  font-weight: 200;
  font-size: clamp(5rem, 10vw, 9rem);
  color: rgba(184,120,120,0.08);
  line-height: 1;
  transition: color 0.8s;
  user-select: none;
}
.season-panel.s-active .season-half-kanji {
  color: rgba(184,120,120,0.18);
}
.season-pair-divider {
  width: 1px;
  height: 8rem;
  background: var(--line);
  align-self: center;
}
.season-panel-items li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rose-dim);
}
.season-scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  animation: hintPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hintPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.75; }
}

/* Mobile: revert season section to normal grid */
@media (max-width: 768px) {
  .season-scroll-outer { height: auto; }
  .season-scroll-sticky { position: static; height: auto; display: block; }
  .season-scroll-track-wrap { overflow: visible; }
  .season-scroll-track { flex-direction: column; transform: none !important; }
  .season-panel { min-width: unset; padding: 1.5rem; }
  .season-panel-inner { grid-template-columns: 1fr; gap: 1rem; }
  .season-panel-kanji { font-size: 5rem; }
  .season-scroll-hint { display: none; }
  .season-pair-inner { grid-template-columns: 1fr; }
  .season-pair-divider { display: none; }
  .season-half { grid-template-columns: 1fr; gap: 0.8rem; padding: 1.5rem 0 1.5rem 1.5rem; }
  .season-half-kanji { font-size: 4rem; }
  #scroll-progress { top: 60px; }
}

/* ═════════════════════════════ IMAGE PROTECTION ═════════════════════════════ */
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}
/* Restore for links that wrap images */
a img { pointer-events: auto; }

/* ═════════════════════════════ BACK TO TOP ═════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 900;
  width: 2.6rem; height: 2.6rem;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}
.back-to-top.visible {
  opacity: 1; visibility: visible;
}
.back-to-top:hover {
  background: var(--bg3); transform: translateY(-2px);
}
.back-to-top svg {
  width: 0.9rem; height: 0.9rem;
  stroke: var(--rose-dim); stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
