:root {
  --bg: #fafaf7;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --line: #d8d4ca;
  --accent: #8a6f47;
  --paper: #f3f0e8;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-weight: 400;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Floating menu */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 32px 48px;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
.menu-toggle {
  pointer-events: auto;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  transition: all 0.4s ease;
  border-radius: 2px;
}
body.menu-open .menu-toggle,
body.scrolled-past-hero .menu-toggle,
body.no-hero-image .menu-toggle {
  color: var(--ink);
  background: rgba(250, 250, 247, 0.7);
}

.menu-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--bg);
  z-index: 99;
  padding: 100px 60px 60px;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
  border-left: 1px solid var(--line);
  overflow-y: auto;
}
body.menu-open .menu-panel { transform: translateX(0); }
.menu-panel ul { list-style: none; }
.menu-panel li {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.menu-open .menu-panel li { opacity: 1; transform: translateX(0); }
body.menu-open .menu-panel li:nth-child(1) { transition-delay: 0.2s; }
body.menu-open .menu-panel li:nth-child(2) { transition-delay: 0.28s; }
body.menu-open .menu-panel li:nth-child(3) { transition-delay: 0.36s; }
body.menu-open .menu-panel li:nth-child(4) { transition-delay: 0.44s; }
body.menu-open .menu-panel li:nth-child(5) { transition-delay: 0.52s; }
body.menu-open .menu-panel li:nth-child(6) { transition-delay: 0.6s; }
body.menu-open .menu-panel li:nth-child(7) { transition-delay: 0.68s; }
body.menu-open .menu-panel li:nth-child(8) { transition-delay: 0.76s; }
.menu-panel a {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--ink);
  display: block;
  padding: 4px 0;
  transition: color 0.3s;
}
.menu-panel a:hover { color: var(--accent); }
.menu-panel a .en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ink-soft);
  margin-top: 4px;
  font-weight: 300;
  text-transform: uppercase;
}
.menu-panel hr { border: none; border-top: 1px solid var(--line); margin: 36px 0 28px; }
.menu-panel .menu-sub a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 98;
}
body.menu-open .menu-overlay { opacity: 1; pointer-events: auto; }

/* Store hero */
.store-hero {
  height: 90vh;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
}
.store-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.store-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 22s ease-out forwards;
}
.store-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.55) 100%);
}
.store-hero.no-image {
  background: var(--bg);
  color: var(--ink);
  height: 70vh;
}
.store-hero.no-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--paper) 0%, transparent 70%);
  z-index: 0;
  opacity: 0.6;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.0); }
}

.store-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  width: 100%;
}
.store-num-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 50px;
  text-transform: uppercase;
  opacity: 0;
  animation: gentleFade 2s ease 0.8s forwards;
}
.store-hero.no-image .store-num-large { color: var(--ink-soft); }

.store-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 88px);
  letter-spacing: 0.2em;
  line-height: 1.3;
  margin-bottom: 32px;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  opacity: 0;
  animation: gentleFade 3s ease 1.4s forwards;
}
.store-hero.no-image .store-title { color: var(--ink); text-shadow: none; }

.store-title-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 70px;
  opacity: 0;
  animation: gentleFade 2.5s ease 2.2s forwards;
}
.store-hero.no-image .store-title-en { color: var(--ink-soft); }

.store-tagline {
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: 0.18em;
  line-height: 2.6;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,0.92);
  opacity: 0;
  animation: gentleFade 2.5s ease 3s forwards;
}
.store-hero.no-image .store-tagline { color: var(--ink); }

/* Hero meta — address & Instagram below tagline */
.store-hero-meta {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: gentleFade 2.5s ease 3.6s forwards;
}
.store-hero-meta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Shippori Mincho', serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.store-hero-meta a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.store-hero-meta .ig-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
}
.store-hero-meta .map-icon {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
}
.store-hero-meta .divider-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.store-hero.no-image .store-hero-meta a {
  color: var(--ink-soft);
  border-bottom-color: var(--line);
}
.store-hero.no-image .store-hero-meta a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.store-hero.no-image .store-hero-meta .divider-dot {
  background: var(--line);
}

@keyframes gentleFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Sections */
section { padding: 140px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

/* Concept — accordion style, click to expand */
.concept {
  text-align: center;
}
.concept-toggle {
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Shippori Mincho', serif;
  color: var(--ink);
  transition: color 0.4s ease;
  margin: 0 auto;
}
.concept-toggle:hover { color: var(--accent); }
.concept-toggle h2 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 30px);
  letter-spacing: 0.18em;
  line-height: 2;
  margin: 0;
}
.concept-toggle .toggle-line {
  width: 40px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.5s ease;
}
.concept-toggle .toggle-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 12px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
}
.concept[data-open="true"] .toggle-line { width: 60px; }
.concept[data-open="true"] .toggle-line::after { opacity: 0; }
.concept-toggle .toggle-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 300;
  transition: color 0.3s ease;
}
.concept[data-open="true"] .toggle-label { color: var(--accent); }
.concept-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease, margin-top 0.8s ease;
  opacity: 0;
  margin-top: 0;
}
.concept[data-open="true"] .concept-body {
  max-height: 1500px;
  opacity: 1;
  margin-top: 60px;
}
.concept-body .body {
  max-width: 580px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2.6;
  color: var(--ink-soft);
  text-align: left;
  letter-spacing: 0.05em;
}
.concept-body .body p { margin-bottom: 26px; }
.concept-body .body p:last-child { margin-bottom: 0; }

/* Featured image */
.featured-image {
  height: 75vh;
  overflow: hidden;
}
.featured-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* A breath divider */
.divider {
  width: 1px; height: 80px;
  background: var(--line);
  margin: 0 auto;
  display: block;
}

/* Info — minimal, no big eyebrow */
.info-section { background: var(--paper); }
.info-table {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
.info-table > div {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.info-table > div:nth-child(odd) {
  font-family: 'Shippori Mincho', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
}
.info-table > div:nth-child(even) {
  font-size: 15px;
  color: var(--ink);
  line-height: 2;
  letter-spacing: 0.05em;
}
/* Inline links in info table — quiet underline */
.info-table a {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.info-table a:hover { color: var(--accent); border-color: var(--accent); }
.info-table a .ext {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 300;
  transition: color 0.3s;
}
.info-table a:hover .ext { color: var(--accent); }
/* Instagram icon — thin line art, matches site weight */
.ig-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 4px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  transition: stroke 0.3s;
}
.info-table a:hover .ig-icon { stroke: var(--accent); }

/* Story / intro section — quotes and editorial feel */
.story {
  background: var(--bg);
  text-align: center;
}
.story .body {
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2.6;
  color: var(--ink-soft);
  text-align: left;
  letter-spacing: 0.05em;
}
.story .body p { margin-bottom: 26px; }
.story .body p:last-child { margin-bottom: 0; }
.story .source {
  display: block;
  margin-top: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ink-soft);
  text-transform: uppercase;
  text-align: center;
}

/* Recruit CTA */
.store-recruit {
  background: var(--ink);
  color: var(--bg);
  padding: 130px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.store-recruit::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(138, 111, 71, 0.18) 0%, transparent 60%);
}
.store-recruit-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.store-recruit h2 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 30px);
  letter-spacing: 0.15em;
  line-height: 2.2;
  margin-bottom: 32px;
}
.store-recruit p {
  font-size: 14px;
  line-height: 2.4;
  color: rgba(250, 250, 247, 0.7);
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}
.recruit-btn {
  display: inline-block;
  padding: 18px 56px;
  border: 1px solid rgba(250, 250, 247, 0.8);
  color: var(--bg);
  font-size: 12px;
  letter-spacing: 0.4em;
  transition: all 0.4s ease;
  font-family: 'Shippori Mincho', serif;
}
.recruit-btn:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

/* Back nav — simple Japanese */
.back-nav {
  padding: 80px 48px;
  text-align: center;
}
.back-nav a {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  transition: color 0.3s;
}
.back-nav a:hover { color: var(--accent); }

/* Footer */
footer {
  padding: 50px 48px;
  text-align: center;
  border-top: 1px solid var(--line);
}
footer .footer-tag {
  font-family: 'Shippori Mincho', serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
footer .footer-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.6s ease, transform 1.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  header { padding: 24px; }
  .menu-toggle { font-size: 11px; padding: 8px 14px; letter-spacing: 0.3em; }
  .menu-panel { padding: 80px 32px 40px; }
  .store-hero { padding: 0 32px; height: 80vh; }
  .store-hero-meta { margin-top: 36px; gap: 14px; flex-direction: column; }
  .store-hero-meta a { font-size: 12px; }
  .store-hero-meta .divider-dot { display: none; }
  section, .store-recruit { padding: 90px 24px; }
  .back-nav { padding: 60px 24px; }
  footer { padding: 40px 24px; }
  .featured-image { height: 50vh; }
  .info-table { grid-template-columns: 1fr; }
  .info-table > div { padding: 18px 0; }
  .info-table > div:nth-child(odd) { padding-bottom: 8px; border-bottom: none; }
  .info-table > div:nth-child(even) { padding-top: 0; }
  .divider { height: 60px; }
}
