/* ==========================================================
   Yokohama Ramen Adventure — Official Site
   Colorful, stylish, craft-inspired.
   Palette: vermillion (noren red), gold (broth), matcha,
   indigo (noren navy), warm cream paper.
   ========================================================== */

:root {
  --paper: #FFF9EF;
  --paper-deep: #FBEFDA;
  --ink: #2A2118;
  --ink-soft: #6B5A48;

  --vermillion: #E8442B;
  --vermillion-deep: #C43318;
  --gold: #F5A623;
  --gold-deep: #C77E10;
  --matcha: #7FA650;
  --matcha-deep: #5C7F35;
  --indigo: #1E3A5F;
  --indigo-deep: #14283F;
  --peach: #FFE3C7;
  --pink: #FFD9CF;

  --cream-line: #F0DFC2;
  --white: #FFFFFF;

  --font-display: "Fraunces", "Shippori Mincho", serif;
  --font-body: "Inter", "Zen Kaku Gothic New", sans-serif;

  --radius: 18px;
  --shadow: 0 12px 34px rgba(42, 33, 24, 0.10);
  --shadow-lift: 0 18px 44px rgba(42, 33, 24, 0.16);
  --maxw: 1120px;
}

html[lang="ja"] body { font-family: "Zen Kaku Gothic New", "Inter", sans-serif; }
html[lang="ja"] h1, html[lang="ja"] h2, html[lang="ja"] h3,
html[lang="ja"] .brand-text strong { font-family: "Shippori Mincho", serif; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.18;
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.05rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.55rem); }
h3 { font-size: 1.18rem; }

p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }
a { color: var(--vermillion-deep); }

::selection { background: var(--gold); color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--white); padding: 10px 18px; z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vermillion);
  background: var(--pink);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 1.1em;
}
.noodles .eyebrow { color: var(--matcha-deep); background: #E8F0D8; }
.experience .eyebrow { color: var(--indigo); background: #DCE8F5; }
.menu .eyebrow { color: var(--gold-deep); background: #FCEBC4; }
.reviews .eyebrow { color: var(--gold); background: rgba(245, 166, 35, 0.15); }
.details .eyebrow { color: var(--matcha-deep); background: #E8F0D8; }
.faq .eyebrow { color: var(--indigo); background: #DCE8F5; }
.eyebrow.light { color: var(--gold); background: rgba(245, 166, 35, 0.16); }

.sub { color: var(--ink-soft); max-width: 640px; margin-inline: auto; }
.sub.light { color: #C7D4E4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--vermillion), var(--vermillion-deep));
  color: var(--white);
  box-shadow: 0 8px 22px rgba(232, 68, 43, 0.4);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(232, 68, 43, 0.5); }
.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-full { width: 100%; }
.btn-nav { padding: 10px 22px; font-size: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 249, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-line);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(14, 21, 48, 0.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { font-family: var(--font-display); font-size: 1.02rem; }
.brand-text small { color: var(--ink-soft); font-size: 0.72rem; letter-spacing: 0.05em; }

.main-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 22px;
}
.main-nav a:not(.btn) {
  text-decoration: none; color: var(--ink);
  font-size: 0.92rem; font-weight: 500;
  padding-bottom: 2px;
  background-image: linear-gradient(90deg, var(--vermillion), var(--gold));
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: left bottom;
  transition: background-size 0.2s ease;
}
.main-nav a:not(.btn):hover { background-size: 100% 2px; }

.lang-toggle {
  border: 1.5px solid var(--indigo); background: transparent;
  border-radius: 999px; padding: 6px 14px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; color: var(--indigo);
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-toggle:hover { background: var(--indigo); color: var(--paper); }

.nav-toggle { display: none; }

/* ---------- Hero (video background) ---------- */
.hero { position: relative; }
.hero-viewport {
  position: relative;
  min-height: max(86vh, 560px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(720px 460px at 88% 8%, rgba(245, 166, 35, 0.35), transparent 62%),
    linear-gradient(160deg, #3A2415 0%, #1E1209 100%);
}
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 16, 6, 0.48) 0%,
    rgba(30, 16, 6, 0.22) 45%,
    rgba(35, 18, 6, 0.58) 100%
  );
}
.hero-blur {
  transform: scale(1.18);
  filter: blur(22px) brightness(0.6) saturate(1.25);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 72px 20px 66px;
}
.hero-copy {
  text-align: left;
  color: #FFF6E6;
}
.hero-reel {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
}
.hero-reel video {
  width: min(290px, 74vw);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 34px;
  border: 8px solid rgba(20, 12, 6, 0.85);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  background: #000;
}
.hero-reel figcaption {
  color: #FFD9A0;
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-copy .eyebrow {
  color: #FFD9A0;
  background: rgba(255, 246, 230, 0.14);
  backdrop-filter: blur(4px);
}
.hero-copy h1 {
  color: #FFF6E6;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.45);
}
.hero-copy .lede {
  font-size: 1.12rem;
  color: rgba(255, 246, 230, 0.9);
  max-width: 640px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.hero-proof {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 22px 0 30px; font-weight: 600; font-size: 0.92rem;
  background: rgba(255, 249, 239, 0.95);
  color: var(--ink);
  border-radius: 999px; padding: 10px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }
.hero .btn-ghost {
  border-color: rgba(255, 246, 230, 0.85);
  color: #FFF6E6;
  backdrop-filter: blur(4px);
}
.hero .btn-ghost:hover { background: rgba(255, 246, 230, 0.95); color: var(--ink); }

/* ---------- Stat strip ---------- */
.hero-strip {
  background: linear-gradient(120deg, var(--indigo-deep), var(--indigo) 60%, #2A527F);
  color: var(--paper);
  position: relative;
}
.hero-strip::before {
  content: "";
  position: absolute; top: -1px; left: 0; right: 0; height: 8px;
  background: linear-gradient(90deg, var(--vermillion), var(--gold), var(--matcha), var(--indigo));
}
.hero-strip ul {
  max-width: var(--maxw); margin: 0 auto; padding: 26px 20px 22px;
  list-style: none; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.hero-strip li { display: flex; flex-direction: column; line-height: 1.4; }
.hero-strip strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold); }
.hero-strip span { font-size: 0.82rem; color: #B9C9DC; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section-inner.narrow { max-width: 780px; }
.center-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-2.reverse { direction: rtl; }
.grid-2.reverse > * { direction: ltr; }

/* ---------- Photo placeholders ---------- */
.photo-slot {
  position: relative; margin: 0;
  background:
    repeating-linear-gradient(45deg, rgba(245, 166, 35, 0.08) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, var(--peach), #FBE3C4);
  border: 2px dashed #E4B972;
  border-radius: var(--radius);
  min-height: 300px;
  display: grid; place-items: center;
  overflow: hidden;
}
.photo-slot.tall { min-height: 460px; }
.photo-slot .ph-label {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  font-size: 0.78rem; color: #A5762B; text-align: center;
  background: rgba(255, 249, 239, 0.9);
  border-radius: 10px; padding: 6px 10px;
}
.photo-slot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Once a real photo loads, show the whole image (no cropping). */
.photo-slot.has-photo { border: none; min-height: 0; }
.photo-slot.has-photo img {
  position: static;
  height: auto;
  display: block;
}
.photo-slot.has-photo .ph-label { display: none; }

/* ---------- Story ---------- */
.story { background: var(--white); position: relative; }
.story::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--vermillion), var(--gold));
  opacity: 0.85;
}
.story-media { position: relative; }
.story-media .tall { transform: rotate(-1.5deg); }
.story-media .offset {
  min-height: 220px; width: 70%;
  margin: -70px 0 0 auto;
  box-shadow: var(--shadow-lift);
  transform: rotate(1.5deg);
  background:
    repeating-linear-gradient(45deg, rgba(127, 166, 80, 0.10) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, #EAF2DC, #DDEAC8);
  border-color: #A8C077;
}
.story-media .offset .ph-label { color: var(--matcha-deep); }
.signature {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.2rem; color: var(--vermillion); margin-top: 1.2em;
}

/* ---------- Noodles (unique value) ---------- */
.noodles {
  background:
    radial-gradient(600px 340px at 8% 10%, rgba(245, 166, 35, 0.18), transparent 60%),
    radial-gradient(500px 320px at 95% 90%, rgba(127, 166, 80, 0.16), transparent 60%),
    var(--paper-deep);
}
.cards-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  max-width: 900px; margin: 0 auto;
}
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 32px; box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card:nth-child(2) { border-top-color: var(--vermillion); }
.card-icon svg { width: 52px; height: 52px; fill: none; margin-bottom: 14px; }
.card:nth-child(1) .card-icon svg { stroke: var(--gold-deep); }
.card:nth-child(2) .card-icon svg { stroke: var(--vermillion); }
.noodles-note {
  text-align: center; max-width: 640px; margin: 44px auto 0;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.25rem; color: var(--vermillion-deep);
}

/* ---------- Instagram reel ---------- */
.reel {
  background:
    radial-gradient(560px 380px at 90% 12%, rgba(232, 68, 43, 0.14), transparent 60%),
    radial-gradient(520px 360px at 6% 88%, rgba(245, 166, 35, 0.2), transparent 60%),
    var(--paper-deep);
}
.reel .eyebrow { color: var(--vermillion); background: var(--pink); }
.reel-copy p { color: var(--ink-soft); max-width: 480px; }
.reel-note {
  font-weight: 600; color: var(--vermillion-deep) !important;
  margin-top: 1.4em;
}
.reel-phone { display: grid; place-items: center; }
.reel-phone video {
  width: min(320px, 78vw);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 38px;
  border: 10px solid #1A120B;
  box-shadow: 0 30px 60px rgba(42, 33, 24, 0.35);
  background: #000;
}

/* ---------- Factory gallery ---------- */
.gallery { background: var(--white); }
.gallery .eyebrow { color: var(--gold-deep); background: #FCEBC4; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
}
.gallery-item {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--paper-deep);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.gallery-item img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block;
  object-position: center 28%;
}
.gallery-item figcaption {
  padding: 14px 18px;
  font-size: 0.9rem; font-weight: 600; color: var(--ink-soft);
  border-top: 3px solid var(--gold);
  background: var(--white);
}
.gallery-item:nth-child(1) figcaption { border-top-color: var(--vermillion); }
.gallery-item:nth-child(2) figcaption { border-top-color: var(--gold); }
.gallery-item:nth-child(3) figcaption { border-top-color: var(--matcha); }
.gallery-item:nth-child(4) figcaption { border-top-color: var(--indigo); }
.gallery-item:nth-child(5) figcaption { border-top-color: var(--gold-deep); }
.gallery-item:nth-child(6) figcaption { border-top-color: var(--vermillion-deep); }
.gallery-wide { grid-column: 1 / -1; }
.gallery-wide img { aspect-ratio: 2 / 1; object-position: center 45%; }
.gallery-wide figcaption { border-top-color: var(--gold); }

/* ---------- Timeline ---------- */
.experience { background: var(--white); }
.timeline {
  list-style: none; margin: 0 auto; padding: 0;
  max-width: 760px; position: relative;
  counter-reset: stop;
}
.timeline::before {
  content: ""; position: absolute; left: 46px; top: 10px; bottom: 10px;
  width: 3px; border-radius: 3px;
  background: linear-gradient(180deg, var(--vermillion), var(--gold), var(--matcha), var(--indigo));
}
.timeline li {
  display: grid; grid-template-columns: 92px 1fr; gap: 26px;
  padding: 0 0 44px; position: relative;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline .time {
  font-family: var(--font-display); font-weight: 600;
  color: var(--white); font-size: 0.95rem;
  align-self: start; z-index: 1;
  text-align: center; padding: 6px 0;
  border-radius: 999px;
  background: var(--vermillion);
  box-shadow: 0 6px 14px rgba(232, 68, 43, 0.3);
}
.timeline li:nth-child(2) .time { background: var(--gold-deep); box-shadow: 0 6px 14px rgba(199, 126, 16, 0.3); }
.timeline li:nth-child(3) .time { background: var(--matcha-deep); box-shadow: 0 6px 14px rgba(92, 127, 53, 0.3); }
.timeline li:nth-child(4) .time { background: var(--vermillion); box-shadow: 0 6px 14px rgba(232, 68, 43, 0.3); }
.timeline li:nth-child(5) .time { background: var(--indigo); box-shadow: 0 6px 14px rgba(30, 58, 95, 0.3); }
.timeline li:nth-child(6) .time { background: var(--ink); box-shadow: 0 6px 14px rgba(42, 33, 24, 0.3); }
.timeline h3 { margin-bottom: 0.3em; }
.timeline p { color: var(--ink-soft); margin: 0; }

/* ---------- Menu ---------- */
.menu {
  background:
    radial-gradient(600px 400px at 92% 8%, rgba(232, 68, 43, 0.08), transparent 60%),
    var(--paper);
}
.menu-list { list-style: none; margin: 0; padding: 0; counter-reset: dish; }
.menu-list li {
  padding: 18px 0 18px 54px; border-bottom: 1px solid var(--cream-line);
  position: relative; counter-increment: dish;
}
.menu-list li::before {
  content: counter(dish, decimal-leading-zero);
  position: absolute; left: 0; top: 22px;
  font-family: var(--font-display); font-weight: 600;
  color: var(--white); font-size: 0.8rem;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
}
.menu-list li:nth-child(1)::before { background: var(--vermillion); }
.menu-list li:nth-child(2)::before { background: var(--gold-deep); }
.menu-list li:nth-child(3)::before { background: var(--matcha-deep); }
.menu-list li:nth-child(4)::before { background: var(--matcha); }
.menu-list li:nth-child(5)::before { background: var(--indigo); }
.menu-list li:first-child { border-top: 1px solid var(--cream-line); }
.menu-list h3 { margin-bottom: 0.2em; font-size: 1.08rem; }
.menu-list p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.menu-note {
  margin-top: 22px; font-size: 0.9rem; color: var(--matcha-deep);
  font-weight: 600;
  background: #EAF2DC; border-radius: 12px; padding: 12px 18px;
  display: inline-block;
}
.menu-media .tall { transform: rotate(1.2deg); }
.menu-media .offset {
  min-height: 220px; width: 68%;
  margin: -80px auto 0 0;
  box-shadow: var(--shadow-lift);
  transform: rotate(-1.6deg);
  position: relative; z-index: 1;
}
.menu-media .offset.in-view { transform: rotate(-1.6deg); }
.menu-duo {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 22px;
}
.menu-duo .photo-slot { min-height: 180px; border-radius: 14px; }
.menu-duo .photo-slot.has-photo { min-height: 0; background: none; }
.menu-duo .photo-slot.has-photo img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

/* ---------- Reviews ---------- */
.reviews {
  background: linear-gradient(150deg, var(--indigo-deep), var(--indigo) 70%, #27507C);
  color: var(--paper);
}
.reviews h2 { color: #FFEFD0; }
.reviews .sub { color: #B9C9DC; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  margin: 0; background: var(--paper); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--ink);
  transition: transform 0.2s ease;
}
.review:hover { transform: translateY(-4px); }
.review p {
  font-family: var(--font-display); font-size: 1.04rem; line-height: 1.55;
}
.review footer { margin-top: 10px; }
.review cite {
  font-style: normal; font-size: 0.85rem; color: var(--ink-soft); font-weight: 600;
}
.review cite::before { content: "★★★★★  "; color: var(--gold); letter-spacing: 1px; }

/* ---------- Details ---------- */
.details { background: var(--paper); }
.details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.detail {
  background: var(--white); border-radius: var(--radius);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
  transition: transform 0.2s ease;
}
.detail:hover { transform: translateY(-3px); }
.detail:nth-child(3n+1) { border-top-color: var(--vermillion); }
.detail:nth-child(3n+2) { border-top-color: var(--gold); }
.detail:nth-child(3n+3) { border-top-color: var(--matcha); }
.detail h3 { font-size: 1.02rem; margin-bottom: 0.4em; }
.detail p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq details {
  border: 1.5px solid var(--cream-line);
  border-radius: 14px;
  padding: 4px 20px;
  margin-bottom: 12px;
  background: var(--paper);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.faq details[open] {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; padding: 14px 36px 14px 0;
  font-weight: 600; font-size: 1.02rem;
  list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display); font-size: 1.5rem; color: var(--vermillion);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 0 16px; color: var(--ink-soft); margin: 0; }

/* ---------- Booking ---------- */
.book {
  background:
    radial-gradient(760px 420px at 12% 0%, rgba(232, 68, 43, 0.28), transparent 60%),
    radial-gradient(560px 380px at 95% 100%, rgba(245, 166, 35, 0.2), transparent 60%),
    linear-gradient(150deg, #23180F, #2E2013);
  color: var(--paper);
  position: relative;
}
.book::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 8px;
  background: linear-gradient(90deg, var(--vermillion), var(--gold), var(--matcha), var(--indigo));
}
.book h2 { color: #FFEFD0; }
.book-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: start; }
.book-form {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 36px 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.form-row { margin-bottom: 16px; }
.form-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.book-form label {
  display: block; font-size: 0.84rem; font-weight: 600;
  margin-bottom: 6px; color: var(--ink-soft);
}
.book-form input, .book-form select, .book-form textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--cream-line); border-radius: 12px;
  font-family: var(--font-body); font-size: 0.95rem;
  background: var(--paper); color: var(--ink);
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
  outline: 2px solid var(--gold); border-color: var(--gold);
}
.form-hint { font-size: 0.8rem; color: var(--ink-soft); margin: 12px 0 0; text-align: center; }

.bokun-box { display: flex; flex-direction: column; }
.bokun-sub {
  font-size: 0.86rem; color: var(--matcha-deep); font-weight: 600;
  margin: -6px 0 14px;
}
.promo-banner {
  background: linear-gradient(120deg, #FCEBC4, var(--peach));
  border: 1.5px dashed var(--gold-deep);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0 0 16px;
  text-align: center;
}
.promo-banner strong { color: var(--vermillion-deep); letter-spacing: 0.04em; }
#bokunContainer { min-height: 480px; }
#bokunContainer .bokunWidget { width: 100%; height: 100%; min-height: 480px; }
.link-like {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  color: var(--vermillion-deep); text-decoration: underline;
  margin-top: 14px; padding: 6px;
}
.link-like:hover { color: var(--vermillion); }

.book-platforms h3 { color: #FFEFD0; }
.book-platforms > p { color: #D9C9B2; font-size: 0.94rem; }
.platform {
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 5px solid var(--gold);
  border-radius: 14px; padding: 18px 22px; margin-bottom: 14px;
  text-decoration: none; color: var(--paper);
  transition: background 0.15s ease, transform 0.15s ease;
}
.platform:nth-of-type(1) { border-left-color: var(--vermillion); }
.platform:nth-of-type(2) { border-left-color: var(--gold); }
.platform:nth-of-type(3) { border-left-color: var(--matcha); }
.platform:hover { background: rgba(255, 255, 255, 0.14); transform: translateX(4px); }
.trust-note {
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
}
.platform strong { font-family: var(--font-display); font-size: 1.05rem; }
.platform span { font-size: 0.84rem; color: #D9C9B2; }

/* ---------- Footer ---------- */
.site-footer { background: #1A120B; color: #B7A895; padding: 42px 0 32px; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 20px;
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: flex-start; justify-content: space-between;
}
.footer-inner strong { color: var(--gold); font-family: var(--font-display); }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-logo { width: 72px; height: 72px; border-radius: 16px; object-fit: cover; }
.footer-inner p { font-size: 0.85rem; margin: 6px 0 0; }
.footer-inner nav { display: flex; gap: 20px; }
.footer-inner nav a { color: #B7A895; text-decoration: none; font-size: 0.88rem; }
.footer-inner nav a:hover { color: var(--gold); }
.copyright { width: 100%; font-size: 0.78rem; border-top: 1px solid #2E2318; padding-top: 18px; }

/* ---------- Scroll reveal ---------- */
.will-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.in-view { opacity: 1; transform: translateY(0); }
.story-media .tall.in-view { transform: rotate(-1.5deg); }
.story-media .offset.in-view { transform: rotate(1.5deg); }
.menu-media .tall.in-view { transform: rotate(1.2deg); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .will-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-viewport { min-height: max(78vh, 520px); }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; padding: 56px 20px 52px; }
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-reel video { width: min(230px, 62vw); }
  .hero-strip ul { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-2.reverse { grid-template-columns: 1fr; gap: 32px; }
  .cards-2, .review-grid, .details-grid, .gallery-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .story-media .offset { margin-top: -50px; }
  .section { padding: 64px 0; }

  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: none; border: none; padding: 10px; cursor: pointer;
  }
  .nav-toggle span {
    width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .main-nav ul {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--cream-line);
    flex-direction: column; align-items: stretch;
    padding: 16px 20px 22px; gap: 4px;
    box-shadow: 0 16px 30px rgba(42, 33, 24, 0.14);
  }
  .main-nav ul.open { display: flex; }
  .main-nav ul li { padding: 6px 0; }
  .timeline::before { left: 34px; }
  .timeline li { grid-template-columns: 68px 1fr; gap: 18px; }
}
