/* ============================================
   Momitchi — pink character LP
   ============================================ */

:root {
  /* character colors (locked) */
  --momi-body: #ffe8f2;
  --momi-line: #6f4d4d;
  --momi-swirl: #ff8584;

  /* page palette (tweakable) */
  --bg: #fff5fa;
  --bg-soft: #ffeaf2;
  --card: #ffffff;
  --ink: #6f4d4d;
  --ink-soft: #8a6868;
  --muted: #b29a9a;
  --accent: #ff8584;
  --accent-soft: #ffc9d0;
  --line: rgba(111, 77, 77, 0.18);
  --line-soft: rgba(111, 77, 77, 0.09);
  --shadow: 0 6px 20px rgba(255, 133, 132, 0.12);
  --shadow-soft: 0 4px 14px rgba(111, 77, 77, 0.06);

  /* fonts */
  --round-jp: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic UI", sans-serif;
  --round-jp-heavy: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  /* All English uses the same rounded font as JP for visual consistency */
  --hand-en: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic UI", sans-serif;
  --soft-en: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--round-jp);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 720px) {
  .shell { padding: 0 22px; }
}

section {
  position: relative;
  padding: 110px 0;
}
@media (max-width: 720px) {
  section { padding: 70px 0; }
}

/* dotted pink wave divider between sections */
.section-divider {
  height: 24px;
  background-image: radial-gradient(circle, var(--accent-soft) 2px, transparent 2.5px);
  background-size: 18px 24px;
  background-position: 0 50%;
  background-repeat: repeat-x;
  opacity: 0.7;
}

/* ===== Type ===== */
.eyebrow {
  font-family: var(--hand-en);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--accent-soft);
  border-radius: 2px;
}

.section-title {
  font-family: var(--round-jp);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: 0.08em;
  line-height: 1.55;
  margin: 14px 0 6px;
  color: var(--ink);
}
.section-title .dot { display: none; }

.section-sub {
  font-family: var(--hand-en);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.body-jp {
  font-family: var(--round-jp);
  font-weight: 400;
  font-size: 15px;
  line-height: 2.15;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* ===== Speech bubbles (with Momitchi) ===== */
.momi-bubble {
  display: inline-flex;
  align-items: stretch;
  gap: 14px;
}
.momi-bubble.right { flex-direction: row-reverse; }

.momi-char {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  background-image: url("assets/momitchi.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  align-self: flex-end;
}
.momi-char.flip { transform: scaleX(-1); }
.momi-char.sm { width: 56px; height: 56px; }
.momi-char.lg { width: 110px; height: 110px; }
.momi-char.xl { width: 160px; height: 160px; }

.bubble {
  position: relative;
  background: white;
  border: 2px solid var(--momi-line);
  border-radius: 22px;
  padding: 14px 20px;
  font-family: var(--round-jp);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--ink);
  max-width: 320px;
  align-self: center;
  box-shadow: 3px 3px 0 var(--momi-line);
}
.bubble::before, .bubble::after {
  content: "";
  position: absolute;
  width: 0; height: 0;
  border-style: solid;
}
.momi-bubble:not(.right) .bubble::before {
  left: -16px;
  bottom: 14px;
  border-width: 8px 16px 8px 0;
  border-color: transparent var(--momi-line) transparent transparent;
}
.momi-bubble:not(.right) .bubble::after {
  left: -12px;
  bottom: 16px;
  border-width: 6px 13px 6px 0;
  border-color: transparent white transparent transparent;
}
.momi-bubble.right .bubble::before {
  right: -16px;
  bottom: 14px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent var(--momi-line);
}
.momi-bubble.right .bubble::after {
  right: -12px;
  bottom: 16px;
  border-width: 6px 0 6px 13px;
  border-color: transparent transparent transparent white;
}

.bubble.pink { background: var(--momi-body); }
.momi-bubble:not(.right) .bubble.pink::after { border-color: transparent var(--momi-body) transparent transparent; }
.momi-bubble.right .bubble.pink::after { border-color: transparent transparent transparent var(--momi-body); }

/* a tiny doodle heart */
.heart-doodle {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  color: var(--accent);
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 245, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px dashed var(--line);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo .momi-char { width: 42px; height: 42px; align-self: center; flex-shrink: 0; }
.nav-logo-text-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-sub {
  font-family: var(--round-jp);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 2px;
}
.nav-logo-text {
  font-family: var(--round-jp);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--ink);
}
@media (max-width: 720px) {
  .nav-logo-text { font-size: 13px; letter-spacing: 0.06em; }
  .nav-logo-sub { font-size: 9px; }
  .nav-logo .momi-char { width: 36px; height: 36px; }
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color .25s;
}
.nav-links a:hover { color: var(--accent); }

/* Mobile: hide regular nav links, show momi-toggle */
.nav-momi-toggle {
  display: none;
  cursor: pointer;
  background: var(--momi-body);
  border: 2px solid var(--momi-line);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 4px;
  box-shadow: 2px 2px 0 var(--momi-line);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.nav-momi-toggle:hover { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--momi-line); }
.nav-momi-toggle:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--momi-line); }
.nav-momi-toggle .momi-char { width: 100%; height: 100%; }
.nav-momi-toggle::after {
  content: "MENU";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--round-jp);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: var(--bg);
  padding: 1px 6px;
  border-radius: 6px;
  border: 1px solid var(--momi-line);
  white-space: nowrap;
}

.nav-drawer {
  position: fixed;
  top: 72px;
  right: 16px;
  background: var(--card);
  border: 2.5px solid var(--momi-line);
  border-radius: 22px;
  padding: 18px 22px;
  box-shadow: 4px 4px 0 var(--momi-line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
  z-index: 60;
  animation: drawerIn .25s ease;
}
@keyframes drawerIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-drawer a {
  font-family: var(--round-jp);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer .line-btn { justify-content: center; margin-top: 6px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-momi-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

.line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06C755;
  color: white;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: var(--round-jp);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: transform .3s, box-shadow .3s;
  border: 2px solid var(--momi-line);
  box-shadow: 2px 2px 0 var(--momi-line);
}
.line-btn:hover { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--momi-line); }
.line-btn svg { width: 16px; height: 16px; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 140px 0 100px;
  position: relative;
  text-align: center;
}

.hero-top {
  max-width: 880px;
}
.hero-title {
  font-family: var(--round-jp);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 58px);
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin: 12px 0 14px;
  color: var(--ink);
}
.hero-title .accent { color: var(--accent); }
.hero-lead {
  font-family: var(--round-jp);
  font-weight: 500;
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin: 0;
}

.hero-stage {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 80px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 720px) {
  .hero-stage { padding: 80px 16px 20px; }
  .hero { padding: 80px 0 160px;}
}
.hero-momi {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
  animation: bob 4s ease-in-out infinite;
}
.hero-momi img { width: 100%; height: auto; display: block; }

.hero-bubble-greet {
  position: absolute;
  top: 8%;
  left: -2%;
  z-index: 3;
}
.hero-bubble-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-bubble-cta {
  position: absolute;
  bottom: 30px;
  right: 0%;
  z-index: 3;
}
@media (max-width: 720px) {
  .hero-bubble-greet { top: 100%; left: 10%; }
  .hero-bubble-cta { bottom: -35%; right: 10%; }
  .hero-bubble-top { top: 10px; }
  .hero-bubble-greet .bubble, .hero-bubble-cta .bubble { font-size: 12.5px; padding: 10px 14px; max-width: 200px; }
}

/* Standalone bubble pointing DOWN (no momi-bubble wrapper) */
.solo-bubble {
  display: inline-block;
  position: relative;
}
.solo-bubble .bubble { max-width: none; }
.solo-bubble .bubble::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 18px 10px 0 10px;
  border-color: var(--momi-line) transparent transparent transparent;
}
.solo-bubble .bubble::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 14px 7px 0 7px;
  border-color: white transparent transparent transparent;
}
.solo-bubble .bubble.pink::after {
  border-color: var(--momi-body) transparent transparent transparent;
}

/* hero CTA bubble — clickable, LINE green */
.bubble.cta-line {
  background: #06C755;
  color: white;
  border-color: var(--momi-line);
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.bubble.cta-line:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--momi-line); }
.momi-bubble:not(.right) .bubble.cta-line::after { border-color: transparent #06C755 transparent transparent; }
.momi-bubble.right .bubble.cta-line::after { border-color: transparent transparent transparent #06C755; }
.bubble.cta-line svg { width: 16px; height: 16px; }

/* ===== Concept ===== */
.concept {
  background: var(--bg-soft);
  position: relative;
}
.concept::before, .concept::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 30px;
  background-image: radial-gradient(circle at 50% 0%, var(--bg) 18px, transparent 18px);
  background-size: 60px 30px;
  background-repeat: repeat-x;
}
.concept::before { top: 0; }
.concept::after { bottom: 0; transform: scaleY(-1); }

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 30px;
}
@media (max-width: 900px) {
  .concept-grid { grid-template-columns: 1fr; gap: 50px; }
}
.concept-text p { margin: 0 0 1.4em; }

.concept-card {
  background: var(--card);
  border: 2px solid var(--momi-line);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 4px 4px 0 var(--momi-line);
  position: relative;
}
.concept-card-momi {
  position: absolute;
  top: -50px;
  right: 24px;
  width: 90px;
  height: 90px;
}
.concept-card h3 {
  font-family: var(--round-jp);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 16px;
  letter-spacing: 0.1em;
}
.concept-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.concept-card li {
  display: flex;
  gap: 12px;
  font-family: var(--round-jp);
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink);
}
.concept-card li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  background: var(--momi-body);
  border: 1.5px solid var(--momi-line);
  border-radius: 50%;
  position: relative;
  background-image: radial-gradient(circle, var(--momi-swirl) 30%, transparent 33%);
  background-size: 8px 8px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 60px;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature {
  background: var(--card);
  border: 2px solid var(--momi-line);
  border-radius: 24px;
  padding: 30px 24px 26px;
  box-shadow: 3px 3px 0 var(--momi-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .3s;
}
.feature:hover { transform: translate(-1px, -2px); }
.feature-num {
  font-family: var(--hand-en);
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}
.feature-emoji-icon {
  width: 56px;
  height: 56px;
  background: var(--momi-body);
  border: 2px solid var(--momi-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature h3 {
  font-family: var(--round-jp);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.08em;
  margin: 0;
  color: var(--ink);
}
.feature p {
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 720px) {
  .feature { align-items: center; gap: 18px; }
}

/* ===== Menu ===== */
.menu {
  background: var(--bg-soft);
  position: relative;
}
.menu::before, .menu::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 30px;
  background-image: radial-gradient(circle at 50% 0%, var(--bg) 18px, transparent 18px);
  background-size: 60px 30px;
  background-repeat: repeat-x;
}
.menu::before { top: 0; }
.menu::after { bottom: 0; transform: scaleY(-1); }

.menu-card-wrap { position: relative; margin-top: 70px; }
.menu-card {
  background: var(--card);
  border: 2.5px solid var(--momi-line);
  border-radius: 32px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  box-shadow: 5px 5px 0 var(--momi-line);
  position: relative;
}
@media (max-width: 720px) {
  .menu-card { grid-template-columns: 1fr; padding: 60px 28px 36px; gap: 26px; }
}
.menu-name-en {
  font-family: var(--hand-en);
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 6px;
}
.menu-name {
  font-family: var(--round-jp);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}
.menu-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.menu-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--round-jp);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: white;
  background: var(--accent);
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  border: 2px solid var(--momi-line);
  box-shadow: 2px 2px 0 var(--momi-line);
}
.menu-price-block {
  text-align: center;
  background: var(--momi-body);
  border: 2px dashed var(--momi-line);
  border-radius: 20px;
  padding: 28px 24px;
}
.menu-time {
  font-family: var(--hand-en);
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 4px;
}
.menu-price {
  font-family: var(--round-jp);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--ink);
}
.menu-price .yen {
  font-size: 0.5em;
  margin-right: 2px;
}
.menu-price .tax {
  font-size: 0.26em;
  margin-left: 6px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.12em;
}
.menu-note {
  font-family: var(--round-jp);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 4px;
}

.menu-notes-list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 720px) {
  .menu-notes-list { grid-template-columns: 1fr; }
}
.menu-note-card {
  background: var(--card);
  border: 2px solid var(--momi-line);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 3px 3px 0 var(--momi-line);
}
.menu-note-card .label {
  font-family: var(--hand-en);
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 6px;
}
.menu-note-card h4 {
  font-family: var(--round-jp);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}
.menu-note-card p {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== Profile ===== */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .profile-grid { grid-template-columns: 1fr; gap: 40px; }
}
.profile-card {
  background: var(--card);
  border: 2.5px solid var(--momi-line);
  border-radius: 28px;
  padding: 36px 30px;
  box-shadow: 4px 4px 0 var(--momi-line);
  text-align: center;
  position: relative;
}
.profile-momi {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 16px;
  animation: bob 5s ease-in-out infinite;
}
.profile-momi img { width: 100%; height: auto; }
.profile-card .name-tag {
  display: inline-block;
  background: var(--momi-body);
  border: 2px solid var(--momi-line);
  border-radius: 999px;
  padding: 8px 22px;
  font-family: var(--round-jp);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 15px;
}
.profile-name-en {
  font-family: var(--hand-en);
  font-size: 22px;
  color: var(--accent);
  margin-top: 14px;
}

.profile-quote {
  background: var(--card);
  border: 2px solid var(--momi-line);
  border-radius: 24px;
  padding: 28px 32px;
  box-shadow: 3px 3px 0 var(--momi-line);
  font-family: var(--round-jp);
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
  position: relative;
  margin: 0 0 30px;
}
.profile-quote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--hand-en);
  font-size: 60px;
  color: var(--accent);
  line-height: 1;
}
.profile-body p { margin: 0 0 1.4em; }

/* ===== Voices ===== */
.voices {
  background: var(--bg-soft);
  position: relative;
}
.voices::before, .voices::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 30px;
  background-image: radial-gradient(circle at 50% 0%, var(--bg) 18px, transparent 18px);
  background-size: 60px 30px;
  background-repeat: repeat-x;
}
.voices::before { top: 0; }
.voices::after { bottom: 0; transform: scaleY(-1); }

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
@media (max-width: 900px) {
  .voices-grid { grid-template-columns: 1fr; }
}
.voice-card {
  background: var(--card);
  border: 2px solid var(--momi-line);
  border-radius: 24px;
  padding: 32px 28px 24px;
  box-shadow: 3px 3px 0 var(--momi-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.voice-card:nth-child(2) { transform: rotate(0.6deg); }
.voice-card:nth-child(3) { transform: rotate(-0.6deg); }
.voice-stars {
  color: var(--accent);
  font-family: var(--hand-en);
  font-size: 18px;
  letter-spacing: 4px;
}
.voice-text {
  font-family: var(--round-jp);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--ink);
  flex: 1;
}
.voice-meta {
  padding-top: 16px;
  border-top: 1.5px dashed var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  font-weight: 500;
}
.voice-meta .age {
  font-family: var(--hand-en);
  font-size: 16px;
  color: var(--accent);
}

.voices-note {
  text-align: center;
  margin-top: 28px;
  font-family: var(--hand-en);
  font-size: 16px;
  color: var(--muted);
}

/* ===== Access ===== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  margin-top: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .access-grid { grid-template-columns: 1fr; }
}
.access-info {
  background: var(--card);
  border: 2px solid var(--momi-line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 3px 3px 0 var(--momi-line);
}
.access-info dl {
  margin: 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  row-gap: 18px;
  column-gap: 20px;
}
.access-info dt {
  font-family: var(--hand-en);
  font-size: 18px;
  color: var(--accent);
  padding-top: 2px;
}
.access-info dd {
  margin: 0;
  font-family: var(--round-jp);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.06em;
  line-height: 1.85;
  color: var(--ink);
}
.access-info dd small {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  margin-top: 2px;
  font-weight: 400;
}

.map-wrap {
  position: relative;
}
.map-placeholder {
  aspect-ratio: 4/3;
  position: relative;
  background: var(--card);
  border: 2px solid var(--momi-line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--momi-line);
}
.map-placeholder svg { width: 100%; height: 100%; display: block; }
.map-pin {
  position: absolute;
  top: 46%;
  left: 56%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.map-pin-label {
  background: var(--accent);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--round-jp);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  border: 2px solid var(--momi-line);
  box-shadow: 2px 2px 0 var(--momi-line);
  white-space: nowrap;
}
.map-pin-dot {
  width: 14px;
  height: 14px;
  background: var(--momi-line);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 1.5px var(--momi-line);
}
.map-momi-corner {
  position: absolute;
  bottom: -30px;
  right: -10px;
  width: 90px;
  height: 90px;
  z-index: 3;
}

/* ===== Booking ===== */
.booking {
  text-align: center;
  position: relative;
}
.booking-card {
  background: var(--card);
  border: 2.5px solid var(--momi-line);
  border-radius: 36px;
  padding: 60px 40px 50px;
  margin-top: 30px;
  box-shadow: 5px 5px 0 var(--momi-line);
  position: relative;
}
.booking-momi-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}
.booking-body {
  max-width: 480px;
  margin: 0 auto 36px;
  font-family: var(--round-jp);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.booking-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #06C755;
  color: white;
  padding: 22px 50px;
  font-family: var(--round-jp);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.16em;
  border-radius: 999px;
  border: 2.5px solid var(--momi-line);
  box-shadow: 5px 5px 0 var(--momi-line);
  transition: transform .25s, box-shadow .25s;
}
.booking-cta:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--momi-line); }
.booking-cta svg { width: 22px; height: 22px; }
.booking-sub {
  margin-top: 22px;
  font-family: var(--hand-en);
  font-size: 16px;
  color: var(--muted);
}
@media (max-width: 720px) {
  .booking-momi-row .xl {width: 100px; height: 100px; }
  .booking-momi-row .lg {width: 70px; height: 70px; }
}

/* ===== Footer ===== */
footer {
  padding: 60px 0 40px;
  background: var(--bg-soft);
  border-top: 2px dashed var(--line);
  text-align: center;
}
.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.footer-mark .momi-char { width: 44px; height: 44px; }
.footer-mark-text strong {
  display: block;
  font-family: var(--round-jp);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.16em;
}
.footer-mark-text span {
  font-family: var(--hand-en);
  font-size: 14px;
  color: var(--accent);
}
.footer-copy {
  font-family: var(--hand-en);
  font-size: 14px;
  color: var(--muted);
  margin-top: 18px;
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* Entrance */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-lead, .hero-title { animation: fadeUp .9s ease both; }
.hero-title { animation-delay: .1s; }
