/* ================================================================
   Japanify Tours — Editorial Boutique Theme
   Palette: Japanese minimalist + warm editorial + vermilion accent
   ================================================================ */

:root {
  --color-paper: #fdf9f7;
  --color-paper-soft: #fbf0ea;
  --color-white: #ffffff;
  --color-ink: #1a1a1a;
  --color-ink-soft: #3a3a3a;
  --color-muted: #6b6b6b;
  --color-border: #f0e8e4;
  --color-border-strong: #ddd0c8;
  --color-accent: #ed1c8c;       /* Japanify magenta — matched to logo */
  --color-accent-dark: #b8126c;
  --color-accent-soft: #fde4f0;
  --color-accent-glow: rgba(237, 28, 140, 0.18);
  --color-night: #1c1719;        /* Ghost tour dark */
  --color-gold: #f5c668;          /* Accent on dark backgrounds */
  --color-success: #2d5a3e;

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --max-width: 1600px;
  --max-width-narrow: 960px;
  --max-width-text: 720px;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 6px 24px rgba(26,26,26,0.06);
  --shadow-lg: 0 20px 60px rgba(26,26,26,0.12);

  --transition: 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background-color: var(--color-paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='40' viewBox='0 0 80 40'><g fill='none' stroke='%23ed1c8c' stroke-width='1.2' stroke-opacity='0.18'><path d='M-40 40 A 40 40 0 0 1 40 40'/><path d='M-30 40 A 30 30 0 0 1 30 40'/><path d='M-20 40 A 20 20 0 0 1 20 40'/><path d='M-10 40 A 10 10 0 0 1 10 40'/><path d='M40 40 A 40 40 0 0 1 120 40'/><path d='M50 40 A 30 30 0 0 1 110 40'/><path d='M60 40 A 20 20 0 0 1 100 40'/><path d='M70 40 A 10 10 0 0 1 90 40'/></g></svg>");
  background-size: 80px 40px;
  background-repeat: repeat;
  background-attachment: fixed;
  color: var(--color-ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--color-ink);
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
h4 { font-size: 1.25rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.02em; }
p { color: var(--color-ink-soft); }
p + p { margin-top: var(--space-2); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-block;
  margin-bottom: var(--space-2);
}

.lede {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-ink-soft);
  max-width: var(--max-width-text);
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(1rem, 3vw, var(--space-5)); }
.container-narrow { max-width: var(--max-width-narrow); margin: 0 auto; padding: 0 clamp(1rem, 3vw, var(--space-5)); }
.container-text { max-width: var(--max-width-text); margin: 0 auto; padding: 0 clamp(1rem, 3vw, var(--space-5)); }

section { padding: var(--space-7) 0; }
@media (max-width: 768px) { section { padding: var(--space-5) 0; } }

/* ---------- Promo bar (above header) ---------- */
.promo-bar {
  background: #0a0608;
  color: var(--color-paper);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.7rem 1rem;
  position: relative;
  z-index: 60;
}
.promo-bar strong {
  background: var(--color-accent);
  color: var(--color-paper);
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0.15rem;
}
.promo-image {
  display: none;
  width: 100%;
  height: auto;
}

@media (max-width: 700px) {
  .promo-bar {
    background: #fff;
    padding: 0;
    line-height: 0;
    overflow: hidden;
  }
  .promo-text {
    display: none;
  }
  .promo-image {
    display: block;
  }
}

/* Hide empty / placeholder price chips (since prices live on Bokun) */
.tour-card-price:empty,
.tour-card-headline:has(.tour-card-price:empty) .tour-card-price { display: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.logo img { height: 68px; width: auto; display: block; }
@media (max-width: 900px) {
  .header-inner { height: 84px; position: relative; }
  .logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
  .logo img { height: 56px; }
  .menu-toggle { margin-left: 0; z-index: 2; }
  .nav-cta { z-index: 2; }
}

.nav-primary { display: flex; align-items: center; gap: var(--space-4); }
.nav-primary a {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  position: relative;
}
.nav-primary a:hover { color: var(--color-accent); }
.nav-primary a.active { color: var(--color-ink); }

.nav-cta {
  font-size: 0.95rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: var(--color-white) !important;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  transition: all var(--transition);
  box-shadow: 0 4px 14px var(--color-accent-glow);
}
.nav-cta:hover { background: var(--color-accent-dark) !important; color: var(--color-white) !important; transform: translateY(-1px); }

.menu-toggle { display: none; }
@media (max-width: 900px) {
  .nav-primary { display: none; position: absolute; top: 84px; left: 0; right: 0; background: var(--color-paper); flex-direction: column; padding: var(--space-3); border-bottom: 1px solid var(--color-border); align-items: stretch; gap: var(--space-2); }
  .nav-primary.open { display: flex; }
  .nav-primary a { padding: var(--space-1) 0; }
  .menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: var(--space-1); }
  .menu-toggle span { width: 24px; height: 2px; background: var(--color-ink); transition: var(--transition); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-night);
}
@media (max-width: 768px) {
  .hero { min-height: 78vh; }
}
@media (max-width: 480px) {
  .hero { min-height: 72vh; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero .lede { font-size: 1.05rem; }
  .hero-cta-row { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .hero-cta-row .btn { justify-content: center; }
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}
.hero-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: ken-burns 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes ken-burns {
  from { transform: scale(1.0) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-image-img { animation: none; }
}
.hero-image-wrap::after, .hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.85) 100%),
    linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.0) 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-7) var(--space-3) var(--space-6);
  color: var(--color-paper);
}
.hero h1 {
  color: var(--color-paper);
  max-width: 14ch;
  margin-bottom: var(--space-3);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.5);
}
.hero .lede {
  color: rgba(250, 247, 242, 0.95);
  max-width: 38ch;
  margin-bottom: var(--space-4);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.45);
}
.hero .eyebrow {
  color: #ffd47a;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.hero-cta-row { display: flex; gap: var(--space-2); flex-wrap: wrap; align-items: center; }

.hero-stats {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  z-index: 2;
  display: flex;
  gap: var(--space-4);
  color: var(--color-paper);
  font-size: 0.85rem;
}
.hero-badge {
  position: absolute;
  top: calc(84px + var(--space-3));
  right: var(--space-4);
  z-index: 3;
  width: 110px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
@media (max-width: 768px) {
  .hero-badge { width: 80px; right: var(--space-2); top: calc(84px + var(--space-2)); }
}
@media (max-width: 768px) { .hero-stats { display: none; } }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 500; }
.hero-stat span { opacity: 0.8; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.7rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.85rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--color-accent); color: var(--color-white); box-shadow: 0 6px 20px var(--color-accent-glow); }
.btn-primary:hover { background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: 0 10px 28px var(--color-accent-glow); }
.btn-secondary { background: transparent; color: var(--color-paper); border: 1px solid rgba(250,247,242,0.4); }
.btn-secondary:hover { background: rgba(250,247,242,0.1); border-color: var(--color-paper); }
.btn-dark { background: var(--color-ink); color: var(--color-paper); }
.btn-dark:hover { background: var(--color-accent); }
.btn-ghost { background: transparent; color: var(--color-ink); border: 1px solid var(--color-border-strong); }
.btn-ghost:hover { background: var(--color-ink); color: var(--color-paper); border-color: var(--color-ink); }

/* See-all-tours CTA: pink uppercase, black on hover */
.see-all-row {
  margin-top: var(--space-3);
  margin-bottom: 0;
  padding-bottom: 0;
}
.btn-see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.75rem;
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-see-all:hover {
  background: #000000;
  color: var(--color-paper);
  border-color: #000000;
  transform: translateY(-2px);
}
.btn-see-all .arrow { transition: transform var(--transition); }
.btn-see-all:hover .arrow { transform: translateX(4px); }
.btn-lg { padding: 1.15rem 2.25rem; font-size: 0.95rem; }
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Section headers ---------- */
.section-head { text-align: center; max-width: 900px; margin: 0 auto var(--space-5); }
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { font-size: clamp(2.75rem, 5.2vw, 4.5rem); line-height: 1.05; }
.section-head p { font-size: clamp(1.75rem, 2.6vw, 2.4rem); line-height: 1.4; color: var(--color-ink); font-family: var(--font-display); }
.section-head .eyebrow { font-size: 24px; letter-spacing: 0.3em; font-weight: 700; }
.divider {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: var(--space-2) auto;
}
.section-head.left .divider { margin-left: 0; }

/* ---------- Tours grid (editorial card v2) ---------- */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: var(--space-5);
}
@media (max-width: 520px) {
  .tours-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}
.tour-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: 0 10px 32px rgba(26, 26, 26, 0.10);
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(26, 26, 26, 0.22);
  border-color: rgba(26, 26, 26, 0.18);
}
.tour-card-image {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--color-paper-soft);
  position: relative;
  overflow: hidden;
}
/* Card body layout */
.tour-card-body {
  padding: var(--space-4) var(--space-4) var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}

/* Headline row: title + price chip */
.tour-card-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.tour-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.8vw, 1.8rem);
  line-height: 1.15;
  margin: 0;
  font-weight: 500;
  transition: color var(--transition);
}
.tour-card:hover h3 { color: var(--color-accent); }
.tour-card-price {
  flex-shrink: 0;
  background: #2a2a2a;
  color: var(--color-paper);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  align-self: flex-start;
}

/* Tag pills */
.tour-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: -0.2rem;
}
.tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.tag-grey { background: #ececec; color: #444; }
.tag-cream { background: #fef3d6; color: #8a6610; }

/* Description */
.tour-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-muted);
}

/* Feature icon strip */
.tour-card-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}
.feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  font-size: 0.82rem;
  line-height: 1.2;
  color: var(--color-ink);
}
.feat-icon {
  font-size: 1.35rem;
  line-height: 1;
}

/* Dual CTAs */
.tour-card-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.tour-card-ctas .btn {
  width: 100%;
  justify-content: center;
  padding: 0.85rem 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 600;
  border-radius: 12px;
}
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-paper);
}

/* Rating row */
.tour-card-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--color-muted);
  padding-top: 0.3rem;
}
.tour-card-rating .stars { color: #f5b500; letter-spacing: 0.06em; }
.tour-card-rating .rating-text { font-weight: 500; color: var(--color-ink); }
.tour-card-rating .rating-source {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: #00aa6c;
  letter-spacing: 0.02em;
}
.tour-card-rating .rating-source::before {
  content: '◉ ';
  color: #00aa6c;
}

/* Night card variant for ghost / dark tours */
.tour-card.night { background: var(--color-night); color: var(--color-paper); }
.tour-card.night h3 { color: var(--color-paper); }
.tour-card.night:hover h3 { color: #f5c668; }
.tour-card.night p { color: rgba(250,247,242,0.78); }
.tour-card.night .tour-card-price { background: var(--color-paper); color: var(--color-night); }
.tour-card.night .tour-card-features {
  border-top-color: rgba(250,247,242,0.15);
  border-bottom-color: rgba(250,247,242,0.15);
}
.tour-card.night .feat { color: var(--color-paper); }
.tour-card.night .tag-grey { background: rgba(250,247,242,0.12); color: rgba(250,247,242,0.85); }
.tour-card.night .tag-cream { background: rgba(245,198,104,0.18); color: #f5c668; }
.tour-card.night .tour-card-rating .rating-text { color: var(--color-paper); }
.tour-card.night .tour-card-rating { color: rgba(250,247,242,0.7); }

/* Pull Featured Tours and Why closer together */
.featured-tours { padding-bottom: clamp(2rem, 3.5vw, 3rem); }

/* ---------- Why us (black + real petals, depth layers) ---------- */
.why-section {
  background: #000000;
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
  color: var(--color-paper);
}

/* Real falling-petals image — used as two depth layers, screen blend keeps background pure black */
.why-sakura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("images/sakura-petals.avif");
  background-repeat: repeat;
  background-position: center top;
  mix-blend-mode: screen;
}

/* Back layer: behind cards, larger, softer */
.why-sakura-back {
  z-index: 1;
  opacity: 0.55;
  background-size: 720px auto;
  filter: blur(0.5px);
}

/* Front layer: in front of cards, smaller and flipped so it doesn't echo back layer; low opacity so cards stay readable */
.why-sakura-front {
  z-index: 3;
  opacity: 0.32;
  background-size: 480px auto;
  background-position: 30% 60%;
  transform: scaleX(-1);
}

.why-section .container {
  position: relative;
  z-index: 2;
}
.why-headline {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  font-weight: 600;
  color: var(--color-paper);
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
  max-width: 18ch;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  perspective: 1200px;
}
.why-item {
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 16px;
  padding: clamp(1.75rem, 2.5vw, 2.25rem) clamp(1.5rem, 2vw, 2rem);
  text-align: center;
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.6),
    8px 8px 0 rgba(0, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  transform: translateY(0);
  position: relative;
}
.why-item:hover {
  transform: translateY(-6px) translateX(-3px);
  box-shadow:
    0 30px 56px rgba(237, 28, 140, 0.35),
    12px 12px 0 var(--color-accent);
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.75vw, 1.7rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  color: #0a0608;
  margin: 0;
}
.why-item h4 .accent {
  color: var(--color-accent);
  font-style: italic;
}
.why-underline {
  width: 56px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 0.1rem auto 0.35rem;
  display: block;
}
.why-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  .why-item { transform: none; transition: none; }
  .why-item:hover { transform: none; }
}

/* ---------- Reviews widget (Elfsight) ---------- */
.reviews-section {
  background: transparent;
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}
.reviews-section .section-head {
  text-align: center;
  margin-bottom: var(--space-4);
}
.reviews-section .elfsight-app-99935a3f-c01b-4669-b2a5-be6689cc8298 {
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- Quote / testimonial ---------- */
.quote-section {
  background: transparent;
  text-align: center;
}
.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto var(--space-3);
  color: var(--color-ink);
}
.quote::before, .quote::after { content: '"'; color: var(--color-accent); }
.quote-attr { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-muted); }
.quote-attr strong { color: var(--color-ink); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--color-ink);
  color: var(--color-paper);
  padding: var(--space-3) 0;
  text-align: center;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
.trust-badge {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 600px) { .trust-badge { width: 72px; height: 72px; } }
.trust-badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
  max-width: 270px;
}
.trust-badge-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.25;
  color: #f5c668;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  .trust-badge-wrap { flex-direction: column; text-align: center; gap: 0.4rem; max-width: 100%; }
  .trust-badge-text { font-size: 0.95rem; max-width: 22ch; }
}
.trust-item { display: flex; flex-direction: column; gap: 0.15rem; align-items: center; }
.trust-item strong { font-family: var(--font-display); font-size: 1.55rem; color: #f5c668; line-height: 1.1; }
.trust-item span { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }

/* ---------- Editorial / about ---------- */
.editorial { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
@media (max-width: 768px) { .editorial-grid { grid-template-columns: 1fr; gap: var(--space-4); } }
.editorial-image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--color-paper-soft);
  border-radius: var(--radius);
}
.editorial-text h2 { margin-bottom: var(--space-3); }
.editorial-text p { margin-bottom: var(--space-2); font-size: 1.05rem; }

/* ---------- Tour detail page ---------- */
.tour-hero {
  position: relative;
  height: 70vh;
  min-height: 540px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: var(--color-paper);
}
.tour-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.tour-hero-inner { position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; padding: var(--space-5) var(--space-3); width: 100%; }
.tour-hero h1 { color: var(--color-paper); max-width: 18ch; }
.tour-hero .lede { color: rgba(250,247,242,0.9); margin-top: var(--space-2); }

.tour-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}
.tour-meta-bar .container { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; justify-content: space-between; }
.tour-meta-items { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.tour-meta-item { display: flex; flex-direction: column; gap: 2px; }
.tour-meta-item .label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-muted); font-weight: 600; }
.tour-meta-item .value { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-ink); }

.tour-body { padding: var(--space-6) 0; }
.tour-body-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-6);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
@media (max-width: 900px) { .tour-body-grid { grid-template-columns: 1fr; } }
.tour-content h2 { margin-bottom: var(--space-2); }
.tour-content h2:not(:first-child) { margin-top: var(--space-5); }
.tour-content p { font-size: 1.05rem; margin-bottom: var(--space-2); }
.tour-content ul { margin: var(--space-2) 0 var(--space-3) 1.5rem; }
.tour-content li { margin-bottom: 0.5rem; font-size: 1.05rem; color: var(--color-ink-soft); }

.booking-card {
  position: sticky;
  top: 96px;
  background: var(--color-white);
  padding: var(--space-4);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  align-self: start;
}
.booking-card .price-from { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-muted); }
.booking-card .price { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; margin: 0.25rem 0 var(--space-2); }
.booking-card .price span { font-size: 1rem; color: var(--color-muted); }
.booking-card ul { list-style: none; margin: var(--space-2) 0; padding: 0; }
.booking-card ul li { padding: 0.6rem 0; border-top: 1px solid var(--color-border); font-size: 0.95rem; display: flex; justify-content: space-between; }
.booking-card ul li:first-child { border-top: none; }
.booking-card ul li span:first-child { color: var(--color-muted); }
.booking-card .btn { width: 100%; justify-content: center; margin-top: var(--space-2); }
.booking-card .small-note { font-size: 0.8rem; color: var(--color-muted); text-align: center; margin-top: var(--space-2); }

.itinerary { border-left: 2px solid var(--color-accent); padding-left: var(--space-3); }
.itinerary-step { padding-bottom: var(--space-3); position: relative; }
.itinerary-step::before {
  content: '';
  position: absolute;
  left: calc(var(--space-3) * -1 - 6px);
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--color-paper);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
}
.itinerary-step h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--color-ink); margin-bottom: 0.25rem; }
.itinerary-step .time { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent); font-weight: 600; }
.itinerary-step p { font-size: 0.95rem; margin-top: 0.5rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: var(--max-width-narrow); margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-2) 0;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: var(--space-2) 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--color-accent); transition: transform var(--transition); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 var(--space-2); font-size: 1rem; }
.faq-item ul { margin: var(--space-1) 0 var(--space-2) 1.5rem; }
.faq-item li { font-size: 1rem; color: var(--color-ink-soft); }

/* ---------- Forms ---------- */
.form { max-width: var(--max-width-text); margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); margin-bottom: var(--space-2); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form label { display: block; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 0.5rem; font-weight: 600; }
.form input, .form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color var(--transition);
  margin-bottom: var(--space-2);
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--color-accent); }
.form textarea { min-height: 160px; resize: vertical; }
.form button { width: 100%; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-4);
}
.blog-card { display: block; }
.blog-card-image {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--color-paper-soft);
  border-radius: var(--radius);
  margin-bottom: var(--space-2);
  transition: transform var(--transition);
}
.blog-card:hover .blog-card-image { transform: scale(1.02); }
.blog-card-eyebrow { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-accent); font-weight: 600; }
.blog-card h3 { font-size: 1.5rem; margin: 0.5rem 0; transition: color var(--transition); }
.blog-card:hover h3 { color: var(--color-accent); }
.blog-card .read-time { font-size: 0.85rem; color: var(--color-muted); }

/* ---------- Misc ---------- */
.center { text-align: center; }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mt-4 { margin-top: var(--space-4); }
.bg-paper-soft { background: transparent; }
.bg-night { background: var(--color-night); color: var(--color-paper); }
.bg-night h2, .bg-night h3 { color: var(--color-paper); }

.breadcrumb { font-size: 0.85rem; color: var(--color-muted); margin: var(--space-3) 0; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { margin: 0 0.5rem; }

/* ---------- Animations ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up 0.8s ease-out both; }
.fade-up-delay-1 { animation: fade-up 0.8s ease-out 0.15s both; }
.fade-up-delay-2 { animation: fade-up 0.8s ease-out 0.3s both; }

/* ---------- Japanese seigaiha (青海波) wave pattern ---------- */
.pattern-seigaiha {
  position: relative;
}
.pattern-seigaiha::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='40' viewBox='0 0 80 40'><g fill='none' stroke='%23ec2585' stroke-width='1.2'><path d='M-40 40 A 40 40 0 0 1 40 40'/><path d='M-30 40 A 30 30 0 0 1 30 40'/><path d='M-20 40 A 20 20 0 0 1 20 40'/><path d='M-10 40 A 10 10 0 0 1 10 40'/><path d='M40 40 A 40 40 0 0 1 120 40'/><path d='M50 40 A 30 30 0 0 1 110 40'/><path d='M60 40 A 20 20 0 0 1 100 40'/><path d='M70 40 A 10 10 0 0 1 90 40'/></g></svg>");
  background-size: 80px 40px;
  background-repeat: repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.pattern-seigaiha > * { position: relative; z-index: 1; }

.pattern-strip {
  height: 60px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='40' viewBox='0 0 80 40'><g fill='none' stroke='%23ec2585' stroke-width='1.5'><path d='M-40 40 A 40 40 0 0 1 40 40'/><path d='M-30 40 A 30 30 0 0 1 30 40'/><path d='M-20 40 A 20 20 0 0 1 20 40'/><path d='M40 40 A 40 40 0 0 1 120 40'/><path d='M50 40 A 30 30 0 0 1 110 40'/><path d='M60 40 A 20 20 0 0 1 100 40'/></g></svg>");
  background-size: 80px 40px;
  background-repeat: repeat-x;
  background-position: bottom center;
  opacity: 0.35;
}

/* Decorative seigaiha for hero stats area / dividers */
.divider-seigaiha {
  height: 30px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='20' viewBox='0 0 40 20'><g fill='none' stroke='%23ec2585' stroke-width='1.4'><path d='M-20 20 A 20 20 0 0 1 20 20'/><path d='M-15 20 A 15 15 0 0 1 15 20'/><path d='M-10 20 A 10 10 0 0 1 10 20'/><path d='M20 20 A 20 20 0 0 1 60 20'/><path d='M25 20 A 15 15 0 0 1 55 20'/><path d='M30 20 A 10 10 0 0 1 50 20'/></g></svg>");
  background-size: 40px 20px;
  background-repeat: repeat-x;
  background-position: bottom center;
  opacity: 0.45;
}

/* Page page banner (small heros for non-tour pages) ---------- */
.page-banner {
  padding: var(--space-7) 0 var(--space-4);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.page-banner h1 { margin-bottom: var(--space-2); }
.page-banner p { max-width: var(--max-width-text); margin: 0 auto; font-size: 1.1rem; }


/* ---------- Hero responsive refinement ---------- */
.hero {
  min-height: clamp(560px, calc(100svh - 96px), 820px);
}

.hero-image-wrap,
.hero-image-img {
  width: 100%;
  height: 100%;
}

.hero-image-img {
  object-fit: cover;
  object-position: 62% center;
}

.hero-image-wrap::after,
.hero-image::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.32) 42%, rgba(0,0,0,0.08) 72%),
    linear-gradient(to bottom, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0) 38%, rgba(0,0,0,0.72) 100%);
}

@media (max-width: 900px) {
  .hero {
    min-height: clamp(560px, calc(100svh - 84px), 760px);  }

  .hero-image-img {
    object-position: 66% center;
  }

  .hero-inner {
    padding-top: var(--space-6);
    padding-bottom: var(--space-5);
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 620px;    align-items: flex-end;
  }

  .hero-image-img {
    object-position: 70% center;
  }

  .hero-image-wrap::after,
  .hero-image::after {
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.14) 0%, rgba(0,0,0,0.28) 42%, rgba(0,0,0,0.82) 100%);
  }

  .hero-inner {
    padding: var(--space-6) var(--space-3) var(--space-5);
  }

  .hero h1 {
    max-width: 11ch;  }

  .hero .lede {
    max-width: 30ch;
  }
}


/* ---------- Homepage hero image positioning ---------- */
.hero-image-img {
  object-position: center center;
}

@media (max-width: 900px) {
  .hero-image-img {
    object-position: 48% center;
  }
}

@media (max-width: 600px) {
  .hero-image-img {
    object-position: 50% center;
  }
}


/* ---------- Trust strip layout order ---------- */
.trust-badge-wrap { order: 0; }
.trust-item { order: 2; }

/* ---------- Homepage tours tightening ---------- */
.trust-strip {
  padding: 1.15rem 0;
}

.trust-strip-inner {
  gap: clamp(1.5rem, 3vw, 3rem);}

.trust-badge {
  width: 76px;
  height: 76px;
}

.trust-strip + section {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.trust-strip + section .section-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.trust-strip + section .eyebrow {
  margin-bottom: 0.75rem;
  font-size: 24px;
  letter-spacing: 0.3em;
  font-weight: 700;
}

.trust-strip + section h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
}

.trust-strip + section .section-head p {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.trust-strip + section .divider {
  margin-top: 0.75rem;  margin-bottom: 0.9rem;
}

.trust-strip + section .section-head p {
  max-width: 590px;  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  line-height: 1.45;
}

@media (max-width: 700px) {
  .trust-strip {
    padding: 1rem 0;
  }

  .trust-strip + section {
    padding-top: 2rem;  }

  .trust-strip + section .section-head {
    margin-bottom: 1.5rem;  }
}

/* ---------- Simplify homepage tours intro ---------- */
.trust-strip + section h2,
.trust-strip + section .divider {
  display: none;
}

.trust-strip + section .section-head {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);}

.trust-strip + section .section-head p {
  font-size: 0;
  line-height: 1.35;
}

.trust-strip + section .section-head p::before {
  content: "Small-group walking tours in Kyoto and Osaka, led by local guides.";
  font-size: 0.95rem;
}

/* ---------- Meet the Guides ---------- */
.guides-section { padding: var(--space-7) 0; }
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  max-width: 1200px;
  margin: 0 auto;
}
.guide-card {
  background: var(--color-white);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 18px;
  padding: var(--space-4);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(26,26,26,0.10);
}
.guide-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto var(--space-3);
  border: 4px solid var(--color-paper);
  box-shadow: 0 8px 24px rgba(26,26,26,0.12);
}
.guide-card h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.guide-role {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.guide-bio {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-ink-soft);
}

/* ---------- Journal + Newsletter ---------- */
.journal-news-section { padding: var(--space-7) 0; background: var(--color-paper-soft, #faf7f2); }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-7);
}
.journal-grid .blog-card {
  background: var(--color-white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(26,26,26,0.08);
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}
.journal-grid .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(26,26,26,0.10);
}
.journal-grid .blog-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.journal-grid .blog-card-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  padding: var(--space-3) var(--space-3) 0;
}
.journal-grid .blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 500;
  padding: 0.5rem var(--space-3) var(--space-3);
  color: var(--color-ink);
}

/* Newsletter band */
.newsletter-band {
  background: var(--color-ink);
  border-radius: 24px;
  padding: var(--space-6) var(--space-5);
  color: var(--color-paper);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-5);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .newsletter-inner { grid-template-columns: 1fr; }
}
.newsletter-band .eyebrow { color: #f5c668; }
.newsletter-band h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  line-height: 1.1;
  color: var(--color-paper);
  margin: 0.4rem 0 0.5rem;
}
.newsletter-band p { color: rgba(250,247,242,0.75); font-size: 1.05rem; }
.newsletter-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(250,247,242,0.2);
  background: rgba(250,247,242,0.08);
  color: var(--color-paper);
  font-size: 1rem;
  font-family: var(--font-body);
}
.newsletter-form input[type="email"]::placeholder { color: rgba(250,247,242,0.5); }
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(250,247,242,0.12);
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a22 100%);
  color: var(--color-paper);
  padding: var(--space-7) 0;
  text-align: center;
}
.final-cta h2 {
  color: var(--color-paper);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  max-width: 22ch;
  margin: 0.4rem auto var(--space-3);
}
.final-cta p {
  color: rgba(250,247,242,0.8);
  font-size: 1.2rem;
  max-width: 56ch;
  margin: 0 auto var(--space-4);
}
.final-cta-buttons {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}
.final-cta-note {
  font-size: 0.95rem;
  color: rgba(250,247,242,0.65);
  margin-top: var(--space-2);
}
.final-cta-note strong { color: #f5c668; }
.btn-ghost-light {
  background: transparent;
  color: var(--color-paper);
  border: 1px solid rgba(250,247,242,0.3);
}
.btn-ghost-light:hover {
  background: rgba(250,247,242,0.08);
  border-color: var(--color-paper);
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55); }
.whatsapp-fab svg { width: 32px; height: 32px; }

/* ---------- Sticky mobile book bar (tour detail pages) ---------- */
.sticky-book-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(26,26,26,0.10);
  padding: 0.75rem 1rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-book-bar .sticky-book-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-ink);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-book-bar .bokunButton { padding: 0.75rem 1.4rem; font-size: 0.95rem; white-space: nowrap; }

/* Show on mobile only */
@media (max-width: 768px) {
  .sticky-book-bar { display: flex; }
  body { padding-bottom: 80px; } /* prevent footer overlap */
  .whatsapp-fab { bottom: 92px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 28px; height: 28px; }
}

/* ---------- Blog category pills ---------- */
.blog-cat-pill {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  border: 1.5px solid var(--color-ink);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-ink);
  background: var(--color-white);
  transition: all var(--transition);
}
.blog-cat-pill:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

/* ---------- Story + photo grid (Hungry Osaka style) ---------- */
.story-grid-section {
  background: linear-gradient(180deg, #faf6ef 0%, var(--color-paper) 100%);
  color: var(--color-ink);
  padding: var(--space-5) 0;
  position: relative;
  overflow: hidden;
}
.story-grid-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='40' viewBox='0 0 80 40'><g fill='none' stroke='%23ed1c8c' stroke-width='1' stroke-opacity='0.08'><path d='M-40 40 A 40 40 0 0 1 40 40'/><path d='M40 40 A 40 40 0 0 1 120 40'/></g></svg>");
  background-size: 80px 40px;
  pointer-events: none;
}
.story-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-6);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .story-grid-layout { grid-template-columns: 1fr; gap: var(--space-5); }
}
.story-text h2 {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: var(--space-3);
  letter-spacing: -0.015em;
}
.story-text p {
  color: rgba(26, 26, 26, 0.78);
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: var(--space-2);
}
.story-cta-row {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-3);
}
.story-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.story-photo {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  transition: transform var(--transition);
  filter: brightness(0.95);
}
.story-photo:hover { transform: scale(1.04); filter: brightness(1); z-index: 2; position: relative; }
@media
/* ---------- Team strip section ---------- */
.team-strip-section {
  padding: var(--space-6) 0;
  background: linear-gradient(180deg, var(--color-paper) 0%, var(--color-paper-soft) 100%);
}
.team-strip {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.team-strip h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  margin: 0.5rem 0 var(--space-2);
}
.team-strip p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-ink-soft);
  margin-bottom: var(--space-4);
}
.team-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}
.team-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.team-stat strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-accent);
  font-weight: 600;
  line-height: 1;
}
.team-stat span {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  font-weight: 600;
}

/* ---------- Reviews v2 (hand-coded) ---------- */
.reviews-v2 {
  padding: var(--space-5) 0;
  background: var(--color-paper);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  max-width: 1100px;
  margin: 0 auto var(--space-4);
}
@media (max-width: 760px) {
  .review-grid { grid-template-columns: 1fr; }
}
.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: var(--space-4);
  box-shadow: 0 4px 16px rgba(26,26,26,0.04);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,26,26,0.08);
}
.review-stars {
  color: #f5c668;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}
.review-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--color-ink);
  font-style: italic;
  margin-bottom: var(--space-3);
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-border);
}
.review-meta strong {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-ink);
  font-weight: 700;
}
.review-meta span {
  font-size: 0.85rem;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}
.reviews-cta-row {
  text-align: center;
  margin-top: var(--space-4);
}

/* ---------- Journal v2 ---------- */
.journal-v2 {
  padding: var(--space-7) 0;
  background: var(--color-paper-soft);
}
.journal-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .journal-v2-grid { grid-template-columns: 1fr; }
}
.journal-v2-card {
  display: block;
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.journal-v2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26,26,26,0.08);
}
.journal-v2-image {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.journal-v2-body { padding: var(--space-3); }
.journal-v2-tag {
  display: inline-block;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  margin-bottom: var(--space-2);
}
.journal-v2-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}
.journal-v2-body p {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: var(--space-2);
}
.journal-v2-meta {
  font-size: 0.82rem;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

/* ============ CONTACT BLOCK (above footer) ============ */
.contact-block {
  position: relative;
  background: linear-gradient(135deg, #1a0a14 0%, #2a0f1f 50%, #1a0a14 100%);
  color: var(--color-paper);
  padding: var(--space-7) 0 var(--space-6);
  overflow: hidden;
}
.contact-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}
.contact-decor-1 { width: 400px; height: 400px; background: var(--color-accent); top: -120px; right: -100px; }
.contact-decor-2 { width: 300px; height: 300px; background: #f5c668; bottom: -120px; left: -80px; opacity: 0.25; }

.contact-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-5);
  position: relative;
  z-index: 1;
}
.contact-kanji {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 9rem);
  color: rgba(237, 28, 140, 0.12);
  line-height: 1;
  margin-bottom: -3rem;
  font-weight: 700;
}
.contact-head h2 {
  color: var(--color-paper);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0.5rem 0 var(--space-2);
}
.contact-head h2 em {
  font-style: italic;
  color: var(--color-accent);
}
.contact-head p {
  color: rgba(250,247,242,0.75);
  font-size: 1.15rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) { .contact-methods { grid-template-columns: 1fr; } }

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: rgba(250,247,242,0.05);
  border: 1px solid rgba(250,247,242,0.12);
  border-radius: 20px;
  text-decoration: none;
  color: var(--color-paper);
  transition: all var(--transition);
}
.contact-method:hover {
  transform: translateY(-4px);
  background: rgba(250,247,242,0.08);
  border-color: var(--color-accent);
  box-shadow: 0 16px 40px rgba(237, 28, 140, 0.25);
}
.contact-method-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-method-icon svg { width: 28px; height: 28px; }
.contact-method-wa .contact-method-icon { background: #25D366; color: #fff; }
.contact-method-email .contact-method-icon { background: var(--color-accent); color: #fff; }
.contact-method-phone .contact-method-icon { background: #f5c668; color: #1a0a14; }

.contact-method-body { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.contact-method-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.6);
  font-weight: 700;
}
.contact-method-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-paper);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-method-cta {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 0.2rem;
}
.contact-method:hover .contact-method-cta .arrow { transform: translateX(4px); }

.contact-promo {
  text-align: center;
  margin-top: var(--space-4);
  color: rgba(250,247,242,0.75);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}
.contact-promo strong {
  background: var(--color-accent);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.contact-promo a {
  color: var(--color-paper);
  text-decoration: underline;
  text-decoration-color: rgba(237, 28, 140, 0.5);
  text-underline-offset: 4px;
  margin-left: 0.5rem;
}
.contact-promo a:hover { color: var(--color-accent); }

/* Contact block — 2 method version */
.contact-methods-2 {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 900px !important;
}
@media (max-width: 800px) { .contact-methods-2 { grid-template-columns: 1fr !important; } }
.contact-head p a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}
.contact-head p a:hover { color: #f5c668; }
.contact-head p strong { color: var(--color-paper); font-weight: 700; }

/* ---------- Got a Question spacing ---------- */
.contact-block {
  padding: clamp(2rem, 3vw, 2.75rem) 0 !important;
}

.contact-head {
  margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem) !important;
}

.contact-promo {
  margin-top: clamp(1.25rem, 2vw, 1.75rem) !important;
}

@media (max-width: 700px) {
  .contact-block {
    padding: 2rem 0 !important;
  }
}


/* ============================================================
   TEAM V2 — guide cards with photos
   ============================================================ */
.team-v2 {
  padding: var(--space-6) 0;
  background: var(--color-paper);
  position: relative;
}

.team-v2 .section-head {
  text-align: center;
  margin-bottom: var(--space-5);
}

.team-v2 .section-head .eyebrow {
  color: var(--color-accent);
}

.team-v2 .section-head h2 {
  margin: 0.4em 0 0.3em;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.team-v2 .section-head .divider {
  width: 56px;
  height: 3px;
  background: var(--color-accent);
  margin: 0 auto var(--space-2);
  border-radius: 3px;
}

.team-v2 .section-head p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-ink-soft, #555);
  font-size: 1rem;
  line-height: 1.6;
}

.team-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.team-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px -16px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 16px 36px -20px rgba(0, 0, 0, 0.2);
}

.team-card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center top;
  background-color: #f4f0ea;
}

.team-card-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f6efe6 0%, #ece1d0 100%);
  position: relative;
}

.placeholder-icon {
  font-size: 3.5rem;
  opacity: 0.35;
  filter: grayscale(1);
}

.team-card-body {
  padding: var(--space-3) var(--space-3) var(--space-3);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-card-name {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.4rem;
  line-height: 1.1;
  margin: 0 0 0.15em;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
}

.mascot-tag {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: #fff;
  padding: 0.2em 0.6em;
  border-radius: 999px;
}

.team-card-role {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin: 0 0 0.6em;
}

.team-card-bio {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-ink-soft, #555);
  margin: 0 0 var(--space-2);
  flex: 1;
}

.team-card-bio a {
  color: var(--color-accent);
  text-decoration: underline;
  font-weight: 600;
}

.team-card-meta {
  padding-top: var(--space-2);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.team-card-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35em;
}

.lang-chip {
  display: inline-block;
  padding: 0.2em 0.55em;
  border-radius: 6px;
  background: #f4f0ea;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-ink);
}

.team-card-tours {
  font-size: 0.8rem;
  color: var(--color-ink-soft, #666);
  line-height: 1.45;
  margin: 0;
}

.team-card-tours strong {
  color: var(--color-ink);
  font-weight: 600;
}

.team-card-placeholder {
  opacity: 0.7;
  background: #fafaf7;
}

.team-card-placeholder .team-card-name {
  color: #888;
}

.team-card-placeholder .team-card-role {
  color: #aaa;
}

.team-card-placeholder:hover {
  opacity: 0.9;
  transform: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px -16px rgba(0, 0, 0, 0.12);
}

.team-card-mascot .team-card-photo {
  background-position: center center;
}

.team-v2-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-5);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
}

.team-v2-stat {
  text-align: center;
}

.team-v2-stat strong {
  display: block;
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 0.2em;
}

.team-v2-stat span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ink-soft, #666);
}

@media (max-width: 900px) {
  .team-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-v2-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
  .team-card-photo {
    aspect-ratio: 16 / 10;
  }
  .team-v2-stats {
    gap: var(--space-3);
  }
  .team-v2-stat strong {
    font-size: 1.8rem;
  }
}

/* ============================================================
   TEAM V3 — Hungry Osaka style: dark BG, circular portraits
   ============================================================ */
.team-v3 {
  position: relative;
  padding: var(--space-5) 0 var(--space-4);
  background: radial-gradient(ellipse at top, #1a1a22 0%, #0d0d12 70%, #08080d 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.team-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(237, 28, 140, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(237, 28, 140, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.team-v3 .container {
  position: relative;
  z-index: 1;
}

.team-v3-head {
  max-width: 760px;
  margin: 0 auto;
}

.team-v3-head h2 {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 var(--space-2);
  color: #fff;
  font-weight: 600;
}

.team-v3-head p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto var(--space-2);
  max-width: 600px;
}

.team-v3-head .team-v3-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-2);
}

.team-v3-divider {
  width: 56px;
  height: 3px;
  background: var(--color-accent);
  margin: var(--space-2) auto;
  border-radius: 3px;
}

.team-v3-portraits {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-3);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}

.team-portrait {
  display: block;
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-portrait:hover {
  transform: translateY(-4px);
}

.team-portrait-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-size: cover;
  background-position: center top;
  background-color: #2a2a32;
  border: 3px solid rgba(255, 255, 255, 0.12);
  margin: 0 auto;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.5);
}

.team-portrait:hover .team-portrait-photo {
  border-color: var(--color-accent);
  box-shadow: 0 10px 28px -8px rgba(237, 28, 140, 0.4);
}

.team-portrait-mascot .team-portrait-photo {
  background-position: center center;
}

.team-portrait-label {
  margin-top: 0.8em;
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}

.team-portrait-name {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

.team-portrait-role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.team-portrait-photo-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 2px dashed rgba(255, 255, 255, 0.25);
}

.team-portrait-more-icon {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
}

.team-portrait-more:hover .team-portrait-photo-more {
  border-color: var(--color-accent);
  background: rgba(237, 28, 140, 0.08);
}

.team-portrait-more:hover .team-portrait-more-icon {
  color: var(--color-accent);
}

.team-v3-cta {
  margin-top: var(--space-3);
}

.btn-outline-light {
  display: inline-block;
  padding: 0.85em 1.8em;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-outline-light:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .team-v3 {
    padding: var(--space-4) 0 var(--space-3);
  }
  .team-v3-portraits {
    gap: var(--space-2);
  }
  .team-portrait-photo {
    width: 110px;
    height: 110px;
    border-width: 2px;
  }
  .team-portrait-more-icon {
    font-size: 2.2rem;
  }
  .team-portrait-name {
    font-size: 1rem;
  }
  .team-portrait-role {
    font-size: 0.65rem;
  }
}

/* ============================================================
   TEAM V4 — light theme, transparent BG, 3 portraits
   ============================================================ */
.team-v4 {
  position: relative;
  padding: var(--space-5) 0 var(--space-4);
  background: transparent;
  color: var(--color-ink);
  text-align: center;
}

.team-v4-head {
  max-width: 760px;
  margin: 0 auto;
}

.team-v4-head h2 {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 var(--space-2);
  color: var(--color-ink);
  font-weight: 600;
}

.team-v4-head p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-ink-soft, #555);
  margin: 0 auto var(--space-2);
  max-width: 620px;
}

.team-v4-head .team-v4-sub {
  font-size: 0.95rem;
  color: var(--color-ink-soft, #666);
  margin-top: var(--space-2);
}

.team-v4-divider {
  width: 56px;
  height: 3px;
  background: var(--color-accent);
  margin: var(--space-2) auto;
  border-radius: 3px;
}

.team-v4-portraits {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-4);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}

.team-portrait-v4 {
  display: block;
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-portrait-v4:hover {
  transform: translateY(-4px);
}

.team-portrait-v4-photo {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-size: cover;
  background-position: center top;
  background-color: #f4f0ea;
  border: 4px solid #fff;
  margin: 0 auto;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.25);
}

.team-portrait-v4:hover .team-portrait-v4-photo {
  border-color: var(--color-accent);
  box-shadow: 0 12px 30px -10px rgba(237, 28, 140, 0.35);
}

.team-portrait-v4-mascot .team-portrait-v4-photo {
  background-position: center center;
}

.team-portrait-v4-label {
  margin-top: 0.9em;
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}

.team-portrait-v4-name {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-ink);
  letter-spacing: 0.01em;
}

.team-portrait-v4-role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-ink-soft, #777);
  font-weight: 500;
}

.team-v4-cta {
  margin-top: var(--space-4);
}

.btn-team-v4 {
  display: inline-block;
  padding: 0.9em 1.9em;
  border: 1.5px solid var(--color-ink);
  border-radius: 999px;
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-team-v4:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .team-v4 {
    padding: var(--space-4) 0 var(--space-3);
  }
  .team-v4-portraits {
    gap: var(--space-3);
  }
  .team-portrait-v4-photo {
    width: 120px;
    height: 120px;
    border-width: 3px;
  }
  .team-portrait-v4-name {
    font-size: 1.05rem;
  }
  .team-portrait-v4-role {
    font-size: 0.65rem;
  }
}

/* ============================================================
   TEAM V4 — BIGGER & BOLDER overrides
   ============================================================ */
.team-v4 {
  padding: var(--space-5) 0;
}

.team-v4-head h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.01em;
}

.team-v4-head p {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--color-ink);
  font-weight: 400;
  max-width: 640px;
  margin: var(--space-2) auto 0;
}

.team-v4-divider {
  width: 64px;
  height: 4px;
  margin: var(--space-2) auto var(--space-3);
}

.team-v4-portraits {
  gap: var(--space-5);
  margin-top: var(--space-5);
}

.team-portrait-v4-photo {
  width: 210px;
  height: 210px;
  border: 5px solid #fff;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.25);
}

.team-portrait-v4-label {
  margin-top: 1.1em;
  gap: 0.25em;
}

.team-portrait-v4-name {
  font-size: 1.5rem;
  font-weight: 600;
}

.team-portrait-v4-role {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--color-ink-soft, #666);
  font-weight: 600;
}

/* SOLID PINK BUTTON — turns dark on hover/active */
.btn-team-v4 {
  padding: 1.05em 2.2em;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(237, 28, 140, 0.5);
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-team-v4:hover {
  background: #1a1a22;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.35);
}

.btn-team-v4:active {
  background: #000;
  transform: translateY(0);
  box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.4);
}

.team-v4-cta {
  margin-top: var(--space-5);
}

@media (max-width: 700px) {
  .team-v4-head h2 {
    font-size: 2rem;
  }
  .team-v4-head p {
    font-size: 1.1rem;
  }
  .team-v4-portraits {
    gap: var(--space-3);
  }
  .team-portrait-v4-photo {
    width: 140px;
    height: 140px;
    border-width: 4px;
  }
  .team-portrait-v4-name {
    font-size: 1.2rem;
  }
  .team-portrait-v4-role {
    font-size: 0.75rem;
  }
  .btn-team-v4 {
    font-size: 1rem;
    padding: 0.95em 1.9em;
  }
}

/* ============================================================
   TEAM V4 — fill-out: pattern BG, language flags, stats row
   ============================================================ */
.team-v4 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-paper) 0%, #faf6ef 100%);
}

.team-v4-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 18%, rgba(237, 28, 140, 0.06) 0, transparent 40%),
    radial-gradient(circle at 92% 82%, rgba(237, 28, 140, 0.05) 0, transparent 40%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='40' viewBox='0 0 80 40'><g fill='none' stroke='%23ed1c8c' stroke-width='1' opacity='0.07'><path d='M0 40 A 20 20 0 0 1 40 40 M40 40 A 20 20 0 0 1 80 40'/><path d='M-20 40 A 20 20 0 0 1 20 40 M60 40 A 20 20 0 0 1 100 40'/></g></svg>");
  background-repeat: no-repeat, no-repeat, repeat-x;
  background-position: center, center, center bottom;
  pointer-events: none;
  z-index: 0;
}

.team-v4 .container {
  position: relative;
  z-index: 1;
}

.team-v4 .section-head .eyebrow {
  color: var(--color-accent);
}

.team-v4 .section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0.4em 0 0.3em;
}

.team-v4 .section-head .divider {
  width: 56px;
  height: 3px;
  background: var(--color-accent);
  margin: 0 auto var(--space-2);
  border-radius: 3px;
}

.team-v4 .section-head p {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--color-ink);
  max-width: 600px;
  margin: 0 auto;
}

/* Language flags row */
.team-portrait-v4-langs {
  margin-top: 0.4em;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.team-portrait-v4-mascot .team-portrait-v4-langs {
  font-family: var(--font-display, 'Fraunces', serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--color-accent);
  letter-spacing: 0;
}

/* Stats row inside the team block */
.team-v4-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-5);
  margin-top: var(--space-5);
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.team-v4-stat {
  text-align: center;
  min-width: 140px;
}

.team-v4-stat strong {
  display: block;
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 0.15em;
  font-weight: 600;
}

.team-v4-stat span {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-ink);
  font-weight: 500;
}

.team-v4-cta {
  margin-top: var(--space-4);
  text-align: center;
}

@media (max-width: 700px) {
  .team-v4-stats {
    gap: var(--space-3);
    padding: var(--space-3) var(--space-2);
  }
  .team-v4-stat {
    min-width: 100px;
  }
  .team-v4-stat strong {
    font-size: 2rem;
  }
  .team-v4-stat span {
    font-size: 0.7rem;
  }
  .team-portrait-v4-langs {
    font-size: 0.95rem;
  }
}

/* ============================================================
   TEAM V4 — TIGHTEN: kill empty vertical space
   ============================================================ */
.team-v4 {
  padding: var(--space-4) 0 var(--space-3) !important;
}

.team-v4-head {
  margin-bottom: var(--space-2) !important;
}

.team-v4-head h2 {
  margin: 0.2em 0 0.15em !important;
  font-size: clamp(1.8rem, 3.8vw, 2.6rem) !important;
}

.team-v4-head p {
  font-size: 1.05rem !important;
  margin: 0 auto !important;
}

.team-v4 .section-head .divider {
  margin: 0 auto var(--space-1) !important;
}

.team-v4-portraits {
  margin-top: var(--space-3) !important;
  gap: var(--space-4) !important;
}

.team-portrait-v4-photo {
  width: 170px !important;
  height: 170px !important;
}

.team-portrait-v4-label {
  margin-top: 0.7em !important;
  gap: 0.1em !important;
}

.team-portrait-v4-name {
  font-size: 1.3rem !important;
}

.team-portrait-v4-role {
  font-size: 0.78rem !important;
}

.team-portrait-v4-langs {
  margin-top: 0.25em !important;
  font-size: 0.95rem !important;
}

.team-v4-stats {
  margin-top: var(--space-3) !important;
  padding: var(--space-2) var(--space-3) !important;
  gap: var(--space-4) !important;
}

.team-v4-stat strong {
  font-size: 2rem !important;
}

.team-v4-stat span {
  font-size: 0.75rem !important;
}

.team-v4-cta {
  margin-top: var(--space-3) !important;
}

.btn-team-v4 {
  padding: 0.85em 1.9em !important;
  font-size: 0.98rem !important;
}

@media (max-width: 700px) {
  .team-v4 {
    padding: var(--space-3) 0 var(--space-2) !important;
  }
  .team-portrait-v4-photo {
    width: 115px !important;
    height: 115px !important;
  }
  .team-v4-portraits {
    gap: var(--space-2) !important;
    margin-top: var(--space-2) !important;
  }
  .team-v4-stats {
    margin-top: var(--space-2) !important;
  }
}

/* ============================================================
   TEAM V5 — Hungry Osaka style: dark BG, big portraits, SEO copy
   ============================================================ */
.team-v5 {
  position: relative;
  background: radial-gradient(ellipse at top, #1c1c24 0%, #0e0e14 60%, #08080d 100%);
  color: #fff;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(3rem, 5vw, 4.5rem);
  text-align: center;
  overflow: hidden;
}

.team-v5::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(237, 28, 140, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(237, 28, 140, 0.06) 0%, transparent 45%);
  pointer-events: none;
}

.team-v5 .container {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.team-v5-head {
  margin: 0 auto;
}

.team-v5-head h2 {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 var(--space-3);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.team-v5-intro {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto var(--space-3);
  max-width: 720px;
  font-weight: 400;
}

.team-v5-intro strong {
  color: #fff;
  font-weight: 700;
}

.team-v5-divider {
  width: 64px;
  height: 3px;
  background: var(--color-accent);
  margin: 0 auto var(--space-3);
  border-radius: 3px;
}

.team-v5-body {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto var(--space-2);
  max-width: 760px;
}

.team-v5-body strong {
  color: #fff;
  font-weight: 700;
}

/* Portraits — bigger, Hungry-Osaka size */
.team-v5-portraits {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  margin-top: var(--space-5);
  flex-wrap: wrap;
}

.team-portrait-v5 {
  display: block;
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-portrait-v5:hover {
  transform: translateY(-5px);
}

.team-portrait-v5-photo {
  width: clamp(180px, 22vw, 240px);
  height: clamp(180px, 22vw, 240px);
  border-radius: 50%;
  background-size: cover;
  background-position: center top;
  background-color: #2a2a32;
  border: 4px solid rgba(255, 255, 255, 0.12);
  margin: 0 auto;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 32px -10px rgba(0, 0, 0, 0.6);
}

.team-portrait-v5:hover .team-portrait-v5-photo {
  border-color: var(--color-accent);
  box-shadow: 0 14px 36px -10px rgba(237, 28, 140, 0.45);
}

.team-portrait-v5-mascot .team-portrait-v5-photo {
  background-position: center center;
}

.team-portrait-v5-label {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.team-portrait-v5-name {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.team-portrait-v5-role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* Trust inline strip */
.team-v5-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
  flex-wrap: wrap;
  margin-top: var(--space-4);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.team-v5-trust strong {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.05em;
}

.team-v5-trust .sep {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

/* CTA */
.team-v5-cta {
  margin-top: var(--space-4);
}

.btn-team-v5 {
  display: inline-block;
  padding: 1em 2.2em;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 22px -8px rgba(237, 28, 140, 0.55);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-team-v5:hover {
  background: #fff;
  color: #0e0e14;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(255, 255, 255, 0.3);
}

.btn-team-v5:active {
  background: #000;
  color: #fff;
  transform: translateY(0);
}

@media (max-width: 700px) {
  .team-v5 {
    padding: var(--space-4) 0 var(--space-3);
  }
  .team-v5-portraits {
    gap: var(--space-2);
    margin-top: var(--space-3);
  }
  .team-portrait-v5-name {
    font-size: 1.15rem;
  }
  .team-portrait-v5-role {
    font-size: 0.7rem;
  }
  .team-v5-trust {
    font-size: 0.82rem;
    gap: 0.5em;
  }
}

/* Bottom body paragraph spacing under portraits */
.team-v5-body-bottom {
  margin-top: var(--space-4);
  margin-bottom: 0;
}

/* ============================================================
   TEAM V5 — TIGHTEN spacing + BIGGER fonts
   ============================================================ */
.team-v5 {
  padding: var(--space-4) 0 var(--space-3) !important;
}

.team-v5-head h2 {
  font-size: clamp(2.8rem, 5.5vw, 4rem) !important;
  margin: 0 0 var(--space-2) !important;
}

.team-v5-intro {
  font-size: clamp(1.25rem, 2vw, 1.5rem) !important;
  line-height: 1.5 !important;
  margin: 0 auto var(--space-2) !important;
}

.team-v5-divider {
  margin: 0 auto var(--space-2) !important;
}

.team-v5-body {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem) !important;
  line-height: 1.55 !important;
  margin: 0 auto var(--space-2) !important;
}

.team-v5-portraits {
  margin-top: var(--space-3) !important;
}

.team-portrait-v5-name {
  font-size: 1.55rem !important;
}

.team-portrait-v5-role {
  font-size: 0.9rem !important;
  letter-spacing: 0.08em !important;
}

.team-v5-body-bottom {
  margin-top: var(--space-3) !important;
  margin-bottom: 0 !important;
}

.team-v5-cta {
  margin-top: var(--space-3) !important;
}

.btn-team-v5 {
  padding: 1.05em 2.4em !important;
  font-size: 1.1rem !important;
}

@media (max-width: 700px) {
  .team-v5 {
    padding: var(--space-3) 0 var(--space-2) !important;
  }
  .team-v5-head h2 {
    font-size: 2.2rem !important;
  }
  .team-v5-intro {
    font-size: 1.1rem !important;
  }
  .team-v5-body {
    font-size: 1rem !important;
  }
  .team-portrait-v5-name {
    font-size: 1.25rem !important;
  }
  .team-portrait-v5-role {
    font-size: 0.78rem !important;
  }
}

/* ============================================================
   WHY SECTION — restore proper black background
   ============================================================ */
.why-section {
  background: #000000 !important;
}

/* Dial sakura petals way down so black background dominates */
.why-sakura-back {
  opacity: 0.18 !important;
  background-size: 600px auto !important;
}

.why-sakura-front {
  opacity: 0.12 !important;
  background-size: 420px auto !important;
}

/* ============================================================
   HOMEPAGE FAQ BLOCK — AEO / FAQPage schema validation
   ============================================================ */
.faq-block {
  background: linear-gradient(180deg, var(--color-paper) 0%, #faf6ef 100%);
  padding: var(--space-5) 0 var(--space-4);
  position: relative;
}

.faq-block .section-head {
  text-align: center;
  margin-bottom: var(--space-4);
}

.faq-block .section-head .eyebrow {
  color: var(--color-accent);
}

.faq-block .section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0.3em 0 0.3em;
  color: var(--color-ink);
}

.faq-block .section-head .divider {
  width: 56px;
  height: 3px;
  background: var(--color-accent);
  margin: 0 auto var(--space-2);
  border-radius: 3px;
}

.faq-block .section-head p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--color-ink-soft, #555);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px -8px rgba(237, 28, 140, 0.25);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.5rem;
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.2rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-ink-soft, #444);
}

.faq-item p strong {
  color: var(--color-accent);
  font-weight: 700;
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-4);
}

.btn-faq-more {
  display: inline-block;
  padding: 0.85em 1.9em;
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--color-ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-faq-more:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .faq-item summary {
    font-size: 1rem;
    padding: 0.95rem 1.2rem;
  }
  .faq-item p {
    padding: 0 1.2rem 1rem;
    font-size: 0.95rem;
  }
}

/* ============================================================
   ABOUT PAGE — Team section (#team)
   ============================================================ */
.team-about {
  padding: var(--space-5) 0 var(--space-4);
  background: linear-gradient(180deg, var(--color-paper) 0%, #faf6ef 100%);
  position: relative;
}

.team-about .section-head {
  text-align: center;
  margin-bottom: var(--space-4);
}

.team-about .section-head .eyebrow {
  color: var(--color-accent);
}

.team-about .section-head h2 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin: 0.3em 0;
  color: var(--color-ink);
}

.team-about .section-head .divider {
  width: 56px;
  height: 3px;
  background: var(--color-accent);
  margin: 0 auto var(--space-2);
  border-radius: 3px;
}

.team-about .section-head p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--color-ink-soft, #555);
}

.team-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  max-width: 1200px;
  margin: 0 auto;
}

.team-about-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 28px -16px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 18px 40px -18px rgba(237, 28, 140, 0.25);
}

.team-about-photo {
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center top;
  background-color: #f4f0ea;
}

.team-about-mascot .team-about-photo {
  background-position: center center;
}

.team-about-body {
  padding: var(--space-3) var(--space-3) var(--space-3);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-about-name {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.6rem;
  line-height: 1.1;
  margin: 0 0 0.15em;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
  font-weight: 600;
}

.mascot-pill {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: #fff;
  padding: 0.2em 0.6em;
  border-radius: 999px;
}

.team-about-role {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin: 0 0 0.6em;
}

.team-about-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  margin: 0 0 var(--space-2);
}

.lang-pill {
  display: inline-block;
  padding: 0.25em 0.6em;
  border-radius: 999px;
  background: #f4f0ea;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-ink);
}

.team-about-bio {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-ink-soft, #444);
  margin: 0 0 var(--space-2);
  flex: 1;
}

.team-about-tours {
  font-size: 0.85rem;
  color: var(--color-ink-soft, #666);
  line-height: 1.5;
  margin: 0;
  padding-top: var(--space-2);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.team-about-tours strong {
  color: var(--color-ink);
  font-weight: 700;
}

/* Stats row */
.team-about-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-5);
  margin: var(--space-5) auto 0;
  padding: var(--space-3) var(--space-4);
  max-width: 900px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
}

.team-about-stat {
  text-align: center;
  min-width: 120px;
}

.team-about-stat strong {
  display: block;
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 0.15em;
  font-weight: 600;
}

.team-about-stat span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ink);
  font-weight: 500;
}

/* Recruit line */
.team-about-cta {
  text-align: center;
  margin-top: var(--space-4);
}

.team-about-recruit {
  font-size: 1rem;
  color: var(--color-ink-soft, #555);
  max-width: 640px;
  margin: 0 auto;
}

.team-about-recruit a {
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 900px) {
  .team-about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
  .team-about-photo {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 700px) {
  .team-about-stats {
    gap: var(--space-3);
    padding: var(--space-2) var(--space-2);
  }
  .team-about-stat {
    min-width: 100px;
  }
  .team-about-stat strong {
    font-size: 1.8rem;
  }
}


/* Quick Answers background cleanup */
.faq-block {
  background: transparent !important;
}
.faq-item {
  background: transparent !important;
}


/* Quick Answers white FAQ panel restore */
.faq-block {
  background: transparent !important;
}
.faq-list {
  background: #fff !important;
  border: 1px solid rgba(26, 26, 26, 0.08) !important;
  border-radius: 14px !important;
  padding: clamp(0.75rem, 2vw, 1.1rem) !important;
  box-shadow: 0 18px 45px rgba(26, 26, 26, 0.08) !important;
}
.faq-item {
  background: #fff !important;
  border: 1px solid rgba(26, 26, 26, 0.08) !important;
  border-radius: 10px !important;
}
.faq-item:hover {
  background: #fff !important;
}
@media (max-width: 640px) {
  .faq-list {
    border-radius: 10px !important;
    padding: 0.55rem !important;
  }
  .faq-item {
    border-radius: 8px !important;
  }
}


/* Footer shared foundation */
.site-footer {
  position: relative;
  overflow: visible;
  color: rgba(250,247,242,0.78);
}
.site-footer::before,
.site-footer::after {
  content: none !important;
  display: none !important;
}
.footer-tagline { margin: 0; }
.footer-bottom { display: flex; }
.social-row { display: flex; }
.footer-menu summary {
  position: relative;
  list-style: none;
  user-select: none;
}
.footer-menu summary::-webkit-details-marker { display: none; }
.footer-menu-content,
.footer-link-grid { display: grid; }
.footer-newsletter { grid-area: newsletter; }
.footer-newsletter h5 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-newsletter p {
  margin: 0 0 0.9rem;
  color: rgba(250,247,242,0.72);
  font-size: 0.96rem;
  line-height: 1.45;
}
.footer-newsletter-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 0.55rem;
}
.footer-newsletter-form input {
  min-height: 44px;
  width: 100%;
  border: 1px solid rgba(250,247,242,0.22);
  border-radius: 4px;
  background: rgba(250,247,242,0.08);
  color: #fff;
  padding: 0 0.9rem;
  font: inherit;
}
.footer-newsletter-form input::placeholder { color: rgba(250,247,242,0.48); }
.footer-newsletter-form button {
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  padding: 0 1.05rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Bottom photo strip restored */
.bottom-photo-strip {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  height: clamp(130px, 15vw, 230px);
  overflow: hidden;
  border-top: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  background: #0a0608;
}
.bottom-photo {
  min-width: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.08) contrast(1.04) brightness(0.88);
  transition: filter 0.25s ease, transform 0.25s ease;
}
.bottom-photo:hover {
  filter: saturate(1.12) contrast(1.05) brightness(1);
  transform: scale(1.035);
}
@media (max-width: 900px) {
  .bottom-photo-strip {
    grid-template-columns: repeat(3, 1fr);
    height: 150px;
  }
  .bottom-photo:nth-child(n+4) {
    display: none;
  }
}
@media (max-width: 520px) {
  .bottom-photo-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 130px;
  }
  .bottom-photo:nth-child(n+3) {
    display: none;
  }
}


/* Footer full-width final layout */
.site-footer.footer-wide {
  width: 100% !important;
  padding: 0 !important;
  background: #101010 !important;
  border-top: 2px solid var(--color-accent) !important;
  box-shadow: 0 120px 0 120px #101010 !important;
}
.footer-wide .footer-inner {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1rem, 3vw, 2.6rem) 1rem !important;
  display: grid !important;
  grid-template-columns: minmax(260px, 0.95fr) minmax(360px, 1.25fr) minmax(300px, 0.9fr) !important;
  grid-template-areas:
    "brand links newsletter"
    "bottom bottom bottom" !important;
  gap: clamp(1.4rem, 3vw, 3rem) !important;
  align-items: start !important;
}
.footer-brand-panel {
  grid-area: brand;
  display: grid;
  align-content: start;
  gap: 0.85rem;
}
.footer-logo-mark {
  display: inline-flex;
  width: fit-content;
}
.footer-logo-mark img {
  width: 190px !important;
  max-width: min(190px, 70vw) !important;
  height: auto !important;
}
.footer-brand-panel .footer-tagline {
  max-width: 30rem !important;
  margin: 0 !important;
  color: rgba(250,247,242,0.72) !important;
  font-size: 0.98rem !important;
  line-height: 1.55 !important;
}
.footer-proof-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.footer-reward-logo {
  width: 54px !important;
  height: 54px !important;
  object-fit: contain;
  border-radius: 6px;
}
.footer-wide .social-row {
  display: flex !important;
  justify-content: flex-start !important;
  gap: 0.55rem !important;
  margin: 0 !important;
}
.footer-wide .social-row a {
  width: 40px !important;
  height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  border: 1px solid rgba(250,247,242,0.18) !important;
  background: rgba(250,247,242,0.07) !important;
  color: rgba(250,247,242,0.9) !important;
  padding: 0 !important;
}
.footer-wide .social-row svg {
  width: 18px !important;
  height: 18px !important;
}
.footer-link-panel {
  grid-area: links;
  display: grid;
  gap: 1.3rem;
}
.footer-wide .footer-menu {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}
.footer-wide .footer-menu summary {
  padding: 0 0 0.65rem !important;
  color: #fff !important;
  font-size: 0.98rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  cursor: default;
}
.footer-wide .footer-menu summary::after { display: none !important; }
.footer-wide .footer-menu:not([open]) > .footer-menu-content {
  display: flex !important;
}
.footer-wide .footer-menu-content {
  padding: 0 !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.55rem 1.15rem !important;
}
.footer-wide .footer-menu-content a {
  color: var(--color-accent) !important;
  font-size: 0.95rem !important;
  font-weight: 850 !important;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.footer-wide .footer-newsletter {
  grid-area: newsletter;
  display: block !important;
}
.footer-wide .footer-newsletter h5 {
  color: #fff !important;
}
.footer-wide .footer-newsletter-form {
  grid-template-columns: minmax(180px, 1fr) auto !important;
}
.footer-wide .footer-bottom {
  grid-area: bottom;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap;
  gap: 0.6rem 1rem !important;
  margin: 0 !important;
  padding-top: 1rem !important;
  border-top: 1px solid rgba(237,28,140,0.5) !important;
  color: rgba(250,247,242,0.54) !important;
  font-size: 0.8rem !important;
}
.footer-wide .footer-bottom a {
  color: rgba(250,247,242,0.68) !important;
}
@media (max-width: 980px) {
  .footer-wide .footer-inner {
    grid-template-columns: 1fr 1fr !important;
    grid-template-areas:
      "brand newsletter"
      "links links"
      "bottom bottom" !important;
  }
}
@media (max-width: 700px) {
  .footer-wide .footer-inner {
    padding: 0 0 calc(1.05rem + env(safe-area-inset-bottom)) !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "brand"
      "links"
      "bottom" !important;
    gap: 0 !important;
  }
  .footer-brand-panel {
    padding: 1.25rem 1rem 1rem !important;
    gap: 0.75rem !important;
  }
  .footer-logo-mark img {
    width: 170px !important;
  }
  .footer-brand-panel .footer-tagline {
    font-size: 0.9rem !important;
  }
  .footer-reward-logo {
    width: 48px !important;
    height: 48px !important;
  }
  .footer-link-panel {
    gap: 0 !important;
  }
  .footer-wide .footer-menu {
    border-top: 1px solid rgba(250,247,242,0.72) !important;
  }
  .footer-wide .footer-menu:last-child {
    border-bottom: 1px solid rgba(250,247,242,0.72) !important;
  }
  .footer-wide .footer-menu summary {
    padding: 1rem !important;
    cursor: pointer;
  }
  .footer-wide .footer-menu summary::after {
    display: block !important;
    content: "+" !important;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1.35rem;
  }
  .footer-wide .footer-menu[open] summary::after { content: "-" !important; }
  .footer-wide .footer-menu:not([open]) > .footer-menu-content { display: none !important; }
  .footer-wide .footer-menu[open] > .footer-menu-content { display: grid !important; }
  .footer-wide .footer-menu-content {
    padding: 0 1rem 1.05rem !important;
    grid-template-columns: 1fr !important;
    gap: 0.48rem !important;
  }
  .footer-wide .footer-menu-content a {
    font-size: 1.05rem !important;
  }
  .footer-wide .footer-newsletter { display: none !important; }
  .footer-wide .footer-bottom {
    padding: 1rem 1rem 0 !important;
    border-top: 1px solid rgba(237,28,140,0.55) !important;
  }
}


/* Footer desktop/tablet link columns */
@media (min-width: 701px) {
  .footer-link-panel {
    grid-template-columns: repeat(2, minmax(150px, 1fr)) !important;
    gap: clamp(1.5rem, 3vw, 3rem) !important;
    align-items: start !important;
  }
  .footer-wide .footer-menu-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }
  .footer-wide .footer-menu:not([open]) > .footer-menu-content {
    display: grid !important;
  }
}


/* Footer unify button color */
.footer-wide .social-row a,
.footer-wide .footer-newsletter-form button {
  background: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: #fff !important;
}
.footer-wide .social-row a:hover,
.footer-wide .footer-newsletter-form button:hover {
  background: #c51276 !important;
  border-color: #c51276 !important;
  color: #fff !important;
}
.footer-wide .footer-newsletter-form input:focus {
  outline: 2px solid rgba(237, 28, 140, 0.45);
  outline-offset: 2px;
  border-color: var(--color-accent) !important;
}


/* FAQ button unify color */
.btn-faq-more {
  background: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(237, 28, 140, 0.18) !important;
}
.btn-faq-more:hover {
  background: #c51276 !important;
  border-color: #c51276 !important;
  color: #fff !important;
}

/* Reviews bottom accent line */
.reviews-v2.reviews-live {
  border-bottom: 2px solid var(--color-accent) !important;
}


/* Bokun official widget buttons styled like Japanify CTAs */
.bokunButton.btn,
.tour-card .bokunButton,
.tour-actions .bokunButton {
  appearance: none;
  border: 0;
  cursor: pointer;
}
.bokunButton.btn:disabled,
.tour-card .bokunButton:disabled,
.tour-actions .bokunButton:disabled {
  opacity: 1;
  cursor: pointer;
}


/* Bokun official buttons on tour detail pages */
.bokunButton:not(.btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  background: var(--color-accent);
  border-radius: 999px;
  box-shadow: 0 4px 14px var(--color-accent-glow);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.bokunButton:not(.btn):hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px var(--color-accent-glow);
}
.bokunButton:disabled {
  opacity: 1;
  cursor: pointer;
}
.bokunButton.bokun-lg {
  width: 100%;
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}


/* FAQ title banner */
.faq-page-banner {
  padding: var(--space-5) 0;
  background: #120b10;
  border-bottom: 4px solid var(--color-accent);
  color: #fff;
}
.faq-page-banner .eyebrow {
  color: #ffd56a;
}
.faq-page-banner h1,
.faq-page-banner p {
  color: #fff;
}
.faq-page-banner p {
  opacity: 0.88;
}


/* Legal pages */
.legal-section {
  background: var(--color-cream);
  padding: var(--space-5) 0;
}
.legal-card {
  background: #fff;
  white-space: pre-line;
  border: 1px solid rgba(18, 11, 16, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.4rem, 4vw, 3rem);
  color: var(--color-ink);
}
.legal-card h2,
.legal-card h3 {
  color: var(--color-ink);
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.legal-card h3 {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.legal-card p,
.legal-card {
  line-height: 1.78;
}
.legal-card a {
  color: var(--color-accent);
  font-weight: 800;
}
@media (max-width: 640px) {
  .legal-section { padding: var(--space-3) 0; }
  .legal-card { border-radius: 0; margin: 0 calc(-1 * clamp(1rem, 3vw, var(--space-5))); }
}


/* Kyoto Ghost detail impact */
.ghost-detail-page .ghost-hero {
  min-height: 660px;
  height: 82vh;
  background-color: #090608;
  background-position: center 46%;
}
.ghost-detail-page .ghost-hero::after {
  background:
    linear-gradient(90deg, rgba(4, 2, 5, 0.74) 0%, rgba(4, 2, 5, 0.34) 48%, rgba(4, 2, 5, 0.12) 100%),
    linear-gradient(to bottom, rgba(4, 2, 5, 0.04) 0%, rgba(4, 2, 5, 0.28) 58%, rgba(4, 2, 5, 0.78) 100%);
}
.ghost-detail-page .tour-hero-inner {
  padding-bottom: clamp(3rem, 8vh, 6rem);
}
.ghost-detail-page .tour-hero .breadcrumb,
.ghost-detail-page .tour-hero .breadcrumb a {
  color: rgba(250, 247, 242, 0.76);
}
.ghost-detail-page .tour-hero .eyebrow {
  color: #f5c668;
}
.ghost-detail-page .tour-hero h1 {
  max-width: 13ch;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}
.ghost-detail-page .tour-hero .lede {
  max-width: 650px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}
.hero-proof-pills,
.tour-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
}
.hero-proof-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(250, 247, 242, 0.24);
  background: rgba(9, 6, 8, 0.45);
  color: rgba(250, 247, 242, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tour-hero-actions .bokunButton,
.tour-hero-actions .btn {
  min-height: 52px;
}
.tour-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: var(--space-4);
}
.impact-card,
.answer-block,
.tour-faq-mini details {
  border: 1px solid rgba(18, 11, 16, 0.08);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.impact-card {
  padding: 1.1rem;
  border-left: 4px solid var(--color-accent);
}
.impact-card span {
  display: block;
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.impact-card strong {
  color: var(--color-ink);
  line-height: 1.45;
}
.answer-block {
  margin: var(--space-4) 0;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-bottom: 4px solid var(--color-accent);
}
.answer-block h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.75rem;
}
.tour-faq-mini {
  display: grid;
  gap: 0.75rem;
}
.tour-faq-mini details {
  padding: 1rem 1.15rem;
}
.tour-faq-mini summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--color-ink);
}
.tour-faq-mini p {
  margin: 0.65rem 0 0;
}
@media (max-width: 900px) {
  .ghost-detail-page .ghost-hero {
    min-height: 580px;
    height: 74vh;
    background-position: center center;
  }
  .tour-impact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .ghost-detail-page .tour-hero h1 {
    max-width: 11ch;
  }
  .hero-proof-pills span,
  .tour-hero-actions .bokunButton,
  .tour-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* Bokun modal polish */
#bokun-modal-container {
  width: min(760px, calc(100vw - 32px)) !important;
  max-width: 760px !important;
  height: min(86vh, 820px) !important;
  max-height: 86vh !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42) !important;
}
#bokun-modal-iFrame.bokun-iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  transform: none !important;
  border-radius: 18px !important;
  background: #fff !important;
}
@media (min-width: 901px) {
  #bokun-modal-container {
    transform: translateY(8px) !important;
  }
}
@media (max-width: 900px) {
  #bokun-modal-container {
    width: 100vw !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    border-radius: 0 !important;
  }
  #bokun-modal-iFrame.bokun-iframe {
    height: 100dvh !important;
    border-radius: 0 !important;
  }
}


/* Inline Bokun booking widget */
.booking-widget-sidebar {
  scroll-margin-top: 120px;
}
.booking-widget-card {
  padding: 0;
  overflow: hidden;
}
.booking-widget-head {
  padding: 1.3rem 1.35rem 0.85rem;
  border-bottom: 1px solid var(--color-border);
}
.booking-widget-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.1;
  margin: 0.25rem 0 0;
}
.inline-bokun-widget {
  min-height: 740px;
  background: #fff;
}
.inline-bokun-widget .bokun-iframe,
.inline-bokun-widget iframe {
  width: 100% !important;
  min-height: 740px !important;
  border: 0 !important;
}
.sticky-book-bar a.btn {
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .booking-widget-card {
    position: static;
  }
  .inline-bokun-widget,
  .inline-bokun-widget .bokun-iframe,
  .inline-bokun-widget iframe {
    min-height: 780px !important;
  }
}


/* Arashiyama conversion layout */
.arashiyama-detail-page .tour-hero .eyebrow {
  color: #ffd56a;
  font-weight: 900;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.arashiyama-detail-page .tour-hero-inner {
  padding-top: var(--space-5);
}
.arashiyama-detail-page .tour-meta-bar {
  background: #171717;
  border-bottom: none;
  padding: clamp(0.9rem, 2vw, 1.25rem) 0;
}
.arashiyama-detail-page .tour-meta-bar .container {
  justify-content: center;
}
.arashiyama-detail-page .tour-meta-items {
  width: min(980px, 100%);
  justify-content: space-between;
  gap: clamp(1.2rem, 4vw, 3.6rem);
}
.arashiyama-detail-page .tour-meta-item {
  align-items: center;
  text-align: center;
}
.arashiyama-detail-page .tour-meta-item .label {
  color: rgba(250, 247, 242, 0.72);
  font-weight: 800;
}
.arashiyama-detail-page .tour-meta-item .value {
  color: #ffd56a;
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
  font-weight: 800;
  text-shadow: 0 1px 10px rgba(245, 198, 104, 0.24);
}
.arashiyama-detail-page .tour-body {
  padding-top: clamp(2.2rem, 4vw, 3.4rem);
  padding-bottom: clamp(1rem, 2vw, 1.6rem);
}
.arashiyama-detail-page .quote-section {
  padding: clamp(1rem, 2.2vw, 1.8rem) 0 clamp(1.6rem, 3vw, 2.5rem);
}
.arashiyama-detail-page .quote {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin-bottom: 1rem;
}
.arashiyama-detail-page .tour-body-grid {
  grid-template-columns: minmax(0, 1fr) minmax(450px, 520px);
  gap: clamp(1.5rem, 3vw, 2.8rem);
  max-width: 1420px;
  align-items: start;
}
.arashiyama-detail-page .tour-content {
  max-width: none;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 11, 16, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.55rem, 3vw, 2.45rem);
  position: relative;
  overflow: hidden;
}
.arashiyama-detail-page .tour-content::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent), #f5c668);
}
.arashiyama-detail-page .tour-content h2 {
  max-width: 720px;
}
.arashiyama-detail-page .tour-content p {
  max-width: 820px;
}
.tour-sell-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 clamp(1.7rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.2rem, 2vw, 1.6rem);
  border-bottom: 1px solid rgba(18, 11, 16, 0.08);
}
.tour-sell-strip div {
  background: linear-gradient(180deg, rgba(255, 247, 251, 0.92), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(219, 47, 139, 0.16);
  border-radius: calc(var(--radius) - 4px);
  padding: 0.95rem;
}
.tour-sell-strip span {
  display: block;
  color: var(--color-accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.42rem;
}
.tour-sell-strip strong {
  color: var(--color-ink);
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.42;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin-left: 0 !important;
  list-style: none;
}
.feature-list li {
  margin: 0 !important;
  background: rgba(250, 247, 242, 0.64);
  border: 1px solid rgba(18, 11, 16, 0.07);
  border-radius: calc(var(--radius) - 4px);
  padding: 0.9rem 1rem;
}
.arashiyama-answer {
  border-bottom-color: var(--color-accent);
  background: rgba(255, 247, 251, 0.72);
  border-radius: calc(var(--radius) - 4px);
}
.arashiyama-detail-page .booking-widget-card {
  top: 86px;
}
.arashiyama-detail-page .inline-bokun-widget,
.arashiyama-detail-page .inline-bokun-widget .bokun-iframe,
.arashiyama-detail-page .inline-bokun-widget iframe {
  min-height: 820px !important;
}
.arashiyama-detail-page .booking-widget-head {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 247, 251, 0.86) 100%);
}
@media (max-width: 1180px) {
  .arashiyama-detail-page .tour-body-grid {
    grid-template-columns: 1fr;
    max-width: 920px;
  }
  .arashiyama-detail-page .tour-content {
    max-width: none;
  }
}
@media (max-width: 760px) {
  .arashiyama-detail-page .tour-body {
    padding-bottom: 0.75rem;
  }
  .arashiyama-detail-page .quote-section {
    padding-top: 0.9rem;
  }
  .arashiyama-detail-page .tour-content {
    padding: 1.25rem;
    border-radius: 0;
    margin-inline: calc(var(--space-3) * -1);
  }
  .tour-sell-strip,
  .feature-list {
    grid-template-columns: 1fr;
  }
}


/* Shared polished tour detail layout */
.tour-detail-polished .tour-hero .eyebrow {
  color: #ffd56a;
  font-weight: 900;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.58);
}
.tour-detail-polished .tour-hero-inner {
  padding-top: var(--space-5);
}
.tour-detail-polished .tour-meta-bar {
  background: #171717;
  border-bottom: none;
  padding: clamp(0.9rem, 2vw, 1.25rem) 0;
}
.tour-detail-polished .tour-meta-bar .container {
  justify-content: center;
}
.tour-detail-polished .tour-meta-items {
  width: min(1120px, 100%);
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 3.2rem);
}
.tour-detail-polished .tour-meta-item {
  align-items: center;
  text-align: center;
}
.tour-detail-polished .tour-meta-item .label {
  color: rgba(250, 247, 242, 0.72);
  font-weight: 800;
}
.tour-detail-polished .tour-meta-item .value {
  color: #ffd56a;
  font-size: clamp(1.18rem, 1.95vw, 1.7rem);
  font-weight: 800;
  text-shadow: 0 1px 10px rgba(245, 198, 104, 0.24);
}
.tour-detail-polished .tour-body {
  padding-top: clamp(2.2rem, 4vw, 3.4rem);
  padding-bottom: clamp(1rem, 2vw, 1.6rem);
}
.tour-detail-polished .quote-section {
  padding: clamp(1rem, 2.2vw, 1.8rem) 0 clamp(1.6rem, 3vw, 2.5rem);
}
.tour-detail-polished .quote {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin-bottom: 1rem;
}
.tour-detail-polished .tour-body-grid {
  grid-template-columns: minmax(0, 1fr) minmax(450px, 520px);
  gap: clamp(1.5rem, 3vw, 2.8rem);
  max-width: 1420px;
  align-items: start;
}
.tour-detail-polished .tour-content {
  max-width: none;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 11, 16, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.55rem, 3vw, 2.45rem);
  position: relative;
  overflow: hidden;
}
.tour-detail-polished .tour-content::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent), #f5c668);
}
.tour-detail-polished .tour-content h2 {
  max-width: 720px;
}
.tour-detail-polished .tour-content p {
  max-width: 820px;
}
.tour-detail-polished .booking-widget-card {
  top: 86px;
}
.tour-detail-polished .inline-bokun-widget,
.tour-detail-polished .inline-bokun-widget .bokun-iframe,
.tour-detail-polished .inline-bokun-widget iframe {
  min-height: 820px !important;
}
.tour-detail-polished .booking-widget-head {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 247, 251, 0.86) 100%);
}
.tour-detail-polished .tour-hero-actions {
  display: none;
}
@media (max-width: 1180px) {
  .tour-detail-polished .tour-body-grid {
    grid-template-columns: 1fr;
    max-width: 920px;
  }
  .tour-detail-polished .tour-content {
    max-width: none;
  }
}
@media (max-width: 760px) {
  .tour-detail-polished .tour-body {
    padding-bottom: 0.75rem;
  }
  .tour-detail-polished .quote-section {
    padding-top: 0.9rem;
  }
  .tour-detail-polished .tour-content {
    padding: 1.25rem;
    border-radius: 0;
    margin-inline: calc(var(--space-3) * -1);
  }
}


/* Contact page refresh */
.contact-page-banner {
  padding: var(--space-5) 0;
  background: #120b10;
  border-bottom: 4px solid var(--color-accent);
  color: #fff;
}
.contact-page-banner .eyebrow {
  color: #ffd56a;
}
.contact-page-banner h1,
.contact-page-banner p {
  color: #fff;
}
.contact-page-banner p {
  opacity: 0.88;
}
.contact-page-main {
  background: var(--color-cream);
  padding: clamp(2.2rem, 5vw, 4.5rem) 0;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: stretch;
}
.contact-trust-card,
.contact-form-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 11, 16, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.contact-trust-card::before,
.contact-form-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent), #f5c668);
}
.contact-trust-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.contact-brand-logo {
  width: min(230px, 72%);
  height: auto;
  display: block;
  margin-bottom: 1.2rem;
}
.contact-card-lede {
  color: var(--color-text);
  font-size: 1.03rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.contact-proof-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink);
  border: 1px solid rgba(18, 11, 16, 0.08);
  border-radius: calc(var(--radius) - 4px);
  padding: 1rem;
  margin-bottom: 1rem;
}
.contact-proof-card img {
  width: 72px;
  height: auto;
  border-radius: 8px;
}
.contact-proof-card span {
  display: block;
  color: var(--color-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}
.contact-proof-card strong {
  display: block;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.18;
  margin-top: 0.16rem;
}
.contact-proof-card p {
  color: var(--color-muted);
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
}
.contact-direct-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}
.contact-direct-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(18, 11, 16, 0.1);
  background: rgba(250, 247, 242, 0.72);
  color: var(--color-ink);
  text-decoration: none;
}
.contact-direct-link span {
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-direct-link strong {
  font-size: 0.96rem;
}
.contact-direct-link:hover {
  border-color: rgba(237, 28, 140, 0.34);
  transform: translateY(-1px);
}
.contact-direct-whatsapp {
  background: rgba(37, 211, 102, 0.1);
}
.contact-socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.contact-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #120b10;
  color: #fff;
  border: 1px solid rgba(245, 198, 104, 0.22);
}
.contact-socials svg {
  width: 20px;
  height: 20px;
}
.contact-form-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.contact-form-head {
  margin-bottom: 1.35rem;
}
.contact-form-head h2 {
  margin-bottom: 0.55rem;
}
.contact-form-head p {
  color: var(--color-muted);
  max-width: 720px;
}
.contact-page .contact-form {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.contact-page .contact-form textarea {
  min-height: 170px;
}
.contact-form-note {
  margin-top: 0.9rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .contact-page-main {
    padding-top: 1.4rem;
  }
  .contact-trust-card,
  .contact-form-card {
    border-radius: 0;
    margin-inline: calc(var(--space-3) * -1);
  }
  .contact-proof-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }
  .contact-proof-card img {
    width: 58px;
  }
  .contact-direct-link {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Tours page header banner */
.tours-page-banner {
  padding: var(--space-5) 0;
  background: #120b10;
  border-bottom: 4px solid var(--color-accent);
  color: #fff;
}
.tours-page-banner .eyebrow {
  color: #ffd56a;
}
.tours-page-banner h1,
.tours-page-banner p {
  color: #fff;
}
.tours-page-banner p {
  opacity: 0.88;
}


/* About page header banner */
.about-page-banner {
  padding: var(--space-5) 0;
  background: #120b10;
  border-bottom: 4px solid var(--color-accent);
  color: #fff;
}
.about-page-banner .eyebrow {
  color: #ffd56a;
}
.about-page-banner h1,
.about-page-banner p {
  color: #fff;
}
.about-page-banner p {
  opacity: 0.88;
  margin: 0 auto;
}


/* About intro refresh */
.about-intro {
  padding: clamp(2.2rem, 5vw, 4rem) 0;
  background: var(--color-cream);
}
.about-intro-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.4rem, 3.5vw, 3.2rem);
  align-items: center;
}
.about-intro .editorial-image {
  aspect-ratio: 4 / 3.35;
  min-height: 0;
  max-height: 520px;
  background-position: center 44%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-intro .editorial-text {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 11, 16, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 3.6vw, 3rem);
  position: relative;
  overflow: hidden;
}
.about-intro .editorial-text::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent), #f5c668);
}
.about-intro .editorial-text h2 {
  max-width: 10ch;
  font-size: clamp(2.45rem, 4.2vw, 4.6rem);
  line-height: 0.98;
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
}
.about-intro .editorial-text p {
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.78;
  max-width: 760px;
}
.about-intro .editorial-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 980px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin-inline: auto;
  }
  .about-intro .editorial-image {
    aspect-ratio: 16 / 9;
    max-height: none;
  }
  .about-intro .editorial-text h2 {
    max-width: 13ch;
  }
}
@media (max-width: 640px) {
  .about-intro {
    padding-top: 1.4rem;
  }
  .about-intro .editorial-image,
  .about-intro .editorial-text {
    border-radius: 0;
    margin-inline: calc(var(--space-3) * -1);
  }
  .about-intro .editorial-text h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }
}


/* About intro symmetric image/text block */
.about-intro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 11, 16, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.about-intro-grid::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent), #f5c668);
  z-index: 2;
}
.about-intro .editorial-image {
  height: 100%;
  min-height: clamp(440px, 42vw, 560px);
  max-height: none;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  background-position: center 45%;
}
.about-intro .editorial-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(440px, 42vw, 560px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: clamp(2rem, 4vw, 4rem);
}
.about-intro .editorial-text::before {
  display: none;
}
.about-intro .editorial-text h2 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 3.6vw, 4.1rem);
  line-height: 1.02;
}
.about-intro .editorial-text p {
  max-width: 680px;
}
@media (max-width: 980px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    max-width: 900px;
  }
  .about-intro .editorial-image,
  .about-intro .editorial-text {
    min-height: 0;
  }
  .about-intro .editorial-image {
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 640px) {
  .about-intro-grid {
    border-radius: 0;
    margin-inline: calc(var(--space-3) * -1);
  }
  .about-intro .editorial-image,
  .about-intro .editorial-text {
    margin-inline: 0;
  }
}


/* About page curated signature tours */
.about-signature-tours {
  padding: clamp(2.2rem, 5vw, 4rem) 0;
  background: var(--color-cream);
}
.about-signature-tours .section-head p {
  max-width: 720px;
  margin-inline: auto;
  color: var(--color-muted);
}
.about-signature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}
.about-signature-grid .tour-card-image {
  height: clamp(220px, 22vw, 310px);
}
.about-signature-grid .tour-card-eyebrow,
.about-signature-grid .tour-card-cta {
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-all-tours-link {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}
@media (max-width: 980px) {
  .about-signature-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }
}
