/* NatOli Travel Japan — premium native theme */

@font-face {
  font-family: 'Belepotan';
  src: url('/assets/fonts/belepotan/BelepotanRus.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LT Superior';
  src: url('/assets/fonts/lt-superior/LTSuperiorRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LT Superior';
  src: url('/assets/fonts/lt-superior/LTSuperiorBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --washi: #f0e8db;
  --washi-2: #e8dfce;
  --washi-3: #d9cdb6;
  --sumi: #12100d;
  --sumi-2: #252018;
  --ink: #2a241c;
  --ink-soft: #4f473c;
  --ink-muted: #5f564a;
  --accent: #a61c1d;
  --accent-hover: #851518;
  --wa: #2f6f49;
  --wa-hover: #245a3b;
  --tg: #1a6fa8;
  --tg-hover: #145a88;
  --line: rgba(23, 20, 17, 0.12);
  --white: #fff;
  --text-on-dark: #f0e8db;
  --text-muted-on-dark: #c9bfb0;
  --radius: 4px;
  --radius-pill: 999px;
  --shadow: 0 16px 48px rgba(23, 20, 17, 0.08);
  --shadow-soft: 0 8px 24px rgba(23, 20, 17, 0.06);
  --font-display: 'Belepotan', Georgia, 'Times New Roman', serif;
  --font-serif: 'Belepotan', Georgia, 'Times New Roman', serif;
  --font-sans: 'LT Superior', 'Segoe UI', system-ui, sans-serif;
  --container: 1440px;
  --frame-edge: #d4c7b2;
  --frame-mid: #e8dfce;
  --frame-light: #f3ecdf;
  --pattern-kumiko: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%237a6b58' stroke-width='0.55' opacity='0.32'%3E%3Cpath d='M0 24 L24 0 L48 24 L24 48 Z'/%3E%3Cpath d='M12 24 L24 12 L36 24 L24 36 Z'/%3E%3Cpath d='M0 0 L48 48 M48 0 L0 48'/%3E%3C/g%3E%3C/svg%3E");
  --pattern-woodgrain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='32' viewBox='0 0 6 32'%3E%3Cpath d='M0 8 Q3 10 6 8 M0 16 Q3 18 6 16 M0 24 Q3 26 6 24' fill='none' stroke='%239a8872' stroke-width='0.45' opacity='0.22'/%3E%3C/svg%3E");
  --pattern-asanoha: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='none' stroke='%23171411' stroke-width='0.45' opacity='0.08'%3E%3Cpath d='M20 0 L20 40 M0 20 L40 20 M5 5 L35 35 M35 5 L5 35'/%3E%3C/g%3E%3C/svg%3E");
  --header-h: 76px;
  --brand-cream: #f9f3e3;
  --brand-sun: #b32021;
  --brand-navy: #1a2744;
  --brand-gold: #c9a227;
  --photo-aspect: 4 / 3;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink);
  background: #b8aa96;
  overflow-x: hidden;
  width: 100%;
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #a69380 0%,
    #c4b59a max(0px, calc(50% - 780px)),
    #d8cdb8 max(0px, calc(50% - 736px)),
    transparent max(0px, calc(50% - 720px)),
    transparent min(100%, calc(50% + 720px)),
    #d8cdb8 min(100%, calc(50% + 736px)),
    #c4b59a min(100%, calc(50% + 780px)),
    #a69380 100%
  );
}

/* Content column — sharp 1440px canvas, gradients only outside via body::before */
main {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  background: var(--washi);
  border-left: 1px solid rgba(23, 20, 17, 0.1);
  border-right: 1px solid rgba(23, 20, 17, 0.1);
  overflow-x: hidden;
}

/* Image frames — full photo visible, gradient fills empty space */
.img-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 0;
  border: 1px solid rgba(23, 20, 17, 0.14);
  background: linear-gradient(165deg, #d4c7b2 0%, #e8dfce 52%, #f0e8db 100%);
}
.img-frame::before { display: none; }
.img-frame img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.img-frame--wide { min-height: 180px; aspect-ratio: var(--photo-aspect); }
.img-frame--banner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 280px;
  aspect-ratio: 21 / 6;
  border-radius: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.muted { color: var(--ink-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  min-width: 0;
}
.section { padding: 88px 0; }
.section--alt {
  background: var(--washi-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--dark { background: var(--sumi); color: var(--text-on-dark); }

.section-head { margin-bottom: 40px; max-width: 640px; }
.section-head__num {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-head__num::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.12;
  margin: 0 0 12px;
  color: var(--sumi);
  text-wrap: balance;
}
.section-head h2 .accent { font-weight: 400; letter-spacing: normal; }
.section-head p { margin: 0; color: var(--ink-soft); font-size: 1.06rem; line-height: 1.7; }
.section-head .accent { color: var(--accent); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  width: 100%;
  background: rgba(23, 20, 17, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: hidden;
}
.site-header__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.site-header__start {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  min-width: 0;
}
.site-logo--image,
.site-logo--brand {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.site-logo {
  color: var(--text-on-dark);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.site-logo__sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted-on-dark);
  margin-top: 3px;
}
.site-nav {
  display: flex;
  gap: 2px;
  flex-wrap: nowrap;
  min-width: 0;
}
.site-nav__link {
  color: var(--text-muted-on-dark);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.08);
}
.site-header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.site-header__contact { white-space: nowrap; }
.site-header__tours { white-space: nowrap; }
.site-header__cta { display: flex; gap: 8px; flex-shrink: 0; }
.site-header__icons { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s, opacity 0.2s;
}
.header-icon:hover { transform: translateY(-1px); opacity: 0.92; }
.header-icon svg { width: 20px; height: 20px; fill: currentColor; }
.header-icon--wa { background: var(--wa); color: var(--white); }
.header-icon--tg { background: var(--tg); color: var(--white); }
.site-nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-on-dark);
  font-size: 1.2rem;
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, border-color 0.2s, color 0.2s;
  font-family: inherit;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 10px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 32px; font-size: 0.95rem; }
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); color: var(--white); }
.btn-book { background: var(--sumi); color: var(--text-on-dark); border-color: var(--sumi); }
.btn-book:hover { background: var(--sumi-2); border-color: var(--sumi-2); color: var(--text-on-dark); }
.btn-wa { background: var(--wa); color: var(--white); border-color: var(--wa); }
.btn-wa:hover { background: var(--wa-hover); color: var(--white); }
.btn-tg { background: var(--tg); color: var(--white); border-color: var(--tg); }
.btn-tg:hover { background: var(--tg-hover); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--sumi);
  border-color: var(--sumi);
}
.btn-outline:hover { background: var(--sumi); color: var(--text-on-dark); }
.btn-detail {
  background: var(--washi-2);
  color: var(--ink);
  border-color: var(--frame-edge);
}
.btn-detail:hover {
  background: var(--washi-3);
  color: var(--sumi);
  border-color: var(--ink-muted);
}
.btn-outline-light {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(240, 232, 219, 0.45);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.08); color: var(--text-on-dark); }

/* Hero — flat on page bg, photo + soft edge ornament only */
.hero-band {
  padding: 16px 0 24px;
  border-bottom: 1px solid var(--line);
}
.hero { padding: 0; }
.hero__stage {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(8px, 1.5vw, 16px) 0;
}
.hero__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 480px);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
.hero__copy { min-width: 0; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero__trust {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.hero__trust li {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}
.hero__trust strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--sumi);
  margin-right: 4px;
}
.hero__eyebrow {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: normal;
  margin: 0 0 14px;
  color: var(--sumi);
  text-wrap: balance;
}
.hero__subtitle {
  font-size: clamp(1.02rem, 1.8vw, 1.12rem);
  line-height: 1.72;
  color: var(--ink-soft);
  margin: 0;
  max-width: 540px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Homepage motion: editorial depth without heavy runtime */
.page-home .hero-band {
  position: relative;
  isolation: isolate;
  padding: clamp(24px, 4vw, 52px) 0 clamp(28px, 4.6vw, 60px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(166, 28, 29, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(232, 223, 206, 0.22) 48%, rgba(18, 16, 13, 0.04));
}
.page-home .hero-band::before,
.page-home .hero-band::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.page-home .hero-band::before {
  inset: 20px 0 auto auto;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.46), rgba(166, 28, 29, 0.07) 42%, transparent 70%);
  transform: translate3d(18%, -18%, 0);
}
.page-home .hero-band::after {
  inset: auto auto -90px -90px;
  width: 300px;
  height: 300px;
  background-image: var(--pattern-kumiko);
  background-size: 42px 42px;
  opacity: 0.16;
  mask-image: radial-gradient(circle, #000 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(circle, #000 0%, transparent 68%);
}
.page-home .hero__main {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 520px);
  gap: clamp(28px, 5vw, 72px);
}
.page-home .hero__copy {
  position: relative;
  max-width: 700px;
}
.page-home .hero__copy::before {
  content: 'Japan, privately guided';
  display: block;
  width: fit-content;
  margin-bottom: clamp(18px, 3vw, 30px);
  padding: 8px 14px;
  border: 1px solid rgba(166, 28, 29, 0.22);
  border-radius: var(--radius-pill);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.38);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}
.page-home .hero__eyebrow { margin-bottom: 18px; }
.home-hero__routes {
  display: none;
}
.home-hero__custom-cta {
  margin: 0 0 16px;
}
.home-hero__custom-cta-btn {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: var(--accent);
  cursor: pointer;
  text-align: inherit;
  -webkit-tap-highlight-color: transparent;
}
.home-hero__custom-cta-btn:hover,
.home-hero__custom-cta-btn:focus-visible {
  color: var(--accent-hover);
}
.page-home .home-hero__custom-cta-btn {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.38;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.page-home .hero__title {
  max-width: 12ch;
  font-size: clamp(2.6rem, 6.2vw, 5.35rem);
  line-height: 0.98;
}
.page-home .hero__subtitle {
  max-width: 42rem;
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
}
.page-home .page-home .page-home .page-home .btn {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.page-home .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(23, 20, 17, 0.1);
}
.page-home .btn-book {
  position: relative;
  overflow: hidden;
}
.page-home .btn-book::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 45%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 0.58s ease;
}
.page-home .btn-book:hover::after { transform: translateX(120%); }
.page-home:not(.motion-reduce) .hero__copy::before,
.page-home:not(.motion-reduce) .hero__eyebrow,
.page-home:not(.motion-reduce) .home-hero__custom-cta,
.page-home:not(.motion-reduce) .hero__title,
.page-home:not(.motion-reduce) .hero__subtitle,
.page-home:not(.motion-reduce) .hero__actions {
  animation: premiumRise 0.82s cubic-bezier(0.19, 1, 0.22, 1) both;
}
.page-home:not(.motion-reduce) .hero__copy::before { animation-delay: 0.04s; }
.page-home:not(.motion-reduce) .hero__eyebrow { animation-delay: 0.1s; }
.page-home:not(.motion-reduce) .home-hero__custom-cta { animation-delay: 0.14s; }
.page-home:not(.motion-reduce) .hero__title { animation-delay: 0.22s; }
.page-home:not(.motion-reduce) .hero__subtitle { animation-delay: 0.32s; }
.page-home:not(.motion-reduce) .hero__actions { animation-delay: 0.42s; }
@keyframes premiumRise {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
.page-home.motion-ready:not(.motion-reduce) [data-home-motion="section"] .section-head,
.page-home.motion-ready:not(.motion-reduce) [data-home-motion="section"] .custom-tour-band__copy,
.page-home.motion-ready:not(.motion-reduce) [data-home-motion="section"] .custom-tour-band__actions,
.page-home.motion-ready:not(.motion-reduce) [data-home-motion="section"] .tour-card,
.page-home.motion-ready:not(.motion-reduce) [data-home-motion="section"] .team__text > *,
.page-home.motion-ready:not(.motion-reduce) [data-home-motion="section"] .team__photo,
.page-home.motion-ready:not(.motion-reduce) [data-home-motion="section"] .experience-card,
.page-home.motion-ready:not(.motion-reduce) [data-home-motion="section"] .feature,
.page-home.motion-ready:not(.motion-reduce) [data-home-motion="section"] .video-card,
.page-home.motion-ready:not(.motion-reduce) [data-home-motion="section"] .review,
.page-home.motion-ready:not(.motion-reduce) [data-home-motion="section"] .reviews-score,
.page-home.motion-ready:not(.motion-reduce) [data-home-motion="section"] .cta-band__inner > *,
.page-home.motion-ready:not(.motion-reduce) .hero-trust__list li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.page-home.motion-ready:not(.motion-reduce) .motion-in .section-head,
.page-home.motion-ready:not(.motion-reduce) .motion-in .custom-tour-band__copy,
.page-home.motion-ready:not(.motion-reduce) .motion-in .custom-tour-band__actions,
.page-home.motion-ready:not(.motion-reduce) .motion-in .tour-card,
.page-home.motion-ready:not(.motion-reduce) .motion-in .team__text > *,
.page-home.motion-ready:not(.motion-reduce) .motion-in .team__photo,
.page-home.motion-ready:not(.motion-reduce) .motion-in .experience-card,
.page-home.motion-ready:not(.motion-reduce) .motion-in .feature,
.page-home.motion-ready:not(.motion-reduce) .motion-in .video-card,
.page-home.motion-ready:not(.motion-reduce) .motion-in .review,
.page-home.motion-ready:not(.motion-reduce) .motion-in .reviews-score,
.page-home.motion-ready:not(.motion-reduce) .motion-in .cta-band__inner > *,
.page-home.motion-ready:not(.motion-reduce) .hero-trust.motion-in .hero-trust__list li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.72s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.72s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: calc(var(--motion-index, 0) * 70ms);
}
.page-home .tour-card,
.page-home .feature,
.page-home .review,
.page-home .experience-card {
  will-change: transform;
}
.page-home .tour-card {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.42) inset, 0 12px 36px rgba(23, 20, 17, 0.05);
}
.page-home .tour-card:hover,
.page-home .feature:hover,
.page-home .review:hover,
.page-home .experience-card:hover {
  transform: translate3d(0, -6px, 0);
  box-shadow: 0 20px 44px rgba(23, 20, 17, 0.12);
}

/* Phase 2 — premium editorial homepage composition */
.page-home .home-chapter {
  max-width: 820px;
  margin-bottom: 34px;
}
.page-home .home-hero__stage {
  padding-top: clamp(24px, 5vw, 64px);
  padding-bottom: clamp(24px, 4vw, 50px);
}
.page-home .home-hero__layout {
  align-items: end;
}
.page-home .home-hero__kicker {
  margin: 0 0 16px;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(166, 28, 29, 0.24);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.4);
  color: var(--accent);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.page-home .home-hero__copy {
  display: grid;
  gap: 0;
}
.page-home .home-hero__aside {
  display: grid;
  gap: 18px;
  justify-items: end;
}
.page-home .home-hero__note {
  margin: 0;
  max-width: 34ch;
  border-left: 2px solid rgba(166, 28, 29, 0.45);
  padding-left: 14px;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.page-home .home-hero__facts {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  grid-column: 1 / -1;
}
.page-home .home-hero__facts li {
  border: 1px solid rgba(23, 20, 17, 0.12);
  background: var(--washi);
  padding: 12px 14px;
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 5px;
}
.page-home .home-hero__facts strong {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--sumi);
}
.page-home .home-hero__facts span {
  color: var(--ink-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}
.page-home .home-tours__desktop {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 20px;
}
.page-home .home-tours__secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.page-home .home-tours__secondary .tour-card__img {
  min-height: 180px;
}
.page-home .home-tours__secondary .tour-card__desc {
  -webkit-line-clamp: 2;
}
.page-home .home-tours__mobile {
  display: none;
}
.page-home .home-guides__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}
.page-home .home-guides__media {
  display: grid;
  gap: 16px;
}
.page-home .home-guides__photos {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 14px;
}
.page-home .home-guides__photos .team__photo:first-child {
  transform: translateY(-10px);
}
.page-home .home-guides__quote {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--ink-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}
.page-home .home-custom {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
}
.page-home .home-custom__copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.35rem);
}
.page-home .home-custom__copy p:not(.section-head__num) {
  max-width: 62ch;
}
.page-home .home-experiences__editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}
.page-home .home-experiences__lead {
  border: 1px solid var(--line);
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.page-home .home-experiences__lead-media {
  border-radius: 0;
  aspect-ratio: var(--photo-aspect);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-home .home-experiences__lead-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.page-home .home-experiences__lead-copy {
  padding: 18px 20px 22px;
}
.page-home .home-experiences__lead-copy h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.24rem;
  color: var(--sumi);
}
.page-home .home-experiences__lead-copy p {
  margin: 0;
  color: var(--ink-soft);
}
.page-home .home-experiences__notes {
  display: grid;
  gap: 10px;
}
.page-home .home-experiences__rail {
  margin-top: 4px;
}
.page-home .home-experience-note {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  padding: 14px 16px;
}
.page-home .home-experience-note h3 {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--sumi);
}
.page-home .home-experience-note p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}
.page-home .home-social {
  background: linear-gradient(160deg, var(--washi-2), rgba(240, 232, 219, 0.7));
}
.page-home .home-social__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}
.page-home .home-social__panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  padding: 22px 20px;
}
.page-home .home-social__panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: normal;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
}
.page-home .home-social__reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px;
}
.page-home .home-social .reviews-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.page-home .home-social .review {
  min-height: 100%;
}
.page-home .home-social .review--wide {
  grid-column: span 2;
}
.page-home .home-social .reviews-scroll-mobile {
  display: none;
}

/* Stats — inside 1440 canvas only */
.stats-band {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--washi-2);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(23, 20, 17, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat__n {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--sumi);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__n small { font-size: 0.45em; font-weight: 500; margin-left: 4px; }
.stat__l {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Tour cards */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.tour-catalog-sort-note {
  margin: 16px 0 0;
  padding: 14px 18px;
  border-left: 3px solid var(--accent);
  background: var(--washi-2);
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 52ch;
}
.tour-catalog-group {
  margin-top: 40px;
}
.tour-catalog-group:first-of-type {
  margin-top: 0;
}
.tour-catalog-group + .tour-catalog-group {
  margin-top: 56px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.tour-catalog-group__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 22px;
}
.tour-catalog-group__label {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--sumi);
  margin: 0;
}
.tour-catalog-group__hint {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.tour-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.tour-card__img {
  aspect-ratio: var(--photo-aspect);
  min-height: 220px;
}
.tour-card__img img {
  padding: 6px;
}
.tour-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.tour-card__date {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.tour-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  color: var(--sumi);
}
.tour-card__desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.tour-card__price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--sumi);
}
.tour-card__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.tour-card__media-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}
.tour-card__media-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.tour-card__title-btn {
  display: block;
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
  text-decoration: none;
}
.tour-card__title-btn:hover { color: var(--accent); }

/* Tour detail modal */
body.modal-open,
body.contact-modal-open,
body.site-nav-open { overflow: hidden; }
.tour-modal[hidden] { display: none !important; }
.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.tour-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 20, 17, 0.55);
  backdrop-filter: blur(4px);
}
.tour-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--washi);
  border: 1px solid rgba(23, 20, 17, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.tour-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--sumi);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(23, 20, 17, 0.08);
}
.tour-modal__close:hover { background: var(--white); }
.tour-modal__grid {
  display: flex;
  flex-direction: column;
}
.tour-modal__media {
  padding: 16px 16px 0;
  background: var(--washi-2);
  border-bottom: 1px solid var(--line);
}
.tour-modal__photo {
  width: 100%;
  aspect-ratio: var(--photo-aspect);
  max-height: min(440px, 46vh);
  min-height: 0;
}
.tour-modal__photo img {
  padding: 12px;
}
.tour-modal__content {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tour-modal__date {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.tour-modal__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin: 0;
  color: var(--sumi);
  line-height: 1.2;
  padding-right: 40px;
}
.tour-modal__price {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--sumi);
}
.tour-modal__desc {
  margin: 4px 0 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink);
  white-space: pre-line;
}
.tour-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.tour-modal__note {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

@media (max-width: 720px) {
  .tour-modal { padding: 8px; align-items: flex-end; }
  .tour-modal__dialog { max-height: 92vh; border-radius: var(--radius) var(--radius) 0 0; }
  .tour-modal__photo {
    max-height: min(320px, 38vh);
    min-height: 0;
  }
  .tour-modal__content { padding: 20px 18px 24px; }
  .tour-modal__actions { flex-direction: column; }
  .tour-modal__actions .btn { width: 100%; }
}

/* Team */
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.team__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.team__photo {
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-soft);
}
.team__photo img { padding: 6px; }
.team__text p:not(.section-head__num) {
  color: var(--ink-muted);
  margin: 0 0 16px;
  font-size: 1.02rem;
}
.team__text .section-head__num { color: var(--accent); }
.team__text p.lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--sumi);
  line-height: 1.6;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.feature__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.72;
  line-height: 1;
  margin-bottom: 16px;
}
.feature h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--sumi);
}
.feature p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); line-height: 1.65; }

/* Reviews */
.reviews-grid,
.reviews-grid--desktop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review--wide { grid-column: span 2; }
.review__mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.25;
}
.review__quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
  color: var(--sumi);
  flex: 1;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.review__ava {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--washi-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--sumi);
  flex-shrink: 0;
}
.review__who b { display: block; font-size: 0.9rem; }
.review__who span { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }
.reviews-score {
  text-align: right;
}
.reviews-score__stars { color: var(--accent); font-size: 1.2rem; letter-spacing: 0.08em; }
.reviews-score__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--sumi);
  line-height: 1;
}
.reviews-score__num small { font-size: 0.45em; color: var(--ink-muted); }
.reviews-score__src { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); margin-top: 6px; }

/* Horizontal scroll (videos, reviews, tours, articles) */
.h-scroll {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 0 36px 4px;
}
.h-scroll__track {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.h-scroll__track::-webkit-scrollbar { display: none; }
.h-scroll__nav {
  position: absolute;
  top: 38%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--washi);
  color: var(--sumi);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(23, 20, 17, 0.12);
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-scroll__nav:hover:not(:disabled) {
  background: var(--sumi);
  color: var(--text-on-dark);
  border-color: var(--sumi);
}
.h-scroll__nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.h-scroll__nav--prev { left: 0; }
.h-scroll__nav--next { right: 0; }
.h-scroll__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  min-height: 20px;
}
.h-scroll__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--frame-edge);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.h-scroll__dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}
.h-scroll--videos .video-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
}
.h-scroll--reviews .review {
  flex: 0 0 min(300px, 86vw);
  scroll-snap-align: start;
  min-height: 280px;
}
.h-scroll--reviews .review--wide { grid-column: auto; }
.h-scroll--tours .tour-card,
.h-scroll--articles .article-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
}

.h-scroll--features .feature {
  flex: 0 0 min(280px, 82vw);
  scroll-snap-align: start;
}

.tour-scroll-mobile,
.article-scroll-mobile,
.reviews-scroll-mobile,
.features-scroll-mobile {
  display: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.video-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.video-section__lead {
  max-width: 38ch;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-muted);
}
.video-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sumi);
  border: 1px solid var(--line);
}
.video-card__video,
.video-card__iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
}
.video-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(23, 20, 17, 0.55);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
}
.video-card__play span { margin-left: 3px; }
.video-card__mute {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(23, 20, 17, 0.55);
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card.playing .video-card__play {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}
.video-card__cap {
  padding: 14px 4px 0;
  color: var(--sumi);
}
.video-card__cap b {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.video-card__cap span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(166, 28, 29, 0.28), transparent 30%),
    linear-gradient(135deg, #16120e 0%, #252018 48%, #0f0d0b 100%);
  color: var(--text-on-dark);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--pattern-kumiko);
  background-size: 54px 54px;
  opacity: 0.04;
}
.cta-band__inner { position: relative; z-index: 1; }
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 8px;
  font-weight: 400;
  letter-spacing: normal;
}
.cta-band p { margin: 0; color: var(--text-muted-on-dark); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Page hero */
.page-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--line);
  background: var(--washi-2);
}
.page-hero--compact { padding: 56px 0 40px; }
.page-hero .section-head__num { color: var(--accent); margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--sumi);
  letter-spacing: normal;
  line-height: 1.12;
  text-wrap: balance;
}
.page-hero p:not(.section-head__num) {
  margin: 0;
  color: var(--ink-soft);
  max-width: 640px;
  font-size: 1.06rem;
  line-height: 1.72;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 32px;
}
.contact-panel h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 24px;
  color: var(--sumi);
}
.contact-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-item h3 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
  font-weight: 600;
}
.contact-item p,
.contact-item a {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}
.contact-item a:hover { color: var(--accent); }
.contact-map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  background: var(--washi-3);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

/* Prose */
.prose { max-width: 720px; line-height: 1.78; color: var(--ink); font-size: 1.02rem; }
.prose h2, .prose h3 {
  font-family: var(--font-display);
  color: var(--sumi);
  letter-spacing: normal;
  margin: 2em 0 0.75em;
}
.prose p { margin: 0 0 1em; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { padding-left: 1.25em; }

/* Articles */
.article-grid,
.article-grid--desktop {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.article-card__cover {
  border-bottom: 1px solid var(--line);
}
.article-card__cover img { padding: 8px; }
.article-card__body { padding: 20px; }
.article-card__date { font-size: 0.75rem; color: var(--ink-muted); letter-spacing: 0.08em; }
.article-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 8px 0;
  color: var(--sumi);
}

.article-page { overflow: hidden; }
.article-cover {
  margin: 0 auto;
  line-height: 0;
  border-bottom: 1px solid var(--line);
  background: var(--washi-2);
  max-width: var(--container);
  padding: clamp(16px, 3vw, 28px);
}
.article-cover__frame {
  width: 100%;
  min-height: clamp(200px, 32vh, 360px);
  aspect-ratio: unset;
  border-radius: var(--radius);
}
.article-cover__frame img,
.article-cover__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(240px, 48vh, 540px);
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}
.article-cover--editorial .article-cover__frame {
  min-height: clamp(240px, 40vh, 420px);
}
.article-cover__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(18, 16, 13, 0.08) 0%, rgba(18, 16, 13, 0.28) 100%);
}
.article-page__inner { padding: 56px 0 96px; }
.article-header {
  max-width: 760px;
  margin: 0 auto 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.article-kicker {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}
.article-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: normal;
  color: var(--sumi);
  text-wrap: balance;
  hyphens: manual;
}
.article-meta {
  margin: 0 0 20px;
  color: var(--ink-muted);
  font-size: 0.92rem;
}
.article-meta__sep { margin: 0 0.35em; }
.article-excerpt {
  margin: 0 0 20px;
  font-size: 1.12rem;
  line-height: 1.72;
  color: var(--ink-soft);
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article-tag {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.45);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.article-layout--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
  margin: 0 auto;
}
.article-layout--wide {
  grid-template-columns: minmax(0, 1fr);
  max-width: 920px;
  margin: 0 auto;
}
.article-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto 40px;
  max-width: 760px;
}
.article-stat {
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
}
.article-stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--accent);
  margin-bottom: 6px;
}
.article-stat__label {
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.article-toc {
  max-width: 760px;
  margin: 0 auto 32px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}
.article-toc__title {
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.article-toc__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}
.article-toc__list li { margin-bottom: 8px; }
.article-toc__list a {
  color: var(--sumi);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-toc__list a:hover { color: var(--accent); }
.article-body--guide .article-block-list { counter-reset: guide-step; list-style: none; padding-left: 0; }
.article-body--guide .article-block-list li {
  counter-increment: guide-step;
  position: relative;
  margin-bottom: 1.25em;
  padding: 16px 18px 16px 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
}
.article-body--guide .article-block-list li::before {
  content: counter(guide-step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}
.article-body--guide .article-block-list li::marker { content: ''; }
.article-body--editorial .article-quote {
  margin-inline: clamp(-8px, -2vw, -24px);
  padding: 28px 32px;
  font-size: 1.05rem;
}
.article-body--magazine .article-callout {
  border-left: 3px solid var(--accent);
  background: linear-gradient(90deg, rgba(166, 28, 29, 0.06) 0%, rgba(255, 255, 255, 0.5) 100%);
}
.article-guide-cta {
  margin-top: 48px;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(90, 173, 120, 0.12) 0%, rgba(255, 255, 255, 0.55) 100%);
  text-align: center;
}
.article-guide-cta h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--sumi);
}
.article-guide-cta p {
  margin: 0 auto 20px;
  max-width: 520px;
  color: var(--ink-soft);
}
.article-guide-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.article-editorial-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  margin-bottom: 40px;
}
.article-editorial-band {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}
.article-editorial-band p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.article-body {
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--ink);
}
.article-body > *:first-child { margin-top: 0; }
.article-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 1.75em;
}
.article-block-heading {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--sumi);
  margin: 2.5em 0 0.85em;
  letter-spacing: normal;
  text-wrap: balance;
}
.article-block-heading:first-child { margin-top: 0; }
.article-body h3.article-block-heading { font-size: 1.25rem; margin-top: 2em; }
.article-body p { margin: 0 0 1.25em; }
.article-body p:last-child { margin-bottom: 0; }
.article-block-list {
  margin: 0 0 1.5em;
  padding-left: 1.35em;
}
.article-block-list li {
  margin-bottom: 0.55em;
  padding-left: 0.15em;
}
.article-block-list li::marker { color: var(--accent); }
.article-figure {
  margin: 2em 0;
}
.article-figure__frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--washi-2);
  aspect-ratio: var(--photo-aspect);
}
.article-figure__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.article-figure figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-align: center;
}
.article-figure--wide .article-figure__frame { aspect-ratio: var(--photo-aspect); min-height: 0; }
.article-figure--wide .article-figure__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.article-quote {
  margin: 2em 0;
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.42);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--sumi);
}
.article-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--ink-muted);
}
.article-callout {
  margin: 2em 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}
.article-callout strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--sumi);
}
.article-callout p { margin: 0; }
.article-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5em 0;
}
.article-aside__box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}
.article-aside__box h3 {
  font-family: var(--font-serif);
  margin: 0 0 10px;
  font-size: 1.1rem;
}
.article-related { list-style: none; padding: 0; margin: 0; }
.article-related li { margin-bottom: 8px; }
.article-related a { color: var(--accent); }

/* Footer */
.site-footer {
  background: var(--sumi-2);
  color: var(--text-on-dark);
  padding: 56px 0 0;
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}
.site-footer__brand strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}
.site-footer__brand p {
  margin: 0;
  color: var(--text-muted-on-dark);
  font-size: 0.92rem;
  line-height: 1.6;
}
.site-footer__links,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__links a,
.site-footer__contact a {
  color: var(--text-muted-on-dark);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.site-footer__links a:hover,
.site-footer__contact a:hover { color: var(--text-on-dark); }
.site-footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted-on-dark);
}

/* Contact modal */
.contact-modal[hidden] { display: none; }
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.72);
}
.contact-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: var(--washi);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}
.contact-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-muted);
}
.contact-modal__panel h2 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
}
.contact-modal__lead {
  margin: 0 0 20px;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.contact-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.contact-modal__grid .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
  padding: 10px 12px;
}
.contact-modal__phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.92rem;
}
.contact-modal__phones a { color: var(--ink); text-decoration: none; }
.contact-modal__phones a:hover { color: var(--accent); }
.contact-modal__email { width: 100%; justify-content: center; }
.contact-modal__panel { width: min(480px, 100%); }
.contact-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-modal__actions .btn { width: 100%; justify-content: center; }

/* Review submission modal */
body.review-modal-open { overflow: hidden; }
.review-modal[hidden] { display: none; }
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 13, 0.52);
  backdrop-filter: blur(4px);
}
.review-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  padding: clamp(22px, 4vw, 32px);
  border-radius: 18px;
  background: var(--washi);
  box-shadow: 0 28px 80px rgba(23, 20, 17, 0.22);
}
.review-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 20, 17, 0.06);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.review-modal__panel h2 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 1.85rem);
}
.review-modal__lead {
  margin: 0 0 18px;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.review-form {
  display: grid;
  gap: 14px;
}
.review-form__field {
  display: grid;
  gap: 6px;
}
.review-form__field span {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.review-form__field input,
.review-form__field select,
.review-form__field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(23, 20, 17, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  color: var(--ink);
}
.review-form__field textarea { resize: vertical; min-height: 120px; }
.review-form__status {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}
.review-form__status.is-ok { color: var(--wa); }
.review-form__status.is-error { color: var(--accent); }
.review-form__submit { width: 100%; justify-content: center; }
.reviews-panel__actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}
.reviews-panel__empty {
  margin: 0;
  padding: 18px 14px;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.95rem;
  border: 1px dashed rgba(23, 20, 17, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.35);
}

/* Experiences */
.experience-card {
  flex: 0 0 min(300px, 78vw);
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.experience-card__media { border-radius: 0; aspect-ratio: var(--photo-aspect); }
.experience-card__media img { object-position: center; }
.experience-card__body { padding: 16px 18px 18px; }
.experience-card__body h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
}
.experience-card__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}
.experiences-note {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}
.h-scroll--experiences .experience-card { min-height: 100%; }

/* Responsive — tablet & mobile (≤1024px) */
@media (max-width: 1024px) {
  main {
    max-width: 100%;
    border-left: 0;
    border-right: 0;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-nav-toggle { display: block; position: relative; z-index: 212; }
  .site-header__cta { display: none; }
  .site-header { overflow: visible; }
  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 211;
    flex: none;
    flex-direction: column;
    background: var(--sumi);
    padding: 16px 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  }
  .site-nav:not(.is-open) { display: none !important; }
  .site-nav.is-open { display: flex !important; }
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-header__start { min-width: 0; }
  .site-logo--image,
  .site-logo--brand { justify-self: center; }
      .site-header__actions { justify-self: end; margin-left: 0; }
  .site-header__contact { display: none; }
  .site-header__tours { display: none; }
  .hero__main {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-home .hero-band {
    padding: 22px 0 30px;
  }
  .page-home .hero__main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .page-home .hero__copy::before {
    margin-bottom: 14px;
    padding: 7px 12px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }
  .page-home .hero__title {
    max-width: none;
    font-size: clamp(2.05rem, 12vw, 3.1rem);
    line-height: 1.02;
  }
      .hero__stage { padding: 4px 0; gap: 16px; }
  .hero__title { font-size: clamp(1.75rem, 7.5vw, 2.15rem); }
  .hero__subtitle { font-size: 0.94rem; line-height: 1.55; }
  .hero__eyebrow {
    font-size: 10px;
    letter-spacing: 0.06em;
    line-height: 1.45;
    margin-bottom: 10px;
  }
  .hero__trust { display: none; }
  .page-home .hero-trust__list {
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 14px 0;
    scroll-snap-type: x mandatory;
  }
  .page-home .hero-trust__list li {
    flex: 0 0 42%;
    scroll-snap-align: start;
  }
  .page-home .home-hero__layout {
    gap: 22px;
  }
  .page-home .home-hero__aside {
    justify-items: start;
  }
  .page-home .home-hero__note {
    max-width: 100%;
  }
  .page-home .home-hero__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-home .home-tours__desktop {
    display: none;
  }
  .page-home .home-tours__mobile {
    display: block;
  }
  .page-home .home-guides__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-home .home-guides__photos {
    max-width: 440px;
    margin: 0 auto;
  }
  .page-home .home-guides__quote {
    font-size: 0.9rem;
  }
  .page-home .home-custom {
    grid-template-columns: 1fr;
  }
  .page-home .home-custom__actions {
    justify-content: flex-start;
  }
  .page-home .home-experiences__editorial {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .page-home .home-social__grid {
    grid-template-columns: 1fr;
  }
  .page-home .home-social .reviews-scroll-mobile {
    display: block;
  }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 20px 12px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .team {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .team__text {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
  .team__photos {
    width: 100%;
    max-width: min(400px, 100%);
    margin: 0 auto;
  }
  .features.features--desktop { display: none !important; }
  .features-scroll-mobile { display: block; }
  .tour-grid.tour-grid--desktop,
  .reviews-grid.reviews-grid--desktop,
  .article-grid.article-grid--desktop {
    display: none !important;
  }
  .reviews-scroll-mobile { display: block; }
  .h-scroll--reviews .review { min-height: auto; }
  .reviews-score {
    text-align: left;
    width: 100%;
  }
  .tour-scroll-mobile {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .article-scroll-mobile {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .h-scroll { padding-left: 28px; padding-right: 28px; }
  .h-scroll__nav { width: 36px; height: 36px; font-size: 1.3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-items { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-stats { grid-template-columns: 1fr; max-width: none; }
  .article-editorial-head { grid-template-columns: 1fr; }
  .article-header { margin-bottom: 36px; padding-bottom: 24px; }
  .article-aside { order: 2; }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px 32px;
  }
  .site-footer__links a,
  .site-footer__contact a {
    display: block;
    padding: 4px 0;
  }
  .site-footer__copy {
    padding: 18px 16px;
    font-size: 0.78rem;
    line-height: 1.5;
    word-break: break-word;
  }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .video-section-head { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 1025px) {
  .hero__main {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  }
      .hero__title { font-size: clamp(2.4rem, 3.8vw, 3.35rem); }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero__actions .btn { width: 100%; }
  .page-home .home-hero__facts {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }
  .page-home .home-hero__facts li {
    min-height: 0;
  }
  .page-home .home-social__panel {
    padding: 18px 14px;
  }
  .tour-card__foot { flex-direction: column; align-items: stretch; }
  .tour-card__actions { flex-direction: column; }
  .tour-card__actions .btn { width: 100%; }
  .h-scroll--videos .video-card { flex-basis: min(260px, 82vw); }
}

/* Tour detail page */
.tour-page { overflow: hidden; }

.tour-hero {
  background: var(--washi);
  border-bottom: 1px solid var(--line);
}
.tour-hero__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tour-hero__figure {
  margin: 0;
  line-height: 0;
}
.tour-hero__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-position: center;
}
.tour-hero--empty {
  padding: 48px 0;
}
.tour-hero__fallback-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--sumi);
  text-wrap: balance;
}
.tour-hero__fallback-date {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.tour-meta {
  background: var(--washi);
  border-bottom: 1px solid var(--line);
}
.tour-meta__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 28px 0;
}
.tour-meta__grid > div {
  padding: 8px 20px;
  border-right: 1px solid var(--line);
}
.tour-meta__grid > div:last-child { border-right: 0; }
.tour-meta__grid dt {
  margin: 0 0 8px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.tour-meta__grid dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--sumi);
}
.tour-meta__price {
  color: var(--accent) !important;
  font-weight: 600;
}

.tour-split__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.tour-kicker {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}
.tour-split__label h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.04em;
  color: var(--sumi);
}
.tour-split__hint {
  margin: 20px 0 0;
  max-width: 420px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.68;
}
.tour-split__panel { min-width: 0; }

.tour-prose {
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--ink);
}
.tour-prose p { margin: 0 0 1em; }
.tour-prose p:last-child { margin-bottom: 0; }

.tour-service-card,
.service-card {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
  padding: 28px 32px;
  margin-bottom: 16px;
}
.tour-service-card:last-child,
.service-card:last-child { margin-bottom: 0; }
.tour-service-card h3,
.tour-service-card h4,
.service-card h3,
.service-card h4 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--sumi);
}
.tour-service ul,
.service-card ul {
  margin: 12px 0 0;
  padding-left: 1.2em;
}
.tour-service li,
.service-card li { margin-bottom: 6px; }

.tour-days { display: flex; flex-direction: column; }
.tour-day {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.tour-day:first-child { padding-top: 0; }
.tour-day:last-child { border-bottom: 0; padding-bottom: 0; }
.tour-day__num span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.tour-day__num strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--sumi);
}
.tour-day__body h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sumi);
}
.tour-day__body p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.tour-day__loc {
  align-self: center;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(92, 82, 72, 0.55);
  white-space: nowrap;
}

.tour-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.tour-value {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--line);
  padding: 28px 24px;
}
.tour-value__num {
  margin: 0 0 12px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.tour-value h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sumi);
}
.tour-value p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.tour-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.tour-gallery__item { margin: 0; }
.tour-gallery__item--wide { grid-column: span 2; }
.tour-gallery__frame {
  aspect-ratio: var(--photo-aspect);
  border-radius: var(--radius);
}
.tour-gallery__item--wide .tour-gallery__frame { aspect-ratio: var(--photo-aspect); }
.tour-gallery__frame img {
  object-fit: contain;
  object-position: center;
}
.tour-gallery figcaption {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.tour-page-cta {
  background: var(--sumi);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.tour-page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 92% 50%, rgba(179, 32, 33, 0.22) 0%, transparent 55%);
  pointer-events: none;
}
.tour-page-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px 48px;
  align-items: center;
}
.tour-page-cta h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.04em;
}
.tour-page-cta h2 .accent { color: var(--accent); }
.tour-page-cta p {
  margin: 0;
  color: var(--text-muted-on-dark);
  max-width: 520px;
}
.tour-page-cta__note {
  margin-top: 16px !important;
  font-size: 0.92rem;
  max-width: 560px;
}
.tour-page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.tour-page-cta__back {
  grid-column: 1 / -1;
  margin: 8px 0 0 !important;
  font-size: 0.88rem;
}
.tour-page-cta__back a {
  color: var(--text-muted-on-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.tour-page-cta__back a:hover { color: var(--text-on-dark); }

@media (max-width: 1024px) {
  .tour-meta__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tour-meta__grid > div:nth-child(3) { border-right: 0; }
  .tour-meta__grid > div:nth-child(4),
  .tour-meta__grid > div:nth-child(5) {
    border-top: 1px solid var(--line);
    border-right: 0;
  }
  .tour-meta__grid > div:nth-child(4) { border-right: 1px solid var(--line); }
  .tour-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tour-gallery__item--wide { grid-column: span 2; }
}

/* Hero fullscreen */
.hero-band--fullscreen {
  position: relative;
  min-height: clamp(420px, 72vh, 720px);
  padding: 0;
  border-bottom: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 8, 6, 0.82) 0%, rgba(10, 8, 6, 0.55) 52%, rgba(10, 8, 6, 0.35) 100%);
}
.hero-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-top: clamp(32px, 6vw, 64px);
  padding-bottom: clamp(32px, 6vw, 64px);
}
.hero-fullscreen {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 280px);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  width: 100%;
}
.hero-fullscreen__copy { max-width: 640px; }
.hero-fullscreen__copy .hero__title {
  color: var(--text-on-dark);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}
.hero-fullscreen__copy .hero__subtitle,
.hero-fullscreen__copy .hero__eyebrow { color: rgba(240, 232, 219, 0.88); }
.hero-fullscreen__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-fullscreen__logo {
  margin: 0;
  justify-self: end;
}
.hero-fullscreen__logo img {
  display: block;
  width: min(280px, 36vw);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  animation: logoWave 4.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-fullscreen__logo img { animation: none; }
}
.hero-trust {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 24%, rgba(166, 28, 29, 0.12) 50%, transparent 76%, rgba(255, 255, 255, 0.04)),
    var(--sumi);
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-trust__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 4vw, 40px);
  margin: 0;
  padding: 16px 0;
  list-style: none;
  font-size: 0.92rem;
}
.hero-trust__list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-on-dark);
}
.page-home .hero-trust__list li {
  min-width: 112px;
  color: rgba(240, 232, 219, 0.78);
  text-align: center;
}
.page-home .hero-trust__list strong {
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Custom tour band */
.custom-tour-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, rgba(166, 28, 29, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(179, 32, 33, 0.08) 0%, rgba(138, 18, 25, 0.04) 100%);
  border-block: 1px solid var(--line);
}
.custom-tour-band::before {
  content: '';
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(166, 28, 29, 0.12);
  pointer-events: none;
}
.custom-tour-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding-block: clamp(32px, 5vw, 48px);
}
.custom-tour-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.custom-tour-band__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.12;
  margin: 0 0 12px;
  color: var(--sumi);
  text-wrap: balance;
}
.custom-tour-band__copy p:not(.section-head__num) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.72;
  max-width: 560px;
}

/* Catalog toolbar */
.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 20px 0 28px;
}
.catalog-toolbar__label {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-right: 4px;
}
.catalog-toolbar__btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.catalog-toolbar__btn:hover { border-color: var(--accent); color: var(--accent); }
.catalog-toolbar__btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Tour page theme particles */
.tour-hero-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}
.tour-hero--media .tour-theme-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.tour-theme-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.tour-particle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.88;
  pointer-events: none;
}
.tour-particle--anim-fall {
  top: -10%;
  animation: themeFall linear infinite;
}
.tour-particle--anim-sakura-sway {
  top: -10%;
  animation: themeSakuraSway linear infinite;
}
.tour-particle--anim-koyo-spin {
  top: -10%;
  animation: themeKoyoSpin linear infinite;
}
.tour-particle--anim-ginkgo-flutter {
  top: -10%;
  animation: themeGinkgoFlutter linear infinite;
}
.tour-particle--anim-wisteria-rise {
  bottom: -15%;
  top: auto;
  animation: themeWisteriaRise ease-in-out infinite;
}
.tour-particle--anim-mist-drift {
  top: 35%;
  animation: themeMistDrift ease-in-out infinite;
}
.tour-particle--anim-neon-twinkle {
  animation: themeNeonTwinkle ease-in-out infinite;
}
.tour-theme-fx--neon .tour-particle--1 { top: 10%; }
.tour-theme-fx--neon .tour-particle--2 { top: 24%; }
.tour-theme-fx--neon .tour-particle--3 { top: 38%; }
.tour-theme-fx--neon .tour-particle--4 { top: 52%; }
.tour-theme-fx--neon .tour-particle--5 { top: 66%; }
.tour-theme-fx--neon .tour-particle--6 { top: 18%; }
.tour-theme-fx--neon .tour-particle--7 { top: 44%; }
.tour-theme-fx--neon .tour-particle--8 { top: 72%; }
.tour-theme-fx--neon .tour-particle--9 { top: 30%; }
.tour-theme-fx--neon .tour-particle--10 { top: 58%; }
.tour-theme-fx--neon .tour-particle--11 { top: 14%; }
.tour-theme-fx--neon .tour-particle--12 { top: 48%; }
.tour-theme-fx--neon .tour-particle--13 { top: 62%; }
.tour-theme-fx--neon .tour-particle--14 { top: 36%; }
.tour-theme-fx--neon .tour-particle--15 { top: 78%; }
.tour-theme-fx--neon .tour-particle--16 { top: 22%; }
.tour-particle--anim-bat-fly {
  top: 18%;
  animation: themeBatFly linear infinite;
}
.tour-particle--anim-pumpkin-glow {
  top: auto;
  bottom: 10%;
  animation: themePumpkinGlow ease-in-out infinite;
}
.tour-theme-fx--halloween::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 110%, rgba(255, 107, 26, 0.22) 0%, transparent 55%);
  animation: themeHalloweenGlow 4s ease-in-out infinite;
  pointer-events: none;
}
.tour-theme-fx--neon::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 110, 180, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(94, 231, 255, 0.1) 0%, transparent 35%);
  pointer-events: none;
}
.tour-theme-fx--fuji::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 45%, rgba(255, 255, 255, 0.06) 100%);
  pointer-events: none;
}
.tour-particle--ginkgo { width: 22px; height: 22px; }
.tour-particle--wisteria { width: 16px; height: 24px; }
.tour-particle--fuji { width: 48px; height: 28px; opacity: 0.55; }
.tour-particle--halloween.tour-particle--anim-bat-fly { width: 26px; height: 18px; }
.tour-particle--halloween.tour-particle--anim-pumpkin-glow { width: 24px; height: 24px; }
.tour-particle--neon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-image: none !important;
  box-shadow: 0 0 8px currentColor;
}
.tour-particle--neon-pink { background: #ff6eb4; color: #ff6eb4; }
.tour-particle--neon-cyan { background: #5ee7ff; color: #5ee7ff; }
.tour-particle--neon-gold { background: #ffd166; color: #ffd166; }
.tour-particle--1 { left: 6%; animation-duration: 9s; animation-delay: 0s; }
.tour-particle--2 { left: 14%; animation-duration: 11s; animation-delay: -2s; }
.tour-particle--3 { left: 22%; animation-duration: 8s; animation-delay: -4s; }
.tour-particle--4 { left: 30%; animation-duration: 12s; animation-delay: -1s; }
.tour-particle--5 { left: 38%; animation-duration: 10s; animation-delay: -3s; }
.tour-particle--6 { left: 46%; animation-duration: 9s; animation-delay: -5s; }
.tour-particle--7 { left: 54%; animation-duration: 11s; animation-delay: -2.5s; }
.tour-particle--8 { left: 62%; animation-duration: 8.5s; animation-delay: -1.5s; }
.tour-particle--9 { left: 70%; animation-duration: 10.5s; animation-delay: -3.5s; }
.tour-particle--10 { left: 78%; animation-duration: 9.5s; animation-delay: -0.5s; }
.tour-particle--11 { left: 86%; animation-duration: 10s; animation-delay: -4.5s; }
.tour-particle--12 { left: 92%; animation-duration: 8s; animation-delay: -2s; }
.tour-particle--13 { left: 18%; animation-duration: 7s; animation-delay: -6s; }
.tour-particle--14 { left: 48%; animation-duration: 13s; animation-delay: -1s; }
.tour-particle--15 { left: 58%; animation-duration: 6.5s; animation-delay: -3.2s; }
.tour-particle--16 { left: 88%; animation-duration: 5.5s; animation-delay: -2.8s; }
@keyframes themeFall {
  0% { transform: translateY(-10%) rotate(0deg); opacity: 0; }
  8% { opacity: 0.9; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0.15; }
}
@keyframes themeSakuraSway {
  0% { transform: translateY(-10%) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.9; }
  50% { transform: translateY(50vh) translateX(18px) rotate(120deg); }
  100% { transform: translateY(110vh) translateX(-12px) rotate(240deg); opacity: 0.15; }
}
@keyframes themeKoyoSpin {
  0% { transform: translateY(-10%) rotate(0deg); opacity: 0; }
  10% { opacity: 0.95; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0.2; }
}
@keyframes themeGinkgoFlutter {
  0% { transform: translateY(-10%) translateX(0) rotate(-20deg); opacity: 0; }
  12% { opacity: 0.9; }
  35% { transform: translateY(35vh) translateX(24px) rotate(10deg); }
  70% { transform: translateY(75vh) translateX(-18px) rotate(-15deg); }
  100% { transform: translateY(110vh) translateX(8px) rotate(25deg); opacity: 0.12; }
}
@keyframes themeWisteriaRise {
  0% { transform: translateY(20%) translateX(0) scale(0.85); opacity: 0; }
  20% { opacity: 0.75; }
  100% { transform: translateY(-90%) translateX(10px) scale(1); opacity: 0; }
}
@keyframes themeMistDrift {
  0% { transform: translateX(-18%) translateY(0); opacity: 0.25; }
  50% { opacity: 0.65; }
  100% { transform: translateX(18%) translateY(-6px); opacity: 0.25; }
}
@keyframes themeNeonTwinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.75); box-shadow: 0 0 4px currentColor; }
  50% { opacity: 1; transform: scale(1.25); box-shadow: 0 0 16px currentColor; }
}
@keyframes themeBatFly {
  0% { transform: translateX(-120%) translateY(0) scaleX(1); opacity: 0; }
  8% { opacity: 0.85; }
  48% { transform: translateX(48vw) translateY(-10px) scaleX(1); }
  52% { transform: translateX(52vw) translateY(-10px) scaleX(-1); }
  92% { opacity: 0.85; }
  100% { transform: translateX(120vw) translateY(6px) scaleX(-1); opacity: 0; }
}
@keyframes themePumpkinGlow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(255, 107, 26, 0.35)); opacity: 0.65; }
  50% { transform: scale(1.12); filter: drop-shadow(0 0 16px rgba(255, 107, 26, 0.9)); opacity: 1; }
}
@keyframes themeHalloweenGlow {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  .tour-particle,
  .tour-theme-fx--halloween::before { animation: none; opacity: 0.35; }
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .page-home   .page-home.motion-ready [data-home-motion] *,
  .page-home.motion-ready .hero-trust__list li {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Content padding — text away from block edges */
.tour-split__panel,
.tour-prose,
.article-body,
.experience-card__body,
.custom-tour-band__copy {
  padding-inline: clamp(16px, 3vw, 28px);
}
.tour-service-card,
.service-card {
  padding-inline: clamp(20px, 3vw, 32px);
}

@media (max-width: 768px) {
  .custom-tour-band__inner { grid-template-columns: 1fr; }
  .custom-tour-band__actions { justify-content: flex-start; }
  .contact-modal__grid { grid-template-columns: 1fr; }
  .tour-meta__grid {
    grid-template-columns: 1fr 1fr;
    padding: 16px 0;
  }
  .tour-meta__grid > div {
    padding: 14px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .tour-meta__grid > div:nth-child(odd) { border-right: 1px solid var(--line); }
  .tour-meta__grid > div:nth-child(4),
  .tour-meta__grid > div:nth-child(5) { border-top: 0; }
  .tour-meta__grid > div:last-child { grid-column: 1 / -1; border-right: 0; }
  .tour-split__grid { grid-template-columns: 1fr; gap: 28px; }
  .tour-day {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }
  .tour-day__loc {
    grid-column: 2;
    justify-self: start;
    margin-top: -4px;
  }
  .tour-values { grid-template-columns: 1fr; }
  .tour-page-cta__inner { grid-template-columns: 1fr; }
  .tour-page-cta__actions { justify-content: stretch; flex-direction: column; }
  .tour-page-cta__actions .btn { width: 100%; }
}

/* Phase 3 — brand-led premium system */
.site-logo--wordmark {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  color: var(--text-on-dark);
}
.site-logo__mark {
  width: 48px;
  height: 36px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  flex-shrink: 0;
}
.site-logo__text {
  display: grid;
  gap: 2px;
}
.site-logo__main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1;
  letter-spacing: 0.04em;
}

.page-home main,
.page-book main,
.page-blog main,
.page-contact main,
.page-tour main {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 8%, rgba(179, 32, 33, 0.08), transparent 26rem),
    radial-gradient(circle at 10% 38%, rgba(201, 162, 39, 0.1), transparent 24rem),
    linear-gradient(180deg, var(--brand-cream), var(--washi) 46%, var(--washi-2));
}
.page-home main::before,
.page-book main::before,
.page-blog main::before,
.page-contact main::before,
.page-tour main::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
  background:
    repeating-linear-gradient(90deg, rgba(18, 16, 13, 0.018) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 70% 12%, rgba(201, 162, 39, 0.12), transparent 10rem);
  mix-blend-mode: multiply;
}
.page-home main::after,
.page-book main::after,
.page-blog main::after,
.page-contact main::after,
.page-tour main::after {
  content: '';
  position: fixed;
  left: max(0px, calc(50% - 720px));
  right: max(0px, calc(50% - 720px));
  bottom: -2rem;
  height: clamp(110px, 16vw, 220px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.07;
  background:
    radial-gradient(80px 42px at 8% 80%, transparent 48%, var(--brand-navy) 50% 66%, transparent 68%),
    radial-gradient(120px 56px at 24% 74%, transparent 48%, var(--brand-navy) 50% 66%, transparent 68%),
    radial-gradient(96px 46px at 42% 82%, transparent 48%, var(--brand-navy) 50% 66%, transparent 68%),
    radial-gradient(140px 62px at 66% 78%, transparent 48%, var(--brand-navy) 50% 66%, transparent 68%),
    radial-gradient(110px 50px at 88% 80%, transparent 48%, var(--brand-navy) 50% 66%, transparent 68%);
  transform: translate3d(0, 0, 0);
  animation: ambientWaves 12s ease-in-out infinite alternate;
}
@keyframes ambientWaves {
  from { transform: translate3d(-1.8%, 0, 0); }
  to { transform: translate3d(1.8%, -4px, 0); }
}

.page-home .hero-band {
  background:
    radial-gradient(circle at 78% 18%, rgba(179, 32, 33, 0.13), transparent 28%),
    linear-gradient(135deg, var(--brand-cream), rgba(240, 232, 219, 0.75));
}
.page-home .hero__copy::before {
  content: 'Япония глубже, чем кажется';
}
.page-home .home-hero__layout { align-items: center; }
.page-home .home-hero__aside { justify-items: center; }
.page-home .home-hero__kicker {
  font-family: var(--font-serif);
  text-transform: none;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  color: var(--brand-gold);
  background: rgba(255, 255, 255, 0.46);
}
.page-home .home-hero__note {
  max-width: 52ch;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  color: var(--ink-soft);
  border-left-color: rgba(201, 162, 39, 0.75);
}


.brand-paw-hero {
  position: relative;
  width: min(560px, 100%);
  margin: 0;
  border-radius: 30px;
  background: rgba(249, 243, 227, 0.46);
  box-shadow: 0 30px 90px rgba(23, 20, 17, 0.14);
  overflow: hidden;
  transform: translate3d(var(--brand-parallax-x, 0), var(--brand-parallax-y, 0), 0);
}
.brand-paw-hero::before {
  content: '';
  position: absolute;
  inset: -18%;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(179, 32, 33, 0.12), transparent 34%),
    conic-gradient(from 0deg, transparent 0 10deg, rgba(201, 162, 39, 0.12) 11deg 12deg, transparent 13deg 24deg);
  opacity: 0.55;
  animation: pawHeroRays 120s linear infinite;
}
.brand-paw-hero__img,
.brand-paw-hero__gif,
.brand-paw-hero picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}
.brand-paw-hero__img,
.brand-paw-hero__gif {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 30px;
}
/* Soft premium halo behind the brand hero */
.brand-paw-hero::after {
  content: '';
  position: absolute;
  inset: 12%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.18), transparent 62%);
  filter: blur(22px);
  opacity: 0.8;
  pointer-events: none;
  animation: brandHaloPulse 7s ease-in-out infinite;
}
@keyframes pawHeroRays {
  to { transform: rotate(360deg); }
}
@keyframes brandHaloPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.06); opacity: 0.95; }
}

.page-home .home-guides__photos {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}
.page-home .home-guides__photos .team__photo {
  transform: none;
  margin: 0;
  aspect-ratio: 3 / 4;
  display: grid;
  align-content: stretch;
}
.page-home .home-guides__photos .team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .home-guides__photos figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(18, 16, 13, 0.72);
  color: var(--text-on-dark);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.page-home .home-social__panel {
  min-width: 0;
  overflow: visible;
}
.video-scroll-mobile,
.page-home .home-social .h-scroll--videos {
  min-width: 0;
  width: 100%;
}
.page-home .home-social .h-scroll--videos .h-scroll__track {
  touch-action: pan-x;
}

.page-hero--premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) 0 clamp(46px, 6vw, 78px);
  background:
    radial-gradient(circle at 88% 20%, rgba(179, 32, 33, 0.1), transparent 24rem),
    linear-gradient(135deg, var(--brand-cream), rgba(232, 223, 206, 0.9));
}
.page-hero--premium::after {
  content: '';
  position: absolute;
  inset: auto 4% -22% auto;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 12deg, rgba(201, 162, 39, 0.16) 13deg 14deg, transparent 15deg 28deg);
  opacity: 0.55;
  z-index: -1;
  animation: pawHeroRays 120s linear infinite;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}
.page-hero__aside {
  border: 1px solid rgba(23, 20, 17, 0.12);
  background: rgba(255, 255, 255, 0.52);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow-soft);
}
.page-hero__aside strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  color: var(--sumi);
  margin-bottom: 10px;
}
.page-hero__aside span {
  display: block;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 18px;
}

.book-featured__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 22px;
}
.book-featured__side {
  display: grid;
  gap: 18px;
}
.book-catalog .catalog-toolbar {
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  width: fit-content;
  max-width: 100%;
}

.blog-featured {
  margin-bottom: clamp(28px, 5vw, 52px);
}
.blog-featured .article-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
}
.blog-featured .article-card__cover {
  border-bottom: 0;
  border-right: 1px solid var(--line);
}
.blog-featured .article-card__cover.img-frame {
  min-height: 320px;
}
.blog-featured .article-card__body {
  padding: clamp(28px, 4vw, 48px);
  align-self: center;
}
.blog-featured .article-card h3 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.contact-guides {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}
.contact-guide {
  border: 1px solid var(--line);
  background: rgba(249, 243, 227, 0.62);
  padding: 18px;
  display: grid;
  gap: 10px;
}
.contact-guide span {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--sumi);
}
.contact-faq {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.contact-faq h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  color: var(--sumi);
}
.contact-faq p {
  margin: 0;
  color: var(--ink-soft);
}
.contact-map {
  box-shadow: 0 22px 60px rgba(23, 20, 17, 0.12);
}

/* Tour hero: photo block and copy block are always separate; photo centered */
.tour-hero--media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(16px, 2.5vw, 28px);
  background: var(--brand-cream);
  border-bottom: 1px solid var(--line);
}
.tour-hero--media .tour-hero__figure {
  margin: 0 auto;
  width: min(100%, calc(min(72vh, 820px) * 4 / 3));
  max-width: 100%;
  max-height: min(72vh, 820px);
  aspect-ratio: var(--photo-aspect);
  line-height: 0;
  border-radius: var(--radius);
}
.tour-hero--media .tour-hero__img {
  display: block;
}
.tour-hero--media .tour-theme-fx {
  z-index: 1;
}
.tour-hero-intro {
  background: var(--washi);
  border-bottom: 1px solid var(--line);
  padding: clamp(28px, 4.6vw, 52px) 0;
}
.tour-hero-intro__inner {
  max-width: 760px;
}
.tour-hero-intro h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--sumi);
}
.tour-hero-intro__lead {
  margin: 0 0 24px;
  max-width: 640px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.72;
}
.tour-booking-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(249, 243, 227, 0.92);
  backdrop-filter: blur(14px);
}
.tour-booking-bar span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

@media (max-width: 1024px) {
  .page-hero__grid,
  .book-featured__grid,
  .blog-featured .article-card {
    grid-template-columns: 1fr;
  }
  .blog-featured .article-card__cover {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .page-home .home-guides__photos {
    max-width: min(560px, 100%);
  }
  .brand-paw-hero {
    width: min(520px, 100%);
  }
}

@media (max-width: 640px) {
  .site-logo__main { font-size: 1rem; }
  .site-logo__sub { font-size: 0.54rem; letter-spacing: 0.18em; }
  .brand-paw-hero {
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(23, 20, 17, 0.14);
  }
  .page-home .home-guides__photos,
  .contact-guides {
    grid-template-columns: 1fr;
  }
  .h-scroll {
    padding-left: 10px;
    padding-right: 10px;
    overflow: visible;
  }
  .h-scroll__nav {
    display: none;
  }
  .h-scroll--videos .video-card {
    flex-basis: min(300px, 86vw);
  }
  .tour-booking-bar {
    top: auto;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-paw-hero,
  .brand-paw-hero::before,
  .brand-paw-hero::after,
  .brand-paw-hero__img,
  .brand-paw-hero__gif,
  .page-home main::after,
  .page-book main::after,
  .page-blog main::after,
  .page-contact main::after,
  .page-tour main::after,
  .page-hero--premium::after {
    animation: none !important;
    transform: none !important;
  }
}

/* ============================================================
   PREMIUM POLISH v33 — desktop refinements + distinct mobile UX
   ============================================================ */

/* --- Desktop: refined section heads with gold hairline --- */
.section-head__num {
  position: relative;
  display: inline-block;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.home-chapter .section-head__num::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--accent, #b32021), rgba(201, 162, 39, 0.7));
  border-radius: 2px;
}

/* Slightly richer card lift on hover (desktop pointers only) */
@media (hover: hover) and (min-width: 1025px) {
  .tour-card,
  .experience-card,
  .feature {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s ease;
    will-change: transform;
  }
  .tour-card:hover,
  .experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 70px rgba(23, 20, 17, 0.18);
  }
  .feature:hover {
    transform: translateY(-5px);
  }
  .btn-book,
  .btn-outline,
  .btn-outline-light {
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.35s ease, background 0.3s ease, color 0.3s ease;
  }
  .btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(179, 32, 33, 0.32);
  }
}

/* Hero title premium kerning */
.page-home .hero__title {
  letter-spacing: -0.015em;
}

/* ============================================================
   MOBILE (<= 760px): a distinct, premium, app-like experience
   ============================================================ */
@media (max-width: 760px) {
  /* Give content breathing room above the sticky CTA bar */
  body { padding-bottom: 76px; }

  .page-home .home-hero__stage {
    padding-top: 10px;
  }

  /* Cinematic centered hero, video leads the story */
  .page-home .home-hero__layout {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .page-home .home-hero__routes {
    display: block;
    order: 0;
    width: 100%;
    margin: 0;
    padding: 0 8px;
    color: var(--accent);
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.45;
    text-transform: uppercase;
  }
  .page-home .home-hero__eyebrow--desktop { display: none; }
  .page-home .home-hero__copy { order: 2; }
  .page-home .home-hero__aside { order: 1; }
  .page-home .home-hero__facts { order: 3; }

  .page-home .home-hero__custom-cta {
    margin: 2px auto 12px;
    max-width: min(100%, 21em);
  }
  .page-home .home-hero__custom-cta-btn {
    font-size: clamp(1.08rem, 4.8vw, 1.22rem);
    line-height: 1.32;
    font-weight: 700;
    text-wrap: balance;
  }

  .page-home .hero__title {
    font-size: clamp(2.1rem, 9vw, 3rem);
    line-height: 1.04;
  }
  .page-home .home-hero__kicker {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }
  .page-home .hero__actions {
    justify-content: center;
  }
  .page-home .home-hero__copy .hero__actions { display: none; } /* replaced by sticky CTA */

  .brand-paw-hero {
    width: min(420px, 84vw);
    margin: 0 auto;
    border-radius: 26px;
  }
  .home-hero__note {
    text-align: center;
    border-left: 0;
    padding: 0 6px;
    margin-inline: auto;
    max-width: 40ch;
  }

  /* Hero facts as a refined 3-up chip row */
  .page-home .home-hero__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0;
    margin-top: 6px;
  }
  .page-home .home-hero__facts li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 12px 6px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(23, 20, 17, 0.08);
    backdrop-filter: blur(6px);
  }
  .page-home .home-hero__facts li strong {
    font-size: 1rem;
    line-height: 1.1;
  }
  .page-home .home-hero__facts li span {
    font-size: 0.66rem;
    line-height: 1.25;
    opacity: 0.8;
  }

  /* Tighter, editorial section rhythm */
  .section { padding-top: 44px; padding-bottom: 44px; }
  .section-head h2 { font-size: clamp(1.7rem, 7.5vw, 2.3rem); }

  /* Rails: snap with a peek of the next card = premium feel */
  .h-scroll__track {
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
  }
  .h-scroll__track > * {
    scroll-snap-align: start;
  }

  /* Trust bar as a soft pill strip */
  .hero-trust__list {
    gap: 10px;
  }

  /* CTA band stacks cleanly */
  .cta-band__inner { text-align: center; }
  .cta-band__actions { justify-content: center; }
}

/* --- Sticky premium mobile CTA bar --- */
.mobile-cta {
  display: none;
}
@media (max-width: 760px) {
  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 950;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 8px;
    padding: 8px;
    border-radius: 20px;
    background: rgba(23, 20, 17, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: mobileCtaIn 0.6s cubic-bezier(0.19, 1, 0.22, 1) both;
  }
  .mobile-cta__link,
  .mobile-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 14px;
    border-radius: 14px;
    text-decoration: none;
    letter-spacing: 0.01em;
  }
  .mobile-cta__link {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }
  .mobile-cta__btn {
    background: linear-gradient(135deg, var(--accent, #b32021), #8a1219);
    color: #fff;
    box-shadow: 0 10px 24px rgba(179, 32, 33, 0.4);
  }
  .mobile-cta__btn:active,
  .mobile-cta__link:active { transform: translateY(1px); }
  .mobile-cta__ico { font-size: 1.05rem; }
}
@keyframes mobileCtaIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-cta { animation: none; }
}

/* Per-field text color roles (admin «Тексты сайта» → цвет надписи) */
.text-role-accent { color: var(--role-accent, var(--accent)); }
.text-role-accent-hover { color: var(--role-accent-hover, var(--accent-hover)); }
.text-role-gold { color: var(--role-gold, var(--brand-gold)); }
.text-role-navy { color: var(--role-navy, var(--brand-navy)); }
.text-role-ink { color: var(--role-ink, var(--ink)); }
.text-role-ink-muted { color: var(--role-ink-muted, var(--ink-muted)); }
.text-role-wa { color: var(--role-wa, var(--wa)); }
.text-role-sumi { color: var(--role-sumi, var(--sumi)); }
.section-head .accent.text-role-gold { color: var(--role-gold, var(--brand-gold)); }
.section-head .accent.text-role-navy { color: var(--role-navy, var(--brand-navy)); }
.section-head .accent.text-role-ink { color: var(--role-ink, var(--ink)); }
.section-head .accent.text-role-ink-muted { color: var(--role-ink-muted, var(--ink-muted)); }
.section-head .accent.text-role-wa { color: var(--role-wa, var(--wa)); }
.section-head .accent.text-role-sumi { color: var(--role-sumi, var(--sumi)); }
.text-role-coral { color: var(--role-coral, var(--brand-coral)); }
.text-role-cream { color: var(--role-cream, var(--brand-cream)); }
.text-role-washi { color: var(--role-washi, var(--washi)); }
.text-role-tg { color: var(--role-tg, var(--tg)); }
.section-head .accent.text-role-coral { color: var(--role-coral, var(--brand-coral)); }
.section-head .accent.text-role-cream { color: var(--role-cream, var(--brand-cream)); }
.section-head .accent.text-role-washi { color: var(--role-washi, var(--washi)); }
.section-head .accent.text-role-tg { color: var(--role-tg, var(--tg)); }
