/* ─── Tokens ──────────────────────────────────────────────────── */
:root {
  /* Neutrals — clean whites and cool off-whites */
  --white:    #FFFFFF;
  --shiro:    #F8F8F6;   /* cool near-white, main background */
  --frost:    #EFEFED;   /* alternate sections */
  --mist:     #E4E4E0;   /* borders, dividers */

  /* Sakura — accent only */
  --hana:     #E8B4B8;   /* sakura petal */
  --usui:     #C8848A;   /* deeper rose, active/hover */
  --blush:    #F5E6E7;   /* very pale blush, pill backgrounds */

  /* Indigo — Japanese kon, the deep anchor */
  --kon:      #1C2340;   /* deep indigo, headings and dark surfaces */
  --ai:       #2E3A6E;   /* mid indigo */

  /* Body text neutrals */
  --kawa:     #6B6B6B;   /* neutral grey, body text */
  --sumi:     #1A1A1A;   /* near-black */

  --ff-display: 'Shippori Mincho', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --ff-mono:    'DM Mono', 'Courier New', monospace;

  --max-w: 1100px;
  --ease-out: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
}

/* ─── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { background: var(--shiro); color: var(--sumi); font-family: var(--ff-body); font-size: 1rem; line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible { outline: 2px solid var(--hana); outline-offset: 3px; border-radius: 2px; }

/* ─── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.65rem 0.85rem 0.65rem 1.5rem;
  background: rgba(248, 248, 246, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 9999px;
  border: 1px solid rgba(28, 35, 64, 0.1);
  box-shadow:
    0 4px 20px rgba(28, 35, 64, 0.07),
    0 1px 3px rgba(28, 35, 64, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  width: min(940px, calc(100vw - 2rem));
  transition: box-shadow 500ms var(--ease-out);
}
.nav.scrolled {
  box-shadow:
    0 8px 40px rgba(28, 35, 64, 0.12),
    0 2px 6px rgba(28, 35, 64, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.nav-logo {
  font-family: var(--ff-display); font-size: 1.15rem; font-weight: 600;
  color: var(--kon); letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo-img { height: 40px; width: auto; display: block; object-fit: contain; }
.nav-logo-fallback { display: inline; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--kawa); transition: color 180ms;
  display: flex; align-items: center;
}
.nav-links a:hover { color: var(--kon); }

/* Instagram icon in nav */
.nav-instagram { color: var(--kawa); transition: color 180ms; }
.nav-instagram:hover { color: var(--usui) !important; }

/* Nav right group: lang toggle + hamburger */
.nav-right { display: flex; align-items: center; gap: 0.75rem; }

/* Language toggle button */
.lang-toggle {
  font-family: var(--ff-mono); font-size: 0.65rem; letter-spacing: 0.14em;
  color: var(--kawa); background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 0.25rem; padding: 0.25rem 0.1rem;
  transition: color 180ms;
}
.lang-toggle:hover { color: var(--kon); }
.lang-toggle .lang-de,
.lang-toggle .lang-en { opacity: 0.4; transition: opacity 180ms; }
.lang-toggle .lang-de.active,
.lang-toggle .lang-en.active { opacity: 1; color: var(--kon); font-weight: 500; }
.lang-toggle .lang-sep { opacity: 0.25; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--kon); }

/* ─── Mobile menu ─────────────────────────────────────────────── */
.mobile-menu[hidden] { display: none; }
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 40;
  background: var(--shiro);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-menu-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-size: 1.4rem; color: var(--kawa); background: none; border: none;
  cursor: pointer; padding: 0.5rem; line-height: 1; transition: color 180ms;
}
.mobile-menu-close:hover { color: var(--kon); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2.5rem; text-align: center; }
.mobile-menu a { font-family: var(--ff-display); font-size: 2.2rem; color: var(--kon); transition: color 180ms; }
.mobile-menu a:hover { color: var(--usui); }
.lang-toggle-mobile {
  font-size: 0.8rem; letter-spacing: 0.18em; padding: 0.5rem 1rem;
  border: 1px solid var(--mist); border-radius: 2px;
}

/* ─── Footer logo ─────────────────────────────────────────────── */
.footer-logo-img { height: 44px; width: auto; object-fit: contain; opacity: 0.9; }
.footer-logo-fallback { display: none; }

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: clamp(5rem, 9vw, 7rem);
  overflow: hidden;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 5vw, 5rem);
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--kon);
}

.hero-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Hero photo mosaic */
.hero-photo-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.5fr 1fr 1fr;
  gap: 2px;
  background: var(--kon);
}
.hero-photo-item {
  overflow: hidden;
  position: relative;
}
.hero-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease-out);
  filter: saturate(0.92);
}
.hero-photo-item:hover img { transform: scale(1.05); }
.hero-photo-featured {
  grid-column: span 2;
}

/* Hero text */
.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--usui);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fade-up 0.7s var(--ease-out) 1s forwards;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--kon);
  text-wrap: balance;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 1.2s forwards;
}
.hero-title em {
  font-style: normal;
  color: var(--usui);
}
.hero-sub {
  font-size: 0.95rem;
  color: var(--kawa);
  max-width: 360px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 1.4s forwards;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.7s var(--ease-out) 1.6s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-title, .hero-sub, .hero-cta { animation: none; opacity: 1; }
}

@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-scale { from { opacity: 0; transform: scale(0.88); } to { opacity: 1; transform: scale(1); } }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem 0.75rem 1.75rem;
  background: var(--kon); color: var(--white);
  font-family: var(--ff-body); font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.02em; border-radius: 9999px;
  transition: background 300ms var(--ease-out), transform 200ms var(--ease-out), box-shadow 300ms var(--ease-out);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(28, 35, 64, 0.2);
}
.btn:hover { background: var(--ai); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(28, 35, 64, 0.24); }
.btn:active { transform: translateY(0) scale(0.98); box-shadow: 0 1px 4px rgba(28, 35, 64, 0.15); }

/* Button-in-button trailing icon */
.btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  transition: transform 250ms var(--ease-out), background 250ms;
  flex-shrink: 0;
}
.btn:hover .btn-icon {
  transform: translateX(2px) translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: rgba(248, 248, 246, 0.7);
  color: var(--kon);
  border: 1px solid rgba(28, 35, 64, 0.15);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--frost);
  border-color: rgba(28, 35, 64, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28, 35, 64, 0.08);
}

.btn-sm { padding: 0.4rem 1rem; font-size: 0.78rem; box-shadow: none; }
.btn-sm .btn-icon { width: 1.4rem; height: 1.4rem; }

/* ─── Container ───────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(1.5rem, 5vw, 3rem); }

/* ─── Section shared ──────────────────────────────────────────── */
.section { padding-block: clamp(7rem, 13vw, 10rem); }

.label {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--usui);
  margin-bottom: 0.9rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600; line-height: 1.15;
  color: var(--kon);
  margin-bottom: 0.9rem;
}
.section-sub {
  color: var(--kawa); max-width: 520px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  font-size: 0.92rem; line-height: 1.75;
}

/* ─── Divider ─────────────────────────────────────────────────── */
.divider {
  width: 40px; height: 1px;
  background: var(--hana);
  margin-bottom: 1.5rem;
}

/* ─── About ───────────────────────────────────────────────────── */
.about { background: var(--frost); }

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--kon);
}

.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* soft vignette so the kanji stays readable over the photo */
.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(24, 20, 28, 0) 55%, rgba(24, 20, 28, 0.45) 100%);
  pointer-events: none;
}

.about-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='16' fill='none' stroke='%23ffffff' stroke-width='0.8' opacity='0.08'/%3E%3Ccircle cx='0' cy='0' r='16' fill='none' stroke='%23ffffff' stroke-width='0.8' opacity='0.08'/%3E%3Ccircle cx='40' cy='0' r='16' fill='none' stroke='%23ffffff' stroke-width='0.8' opacity='0.08'/%3E%3Ccircle cx='0' cy='40' r='16' fill='none' stroke='%23ffffff' stroke-width='0.8' opacity='0.08'/%3E%3Ccircle cx='40' cy='40' r='16' fill='none' stroke='%23ffffff' stroke-width='0.8' opacity='0.08'/%3E%3C/svg%3E");
}

.about-kanji {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  font-family: var(--ff-display);
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.about-text p { color: var(--kawa); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.1rem; }
.about-text p:last-of-type { margin-bottom: 2rem; }

.about-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--mist);
}
.stat-num { display: block; font-family: var(--ff-display); font-size: 1.8rem; font-weight: 600; color: var(--kon); line-height: 1; }
.stat-label { display: block; font-family: var(--ff-mono); font-size: 0.65rem; letter-spacing: 0.1em; color: var(--kawa); margin-top: 0.3rem; }

/* ─── Events ──────────────────────────────────────────────────── */
.events-section { background: var(--shiro); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 1.5px;
  background: var(--mist);
  border: 1.5px solid var(--mist);
  border-radius: 20px;
  overflow: hidden;
}

.event-card {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  transition: background 300ms var(--ease-out);
  cursor: default;
  position: relative;
}
.event-card:hover { background: var(--blush); }
.event-card.tba { opacity: 0.5; }

/* Featured bento card — first event, spans 2 cols × 2 rows */
.event-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  padding: 2.5rem;
  background: var(--kon);
  display: flex;
  flex-direction: column;
}
.event-card.featured:hover { background: var(--ai); }

.event-card.featured .event-month-tag { color: rgba(232, 180, 184, 0.75); }
.event-card.featured .event-day-num {
  font-size: clamp(4rem, 8vw, 6rem);
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.event-card.featured .event-name {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.event-card.featured .event-type-tag {
  background: rgba(232, 180, 184, 0.2);
  color: var(--hana);
  border: 1px solid rgba(232, 180, 184, 0.3);
}
.event-card.featured .event-meta { color: rgba(255, 255, 255, 0.5); margin-top: auto; padding-top: 1.5rem; }
.event-card.featured .event-meta::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(232, 180, 184, 0.3);
  margin-bottom: 1rem;
}

.event-month-tag {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--usui);
  margin-bottom: 0.5rem;
}
.event-day-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  color: var(--kon);
  margin-bottom: 1rem;
}
.event-type-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--usui);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  margin-bottom: 0.6rem;
}
.event-name { font-size: 0.92rem; font-weight: 500; color: var(--sumi); margin-bottom: 0.3rem; }
.event-meta { font-family: var(--ff-mono); font-size: 0.72rem; color: var(--kawa); line-height: 1.6; }

/* Menu category chips per event (driven by data-menu on .event-card) */
.event-menu-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.9rem;
}
.event-menu-chip {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kawa);
  border: 1px solid var(--mist);
  padding: 0.18rem 0.55rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.event-card.featured .event-menu-chips { margin-top: 1rem; }
.event-card.featured .event-menu-chip {
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(232, 180, 184, 0.3);
}

/* Festival photo backgrounds (applied via data-bg + .has-bg from main.js) */
.event-card.has-bg,
.event-card.has-bg:hover {
  background: linear-gradient(180deg, rgba(24, 20, 28, 0.5) 0%, rgba(24, 20, 28, 0.78) 100%), var(--event-bg) center / cover no-repeat;
}
.event-card.has-bg:hover {
  background: linear-gradient(180deg, rgba(24, 20, 28, 0.38) 0%, rgba(24, 20, 28, 0.7) 100%), var(--event-bg) center / cover no-repeat;
}
.event-card.has-bg .event-month-tag { color: rgba(255, 255, 255, 0.6); }
.event-card.has-bg .event-day-num { color: var(--white); }
.event-card.has-bg .event-name { color: var(--white); }
.event-card.has-bg .event-meta { color: rgba(255, 255, 255, 0.7); }
.event-card.has-bg .event-type-tag {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.event-card.has-bg .event-menu-chip {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.28);
}
.event-card.featured.has-bg .event-meta::before { background: rgba(255, 255, 255, 0.3); }

/* ─── Menu ────────────────────────────────────────────────────── */
.menu-section { background: var(--frost); }

.menu-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.menu-cat-tabs {
  display: inline-flex;
  gap: 0.25rem;
  margin-bottom: 2.5rem;
  background: rgba(28, 35, 64, 0.05);
  border-radius: 9999px;
  padding: 0.3rem;
}

.tab-btn {
  padding: 0.45rem 1.25rem;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kawa);
  border: none;
  border-radius: 9999px;
  background: transparent;
  cursor: pointer;
  transition: background 250ms var(--ease-out), color 250ms, box-shadow 250ms;
}
.tab-btn.active {
  background: var(--white);
  color: var(--kon);
  box-shadow: 0 2px 8px rgba(28, 35, 64, 0.12), 0 0 0 1px rgba(28, 35, 64, 0.07);
}
.tab-btn:hover:not(.active) { color: var(--kon); background: rgba(255,255,255,0.5); }

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

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

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* Double-bezel: outer shell */
  background: rgba(28, 35, 64, 0.03);
  border-radius: 20px;
  padding: 3px;
  box-shadow:
    0 0 0 1px rgba(28, 35, 64, 0.07),
    0 2px 12px rgba(28, 35, 64, 0.04);
  transition: box-shadow 350ms var(--ease-out), transform 300ms var(--ease-out);
  cursor: default;
  position: relative;
}
.menu-item::before {
  /* Double-bezel: inner surface highlight */
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 17px;
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -1px 0 rgba(28, 35, 64, 0.04);
  z-index: 0;
}
.menu-item > * { position: relative; z-index: 1; }
.menu-item:hover {
  box-shadow:
    0 0 0 1px rgba(28, 35, 64, 0.1),
    0 20px 48px rgba(28, 35, 64, 0.1),
    0 6px 16px rgba(28, 35, 64, 0.06);
  transform: translateY(-4px);
}
/* wrap inner content */
.menu-item .menu-img-wrap,
.menu-item .menu-item-name,
.menu-item .menu-item-desc,
.menu-item .menu-item-price {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.menu-item .menu-img-wrap { margin-top: 1.25rem; margin-left: 0; margin-right: 0; }
.menu-item .menu-item-price { margin-bottom: 1.25rem; }

.menu-img-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}
.menu-img-wrap svg { width: 70%; height: 70%; }
.menu-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.menu-item-name { font-family: var(--ff-display); font-size: 1rem; font-weight: 600; color: var(--kon); margin-bottom: 0.3rem; }
.menu-item-desc { font-size: 0.75rem; color: var(--kawa); line-height: 1.5; margin-bottom: 0.75rem; }
.menu-item-price { font-family: var(--ff-mono); font-size: 0.8rem; color: var(--usui); }

/* ─── Shop ────────────────────────────────────────────────────── */
.shop-section { background: var(--shiro); }

.shop-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.shop-item {
  /* Double-bezel: outer shell */
  background: rgba(28, 35, 64, 0.03);
  border-radius: 20px;
  padding: 3px;
  box-shadow:
    0 0 0 1px rgba(28, 35, 64, 0.07),
    0 2px 12px rgba(28, 35, 64, 0.04);
  display: flex;
  flex-direction: column;
  transition: box-shadow 350ms var(--ease-out), transform 300ms var(--ease-out);
  cursor: default;
  overflow: hidden;
}
.shop-item:hover {
  box-shadow:
    0 0 0 1px rgba(28, 35, 64, 0.1),
    0 24px 56px rgba(28, 35, 64, 0.1),
    0 8px 20px rgba(28, 35, 64, 0.06);
  transform: translateY(-4px);
}
/* Inner core */
.shop-item-inner {
  background: var(--white);
  border-radius: 17px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1);
}

.shop-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  background: var(--frost);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.shop-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath d='M0 15 Q7.5 7.5 15 15 Q22.5 22.5 30 15' fill='none' stroke='%231C2340' stroke-width='0.6' opacity='0.06'/%3E%3Cpath d='M0 30 Q7.5 22.5 15 30 Q22.5 37.5 30 30' fill='none' stroke='%231C2340' stroke-width='0.6' opacity='0.06'/%3E%3Cpath d='M0 0 Q7.5 -7.5 15 0 Q22.5 7.5 30 0' fill='none' stroke='%231C2340' stroke-width='0.6' opacity='0.06'/%3E%3C/svg%3E");
}
.shop-img-wrap svg { width: 55%; height: 55%; position: relative; z-index: 1; }

.shop-item-body { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.shop-item-name { font-family: var(--ff-display); font-size: 0.95rem; font-weight: 600; color: var(--kon); margin-bottom: 0.3rem; }
.shop-item-desc { font-size: 0.75rem; color: var(--kawa); line-height: 1.5; margin-bottom: 0.9rem; flex: 1; }
.shop-item-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.shop-item-price { font-family: var(--ff-mono); font-size: 0.82rem; color: var(--sumi); }

.shop-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--blush);
  border-radius: 16px;
  border: 1px solid rgba(232, 180, 184, 0.4);
}
.shop-note-icon { flex-shrink: 0; color: var(--usui); margin-top: 0.1rem; }
.shop-note p { font-size: 0.82rem; color: var(--kawa); line-height: 1.65; }

/* ─── Gallery ─────────────────────────────────────────────────── */
.gallery-section { background: var(--frost); overflow: hidden; }
.gallery-section .container { margin-bottom: 2.5rem; }

.gallery-strip {
  display: flex; gap: 1rem;
  overflow-x: auto; padding-inline: clamp(1.5rem, 5vw, calc((100vw - 1100px) / 2 + 3rem));
  padding-bottom: 1rem;
  scrollbar-width: thin; scrollbar-color: var(--mist) transparent;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.gallery-strip::-webkit-scrollbar { height: 3px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--mist); border-radius: 2px; }

.gallery-item { flex-shrink: 0; scroll-snap-align: start; }

.gallery-placeholder {
  position: relative;
  width: clamp(240px, 38vw, 340px);
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
}
.gallery-placeholder svg { width: 100%; height: 100%; display: block; }
.gallery-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.5rem 0.85rem;
  background: rgba(248, 248, 246, 0.9);
  backdrop-filter: blur(4px);
  font-family: var(--ff-mono); font-size: 0.65rem;
  letter-spacing: 0.1em; color: var(--kawa);
}

/* ─── Contact ─────────────────────────────────────────────────── */
.contact-section { background: var(--shiro); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
.contact-text p { color: var(--kawa); font-size: 0.92rem; line-height: 1.8; margin-bottom: 1.5rem; }
.contact-links { display: flex; flex-direction: column; gap: 0.6rem; }
.contact-link {
  font-family: var(--ff-mono); font-size: 0.82rem; color: var(--kon);
  text-decoration: underline; text-decoration-color: var(--hana); text-underline-offset: 3px;
  transition: color 180ms, text-decoration-color 180ms;
}
.contact-link:hover { color: var(--usui); text-decoration-color: var(--usui); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--kawa); }
.form-field input, .form-field textarea {
  width: 100%; padding: 0.8rem 1rem;
  background: var(--white); border: 1px solid var(--mist);
  border-radius: 2px; font-family: var(--ff-body);
  font-size: 0.9rem; color: var(--sumi); outline: none;
  transition: border-color 180ms; resize: vertical;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--mist); }
.form-field input:focus, .form-field textarea:focus { border-color: var(--kon); background: var(--white); }

/* ─── Footer ──────────────────────────────────────────────────── */
.footer { background: var(--kon); padding-block: 3rem; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; text-align: center; }
.footer-logo { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 600; color: var(--white); }
.footer-tagline { font-size: 0.8rem; color: var(--hana); opacity: 0.7; }
.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white); opacity: 0.5; transition: opacity 180ms;
}
.footer-nav a:hover { opacity: 1; }
.footer-copy { font-size: 0.72rem; color: var(--white); opacity: 0.25; font-family: var(--ff-mono); }

/* ─── Scroll reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out),
    filter 0.7s var(--ease-out);
  will-change: transform, opacity;
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; filter: none; transition: none; } }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 6rem 1.5rem 4rem; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-cta { justify-content: center; }

  .about-wrap { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: 16/7; }

  /* Events bento collapses: featured card spans full width only */
  .events-grid { grid-template-columns: 1fr 1fr; }
  .event-card.featured { grid-column: span 2; grid-row: span 1; padding: 2rem; }
  .event-card.featured .event-day-num { font-size: clamp(3rem, 8vw, 4rem); }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }

  .shop-header { grid-template-columns: 1fr; gap: 1rem; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-inner { grid-template-columns: 1fr; }
  .menu-intro { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 600px) {
  .nav { padding: 0.55rem 0.65rem 0.55rem 1.1rem; gap: 0.75rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .lang-toggle:not(.lang-toggle-mobile) { display: flex; }

  .events-grid { grid-template-columns: 1fr; }
  .event-card.featured { grid-column: span 1; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .shop-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
}
