/* =====================================================
   Sunshine Leaf — prototype stylesheet
   ===================================================== */

:root {
  --bg: #faf8f7;          /* offwhite */
  --bg-sage: #B7C4BC;     /* light sage */
  --bg-sage-deep: #A8B5A2;
  --ink: #554d44;
  --ink-soft: #7a7065;
  --ink-mute: #a39888;
  --accent: #66735F;      /* deep sage */
  --accent-2: #6F7F6A;
  --gold: #c08d38;        /* amber */
  --gold-soft: #d4ad6a;
  --line: rgba(85, 77, 68, 0.14);
  --nav-h: 91px;

  --serif-jp: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --serif-en: "Cormorant Garamond", "Times New Roman", serif;
  --script: "Dancing Script", "Snell Roundhand", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--serif-jp);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ============ Reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============ Section primitives ============ */
section { padding: 110px 24px; }
.section-label {
  font-family: var(--serif-en);
  font-style: italic;
  text-align: center;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 14px;
}
.section-title {
  text-align: center;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.18em;
  margin: 0 0 64px;
  color: var(--ink);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.nav.is-scrolled {
  background: rgba(250, 248, 247, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 32px;
}
.nav-brand {
  display: block;
  width: 132px;
  aspect-ratio: 2.4 / 1;
  overflow: hidden;
  mix-blend-mode: multiply;
}
.nav-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity .2s, color .2s;
}
.nav-ig:hover { opacity: 1; color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 6px 16px;
  border-radius: 999px;
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: rgba(192, 141, 56, 0.08); }
.nav-burger {
  appearance: none;
  background: transparent;
  border: 0;
  width: 32px; height: 32px;
  padding: 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-burger span {
  display: block;
  width: 100%; height: 1.2px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 60;
  width: min(320px, 82vw);
  height: 100vh;
  background: rgba(250, 248, 247, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: -12px 0 40px -12px rgba(85, 77, 68, 0.25);
  transform: translateX(100%);
  transition: transform .4s ease;
  padding: 90px 40px 40px;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer-close {
  position: absolute;
  top: 20px; right: 22px;
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}
.nav-drawer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.nav-drawer-links a {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.16em;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
  padding-left: 0.16em;
}
.nav-drawer-links a:hover { color: var(--gold); }
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(85, 77, 68, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
@media (max-width: 640px) {
  .nav { padding: 14px 20px; }
  .nav.is-scrolled { padding: 10px 20px; }
  .nav-brand { width: 110px; }
  .nav-right { gap: 12px; }
  .nav-cta { padding: 5px 14px; font-size: 12px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
  margin: 0;
  margin-top: var(--nav-h);
}
.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
  opacity: 0;
  animation: heroPhotoIn 1.8s .1s ease forwards;
}
@media (min-width: 900px) {
  .hero-photo {
    object-position: 50% 55%;
  }
}
@keyframes heroPhotoIn {
  to { opacity: 1; }
}
@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* ============ HERO CAPTION ============ */
.hero-caption {
  padding: 72px 24px 104px;
  text-align: center;
  background: var(--bg);
  position: relative;
}
.hero-logo {
  display: block;
  margin: 0 auto 24px;
  width: min(460px, 82%);
  aspect-ratio: 2.2 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.hero-caption .reveal {
  transition: opacity 1.8s ease, transform 1.8s ease;
}
.hero-caption .hero-logo.reveal { transition-delay: .1s; }
.hero-caption .hero-tag.reveal  { transition-delay: .55s; }
.hero-caption .hero-mid.reveal  { transition-delay: 1.0s; }
.hero-caption .hero-lede.reveal { transition-delay: 1.45s; }
.hero-caption .hero-tag {
  margin: 0 0 22px;
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 0.22em;
  color: var(--ink);
  line-height: 1.9;
}
.hero-caption .hero-mid {
  margin: 0 0 10px;
  font-family: var(--serif-jp);
  font-size: clamp(12px, 1.6vw, 14px);
  color: var(--ink-soft);
  letter-spacing: 0.28em;
}
.hero-caption .hero-lede {
  margin: 0;
  font-family: var(--serif-jp);
  font-size: clamp(12px, 1.6vw, 14px);
  color: var(--ink-soft);
  letter-spacing: 0.28em;
}
@media (max-width: 640px) {
  .hero-caption {
    padding: 56px 20px 80px;
  }
  .hero-logo {
    margin-bottom: 20px;
    width: min(340px, 88%);
    aspect-ratio: 2.2 / 1;
  }
}

/* ============ TRUST STRIP ============ */
.trust {
  padding: 22px 24px;
  background: linear-gradient(180deg, #efe7d6 0%, #e6dcc7 100%);
  border-top: 1px solid rgba(192, 141, 56, 0.18);
  border-bottom: 1px solid rgba(192, 141, 56, 0.18);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 36px;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.trust-item { display: inline-flex; align-items: center; gap: 8px; }
.trust-mark { color: var(--gold); font-size: 11px; }
.trust-accent { color: var(--gold); font-weight: 500; }
.trust-accent .trust-mark { color: var(--gold); }

/* ============ WORLDVIEW (immersive image stack) ============ */
.worldview {
  padding: 0;
  background: var(--bg);
}
.wv-slide {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  transition: opacity 2.2s ease, transform 2.2s ease;
}
.wv-slide.reveal { transform: translateY(24px); }
.wv-slide.reveal.is-in { transform: none; }
.wv-slide img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 640px) {
  .wv-slide { padding: 0; }
}

/* ============ OMOI (owner's thoughts) ============ */
/* ============ CONCEPT (Sunshine Leaf とは) ============ */
.concept {
  padding: 120px 24px 130px;
  background: var(--bg);
}
.concept-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.concept-body {
  margin-top: 56px;
  text-align: left;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.concept-body p {
  font-family: var(--serif-jp);
  font-size: 14.5px;
  line-height: 2.3;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin: 0 0 32px;
}
.concept-body p:last-child { margin-bottom: 0; }
.concept-photo {
  margin: 72px auto 0;
  max-width: 720px;
  padding: 0;
}
.concept-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 24px 60px -28px rgba(85, 77, 68, 0.32);
}
@media (max-width: 640px) {
  .concept { padding: 80px 20px 90px; }
  .concept-body { margin-top: 40px; }
  .concept-body p { font-size: 14px; line-height: 2.15; margin-bottom: 26px; text-align: left; }
  .concept-photo {
    max-width: none;
    margin: 56px -20px 0;
    padding: 0;
  }
  .concept-photo img { border-radius: 0; box-shadow: none; }
}

.omoi {
  padding: 140px 24px 160px;
  background: var(--bg);
}
.omoi-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.omoi-label {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 36px);
  letter-spacing: 0.4em;
  color: var(--ink);
  margin-bottom: 40px;
  padding-left: 0.4em;
  line-height: 1;
}
.omoi-title {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 2;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin: 0 0 48px;
}
.omoi-photo {
  margin: 72px auto 0;
  max-width: 720px;
  padding: 0;
}
.omoi-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 24px 60px -28px rgba(85, 77, 68, 0.32);
}
@media (max-width: 640px) {
  .omoi-photo {
    max-width: none;
    margin: 56px -20px 0;
    padding: 0;
  }
  .omoi-photo img { border-radius: 0; box-shadow: none; }
}
.omoi-body {
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
}
.omoi-body p {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin: 0 0 28px;
}
.omoi-body p:last-child { margin-bottom: 0; }
.omoi-body strong {
  font-weight: 500;
  color: #3d372f;
}

/* ============ CAFE TIME ============ */
.cafe {
  padding: 120px 24px 140px;
  background: var(--bg);
}
.cafe-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cafe-label {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.4em;
  color: var(--gold);
  padding-left: 0.4em;
  margin-bottom: 20px;
}
.cafe-title {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing: 0.22em;
  color: var(--ink);
  line-height: 1.9;
  margin: 0 0 72px;
}
.cafe-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 720px;
  margin: 0 auto 80px;
}
.cafe-photos--pair {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 720px;
}
.cafe-photos--pair .cafe-photo {
  background: transparent;
  border: 0;
}
.cafe-photos--pair .cafe-photo::before { display: none; }
.cafe-photo {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(255, 253, 246, 0.7);
  border: 1px solid rgba(192, 141, 56, 0.22);
  border-radius: 2px;
  position: relative;
}
.cafe-photo::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 22px; height: 22px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(currentColor, currentColor) center / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1px 100% no-repeat;
  color: rgba(192, 141, 56, 0.35);
  pointer-events: none;
}
.cafe-photo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .cafe-photos { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 56px; }
}

.cafe-block {
  margin: 0 auto 56px;
  max-width: 580px;
  text-align: center;
  padding: 40px 32px 44px;
  background: rgba(255, 253, 246, 0.6);
  border: 1px solid rgba(192, 141, 56, 0.16);
  border-radius: 4px;
}
.cafe-block-title {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(17px, 2.1vw, 20px);
  letter-spacing: 0.18em;
  color: var(--ink);
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(192, 141, 56, 0.24);
}
.cafe-block-body {
  text-align: left;
}
.cafe-block-body p {
  font-family: var(--serif-jp);
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: 0 0 16px;
}
.cafe-block-body p:last-child { margin-bottom: 0; }
.cafe-block-body strong {
  font-weight: 500;
  color: #3d372f;
}
.cafe-panel {
  margin: 0 auto 40px;
  max-width: 640px;
  padding: 0 16px;
  display: flex;
  justify-content: center;
}
.cafe-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 22px 50px -28px rgba(85, 77, 68, 0.28);
}
/* ============ GALLERY (slideshow) ============ */
.gallery {
  background: var(--bg);
}
.gallery-slider {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 24px;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gp {
  flex: 0 0 auto;
  margin: 0;
  width: min(72vw, 480px);
  aspect-ratio: 1 / 1;
  scroll-snap-align: center;
  overflow: hidden;
  background: rgba(255, 253, 246, 0.7);
  border: 1px solid rgba(192, 141, 56, 0.18);
  border-radius: 3px;
  position: relative;
  cursor: zoom-in;
  box-shadow: 0 14px 32px -22px rgba(85, 77, 68, 0.28);
  transition: transform .35s ease;
}
.gp:hover { transform: translateY(-2px); }
.gp img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform .8s ease;
}
.gp:hover img { transform: scale(1.04); }
.gp--empty::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 22px; height: 22px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(currentColor, currentColor) center / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1px 100% no-repeat;
  color: rgba(192, 141, 56, 0.35);
  pointer-events: none;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 253, 246, 0.9);
  border: 1px solid rgba(192, 141, 56, 0.4);
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .2s, transform .2s;
  box-shadow: 0 6px 16px -8px rgba(85, 77, 68, 0.3);
}
.gallery-nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.gallery-nav--prev { left: 8px; }
.gallery-nav--next { right: 8px; }
.gallery-dots {
  margin: 22px auto 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(192, 141, 56, 0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.gallery-dot.is-active {
  background: var(--gold);
  transform: scale(1.25);
}
@media (max-width: 640px) {
  .gp { width: 82vw; }
  .gallery-nav { width: 36px; height: 36px; font-size: 18px; }
  .gallery-nav--prev { left: 4px; }
  .gallery-nav--next { right: 4px; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(30, 26, 22, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-close {
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  font-size: 18px;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 26px;
  line-height: 1;
}
.lightbox-nav--prev { left: 20px; }
.lightbox-nav--next { right: 20px; }
@media (max-width: 640px) {
  .lightbox { padding: 20px; }
  .lightbox-close { top: 14px; right: 14px; width: 34px; height: 34px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 20px; }
  .lightbox-nav--prev { left: 8px; }
  .lightbox-nav--next { right: 8px; }
}

/* ============ VOICES ============ */
.voices {
  background: var(--bg);
}
.voices-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: start;
}
.voice {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(192, 141, 56, 0.18);
  border-radius: 4px;
  padding: 34px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 12px 32px -24px rgba(85, 77, 68, 0.24);
  position: relative;
}
.voice::before {
  content: "\201C";
  position: absolute;
  top: 12px; left: 18px;
  font-family: var(--serif-en);
  font-size: 44px;
  line-height: 1;
  color: rgba(192, 141, 56, 0.4);
}
.voice-quote {
  margin: 0;
  padding-top: 14px;
  font-family: var(--serif-jp);
  font-size: 14px;
  line-height: 2.15;
  letter-spacing: 0.08em;
  color: var(--ink);
  flex: 1;
  position: relative;
  overflow: hidden;
  max-height: 1000px;
  transition: max-height .6s ease;
}
.voice-quote p { margin: 0 0 18px; }
.voice-quote p:last-child { margin-bottom: 0; }
.voice.is-collapsed .voice-quote {
  max-height: 160px;
}
.voice.is-collapsed .voice-quote::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 90%);
  pointer-events: none;
}
.voice-more {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin-top: 14px;
  align-self: center;
  cursor: pointer;
  font-family: var(--serif-jp);
  font-size: 12.5px;
  letter-spacing: 0.24em;
  color: var(--gold);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  transition: opacity .2s;
}
.voice-more:hover { opacity: 0.7; }
.voice-more::after {
  content: "▾";
  font-size: 10px;
  color: var(--gold);
  transition: transform .3s ease;
  display: inline-block;
  margin-left: 4px;
}
.voice.is-expanded .voice-more::after {
  transform: rotate(180deg);
}
.voice-meta {
  padding-top: 18px;
  border-top: 1px solid rgba(192, 141, 56, 0.22);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.14em;
}
.voice-name { color: var(--ink); }
.voice-menu {
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.16em;
}

/* ============ Q&A ============ */
.qa {
  background: var(--bg);
}
.qa-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.qa-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.qa-item[open] {
  border-color: rgba(192, 141, 56, 0.4);
}
.qa-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  position: relative;
  transition: background .2s;
}
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item summary::after {
  content: "";
  position: absolute;
  right: 26px; top: 50%;
  width: 10px; height: 10px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s;
}
.qa-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.qa-item summary:hover { background: rgba(192, 141, 56, 0.05); }
.qa-mark {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.qa-mark--a { color: var(--accent); }
.qa-q {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: var(--ink);
  padding-right: 40px;
}
.qa-body {
  padding: 4px 24px 26px 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-top: 1px dashed rgba(192, 141, 56, 0.2);
  padding-top: 22px;
  margin: 0 24px;
}
.qa-body p {
  margin: 0;
  font-family: var(--serif-jp);
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: var(--ink);
}
@media (max-width: 720px) {
  .voices-grid { grid-template-columns: 1fr; max-width: 560px; }
}
@media (max-width: 640px) {
  .qa-item summary { padding: 18px 20px; gap: 12px; }
  .qa-item summary::after { right: 20px; }
  .qa-q { font-size: 14px; padding-right: 30px; }
  .qa-body { padding: 20px 20px 22px; margin: 0 20px; gap: 12px; }
  .qa-body p { font-size: 13.5px; }
}

/* ============ SALON STAY (vertical video) ============ */
.stay {
  padding: 100px 24px 120px;
  background: var(--bg);
}
.stay-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.stay-title {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.22em;
  color: var(--ink);
  margin: 0 0 56px;
  line-height: 1.9;
}
.stay-video {
  position: relative;
  margin: 0 auto;
  width: min(340px, 82%);
  aspect-ratio: 9 / 16;
  background: rgba(255, 253, 246, 0.7);
  border: 1px solid rgba(192, 141, 56, 0.22);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(85, 77, 68, 0.32);
}
.stay-video::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background:
    radial-gradient(circle at center, rgba(192, 141, 56, 0.25) 0 1px, transparent 2px) center / 42px 42px no-repeat;
  pointer-events: none;
}
.stay-video::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  transform: translate(-40%, -50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid rgba(192, 141, 56, 0.5);
  pointer-events: none;
}
.stay-video-el {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
@media (max-width: 640px) {
  .stay { padding: 72px 20px 88px; }
  .stay-video {
    width: auto;
    margin: 0 -20px;
    aspect-ratio: 9 / 16;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }
}

.cafe-closing {
  margin: 56px 0 0;
  font-family: var(--serif-jp);
  font-size: 14px;
  letter-spacing: 0.28em;
  color: var(--gold);
  line-height: 1.9;
}
@media (max-width: 640px) {
  .cafe { padding: 80px 20px 88px; }
  .cafe-title { margin-bottom: 48px; }
  .cafe-block { padding: 32px 22px 36px; margin-bottom: 40px; }
  .cafe-block-body p { font-size: 13.5px; line-height: 2.1; }
}
.omoi-sign {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 40px;
  border-top: 1px solid rgba(192, 141, 56, 0.28);
  min-width: 200px;
}
.omoi-sign-brand {
  font-family: var(--script);
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
}
.omoi-sign-role {
  font-family: var(--serif-jp);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ink-soft);
  padding-left: 0.4em;
}
.omoi-sign-name {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.16em;
  color: var(--ink);
}
@media (max-width: 640px) {
  .omoi { padding: 88px 20px 96px; }
  .omoi-title { margin-bottom: 48px; line-height: 1.9; }
  .omoi-body p { font-size: 14px; line-height: 2.2; }
}

/* ============ SERVICE ============ */
.service { background: var(--bg); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto 56px;
}
.menu-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(85,77,68,0.3);
}
.menu-card--feature {
  outline: 1px solid var(--gold);
  outline-offset: -1px;
}
.menu-ribbon {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--serif-en);
  letter-spacing: 0.25em;
  font-size: 11px;
  color: #fff;
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}
.menu-photo { aspect-ratio: 4 / 4.55; overflow: hidden; }
.menu-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 100%;
  transform: translateX(-42px);
  opacity: 0;
  transition: transform 1.8s cubic-bezier(.2,.7,.2,1) .15s, opacity 1.8s ease .15s;
}
.menu-card.is-in .menu-photo img {
  transform: none;
  opacity: 1;
}
.menu-photo--nocrop { aspect-ratio: 4 / 5; }
.menu-photo--nocrop img { object-position: 50% 50%; }
.menu-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.menu-code {
  font-family: var(--serif-en);
  font-size: 22px;
  letter-spacing: 0.25em;
  color: var(--accent);
}
.menu-jp {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
  letter-spacing: 0.12em;
}
.menu-meta {
  margin-top: 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.menu-meta .dot { color: var(--ink-mute); }
.menu-price-strike {
  text-decoration: line-through;
  text-decoration-color: rgba(85, 77, 68, 0.55);
  text-decoration-thickness: 1px;
  color: var(--ink-mute);
}
.menu-first {
  margin-top: 10px;
  align-self: flex-start;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}
.menu-first-label {
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--gold);
  padding-left: 0.32em;
}
.menu-first-price {
  font-family: var(--serif-en);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.menu-target {
  align-self: center;
  display: inline-block;
  margin: 22px auto 4px;
  padding: 7px 20px 8px;
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(192, 141, 56, 0.55);
  border-radius: 999px;
  line-height: 1.6;
  text-align: center;
}
.menu-lede {
  margin: 14px 0 22px;
  font-family: var(--serif-jp);
  font-size: 13.5px;
  line-height: 2.1;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

.menu-included {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 18px 24px;
  border: 1px dashed rgba(192, 141, 56, 0.45);
  border-radius: 4px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.12em;
}
.menu-included-icon { color: var(--gold); margin-right: 10px; }

.first-banner {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 36px;
  background: linear-gradient(180deg, #faf2e1 0%, #f3e6c8 100%);
  border: 1px solid rgba(192, 141, 56, 0.3);
  border-radius: 4px;
  text-align: center;
}
.first-banner-label {
  font-family: var(--serif-en);
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 6px;
}
.first-banner-title {
  font-size: 18px;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  color: var(--ink);
}
.first-banner-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.first-banner-list strong {
  color: var(--gold);
  font-weight: 500;
  margin-left: 6px;
}
.first-banner--inline { margin-bottom: 56px; }

/* ============ ABOUT ============ */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  max-width: 980px;
  margin: 0 auto;
  align-items: center;
}
.about-photo img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 18px 40px -24px rgba(85,77,68,0.35);
}
.about-name {
  margin-bottom: 24px;
  line-height: 1.4;
}
.about-name-jp {
  display: block;
  font-size: 22px;
  letter-spacing: 0.2em;
  color: var(--ink);
}
.about-name-en {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-top: 6px;
}
.about-body p {
  font-size: 14.5px;
  line-height: 2.05;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0 0 14px;
}

.about-tags {
  max-width: 720px;
  margin: 44px auto 0;
  text-align: center;
}
.about-likes {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
}
.about-likes-label {
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold);
  padding-left: 0.3em;
  margin-bottom: 18px;
}
.about-tags-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
}
.about-tag {
  display: inline-block;
  padding: 4px 4px;
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--ink);
  border: 0;
  background: transparent;
  line-height: 1.9;
}
.about-tag--soft {
  color: var(--ink);
  font-size: 13px;
}

/* ---- 好きな学び / 好きなこと ── 見開きノート風 ---- */
.about-spread {
  max-width: 720px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 40px 0;
  position: relative;
}
.about-spread::before {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg,
    rgba(192, 141, 56, 0) 0%,
    rgba(192, 141, 56, 0.5) 20%,
    rgba(192, 141, 56, 0.5) 80%,
    rgba(192, 141, 56, 0) 100%);
}
.about-spread-col {
  padding: 0 32px;
  text-align: center;
}
.about-spread-label {
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.36em;
  color: var(--gold);
  padding-left: 0.36em;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(192, 141, 56, 0.18);
  display: inline-block;
}
.about-spread-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-spread-list li {
  font-family: var(--serif-jp);
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--ink);
  line-height: 1.9;
  padding-left: 0.22em;
}
@media (max-width: 640px) {
  .about-spread {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px 0 8px;
    margin-top: 40px;
    max-width: 380px;
  }
  .about-spread::before { display: none; }
  .about-spread-col {
    padding: 24px 20px;
    position: relative;
  }
  .about-spread-col + .about-spread-col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28%;
    right: 28%;
    height: 1px;
    background: linear-gradient(90deg,
      rgba(192, 141, 56, 0) 0%,
      rgba(192, 141, 56, 0.5) 20%,
      rgba(192, 141, 56, 0.5) 80%,
      rgba(192, 141, 56, 0) 100%);
  }
  .about-spread-label {
    font-size: 12px;
    letter-spacing: 0.4em;
    margin-bottom: 22px;
    padding-bottom: 12px;
  }
  .about-spread-list li {
    font-size: 14.5px;
    letter-spacing: 0.2em;
    line-height: 2;
  }
  .about-spread-list { gap: 10px; }
}

.about-links {
  max-width: 720px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.about-link {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 12px 30px -24px rgba(85, 77, 68, 0.28);
}
.about-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -22px rgba(85, 77, 68, 0.32);
}
.about-link img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .8s ease;
}
.about-link:hover img { transform: scale(1.03); }
@media (max-width: 640px) {
  .about-links { grid-template-columns: 1fr; max-width: 380px; }
}

/* ============ CONTACT ============ */
.contact {
  background: var(--bg);
}
.contact-list {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid rgba(192, 141, 56, 0.3);
  border-radius: 4px;
  color: var(--ink);
  text-decoration: none;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  box-shadow: 0 12px 30px -24px rgba(85, 77, 68, 0.2);
}
.contact-item:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px -22px rgba(85, 77, 68, 0.28);
}
.contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(192, 141, 56, 0.1);
  color: var(--gold);
}
.contact-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-label {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--gold);
  padding-left: 0.28em;
}
.contact-value {
  font-family: var(--serif-jp);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--ink);
}
@media (max-width: 880px) {
  .contact-list { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 640px) {
  .contact-item { padding: 18px 20px; }
}

/* ============ LETTER ============ */
.letter {
  background: var(--bg);
  padding: 80px 24px 120px;
}
.letter-paper {
  max-width: 660px;
  margin: 0 auto;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0 39px,
      rgba(85,77,68,0.06) 39px 40px
    ),
    #fdfaf3;
  border: 1px solid rgba(192, 141, 56, 0.25);
  padding: 64px 56px 80px;
  border-radius: 2px;
  box-shadow: 0 26px 60px -30px rgba(85,77,68,0.35);
  position: relative;
}
.letter-paper::before,
.letter-paper::after {
  content: "";
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid rgba(192, 141, 56, 0.4);
}
.letter-paper::before { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.letter-paper::after { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
.letter-heading {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.22em;
  margin-bottom: 6px;
}
.letter-date {
  text-align: center;
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 12px;
  margin-bottom: 40px;
}
.letter-body p {
  font-size: 15px;
  line-height: 2.6;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: 0 0 24px;
}
.letter-quotes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  font-size: 16px !important;
  letter-spacing: 0.16em !important;
  color: var(--accent) !important;
}
.letter-quotes span {
  opacity: 0;
  animation: rise 1.2s ease forwards;
}
.letter-paper.is-in .letter-quotes span:nth-child(1) { animation-delay: .4s; }
.letter-paper.is-in .letter-quotes span:nth-child(2) { animation-delay: .8s; }
.letter-paper.is-in .letter-quotes span:nth-child(3) { animation-delay: 1.2s; }
.letter-paper.is-in .letter-quotes span:nth-child(4) { animation-delay: 1.6s; }
.letter-sign {
  text-align: right;
  margin-top: 28px;
  font-family: var(--script);
  color: var(--accent);
  font-size: 24px;
  letter-spacing: 0.06em;
}

/* ============ STEPS ============ */
.steps { background: var(--bg); }
.steps-body {
  max-width: 620px;
  margin: 56px auto 0;
  text-align: center;
}
.steps-body p {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 2.3;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: 0 0 24px;
}
.steps-body p:last-child { margin-bottom: 0; }
.steps-body strong {
  font-weight: 500;
  color: #3d372f;
}
.steps-quotes {
  margin-bottom: 32px;
}
.steps-quotes p {
  font-family: var(--serif-jp);
  font-size: 15px;
  letter-spacing: 0.14em;
  line-height: 2;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.steps-quotes p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .steps-body { margin-top: 40px; }
  .steps-body p { font-size: 14px; line-height: 2.15; }
}
.steps-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.step-num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.step-title {
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--ink);
}
.step-desc {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* ============ LOCATION ============ */
.location { background: var(--bg); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  max-width: 980px;
  margin: 0 auto;
  align-items: center;
}
.location-photo {
  margin: 0;
}
.location-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 18px 40px -24px rgba(85,77,68,0.35);
}
@media (max-width: 880px) {
  .location-photo {
    margin: 0 -18px;
  }
  .location-photo img {
    border-radius: 0;
    box-shadow: none;
  }
}
.location-area {
  font-size: 18px;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin: 0 0 24px;
}
.location-body p { font-size: 14.5px; line-height: 2.1; color: var(--ink); margin: 0 0 18px; }
.location-note { color: var(--ink-soft); font-size: 13px !important; }
.location-hours { font-size: 14px !important; padding-top: 8px; border-top: 1px solid var(--line); margin-top: 24px !important; }
.location-hours span { font-size: 12px; color: var(--ink-soft); }
.location-lede { font-family: var(--serif-jp); text-align: center; }

/* ---- Location details / access ---- */
.loc-info {
  max-width: 780px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.loc-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 32px 34px;
}
.loc-block-label {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.36em;
  color: var(--gold);
  padding-left: 0.36em;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(192, 141, 56, 0.24);
}
.loc-address {
  font-family: var(--serif-jp);
  font-size: 16px;
  letter-spacing: 0.14em;
  line-height: 1.9;
  color: var(--ink);
  margin: 0;
}
.loc-way {
  margin-top: 24px;
}
.loc-way:first-of-type { margin-top: 0; }
.loc-way-title {
  font-family: var(--serif-jp);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--ink);
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px dashed rgba(192, 141, 56, 0.28);
}
.loc-way-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.loc-way-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.loc-way-from {
  font-family: var(--serif-jp);
  font-size: 13.5px;
  letter-spacing: 0.1em;
  color: var(--ink);
  font-weight: 500;
}
.loc-way-detail {
  font-family: var(--serif-jp);
  font-size: 13.5px;
  line-height: 1.95;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0;
}
.loc-way-note {
  font-family: var(--serif-jp);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  line-height: 1.9;
  margin: 8px 0 0;
}
.loc-note {
  font-family: var(--serif-jp);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  line-height: 1.9;
}
.loc-map {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.loc-map iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}
.loc-map-open {
  display: block;
  text-align: center;
  padding: 14px 16px;
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  border-top: 1px solid rgba(192, 141, 56, 0.22);
  transition: background .2s;
}
.loc-map-open:hover { background: rgba(192, 141, 56, 0.08); }

/* Location accordion (matches Q&A style) */
.loc-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.loc-acc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.loc-acc[open] {
  border-color: rgba(192, 141, 56, 0.4);
}
.loc-acc-summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  position: relative;
  transition: background .2s;
}
.loc-acc-summary::-webkit-details-marker { display: none; }
.loc-acc-summary::after {
  content: "";
  position: absolute;
  right: 26px; top: 50%;
  width: 10px; height: 10px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s;
}
.loc-acc[open] .loc-acc-summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.loc-acc-summary:hover { background: rgba(192, 141, 56, 0.05); }
.loc-acc-label {
  font-family: var(--serif-jp);
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--ink);
  padding-right: 40px;
}
.loc-acc-body {
  padding: 4px 24px 26px;
  border-top: 1px dashed rgba(192, 141, 56, 0.2);
  padding-top: 22px;
  margin: 0 24px;
}
.loc-acc-body .loc-address {
  font-family: var(--serif-jp);
  font-size: 15px;
  letter-spacing: 0.14em;
  line-height: 1.9;
  color: var(--ink);
  margin: 0;
}
.loc-acc-body .loc-way:first-of-type { margin-top: 0; }
.loc-acc-body .loc-way + .loc-way { margin-top: 24px; }
.loc-acc-body .loc-note {
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--serif-jp);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  line-height: 1.9;
}
.loc-acc-body .loc-map {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 640px) {
  .loc-acc-summary { padding: 18px 20px; }
  .loc-acc-summary::after { right: 20px; }
  .loc-acc-label { font-size: 14px; padding-right: 30px; }
  .loc-acc-body { padding: 20px 20px 22px; margin: 0 20px; }
}
@media (max-width: 640px) {
  .loc-info { margin-top: 44px; gap: 28px; }
  .loc-block { padding: 24px 20px 26px; }
  .loc-address { font-size: 15px; }
  .loc-map iframe { height: 280px; }
}

/* ============ RESERVATION ============ */
.reservation { background: #f4ecdb; }
.booking {
  max-width: 720px;
  margin: 0 auto;
}
.booking-step {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 36px 0 18px;
}
.booking-step-num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}
.booking-step-label {
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--ink);
}

.booking-menu {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bm-item {
  appearance: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px 20px;
  cursor: pointer;
  text-align: left;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  transition: border-color .25s, background .25s;
}
.bm-item:hover {
  border-color: rgba(192, 141, 56, 0.5);
  background: rgba(192, 141, 56, 0.03);
}
.bm-item.is-selected {
  border-color: var(--gold);
  background: #faf2e1;
}
.bm-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(192, 141, 56, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.bm-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.bm-code {
  font-family: var(--serif-en);
  letter-spacing: 0.18em;
  font-size: 14px;
  color: var(--accent);
}
.bm-jp {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}
.bm-meta {
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.bm-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.bm-price-strike {
  font-size: 11px;
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: rgba(85, 77, 68, 0.55);
  text-decoration-thickness: 1px;
}
.bm-first-label {
  font-family: var(--serif-jp);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gold);
  padding-left: 0.24em;
}
.bm-first-price {
  font-family: var(--serif-en);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
@media (max-width: 640px) {
  .bm-item { padding: 14px 16px; gap: 12px; grid-template-columns: 40px 1fr auto; }
  .bm-icon { width: 40px; height: 40px; }
  .bm-first-price { font-size: 18px; }
}

.calendar {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 18px 18px 22px;
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-title {
  font-family: var(--serif-en);
  letter-spacing: 0.25em;
  font-size: 16px;
  color: var(--ink);
}
.cal-nav {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 18px;
  transition: background .2s, color .2s;
}
.cal-nav:hover { background: var(--bg-sage); color: var(--ink); }

.cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-family: var(--serif-en);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ink-mute);
  border: 1px solid transparent;
  border-radius: 4px;
  position: relative;
  cursor: default;
}
.cal-day.has-slot {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.cal-day.has-slot:hover { background: #f0ede4; border-color: var(--accent); }
.cal-day.is-selected { background: var(--accent); color: #fff; border-color: var(--accent); }
.cal-day .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 4px;
}
.cal-day.is-selected .dot { background: #fff; }

.cal-legend {
  margin-top: 14px;
  text-align: right;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
}
.legend-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}

.time-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.time-btn {
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.time-btn:hover { border-color: var(--gold); background: #faf2e1; }

.booking-dm {
  margin-top: 56px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
}
.dm-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 22px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.16em;
  transition: background .2s, color .2s;
}
.dm-btn:hover { background: var(--accent); color: #fff; }

/* ============ FOOTER ============ */
.footer {
  background: #f9f8f6;
  text-align: center;
  padding: 70px 24px 40px;
  color: var(--ink);
}
.footer-brand {
  display: block;
  width: min(260px, 68%);
  aspect-ratio: 2.4 / 1;
  margin: 0 auto;
  overflow: hidden;
}
.footer-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.footer-tag {
  margin-top: 10px;
  letter-spacing: 0.18em;
  font-size: 13px;
}
.footer-copy {
  margin-top: 40px;
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--ink-soft);
}

/* ============ FLOAT CTA ============ */
.float-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  background: var(--gold);
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.2em;
  box-shadow: 0 14px 30px -10px rgba(192, 141, 56, 0.55);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.float-cta.is-shown {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* ============ MODAL ============ */
.modal {
  position: fixed; inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal[hidden] { display: none; }
.modal-veil {
  position: absolute; inset: 0;
  background: rgba(85, 77, 68, 0.45);
}
.modal-card {
  position: relative;
  background: var(--bg);
  border-radius: 6px;
  padding: 36px 36px 32px;
  max-width: 480px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3);
}
.modal-close {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 22px;
  color: var(--ink-soft);
  width: 32px; height: 32px;
}
.modal-title {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.modal-summary {
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  line-height: 1.9;
}
.modal-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form textarea {
  margin-top: 6px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--ink);
  font-family: inherit;
}
.modal-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-size: 13px !important;
  color: var(--ink) !important;
  letter-spacing: 0.08em !important;
}
.modal-checkgroup {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-checkgroup legend {
  font-family: var(--serif-jp);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  padding: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(192, 141, 56, 0.24);
  width: 100%;
}
.modal-checkgroup .modal-check {
  padding-left: 4px;
}
.modal-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-top: 6px;
}
.modal-submit:hover { background: #b08032; }
.modal-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.1em;
}

/* ============ Responsive ============ */
@media (max-width: 880px) {
  section { padding: 80px 18px; }
  .nav-links { gap: 16px; font-size: 12px; }
  .nav-cta { padding: 5px 12px; }
  .menu-grid { grid-template-columns: 1fr; max-width: 480px; }
  .steps-list { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .location-grid { grid-template-columns: 1fr; gap: 28px; }
  .booking-menu { grid-template-columns: 1fr; }
  .time-picker { grid-template-columns: repeat(3, 1fr); }
  .letter-paper { padding: 48px 28px 56px; }
  .worldview { padding: 0; }
}
