/* ============================================================
   Design tokens — Traditional Japan palette
   ============================================================ */
:root {
  --cream:        #F5E6D3;   /* keep — used for text on dark bg */
  --beige:        #EDD9C0;   /* light: alternate section bg */
  --beige-dark:   #C8A882;   /* light: border */
  --stone:        #C0392B;   /* vermilion — rare accent, decorative borders, icons */
  --stone-light:  rgba(192, 57, 43, 0.12);   /* light vermilion tint */
  --brown:        #5D4037;   /* chestnut */
  --forest:       #264E8C;   /* indigo — primary CTA, buttons, active links */
  --forest-dark:  #1D3D70;   /* dark indigo — hover */
  --forest-light: #3A6BBE;   /* light indigo */
  --dark:         #1A1A2E;   /* midnight ink — nav, hero, footer */
  --text:         #5D4037;   /* light: body copy — chestnut */
  --text-muted:   #8D6E63;   /* light: muted warm */
  --white:        #FFFFFF;

  --bg:           #F5E6D3;   /* light: cream body bg */
  --surface:      #FFFFFF;   /* light: card surfaces */
  --heading:      #1A1A2E;   /* light: heading text */
  --nav-scrolled: rgba(245, 230, 211, 0.96);  /* light: scrolled nav bg */

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 12px 48px rgba(0, 0, 0, 0.12);

  --ease: 0.3s ease;
  --max-w: 1180px;
}

[data-theme="dark"] {
  --bg:           #1C1815;
  --surface:      #27231E;
  --heading:      #F5E6D3;
  --beige:        #252018;
  --beige-dark:   #4A4540;
  --text:         #C4AD94;
  --text-muted:   #8A7A68;
  --nav-scrolled: rgba(28, 24, 20, 0.97);
}
[data-theme="dark"] .section-eyebrow { color: var(--forest-light); }
/* Slightly lighter blue for secondary buttons on dark cards */
[data-theme="dark"] .btn-secondary { color: #5B82C7; border-color: #5B82C7; }
[data-theme="dark"] .btn-secondary:hover { background: #5B82C7; border-color: #5B82C7; color: var(--white); }

/* WhatsApp contact method: dark green tile, brand-green label */
[data-theme="dark"] .contact-method-icon--wa { background: #0E4429; }
[data-theme="dark"] .contact-method:has(.contact-method-icon--wa) strong { color: #25D366; }

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 100px 0; }

/* ============================================================
   Typography helpers
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.18;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--forest);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-sub { margin: 0 auto; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--ease), border-color var(--ease),
              color var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-20deg);
  animation: btn-shimmer 3.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-shimmer {
  0%   { left: -120%; }
  45%  { left: 160%; }
  100% { left: 160%; }
}
.btn-primary:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(38, 78, 140, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-secondary:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   Navigation
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  transition: background var(--ease), box-shadow var(--ease);
}

.header.scrolled {
  background: var(--nav-scrolled);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}
.header.scrolled .logo-main { color: var(--heading); }
.header.scrolled .logo-sub  { color: var(--forest); }
.header.scrolled .nav-link  { color: var(--text); }
.header.scrolled .nav-link:hover { background: var(--beige); color: var(--forest); }
.header.scrolled .lang-toggle { background: var(--beige); }
.header.scrolled .lang-btn  { color: var(--text-muted); }
.header.scrolled .lang-btn.active { background: var(--white); color: var(--forest); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.header.scrolled .hamburger span { background: var(--heading); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
}
.logo-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-main {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  transition: color var(--ease);
}
.logo-sub {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(245, 230, 211, 0.75);
  transition: color var(--ease);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 7px 15px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 230, 211, 0.85);
  border-radius: 50px;
  transition: background var(--ease), color var(--ease);
}
.nav-link:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.btn-nav {
  background: var(--forest) !important;
  color: var(--white) !important;
  border-radius: 50px;
  padding: 7px 20px !important;
}
.btn-nav:hover { background: var(--forest-dark) !important; }

/* Right side */
.nav-right { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
  transition: background var(--ease);
}
.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(245, 230, 211, 0.75);
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 50px;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.lang-flag {
  display: block;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
}
.lang-btn.active {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Theme toggle */
.theme-toggle {
  background: none;
  border: 1px solid rgba(245, 230, 211, 0.3);
  border-radius: 50px;
  padding: 6px 10px;
  cursor: pointer;
  color: rgba(245, 230, 211, 0.8);
  display: flex;
  align-items: center;
  transition: border-color var(--ease), color var(--ease);
}
.theme-toggle:hover {
  border-color: var(--cream);
  color: var(--cream);
}
.header.scrolled .theme-toggle {
  border-color: rgba(0,0,0,0.15);
  color: var(--text-muted);
}
.header.scrolled .theme-toggle:hover {
  border-color: var(--forest);
  color: var(--forest);
}
/* Icon visibility */
.theme-icon--sun  { display: none; }
.theme-icon--moon { display: block; }
[data-theme="dark"] .theme-icon--sun  { display: block; }
[data-theme="dark"] .theme-icon--moon { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease), background var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

/* Text panel left-aligned so the 3D city shows on the right */
.hero .container {
  margin-left: 0;
  max-width: 560px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(3, 5, 7, 0.72) 0%,
      rgba(3, 5, 7, 0.42) 45%,
      rgba(3, 5, 7, 0.06) 100%
    ),
    linear-gradient(to bottom,
      rgba(3, 5, 7, 0.30) 0%,
      rgba(3, 5, 7, 0.00) 30%,
      rgba(3, 5, 7, 0.00) 70%,
      rgba(3, 5, 7, 0.55) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 80px;
  pointer-events: auto;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 230, 211, 0.7);
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--stone);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 500px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.3rem;
  z-index: 3;
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   Stats bar
   ============================================================ */
.stats {
  background: linear-gradient(135deg, #0d0c1a 0%, #1a1a2e 50%, #0e1520 100%);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(38, 78, 140, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(192, 57, 43, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid { position: relative; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ============================================================
   Tours section
   ============================================================ */
.tours { background: var(--beige); }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.tour-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.tour-card--featured {
  transform: translateY(-14px);
  animation: featured-glow 4s ease-in-out infinite;
}
.tour-card--featured:hover { transform: translateY(-20px); }
@keyframes featured-glow {
  0%, 100% { box-shadow: 0 0 0 2px var(--forest), 0 20px 60px rgba(38, 78, 140, 0.25); }
  50%       { box-shadow: 0 0 0 2px var(--forest-light), 0 20px 60px rgba(58, 107, 190, 0.35); }
}

/* Tour image areas */
.tour-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.tour-img--tokyo {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.56) 100%),
    url('images/tokio-tempel.webp') center / cover no-repeat;
}

.tour-img--kamakura {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.38) 100%),
    url('images/kamakura-buddha.webp') center / cover no-repeat;
}

.tour-img--mountains {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.46) 100%),
    url('images/shojiko.webp') center / cover no-repeat;
}

/* Decorative horizontal line accent */
.tour-img::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--stone), transparent);
}

.tour-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 13px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.tour-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  background: var(--stone);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tour-body { padding: 30px; }

.tour-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--heading);
}

.tour-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.7;
}

.tour-features { margin-bottom: 28px; }

.tour-features li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 0.87rem;
  color: var(--text);
  border-bottom: 1px solid var(--beige);
}
.tour-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 700;
}

.tours-note {
  text-align: center;
  margin-top: 52px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   About section
   ============================================================ */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.38) 100%),
    url('images/about.webp') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-img-deco {
  font-family: var(--font-heading);
  font-size: 9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: -4px;
  user-select: none;
  position: relative;
  z-index: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(244, 167, 185, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 20%, rgba(245, 230, 211, 0.06) 0%, transparent 45%);
}

.about-img-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--beige);
  border-radius: var(--radius);
  bottom: -28px;
  right: -28px;
  z-index: -1;
}

.about-content .section-title { margin-bottom: 24px; }
.about-content p {
  font-size: 1.03rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.85;
}
.about-content .btn { margin-top: 8px; }

.about-instagram {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--beige-dark);
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.about-instagram:hover {
  border-color: var(--forest);
  color: var(--forest);
  background: rgba(38, 78, 140, 0.05);
}
.about-instagram-handle {
  font-weight: 600;
  color: var(--forest);
}

/* ============================================================
   Why section
   ============================================================ */
.why { background: var(--beige); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 42px 28px 38px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
  border-top: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--forest), transparent);
  transition: transform var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--forest);
}
.why-card:hover::after { transform: translateX(-50%) scaleX(1); }

.why-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--stone-light);
  border: 1.5px solid rgba(192, 57, 43, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.15);
  transition: transform var(--ease), box-shadow var(--ease);
  color: var(--stone);
}
.why-card:hover .why-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(192, 57, 43, 0.25);
}
.why-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--stone);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--heading);
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { background: var(--bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  justify-items: stretch;
}
.testimonials-grid .testimonial-card:nth-child(4):last-child,
.testimonials-grid .testimonial-card:nth-child(4):nth-last-child(2) {
  /* last row of 2: keep natural flow */
}

.testimonial-card {
  background: var(--surface);
  border-radius: 22px;
  padding: 34px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--forest);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 7rem;
  line-height: 1;
  color: var(--forest);
  opacity: 0.08;
  position: absolute;
  top: 10px;
  right: 24px;
  pointer-events: none;
  user-select: none;
}

.testimonial-stars {
  color: var(--stone);
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial-text {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--heading);
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   Contact section
   ============================================================ */
.contact { background: var(--beige); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.85;
}

.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-top: auto; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border-radius: 50px;
  box-shadow: var(--shadow);
  border-left: 3px solid transparent;
  transition: transform var(--ease), border-color var(--ease);
}
.contact-method:hover {
  transform: translateX(5px);
  border-left-color: var(--forest);
}
.contact-method-icon {
  width: 46px;
  height: 46px;
  background: var(--beige);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-method-icon--ig {
  background: rgba(225, 48, 108, 0.08);
  border-color: rgba(225, 48, 108, 0.2);
}

.contact-method-icon--wa {
  background: #e8faf0;
}
.contact-method strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--heading);
  margin-bottom: 3px;
}
.contact-method span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Form */
.contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--beige-dark);
  border-radius: 18px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(38, 78, 140, 0.12);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235D4037' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.form-success {
  background: rgba(37, 211, 102, 0.12);
  color: #1a7a3c;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

[data-theme="dark"] .form-success {
  color: #4ade80;
  background: rgba(37, 211, 102, 0.08);
}

.form-error {
  background: rgba(192, 57, 43, 0.1);
  color: var(--stone);
  border: 1px solid rgba(192, 57, 43, 0.3);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.form-field-error {
  display: block;
  color: var(--stone);
  font-size: 0.78rem;
  margin-top: 4px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 52px;
}

.footer-brand .nav-logo { margin-bottom: 10px; }

.footer-logo-text .logo-main { color: var(--white); }
.footer-logo-text .logo-sub  { color: var(--forest-light); }

.footer-tagline {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--ease);
}
.footer-social:hover { color: var(--stone); }
.footer-social svg { flex-shrink: 0; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: right;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   Fade-in animation (JS-driven)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for grid children */
.tours-grid .tour-card:nth-child(2)       { transition-delay: 0.12s; }
.tours-grid .tour-card:nth-child(3)       { transition-delay: 0.24s; }
.why-grid .why-card:nth-child(2)          { transition-delay: 0.1s; }
.why-grid .why-card:nth-child(3)          { transition-delay: 0.2s; }
.why-grid .why-card:nth-child(4)          { transition-delay: 0.3s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.12s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.24s; }
.testimonials-grid .testimonial-card:nth-child(4) { transition-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(5) { transition-delay: 0.2s; }

/* Compare rows stagger */
.compare-row:nth-child(2)  { transition-delay: 0.08s; }
.compare-row:nth-child(3)  { transition-delay: 0.16s; }
.compare-row:nth-child(4)  { transition-delay: 0.24s; }
.compare-row:nth-child(5)  { transition-delay: 0.32s; }

/* ============================================================
   Responsive — tablet
   ============================================================ */
@media (max-width: 1024px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-card--featured { transform: none; }
  .tour-card--featured:hover { transform: translateY(-6px); }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid  { gap: 52px; }
  .contact-grid { gap: 52px; }
}

/* ============================================================
   Responsive — mobile
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 68px 0; }

  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 20px 28px 28px;
    gap: 6px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--beige);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-title { font-size: clamp(2.6rem, 12vw, 3.8rem); }
  .hero-sub   { font-size: 1rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  /* Tours */
  .tours-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img  { height: 300px; }
  .about-img-accent { display: none; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { text-align: left; flex-direction: row; flex-wrap: wrap; gap: 16px 28px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
}

/* Highlight spans — highlighter-pen effect */
.hl {
  background: linear-gradient(180deg, transparent 55%, rgba(38, 78, 140, 0.2) 55%);
  font-weight: 600;
  padding-bottom: 1px;
}

/* i18n rich blocks — visibility controlled by [hidden] attribute via JS */
[hidden] { display: none !important; }

/* ============================================================
   Blog section
   ============================================================ */
.blog { background: var(--beige); }

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.blog-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.blog-card--featured .blog-card-img {
  height: 100%;
  min-height: 240px;
}

.blog-card-img {
  height: 190px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img--1 {
  background-image: url('images/sakura_roppongi.webp');
}
.blog-card-img--2 {
  background-image: url('images/weg-von-den-massen.webp');
}
.blog-card-img--3 {
  background-image: url('images/onoyama.webp');
}
.blog-card-img--4 {
  background-image: url('images/tokyo.webp');
}
.blog-card-img--5 {
  background-image: url('images/tokio-von-oben.webp');
}
.blog-card-img--6 {
  background-image: url('images/ramen.webp');
}
.blog-card-img--7 {
  background-image: url('images/30euro.webp');
}
.blog-card-img--8 {
  background-image: url('images/jahreszeiten1.webp');
}
.blog-card-img--9 {
  background-image: url('images/kinder.webp');
}
.blog-card-img--10 {
  background-image: url('images/hatanosu.webp');
}

.blog-card-body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card--featured .blog-card-body {
  padding: 32px 36px;
  justify-content: center;
}

.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  background: var(--stone);
  padding: 4px 12px;
  border-radius: 50px;
  align-self: flex-start;
}

.blog-card-body h3 {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--heading);
}
.blog-card--featured .blog-card-body h3 {
  font-size: 1.2rem;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.post-figure {
  margin: 36px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.post-figure img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.post-figure figcaption {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 9px 14px;
  background: var(--surface);
  border-top: 1px solid var(--beige);
  font-style: italic;
}

@media (max-width: 860px) {
  .blog-list { grid-template-columns: 1fr; }
  .blog-card--featured {
    grid-column: auto;
    display: flex;
    flex-direction: column;
  }
  .blog-card--featured .blog-card-img { height: 200px; }
}
@media (max-width: 600px) {
  .blog-card-body { padding: 20px; }
  .blog-card--featured .blog-card-body { padding: 20px; }
}

/* ============================================================
   UI/UX Pro Max — Design System Enhancements
   ============================================================ */

/* Focus styles — keyboard accessibility */
:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible { border-radius: 50px; }

/* cursor-pointer on interactive cards */
.tour-card,
.why-card,
.blog-card,
.testimonial-card { cursor: pointer; }

/* ── Hero glass content panel ─────────────────────────────── */
.hero-content {
  background: rgba(8, 8, 22, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  padding: 80px 52px 56px;
}
@media (max-width: 768px) {
  .hero-content { padding: 80px 24px 40px; border-radius: 20px; }
  .hero .container { margin-left: auto; max-width: 100%; }
}

/* ── Stat numbers — subtle count-up feel with gradient ────── */
.stat-number {
  background: linear-gradient(135deg, var(--white) 40%, rgba(245, 230, 211, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Why cards — full border glow on hover ────────────────── */
.why-card:hover {
  box-shadow: 0 0 0 1.5px var(--forest), var(--shadow-md);
}

/* ── Blog card — image contained for zoom ─────────────────── */
.blog-card { overflow: hidden; }
.blog-card--featured .blog-card-img {
  transition: transform 0.5s ease;
}
.blog-card--featured:hover .blog-card-img { transform: scale(1.04); }

/* ── Avatar gradient colors per initial ───────────────────── */
.testimonial-avatar:nth-child(1) { background: #264E8C; }
.testimonial-card:nth-child(2) .testimonial-avatar { background: #C0392B; }
.testimonial-card:nth-child(3) .testimonial-avatar { background: #1D6348; }
.testimonial-card:nth-child(4) .testimonial-avatar { background: #5D3A8A; }
.testimonial-card:nth-child(5) .testimonial-avatar { background: #B8520A; }

/* ── Section divider shimmer line ─────────────────────────── */
.tours::before,
.why::before,
.contact::before,
.blog::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--beige-dark), transparent);
  opacity: 0.5;
}

/* ── Contact method hover polish ──────────────────────────── */
.contact-method { cursor: pointer; }
.contact-method:hover {
  box-shadow: var(--shadow-md);
}

/* ── Tour feature list — refined tick ─────────────────────── */
.tour-features li::before {
  content: '✓';
  color: var(--forest);
  font-weight: 700;
}

/* ── Highlight spans — stronger in dark mode ──────────────── */
[data-theme="dark"] .hl {
  background: linear-gradient(180deg, transparent 55%, rgba(58, 107, 190, 0.28) 55%);
}

/* ── Scroll indicator arrow ────────────────────────────────── */
.hero-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Compare section ──────────────────────────────────────── */
.compare { background: var(--beige); }
[data-theme="dark"] .compare { background: var(--bg); }

.compare-table {
  display: grid;
  grid-template-columns: 190px 1fr 1fr;
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--beige-dark);
}

.compare-head-spacer {
  background: var(--surface);
  border-bottom: 1px solid var(--beige-dark);
}

.compare-head {
  padding: 0.9rem 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--beige-dark);
  border-left: 1px solid var(--beige-dark);
}
.compare-head--other {
  background: rgba(192, 57, 43, 0.07);
  color: var(--stone);
}
.compare-head--me {
  background: rgba(38, 78, 140, 0.07);
  color: var(--forest);
}

.compare-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.5rem 0.9rem;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--beige-dark);
}
.compare-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--stone-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--stone);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.compare-label strong {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.compare-cell {
  display: flex;
  gap: 0.8rem;
  padding: 1.4rem 1.4rem;
  align-items: flex-start;
  border-top: 1px solid var(--beige-dark);
  border-left: 1px solid var(--beige-dark);
}
.compare-cell > div { flex: 1; }
.compare-cell--other { background: rgba(192, 57, 43, 0.03); }
.compare-cell--me    { background: rgba(38, 78, 140, 0.035); }

.compare-mark {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  margin-top: 0.15rem;
}
.compare-mark--no  { background: rgba(192, 57, 43, 0.12); color: #c0392b; }
.compare-mark--yes { background: rgba(38, 78, 140, 0.12);  color: var(--forest); }

.compare-cell p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}
.compare-cell--other p { color: var(--text-muted); }

/* Mobile column labels — hidden on desktop */
.compare-cell-head { display: none; }

/* ── Compare responsive ───────────────────────────────────── */
@media (max-width: 860px) {
  .compare-table {
    grid-template-columns: 1fr;
    border-radius: var(--radius-sm);
  }
  .compare-head-spacer { display: none; }
  .compare-head {
    border-left: none;
    border-bottom: none;
    border-top: 1px solid var(--beige-dark);
    padding: 0.7rem 1.1rem;
    text-align: left;
  }
  .compare-head--other { border-top: 1px solid var(--beige-dark); }

  .compare-label {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 0.9rem 1.1rem;
    gap: 0.55rem;
    background: var(--beige);
    border-top: 2px solid var(--beige-dark);
  }
  [data-theme="dark"] .compare-label { background: rgba(255,255,255,0.04); }
  .compare-icon { width: 30px; height: 30px; border-radius: 8px; }
  .compare-icon svg { width: 15px; height: 15px; }
  .compare-label strong { font-size: 0.88rem; }

  .compare-cell {
    border-left: none;
    padding: 1rem 1.1rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  .compare-cell > div { display: flex; flex-direction: column; gap: 0.35rem; }

  /* Show mobile column labels */
  .compare-cell-head {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .compare-cell-head--other { color: #c0392b; }
  .compare-cell-head--me    { color: var(--forest); }

  /* Mark floats left beside label */
  .compare-cell {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* ── prefers-reduced-motion — accessibility ───────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-scroll { animation: none; }
  .tour-card--featured { animation: none; box-shadow: 0 0 0 2px var(--forest), var(--shadow-md); }
  .btn-primary::after { animation: none; display: none; }
}
