/* ============================================================
   Kyoto Nijo Castle — styles.css
   Japanese Heritage Design System — Mobile First
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600&display=swap');

/* --- Custom Properties --- */
:root {
  /* Brand Colors — Japanese Heritage Palette */
  --clr-primary:       #B5292A;  /* Crimson Lacquer */
  --clr-primary-light: #D94040;
  --clr-primary-dark:  #8C1C1D;
  --clr-gold:          #C8960C;  /* Aged Gold */
  --clr-gold-light:    #E8B220;
  --clr-gold-dark:     #9A7009;
  --clr-ink:           #2B4C7E;  /* Indigo Blue */
  --clr-ink-dark:      #1A3258;
  --clr-sakura:        #F2C4CE;  /* Accent only */

  /* Surfaces */
  --surface-washi:     #F8F5EE;  /* Aged paper */
  --surface-tatami:    #EDE9DF;  /* Tatami straw */

  /* Neutrals */
  --n-200:             #D6CFC6;
  --n-400:             #A89F95;
  --n-600:             #6B6560;
  --n-900:             #1E1A17;  /* Sumi ink */

  /* Semantic */
  --clr-success:       #2D7A4E;
  --clr-error:         #C23B22;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-subtle:   0 1px 3px rgba(30,26,23,0.06), 0 1px 2px rgba(30,26,23,0.04);
  --shadow-medium:   0 4px 12px rgba(30,26,23,0.10), 0 2px 4px rgba(30,26,23,0.06);
  --shadow-prominent:0 12px 32px rgba(30,26,23,0.14), 0 4px 8px rgba(30,26,23,0.07);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Spacing */
  --container-max: 1280px;
  --section-px-mobile: 1rem;
  --section-px-tablet: 1.5rem;
  --section-px-desktop: 2rem;
  --section-py-mobile: 3rem;
  --section-py-desktop: 5rem;

  /* Transitions */
  --transition: all 0.25s ease;
}

/* --- Reset --- */
*, *::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(--surface-washi);
  color: var(--n-900);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--section-px-mobile);
}
@media (min-width: 768px) {
  .container { padding-inline: var(--section-px-tablet); }
}
@media (min-width: 1024px) {
  .container { padding-inline: var(--section-px-desktop); }
}
.section-py {
  padding-top: var(--section-py-mobile);
  padding-bottom: var(--section-py-mobile);
}
@media (min-width: 1024px) {
  .section-py {
    padding-top: var(--section-py-desktop);
    padding-bottom: var(--section-py-desktop);
  }
}
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* --- Typography --- */
.overline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold);
}
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; color: var(--n-900); }
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { color: var(--n-600); line-height: 1.7; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-primary);
  border-bottom: 2px solid var(--clr-primary);
  padding-bottom: 2px;
  margin-bottom: 1rem;
}

/* --- Divider --- */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary) 0%, var(--clr-gold) 100%);
  margin: 0.75rem auto 1.5rem;
}
.divider--left { margin-left: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}
.btn--primary {
  background: var(--clr-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}
.btn--primary:active { transform: scale(0.98); }
.btn--gold {
  background: var(--clr-gold);
  color: #fff;
}
.btn--gold:hover {
  background: var(--clr-gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--clr-primary);
  color: var(--clr-primary);
}
.btn--outline:hover {
  background: var(--clr-primary);
  color: #fff;
  transform: translateY(-1px);
}
.btn--lg { padding: 1rem 2.5rem; font-size: 1.125rem; min-height: 56px; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; min-height: 38px; }

/* --- Stars --- */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--clr-gold);
}
.stars svg { width: 16px; height: 16px; fill: currentColor; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: var(--surface-washi);
  box-shadow: var(--shadow-prominent);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--section-px-mobile);
}
@media (min-width: 768px) { .nav__inner { padding-inline: var(--section-px-tablet); } }
@media (min-width: 1024px) { .nav__inner { padding-inline: var(--section-px-desktop); } }

.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.nav__logo-kanji {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.nav.scrolled .nav__logo-kanji { color: var(--clr-primary); }
.nav__logo-en {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.nav.scrolled .nav__logo-en { color: var(--n-400); }

.nav__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
@media (min-width: 1024px) { .nav__links { display: flex; } }
.nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav.scrolled .nav__link { color: var(--n-600); }
.nav__link:hover { color: var(--clr-gold) !important; }

.nav__cta { display: none; }
@media (min-width: 768px) {
  .nav__cta {
    display: flex;
    align-items: center;
  }
}
.nav__cta .btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  min-height: 40px;
  background: var(--clr-primary);
  color: #fff;
  border-radius: var(--radius-md);
}
.nav__cta .btn:hover { background: var(--clr-primary-dark); }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
@media (min-width: 1024px) { .nav__hamburger { display: none; } }
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .hamburger-line { background: var(--n-900); }
.nav__hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open .hamburger-line:nth-child(2) { opacity: 0; }
.nav__hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--n-900);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
}
.mobile-menu__link:hover { color: var(--clr-gold); }
.mobile-menu .btn {
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--n-900);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/nijo-castle-hero.webp');
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,26,23,0.90) 0%,
    rgba(30,26,23,0.55) 35%,
    rgba(30,26,23,0.15) 65%,
    transparent 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 6rem var(--section-px-mobile) 4rem;
  text-align: center;
}
.hero__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  margin-bottom: 0.75rem;
}
.hero__title {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.87);
  max-width: 580px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: 0.9375rem;
}
.hero__rating .stars svg { width: 18px; height: 18px; }
.hero__badge {
  display: inline-block;
  background: rgba(181,41,42,0.85);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 1.8s ease-in-out infinite;
}
.hero__scroll svg { width: 24px; height: 24px; color: rgba(255,255,255,0.6); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   TRUST SIGNALS STRIP
   ============================================================ */
.trust {
  background: #fff;
  border-bottom: 1px solid var(--n-200);
  padding: 1.25rem 0;
}
.trust__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .trust__inner { grid-template-columns: repeat(4, 1fr); gap: 0; }
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
}
@media (min-width: 768px) {
  .trust__item {
    justify-content: center;
    border-right: 1px solid var(--n-200);
    padding: 0.5rem 1.5rem;
  }
  .trust__item:last-child { border-right: none; }
}
.trust__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(181,41,42,0.1), rgba(200,150,12,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust__icon svg { width: 18px; height: 18px; color: var(--clr-primary); }
.trust__text { line-height: 1.3; }
.trust__value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--n-900);
}
.trust__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--n-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights { background: var(--surface-washi); }
.highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .highlights__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .highlights__grid { grid-template-columns: repeat(3, 1fr); } }

.highlight-card {
  background: #fff;
  border: 1px solid var(--n-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); }
.highlight-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-card__icon svg { width: 22px; height: 22px; color: #fff; }
.highlight-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.highlight-card p { font-size: 0.875rem; color: var(--n-600); line-height: 1.5; }

/* ============================================================
   EXPERIENCE SECTION
   ============================================================ */
.experience { background: var(--surface-tatami); }
.experience__inner {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .experience__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.experience__img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-prominent);
  aspect-ratio: 4/3;
}
.experience__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.experience__text > p { margin-top: 1rem; font-size: 1.0625rem; }
.experience__text > p + p { margin-top: 0.875rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--n-900); }
.gallery .section-label { color: var(--clr-gold-light); }
.gallery h2 { color: #fff; }
.gallery__track-wrap { position: relative; margin-top: 2rem; }
.gallery__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__slide {
  flex: 0 0 85vw;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--n-600);
  position: relative;
}
@media (min-width: 640px) { .gallery__slide { flex: 0 0 360px; } }
@media (min-width: 1024px) { .gallery__slide { flex: 0 0 420px; } }
.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__slide:hover img { transform: scale(1.05); }
.gallery__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,26,23,0.55) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery__slide:hover .gallery__slide-overlay { opacity: 1; }
.gallery__slide-caption {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
}
.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border: 1px solid var(--n-200);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-medium);
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
}
.gallery__arrow:hover { transform: translateY(-50%) scale(1.08); box-shadow: var(--shadow-prominent); }
.gallery__arrow svg { width: 20px; height: 20px; color: var(--n-900); }
.gallery__arrow--prev { left: -16px; }
.gallery__arrow--next { right: -16px; }
.gallery__arrow.hidden { opacity: 0; pointer-events: none; }
@media (max-width: 767px) { .gallery__arrow { display: none; } }
.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.25rem;
}
.gallery__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.gallery__dot.active { background: var(--clr-gold); transform: scale(1.3); }

/* ============================================================
   ITINERARY
   ============================================================ */
.itinerary { background: var(--surface-washi); }
.itinerary__list {
  margin-top: 2.5rem;
  position: relative;
  max-width: 640px;
  margin-inline: auto;
  margin-top: 2.5rem;
}
.itinerary__item {
  display: flex;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 2rem;
}
.itinerary__item:last-child { padding-bottom: 0; }
.itinerary__item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-primary), var(--clr-gold));
  opacity: 0.3;
}
.itinerary__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-gold));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.itinerary__content h4 { margin-bottom: 0.25rem; }
.itinerary__content p { font-size: 0.9375rem; color: var(--n-600); }
.itinerary__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--n-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
  max-width: 640px;
  margin-inline: auto;
}
.itinerary__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--n-900);
}
.itinerary__meta-item svg { width: 18px; height: 18px; color: var(--clr-primary); }

/* ============================================================
   INCLUDED / EXCLUDED
   ============================================================ */
.included { background: var(--surface-tatami); }
.included__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .included__grid { grid-template-columns: 1fr 1fr; } }
.included__card {
  background: #fff;
  border: 1px solid var(--n-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-subtle);
}
.included__card h3 {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.included__card h3 svg { width: 20px; height: 20px; }
.included__card--yes h3 { color: var(--clr-success); }
.included__card--no h3 { color: var(--n-400); }
.included__list { display: flex; flex-direction: column; gap: 0.75rem; }
.included__item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--n-600);
}
.included__item svg { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.included__item--yes svg { color: var(--clr-success); }
.included__item--no svg { color: var(--n-400); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--surface-washi); }
.reviews__track-wrap { position: relative; margin-top: 2rem; }
.reviews__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.reviews__track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 85vw;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--n-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) { .review-card { flex: 0 0 320px; } }
@media (min-width: 1024px) { .review-card { flex: 0 0 360px; } }
.review-card__top { display: flex; align-items: center; justify-content: space-between; }
.review-card__source {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--n-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.review-card__text {
  font-size: 0.9375rem;
  color: var(--n-600);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.review-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-gold));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-card__name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--n-900);
}
.review-card__date {
  font-size: 0.75rem;
  color: var(--n-400);
}
.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--n-200);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-medium);
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
}
.reviews__arrow:hover { transform: translateY(-50%) scale(1.08); box-shadow: var(--shadow-prominent); }
.reviews__arrow svg { width: 20px; height: 20px; color: var(--n-900); }
.reviews__arrow--prev { left: -16px; }
.reviews__arrow--next { right: -16px; }
.reviews__arrow.hidden { opacity: 0; pointer-events: none; }
@media (max-width: 767px) { .reviews__arrow { display: none; } }
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.25rem;
}
.reviews__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--n-200);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.reviews__dot.active { background: var(--clr-primary); transform: scale(1.3); }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why { background: var(--surface-tatami); }
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 1024px) { .why__grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.why-card {
  background: #fff;
  border: 1px solid var(--n-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.why-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(181,41,42,0.1), rgba(200,150,12,0.15));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.why-card__icon svg { width: 26px; height: 26px; color: var(--clr-primary); }
.why-card h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.375rem; }
.why-card p { font-size: 0.8125rem; color: var(--n-600); }

/* ============================================================
   PRACTICAL INFO
   ============================================================ */
.practical { background: var(--surface-washi); }
.practical__grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .practical__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .practical__grid { grid-template-columns: repeat(3, 1fr); } }
.info-card {
  background: #fff;
  border: 1px solid var(--n-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  box-shadow: var(--shadow-subtle);
}
.info-card__icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(181,41,42,0.1), rgba(200,150,12,0.12));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-card__icon svg { width: 19px; height: 19px; color: var(--clr-primary); }
.info-card h4 { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--n-400); font-weight: 600; margin-bottom: 0.25rem; }
.info-card p { font-size: 0.9375rem; font-weight: 500; color: var(--n-900); line-height: 1.4; }
.cancellation-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(45,122,78,0.08);
  border: 1px solid rgba(45,122,78,0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--clr-success);
}
.cancellation-note svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   BOOKING WIDGET
   ============================================================ */
.booking {
  background: linear-gradient(135deg, var(--n-900) 0%, #2d1a1a 100%);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.booking .section-label { color: var(--clr-gold-light); }
.booking h2 { color: #fff; }
.booking__sub {
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.booking__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.booking__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.booking__trust-item svg { width: 18px; height: 18px; color: var(--clr-gold-light); }
.booking__widget-wrap {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.booking__fallback {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
.booking__fallback a {
  color: var(--clr-gold-light);
  text-decoration: underline;
}
.booking__urgency {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.booking__urgency svg { width: 16px; height: 16px; color: var(--clr-gold-light); flex-shrink: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--surface-washi); }
.faq__list {
  max-width: 760px;
  margin: 2.5rem auto 0;
}
.faq__item {
  border-bottom: 1px solid var(--n-200);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--n-900);
  transition: color 0.2s;
  user-select: none;
  width: 100%;
  text-align: left;
}
.faq__question:hover { color: var(--clr-primary); }
.faq__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(181,41,42,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s;
}
.faq__icon svg { width: 16px; height: 16px; color: var(--clr-primary); transition: transform 0.3s ease; }
.faq__item.open .faq__icon { background: var(--clr-primary); }
.faq__item.open .faq__icon svg { color: #fff; transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq__item.open .faq__answer { max-height: 600px; }
.faq__answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--n-600);
  line-height: 1.7;
}
.faq__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   ALTERNATIVE TOURS
   ============================================================ */
.alternatives { background: var(--surface-tatami); }
.alternatives__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .alternatives__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .alternatives__grid { grid-template-columns: repeat(3, 1fr); } }
.alt-card {
  background: #fff;
  border: 1px solid var(--n-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.alt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.alt-card__header {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--n-900);
}
.alt-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.alt-card:hover .alt-card__img {
  transform: scale(1.1);
}
.alt-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,26,23,0.1) 0%, rgba(30,26,23,0.85) 100%);
}
.alt-card__header-content {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.5rem;
}
.alt-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--clr-gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.625rem;
}
.alt-card__badge svg { width: 11px; height: 11px; }
.alt-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.alt-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
}
.alt-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.alt-card__meta-item svg { width: 13px; height: 13px; }
.alt-card__body { padding: 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.alt-card__rating { display: flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; }
.alt-card__rating .stars svg { width: 14px; height: 14px; }
.alt-card__rating-text { font-weight: 600; color: var(--n-900); }
.alt-card__rating-count { color: var(--n-400); font-size: 0.8125rem; }
.alt-card__pros { display: flex; flex-direction: column; gap: 0.4rem; }
.alt-card__pro {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--n-600);
}
.alt-card__pro svg { width: 14px; height: 14px; color: var(--clr-success); margin-top: 2px; flex-shrink: 0; }
.alt-card__price {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-top: auto;
}
.alt-card__price span { font-size: 0.875rem; font-weight: 400; color: var(--n-400); font-family: var(--font-body); }
.alt-card__link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--clr-ink);
  transition: color 0.2s;
  margin-top: 0.5rem;
}
.alt-card__link:hover { color: var(--clr-primary); }
.alt-card__link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.alt-card__link:hover svg { transform: translateX(3px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--n-900); color: rgba(255,255,255,0.6); }
.footer__top {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) { .footer__top { grid-template-columns: 2fr 1fr 1fr; } }
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.375rem;
}
.footer__brand-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 300px;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--clr-gold-light); }
.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}
.footer__bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--n-200);
  box-shadow: 0 -4px 20px rgba(30,26,23,0.12);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
@media (min-width: 768px) { .sticky-cta { display: none; } }
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta.hidden-widget { transform: translateY(100%); }
.sticky-cta__price {
  line-height: 1.2;
}
.sticky-cta__from { font-size: 0.7rem; color: var(--n-400); text-transform: uppercase; letter-spacing: 0.05em; }
.sticky-cta__amount {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-primary);
}
.sticky-cta__per { font-size: 0.75rem; color: var(--n-400); }
.sticky-cta .btn { flex: 1; text-align: center; justify-content: center; padding: 0.75rem 1rem; font-size: 0.9375rem; }

/* ============================================================
   SECTION CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-gold-dark) 100%);
  padding: 2.5rem 0;
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-band__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

.cta-band__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.cta-band__sub { font-size: 0.9375rem; color: rgba(255,255,255,0.8); }
.cta-band .btn {
  background: #fff;
  color: var(--clr-primary);
  flex-shrink: 0;
  font-weight: 700;
}
.cta-band .btn:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.fade-in-up.delay-1 { animation-delay: 0.15s; }
.fade-in-up.delay-2 { animation-delay: 0.3s; }
.fade-in-up.delay-3 { animation-delay: 0.45s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 767px) {
  body { padding-bottom: 72px; }
}
