/* ===== Tokens ===== */
:root {
  --olive: #5d7340;
  --olive-deep: #3f5030;
  --olive-mid: #84985a;
  --pistachio: #c2d4a3;
  --sage: #eef2e8;
  --cream: #fcfbf7;
  --cream-2: #f6f3ec;
  --ink: #2e2a20;
  --ink-soft: #5a5446;
  --gold: #c2a35a;
  --white: #ffffff;
  --serif: "Shippori Mincho B1", serif;
  --gothic: "Zen Kaku Gothic New", sans-serif;
  --latin: "Cormorant Garamond", serif;
  --maxw: 1120px;
  --radius: 4px;
  --shadow: 0 18px 40px -24px rgba(46, 42, 32, .55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: var(--gothic);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Typography ===== */
.label {
  font-family: var(--latin);
  font-size: 14px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--olive-mid); margin-bottom: 14px;
}
.label.light { color: var(--pistachio); }
.section-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(26px, 4vw, 40px); line-height: 1.45; color: var(--olive-deep);
  letter-spacing: .02em; text-wrap: balance;
}
.section-title.light { color: var(--cream); }
.section-desc { margin-top: 18px; color: var(--ink-soft); font-size: 15px; }
.section-desc.light { color: rgba(255,255,255,.82); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.lead { font-size: 16px; color: var(--ink-soft); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px; font-family: var(--gothic);
  font-weight: 700; font-size: 15px; letter-spacing: .04em; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--olive); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--olive-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}
.site-header.scrolled {
  background: rgba(252, 251, 247, .9);
  backdrop-filter: blur(10px); padding: 12px 32px;
  box-shadow: 0 1px 0 rgba(46,42,32,.08);
}
.brand { display: flex; flex-direction: row; align-items: center; gap: 12px; line-height: 1.1; color: var(--cream); transition: color .4s ease; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-icon { width: 40px; height: 40px; border-radius: 50%; display: block; flex-shrink: 0; filter: drop-shadow(0 1px 3px rgba(0,0,0,.3)); }
.site-header.scrolled .brand { color: var(--olive-deep); }
.brand-jp { font-family: var(--serif); font-weight: 600; font-size: 19px; letter-spacing: .08em; }
.brand-en { font-family: var(--latin); font-size: 12px; letter-spacing: .22em; opacity: .85; }
.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 14px; font-weight: 500; color: var(--cream); position: relative; transition: color .4s ease;
}
.site-header.scrolled .nav a { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px;
  background: var(--olive-mid); transition: width .3s ease;
}
.nav a:hover::after { width: 100%; }
.header-tel {
  font-family: var(--latin); font-size: 18px; font-weight: 600; letter-spacing: .06em;
  color: var(--cream); transition: color .4s ease;
  font-variant-numeric: lining-nums; font-feature-settings: "lnum" 1;
}
.site-header.scrolled .header-tel { color: var(--olive-deep); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); transition: background .4s ease, transform .3s ease, opacity .3s ease; }
.site-header.scrolled .nav-toggle span { background: var(--olive-deep); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: var(--cream); overflow: hidden; }
.hero-media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-image: linear-gradient(135deg, #6f7d4d 0%, #4a552f 55%, #343c22 100%);
  transform: scale(1.05);
}
.hero-media.has-img::after { content: none; }
.hero-overlay { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(22,25,12,.6) 0%, rgba(22,25,12,.32) 45%, rgba(22,25,12,.12) 100%),
  linear-gradient(180deg, rgba(22,25,12,.4) 0%, rgba(22,25,12,.2) 40%, rgba(22,25,12,.55) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; width: 100%; }
.hero-eyebrow { font-family: var(--latin); letter-spacing: .3em; text-transform: uppercase; font-size: 14px; opacity: .9; margin-bottom: 22px; }
.hero-title { font-family: var(--serif); font-weight: 600; font-size: clamp(32px, 8vw, 86px); line-height: 1.25; letter-spacing: .03em; text-shadow: 0 2px 24px rgba(0,0,0,.5), 0 1px 3px rgba(0,0,0,.35); }
.hero-lead { margin-top: 26px; font-size: clamp(15px, 1.6vw, 18px); line-height: 2; max-width: 30em; text-shadow: 0 1px 12px rgba(0,0,0,.45); }
.hero-cta { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-note { margin-top: 20px; font-size: 13.5px; letter-spacing: .04em; color: rgba(255,255,255,.92); text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.6); border-radius: 14px; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; border-radius: 2px; background: #fff; animation: cue 1.8s infinite; }
@keyframes cue { 0% { opacity: 0; top: 8px; } 30% { opacity: 1; } 60% { opacity: 1; } 100% { opacity: 0; top: 22px; } }

/* ===== Concept ===== */
.concept { background: var(--cream); }
.concept-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.feature-list { margin-top: 30px; display: grid; gap: 16px; }
.feature-list li { display: flex; flex-direction: column; padding-left: 20px; position: relative; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; border-radius: 50%; background: var(--pistachio); }
.feature-list strong { font-family: var(--serif); font-size: 17px; color: var(--olive-deep); }
.feature-list span { font-size: 14px; color: var(--ink-soft); }
.concept-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.concept-photos .tall { grid-row: span 2; }

/* ===== Placeholder frame ===== */
.ph-frame {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 220px;
  background-size: cover; background-position: center; box-shadow: var(--shadow);
  background-image: linear-gradient(135deg, #aebb8a 0%, #8a9a64 100%);
}
.ph-frame.tall { min-height: 458px; }
.ph-frame::after {
  content: attr(data-label); position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px; color: rgba(255,255,255,.92); font-size: 13px; letter-spacing: .05em;
  background: rgba(66,77,42,.28); font-weight: 500;
}
.ph-frame.has-img::after { content: none; }
.hero-media.has-img { background-image: var(--bg); }

/* ===== Galleries ===== */
.menu { background: var(--cream-2); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.g-item {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background-size: cover; background-position: center; box-shadow: var(--shadow);
  background-image: linear-gradient(135deg, #aebb8a 0%, #8a9a64 100%);
  transition: transform .4s ease;
}
.g-item:hover { transform: translateY(-4px); }
.g-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 16px 14px;
  background: linear-gradient(transparent, rgba(40,44,24,.72)); color: #fff; font-size: 14px;
  font-family: var(--serif); letter-spacing: .04em;
}
.g-item.placeholder .cap { background: rgba(66,77,42,.3); inset: 0; top: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 16px; font-family: var(--gothic); font-size: 13px; color: rgba(255,255,255,.92); }
.g-item.placeholder { cursor: default; }
.g-item.placeholder:hover { transform: none; }

/* ===== Welcome message ===== */
.welcome { background: var(--sage); padding: 96px 0; }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.welcome-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.welcome-photo img { width: 100%; height: auto; display: block; }
.welcome-title { font-family: var(--serif); font-weight: 600; font-size: clamp(22px, 3.2vw, 32px); color: var(--olive-deep); line-height: 1.5; letter-spacing: .03em; text-wrap: balance; }
.welcome-msg { margin-top: 24px; font-size: 15.5px; line-height: 2.1; color: var(--ink-soft); }
.welcome-sign { margin-top: 22px; font-family: var(--serif); font-size: 15px; color: var(--olive-mid); letter-spacing: .08em; }

/* ===== Menu (text) ===== */
.menu-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: -24px 0 52px; }
.menu-badges span {
  font-size: 13px; font-weight: 500; letter-spacing: .03em; color: var(--olive);
  background: var(--white); border: 1px solid rgba(91,107,58,.25); border-radius: 999px; padding: 7px 16px;
}
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 56px 64px; }
.menu-cat { margin-bottom: 44px; }
.menu-cat:last-child { margin-bottom: 0; }
.menu-cat-photo { aspect-ratio: 3 / 2; border-radius: 12px; overflow: hidden; margin-bottom: 18px; box-shadow: 0 6px 18px rgba(46,42,32,.10); }
.menu-cat-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-cat-title {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--olive-deep);
  padding-bottom: 12px; margin-bottom: 18px; border-bottom: 2px solid var(--pistachio);
}
.menu-cat-note { font-family: var(--gothic); font-size: 12px; font-weight: 500; color: var(--olive-mid); letter-spacing: .02em; }
.menu-items { list-style: none; display: grid; gap: 14px; }
.menu-items li { display: flex; align-items: baseline; gap: 10px; }
.mi-name { order: 1; font-size: 15.5px; color: var(--ink); display: flex; flex-direction: column; }
.mi-name small { font-size: 12px; color: var(--ink-soft); margin-top: 3px; letter-spacing: .02em; }
.menu-items li::after {
  content: ""; order: 2; flex: 1; border-bottom: 1px dotted rgba(91,107,58,.45); transform: translateY(-5px); min-width: 16px;
}
.mi-price { order: 3; font-family: var(--latin); font-size: 17px; font-weight: 600; color: var(--olive-deep); white-space: nowrap; font-variant-numeric: lining-nums; font-feature-settings: "lnum" 1; }
.menu-side { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; margin-top: 52px; padding-top: 32px; border-top: 1px solid rgba(91,107,58,.18); }
.menu-side span { font-size: 15px; color: var(--ink-soft); display: inline-flex; align-items: baseline; gap: 10px; }
.menu-side em { font-style: normal; font-family: var(--serif); color: var(--olive-deep); }
.menu-foot { text-align: center; margin-top: 28px; font-size: 13px; color: var(--ink-soft); line-height: 1.9; }
.menu-foot a { color: var(--olive); text-decoration: underline; }

/* ===== Interior ===== */
.interior { background: var(--olive-deep); }
.interior .gallery { grid-template-columns: repeat(3, 1fr); }

/* ===== Instagram ===== */
.instagram { background: var(--cream); text-align: center; }
.insta-inner { max-width: 760px; margin: 0 auto; }
.insta-btn { margin-top: 26px; }
.insta-grid { margin-top: 48px; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.insta-grid .g-item { aspect-ratio: 1; }

/* ===== Info ===== */
.info { background: var(--sage); }
.shopfront { max-width: 860px; margin: 0 auto 56px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.shopfront img { width: 100%; height: auto; display: block; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.info-list { margin: 28px 0 32px; }
.info-list > div { display: grid; grid-template-columns: 96px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(66,77,42,.15); }
.info-list dt { font-family: var(--serif); font-weight: 600; color: var(--olive-deep); font-size: 15px; }
.info-list dd { font-size: 15px; color: var(--ink-soft); }
.info-list dd a { color: var(--olive); text-decoration: underline; }
.info-list .hours-row { grid-template-columns: 1fr; gap: 6px; }
.hours-table { width: 100%; max-width: 420px; border-collapse: collapse; margin: 6px 0 8px; font-family: var(--gothic); }
.hours-table th, .hours-table td { padding: 7px 4px; text-align: center; border: 1px solid rgba(66,77,42,.16); }
.hours-table thead th, .hours-table td { width: 11%; }
.hours-table tbody th { white-space: nowrap; }
.hours-table thead th { background: var(--olive); color: #fff; font-weight: 600; font-size: 13.5px; }
.hours-table thead th:first-child { background: var(--olive-deep); }
.hours-table thead th.rest { background: var(--olive-mid); }
.hours-table tbody th { background: var(--sage); color: var(--olive-deep); font-weight: 700; font-size: 13px; text-align: center; white-space: nowrap; width: 64px; }
.hours-table td { font-size: 16px; line-height: 1; }
.hours-table td.ok { color: var(--olive); font-weight: 700; }
.hours-table td small { display: block; margin-top: 2px; font-size: 11px; font-weight: 600; line-height: 1; color: var(--olive-mid); letter-spacing: -.01em; }
.hours-table td.no { color: #b3ab9a; }
.hours-table td.rest { background: rgba(46,42,32,.05); }
.hours-legend { display: block; margin-top: 8px; font-size: 15px; color: var(--ink-soft); letter-spacing: .01em; }
.info-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 100%; min-height: 420px; }
.info-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.parking { margin-top: 64px; text-align: center; }
.parking-title { font-family: var(--serif); font-weight: 600; font-size: clamp(20px, 3vw, 26px); color: var(--olive-deep); }
.parking-desc { margin-top: 12px; color: var(--ink-soft); font-size: 15px; line-height: 1.9; }
.parking-map { max-width: 880px; margin: 30px auto 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.parking-map img { width: 100%; height: auto; display: block; }

/* ===== Footer ===== */
.site-footer { background: var(--olive-deep); color: var(--cream); padding: 56px 0 32px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .brand-jp { font-family: var(--serif); font-size: 22px; letter-spacing: .12em; }
.footer-brand .brand-en { font-family: var(--latin); font-size: 13px; letter-spacing: .24em; opacity: .8; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 14px; position: relative; opacity: .92; }
.footer-links a:hover { color: var(--pistachio); }
.copyright { font-size: 12px; opacity: .6; letter-spacing: .06em; }

/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,22,12,.92); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox-close { position: absolute; top: 22px; right: 28px; background: none; border: none; color: #fff; font-size: 38px; cursor: pointer; line-height: 1; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .nav, .header-tel { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex; flex-direction: column; position: fixed; top: 0; right: 0; height: 100vh; width: 74%;
    background: var(--cream); padding: 96px 32px 32px; gap: 4px; box-shadow: -10px 0 40px rgba(0,0,0,.18); z-index: 99;
  }
  .nav.open a { color: var(--ink); font-size: 17px; padding: 16px 0; border-bottom: 1px solid rgba(66,77,42,.12); }
  .nav.open a::after { display: none; }
  .concept-grid, .info-grid, .menu-cols, .welcome-grid { grid-template-columns: 1fr; gap: 36px; }
  .menu-cat { margin-bottom: 36px; }
  .info-map { min-height: 0; height: auto; aspect-ratio: 1 / 1; }
  .info-map iframe { min-height: 0; height: 100%; }
  .concept-photos .tall { min-height: 320px; }
  .gallery, .interior .gallery { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .site-header { padding: 14px 20px; }
  .container { padding: 0 20px; }
  .hero-inner { padding: 0 22px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .footer-links { gap: 18px; }
}
