/* =========================================================
   jrny.fun â€” premium travel one-pager
   Parallax, scroll reveals, search, a11y
   ========================================================= */

:root {
  /*
   * Hero-inspired palette â€” softer purples, teals & warm golds
   */
  --ocean: #4aa8d6;
  --ocean-deep: #2f82b5;
  --ocean-soft: #8ed0ea;
  --teal-glow: #4cc4b6;
  --teal-deep: #2fa89c;
  --lavender: #b39afc;
  --lavender-soft: #d0c4fe;
  --purple-mid: #8b7fdc;
  --purple-deep: #6559b8;
  --gold: #e8c07a;
  --gold-warm: #d4a85a;
  --gold-soft: #f3dfb8;

  /* Primary actions â€” soft lavender + turquoise */
  --brand: #7396d6;
  --brand-mid: #86a8de;
  --brand-deep: #5f78bc;
  --brand-gradient: linear-gradient(145deg, #9b8fdc 0%, #6fb0d0 48%, #5ec4b8 100%);
  --brand-gradient-hover: linear-gradient(145deg, #aba0e8 0%, #82badc 48%, #72d0c6 100%);

  /* Accent (search CTA, tags, J logo) â€” soft purple â†’ teal */
  --accent: #8b7fdc;
  --accent-mid: #b39afc;
  --accent-deep: #6559b8;
  --accent-gradient: linear-gradient(145deg, #b39afc 0%, #8b7fdc 40%, #5ec4b8 100%);
  --accent-gradient-hover: linear-gradient(145deg, #c4b5fd 0%, #9b90e8 40%, #6ed0c4 100%);

  /* Legacy aliases */
  --teal-500: #4cc4b6;
  --teal-600: #4aa8d6;
  --teal-700: #2f82b5;
  --teal-800: #276a96;

  --ink: #1c1917;
  --muted: #57534e;
  --paper: #fafaf9;
  --card: #ffffff;
  --ring: 0 0 0 3px rgba(139, 127, 220, 0.35);
  --shadow-soft: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-lift: 0 22px 50px rgba(15, 23, 42, 0.14);
  --radius: 1.35rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
  min-height: 100%;
}

/*
 * PERFORMANCE-OPTIMIZED aurora / sunrise atmosphere
 * -------------------------------------------------
 * Costly pattern (was lagging scroll):
 *   - N sections Ã— animated blur + background-position
 *   - filter:blur on moving layers (forces GPU thrash)
 *   - opacity + transform + multi-layer paints together
 *
 * Fast pattern (60fps-friendly):
 *   - 1 static full-page wash (paint once)
 *   - 1 fixed glow layer animated with transform ONLY
 *   - Soft edges via radial-gradient (no live blur)
 *   - Hero excluded (starts at 100dvh)
 */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  /* Static â€” no animation = free after first paint */
  background:
    radial-gradient(ellipse 55% 48% at 10% 22%, rgba(255, 196, 120, 0.28), transparent 58%),
    radial-gradient(ellipse 50% 42% at 90% 12%, rgba(167, 139, 250, 0.26), transparent 55%),
    radial-gradient(ellipse 48% 50% at 72% 88%, rgba(64, 196, 180, 0.2), transparent 55%),
    linear-gradient(165deg, #faf8f5 0%, #f3efff 36%, #e8f7f4 72%, #fff6eb 100%);
}

/* Single sunrise flare â€” compositor-only motion (transform) */
body::after {
  content: '';
  position: fixed;
  top: 100dvh;
  bottom: 0;
  left: 0;
  width: min(48vw, 28rem);
  z-index: -1;
  pointer-events: none;
  /* Soft glow without filter:blur â€” large transparent falloff */
  background: radial-gradient(
    ellipse 55% 70% at 50% 42%,
    rgba(255, 240, 210, 0.7) 0%,
    rgba(255, 200, 140, 0.38) 32%,
    rgba(186, 170, 255, 0.22) 52%,
    rgba(94, 196, 184, 0.1) 64%,
    transparent 76%
  );
  transform: translate3d(-60%, 0, 0);
  animation: auroraSlide 18s linear infinite;
  contain: strict;
  backface-visibility: hidden;
}

@keyframes auroraSlide {
  from {
    transform: translate3d(-70%, 0, 0);
  }
  to {
    transform: translate3d(320%, 0, 0);
  }
}

/* Mobile: smaller, slower, cheaper */
@media (max-width: 768px) {
  body::after {
    width: min(70vw, 18rem);
    opacity: 0.75;
    animation-duration: 24s;
  }

  body::before {
    /* Fewer gradient stops paint cheaper on phones */
    background:
      radial-gradient(ellipse 60% 50% at 15% 20%, rgba(255, 196, 120, 0.22), transparent 60%),
      radial-gradient(ellipse 55% 45% at 88% 80%, rgba(167, 139, 250, 0.18), transparent 58%),
      linear-gradient(165deg, #faf8f5 0%, #f0edff 50%, #faf8f5 100%);
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.heading-font {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 200;
  padding: 0.8rem 1.25rem;
  background: #fff;
  color: var(--purple-deep);
  font-weight: 600;
  border-radius: 0.85rem;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: none;
  box-shadow: var(--ring), var(--shadow-soft);
}

/* ---------- Focus ---------- */
:focus {
  outline: none;
}

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 0.45rem;
}

/* ---------- Header (sticky) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 229, 228, 0.9);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.site-header.is-open {
  background: #fff;
  /* Stay above mobile backdrop so â˜°â†’X still closes menu */
  z-index: 130;
}

.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem 1.1rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  z-index: 2;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.85rem;
  /* Soft purple â†’ teal â†’ gold accent from hero */
  background: linear-gradient(145deg, #b39afc 0%, #8b7fdc 38%, #5ec4b8 78%, #e8c07a 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(139, 127, 220, 0.32);
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.15rem 1rem;
}

.nav-desktop .nav-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.35rem 0;
  transition: color 0.15s ease;
}

.nav-desktop .nav-link:hover {
  color: var(--teal-700);
}

.nav-desktop .nav-link--social {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
  .nav-toggle {
    display: none !important;
  }
  .mobile-nav {
    display: none !important;
  }
}

/* Hamburger â€” large tap target */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid #e7e5e4;
  border-radius: 0.85rem;
  background: #fff;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 120;
  flex-shrink: 0;
  -webkit-tap-highlight-color: rgba(13, 148, 136, 0.2);
  touch-action: manipulation;
  pointer-events: auto;
}

.nav-toggle:active {
  background: #f5f5f4;
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 1.2rem;
  pointer-events: none;
}

.nav-toggle__bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-header.is-open .nav-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-open .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}
.site-header.is-open .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay + sheet */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 115;
  display: none;
  pointer-events: none;
}

.mobile-nav.is-open {
  display: block;
  pointer-events: auto;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.45);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
}

.mobile-nav__sheet {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 20.5rem);
  height: 100%;
  max-height: 100dvh;
  background: #fff;
  box-shadow: -12px 0 40px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open .mobile-nav__sheet {
  transform: translateX(0);
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #e7e5e4;
  flex-shrink: 0;
}

.mobile-nav__title {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.mobile-nav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid #e7e5e4;
  border-radius: 0.75rem;
  background: #fff;
  color: var(--ink);
  font-size: 1.25rem;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(13, 148, 136, 0.2);
  touch-action: manipulation;
}

.mobile-nav__close:active {
  background: #f5f5f4;
}

.mobile-nav__panel {
  display: flex;
  flex-direction: column;
  padding: 0.35rem 0.75rem 2rem;
  overflow-y: auto;
  flex: 1;
}

.mobile-nav__link {
  display: block;
  padding: 1rem 0.85rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 0.75rem;
  transition: color 0.15s ease, background 0.15s ease;
  -webkit-tap-highlight-color: rgba(13, 148, 136, 0.15);
}

.mobile-nav__link:active,
.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
  color: var(--teal-700);
  background: #f0fdfa;
}

body.nav-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav__sheet {
    transition: none;
  }
}

/* ---------- Cinematic Hero â€” max readability ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: #010204;
  width: 100%;
  max-width: 100%;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-parallax {
  position: absolute;
  inset: -22% 0 -18%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.hero-parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.1);
  /* Keep colors vivid â€” vacation warmth + metaverse glow */
  filter: saturate(1.12) contrast(1.04) brightness(1.02);
  animation: heroKenBurns 34s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% { transform: scale(1.1) translate3d(0, 0, 0); }
  100% { transform: scale(1.2) translate3d(-1.8%, -1.2%, 0); }
}

/* Elegant overlay: darker top/bottom, light center so art shines */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(8, 10, 20, 0.55) 0%,
      rgba(8, 10, 20, 0.28) 18%,
      rgba(8, 10, 20, 0.12) 38%,
      rgba(8, 10, 20, 0.1) 52%,
      rgba(8, 10, 20, 0.28) 74%,
      rgba(8, 10, 20, 0.62) 100%
    ),
    /* Soft side balance â€” barely touch the warm left (vacation) side */
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.06) 0%,
      transparent 28%,
      transparent 72%,
      rgba(20, 10, 40, 0.18) 100%
    );
  pointer-events: none;
}

/* Soft vignette â€” edges only, center stays open */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 78% 68% at 50% 48%,
      transparent 0%,
      transparent 42%,
      rgba(0, 0, 0, 0.18) 72%,
      rgba(0, 0, 0, 0.42) 100%
    );
  pointer-events: none;
}

/* Gentle light lift behind copy â€” not a dark veil */
.hero-glow {
  position: absolute;
  width: min(92vw, 780px);
  height: min(55vw, 380px);
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.22) 0%,
    rgba(0, 0, 0, 0.08) 45%,
    transparent 72%
  );
  pointer-events: none;
  filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(50rem, 100%);
  margin: 0 auto;
  padding: 6.5rem clamp(0.85rem, 3vw, 1.5rem) 5.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .hero-content {
    max-width: min(52rem, 94vw);
    padding: 7.5rem 2rem 6rem;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    max-width: min(48rem, 42vw + 18rem);
    padding: 8rem 2rem 6.5rem;
  }
}

.hero-copy {
  margin-bottom: 2.25rem;
  max-width: 48rem;
  padding: 0 0.25rem;
}

@media (min-width: 768px) {
  .hero-copy {
    margin-bottom: 2.75rem;
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(15, 10, 30, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  margin: 0 0 1.65rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
}

.hero-kicker__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #c4b5fd;
  box-shadow: 0 0 0 4px rgba(196, 181, 253, 0.28);
  animation: heroPulse 2.4s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(196, 181, 253, 0.25); opacity: 1; }
  50% { box-shadow: 0 0 0 8px rgba(196, 181, 253, 0.1); opacity: 0.9; }
}

/* Pure white title - subtle dark shadow (not heavy) */
.hero-title {
  margin: 0 0 1.25rem;
  /* Min size reduced so 320-390px phones don't blow the hero */
  font-size: clamp(1.85rem, 8.5vw, 5.75rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 4px 20px rgba(0, 0, 0, 0.35),
    0 12px 40px rgba(0, 0, 0, 0.28);
}

.hero-title__accent {
  display: inline-block;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  filter: none;
  letter-spacing: -0.03em;
}

/* Clean white subtitle */
.hero-sub {
  margin: 0 auto;
  max-width: 36rem;
  font-size: clamp(1.05rem, 2.4vw, 1.32rem);
  line-height: 1.55;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.4),
    0 3px 14px rgba(0, 0, 0, 0.28);
}

.hero-sub__sep {
  margin: 0 0.45rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.hero-hint {
  margin: 1rem auto 0;
  max-width: min(28rem, 100%);
  padding: 0 0.5rem;
  font-size: clamp(0.76rem, 1.8vw, 0.84rem);
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  text-align: center;
}

/* Hero entrance animations */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero.is-ready .hero-anim {
  opacity: 1;
  transform: none;
}

.hero-copy .hero-anim:nth-child(1) { transition-delay: 0.08s; }
.hero-copy .hero-anim:nth-child(2) { transition-delay: 0.2s; }
.hero-copy .hero-anim:nth-child(3) { transition-delay: 0.34s; }
.hero.is-ready .search-shell.hero-anim { transition-delay: 0.48s; }
.hero.is-ready .prime-promo.hero-anim { transition-delay: 0.58s; }
.hero.is-ready .hero-hint.hero-anim { transition-delay: 0.68s; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transition: color 0.2s ease, opacity 0.7s ease 1s;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero.is-ready .hero-scroll {
  opacity: 1;
}

.hero-scroll:hover {
  color: #fff;
}

.hero-scroll__line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), transparent);
  animation: heroScrollLine 1.8s ease-in-out infinite;
}

@keyframes heroScrollLine {
  0%, 100% { transform: scaleY(0.5); opacity: 0.45; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* Smart Search â€” white glass + indigo CTA (matches metaverse side) */
.search-shell {
  width: 100%;
  max-width: min(40rem, 100%);
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5),
    0 0 48px rgba(99, 102, 241, 0.2),
    0 24px 56px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 1) inset;
  color: #1c1917;
  text-align: left;
  overflow: hidden;
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  box-sizing: border-box;
}

.search-shell__label {
  margin: 0;
  padding: 1.15rem 1.35rem 0.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-deep);
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem 0.85rem;
}

.search-icon {
  display: none;
  color: var(--lavender);
  font-size: 1.2rem;
}

.search-input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: #f4f4f5;
  border-radius: 1.15rem;
  font: inherit;
  font-size: 1.12rem;
  line-height: 1.45;
  font-weight: 500;
  color: #1c1917;
  padding: 1.1rem 1.2rem;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.search-input::placeholder {
  color: #44403c;
  opacity: 1;
  font-weight: 500;
  font-size: 1.05rem;
}

.search-input:focus {
  outline: none;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(167, 139, 250, 0.45);
}

.search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 100%;
  border: 0;
  cursor: pointer;
  background: var(--accent-gradient);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  border-radius: 1.15rem;
  padding: 1.1rem 1.4rem;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 3.6rem;
  box-shadow:
    0 12px 30px rgba(124, 111, 212, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.22) inset;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.search-btn__arrow {
  font-size: 0.85rem;
  opacity: 0.95;
  transition: transform 0.2s ease;
}

.search-btn:hover {
  background: var(--accent-gradient-hover);
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(124, 111, 212, 0.42);
}

.search-btn:hover .search-btn__arrow {
  transform: translateX(3px);
}

.search-btn:focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px rgba(167, 139, 250, 0.5);
}
.search-btn.is-busy,
.search-btn:disabled {
  opacity: 0.85;
  cursor: wait;
  transform: none;
  filter: none;
}

/* Amazon Prime â€” one logo only (no duplicate â€œAmazon Primeâ€ text) */
.prime-promo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: min(36rem, 100%);
  margin: 0.85rem auto 0;
  padding: 0 0.35rem;
  box-sizing: border-box;
}

.prime-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: auto;
  max-width: min(22rem, 100%);
  padding: 0.75rem 1.2rem 0.8rem;
  border-radius: 1.1rem;
  text-decoration: none;
  color: #232f3e;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 168, 225, 0.3);
  box-shadow:
    0 8px 22px rgba(15, 23, 42, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    max-width 0.28s ease;
  overflow: hidden;
}

.prime-btn__logo {
  display: block;
  width: min(10.5rem, 72vw);
  height: auto;
  max-height: 2.35rem;
  object-fit: contain;
  pointer-events: none;
}

.prime-btn__tagline {
  display: block;
  max-width: 18rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: #00a8e1;
  text-align: center;
}

.prime-btn__detail {
  display: block;
  max-width: 20rem;
  max-height: 0;
  margin: 0;
  padding: 0 0.15rem;
  overflow: hidden;
  opacity: 0;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.45;
  color: #57534e;
  text-align: center;
  transform: translateY(4px);
  transition:
    max-height 0.32s var(--ease-out),
    opacity 0.25s ease,
    margin 0.25s ease,
    transform 0.25s ease;
}

.prime-btn:hover,
.prime-btn:focus-visible {
  transform: translateY(-2px);
  max-width: min(26rem, 100%);
  border-color: rgba(0, 168, 225, 0.55);
  box-shadow:
    0 14px 32px rgba(0, 119, 182, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.prime-btn:hover .prime-btn__detail,
.prime-btn:focus-visible .prime-btn__detail {
  max-height: 6rem;
  margin-top: 0.25rem;
  opacity: 1;
  transform: translateY(0);
}

.prime-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.9),
    0 0 0 5px rgba(0, 168, 225, 0.45),
    0 14px 32px rgba(0, 119, 182, 0.16);
}

/* Touch: show full benefits without requiring hover */
@media (hover: none) {
  .prime-btn {
    max-width: min(24rem, 100%);
    padding: 0.75rem 1rem 0.85rem;
  }

  .prime-btn__detail {
    max-height: 6rem;
    margin-top: 0.3rem;
    opacity: 0.95;
    transform: none;
  }
}

@media (max-width: 480px) {
  .prime-promo {
    margin-top: 0.7rem;
  }

  .prime-btn {
    max-width: min(20rem, 100%);
    padding: 0.65rem 0.9rem 0.7rem;
    border-radius: 1rem;
  }

  .prime-btn__logo {
    width: 9rem;
    max-height: 2rem;
  }

  .prime-btn__tagline {
    font-size: 0.68rem;
    max-width: 16rem;
  }

  .prime-btn__detail {
    font-size: 0.66rem;
  }
}

@media (min-width: 900px) {
  .prime-btn {
    max-width: 22rem;
  }

  .prime-btn:hover,
  .prime-btn:focus-visible {
    max-width: 28rem;
  }
}

.search-examples {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.4rem;
  margin: 0;
  padding: 0.7rem 0.85rem 0.9rem;
  border-top: 1px solid #e4e4e7;
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f5 100%);
}

.search-examples__label {
  flex: 0 0 auto;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #71717a;
  margin-right: 0.15rem;
  line-height: 1;
}

.search-chip {
  flex: 0 0 auto;
  border: 1px solid #e4e4e7;
  background: #fff;
  color: #27272a;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.32rem 0.62rem;
  min-height: 1.7rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  white-space: nowrap;
}

.search-chip:hover,
.search-chip:focus-visible {
  border-color: var(--lavender-soft);
  background: #f5f3ff;
  color: var(--purple-deep);
  transform: translateY(-1px);
}

@media (min-width: 640px) {
  .search-examples {
    justify-content: flex-start;
    gap: 0.4rem;
    padding: 0.75rem 1.2rem 1rem;
  }

  .search-chip {
    font-size: 0.74rem;
    padding: 0.34rem 0.7rem;
  }
}

@media (min-width: 640px) {
  .search-row {
    display: flex;
    padding: 0.65rem 0.75rem 0.95rem 1.3rem;
    gap: 0.85rem;
  }

  .search-icon {
    display: block;
    flex-shrink: 0;
  }

  .search-input {
    flex: 1;
    background: transparent;
    border-radius: 0;
    padding: 0.95rem 0.45rem;
    font-size: 1.2rem;
  }

  .search-input::placeholder {
    font-size: 1.15rem;
  }

  .search-input:focus {
    box-shadow: none;
    background: transparent;
  }

  .search-btn {
    border-radius: 1.2rem;
    padding: 0.95rem 1.45rem;
    font-size: 1rem;
    min-height: 3.4rem;
  }

  .search-shell__label {
    padding: 1.2rem 1.45rem 0.3rem;
    font-size: 0.8rem;
  }

  .search-shell {
    max-width: min(42rem, 100%);
  }
}

@media (max-width: 640px) {
  .search-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.55rem 0.7rem 0.75rem;
  }

  .search-btn {
    width: 100%;
    min-height: 3.15rem;
    padding: 0.9rem 1.1rem;
    font-size: 1rem;
  }

  .search-input {
    font-size: 16px; /* prevent iOS zoom */
    padding: 0.95rem 1rem;
  }

  .search-examples {
    justify-content: center;
    padding: 0.6rem 0.65rem 0.8rem;
    gap: 0.3rem 0.35rem;
  }

  .search-chip {
    font-size: 0.68rem;
    padding: 0.28rem 0.55rem;
    min-height: 1.55rem;
  }

  .hero-hint {
    font-size: 0.78rem;
    padding: 0 0.5rem;
    max-width: 22rem;
  }
}

@media (max-width: 380px) {
  .hero-content {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .search-input::placeholder {
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .search-shell {
    border-radius: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    animation: none !important;
    display: none !important;
  }

  .section::before,
  .section-motion::before {
    animation: none !important;
  }

  .hero-parallax img {
    animation: none;
    transform: scale(1.1);
  }

  .hero-kicker__dot,
  .hero-scroll__line {
    animation: none;
  }

  .hero-anim {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-scroll {
    opacity: 1;
    transition: none;
  }

  .prime-btn__tagline,
  .prime-btn__detail {
    transition: none;
  }

  /* Always show full Prime benefits when motion is reduced */
  .prime-btn__detail {
    max-height: 6rem;
    margin-top: 0.25rem;
    opacity: 1;
    transform: none;
  }

  .travel-hub {
    animation: none;
  }
}

.suggestions {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  max-height: 16.5rem;
  overflow-y: auto;
  border-top: 1px solid #e7e5e4;
  background: #fff;
}

.suggestions[hidden] {
  display: none !important;
}

.suggestions [role='option'] {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: left;
  padding: 0.72rem 1rem;
  cursor: pointer;
}

.suggestions [role='option']:hover,
.suggestions [role='option'][aria-selected='true'] {
  background: #f0fdfa;
}

.suggestion-type {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-700);
  background: #ccfbf1;
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ---------- Layout sections ---------- */
.section {
  position: relative;
  padding: clamp(2.75rem, 5vw, 5rem) 0;
  /* No isolation/overflow clip needed for global aurora â€” cheaper paint */
  overflow: visible;
}

/* Static soft wash only (no animation) â€” still pretty, zero continuous cost */
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 8% 30%, rgba(255, 200, 130, 0.14), transparent 62%),
    radial-gradient(ellipse 50% 55% at 92% 20%, rgba(167, 139, 250, 0.12), transparent 60%);
  opacity: 1;
}

/* No per-section moving flares (was the main lag source) */
.section::after {
  content: none;
  display: none;
}

.section > .section-inner {
  position: relative;
  z-index: 1;
}

/* Dark / special bands â€” static tint only */
.cruises-section::before,
.insurance-section::before,
.mv-worlds::before,
.parallax-band::before,
.glow-market::before {
  background:
    radial-gradient(ellipse 55% 55% at 12% 25%, rgba(255, 190, 120, 0.1), transparent 60%),
    radial-gradient(ellipse 50% 50% at 88% 30%, rgba(140, 120, 255, 0.14), transparent 58%);
  opacity: 0.85;
}

.cruises-section::after,
.insurance-section::after,
.mv-worlds::after,
.parallax-band::after,
.glow-market::after {
  content: none;
  display: none;
}

.section-inner {
  max-width: min(72rem, 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3.5vw, 1.5rem);
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .section-inner {
    padding: 0 clamp(1.2rem, 3vw, 1.75rem);
  }
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .section-head {
    margin: 0 auto 2.75rem;
  }
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean-deep);
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---------- Results (under Featured destinations) ---------- */
.results-section[hidden] {
  display: none !important;
}

.results-section {
  background:
    linear-gradient(180deg, rgba(245, 243, 255, 0.9) 0%, #fafaf9 45%, #fff 100%);
  border-block: 1px solid #e7e5e4;
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.results-section.is-open {
  animation: resultsReveal 0.45s var(--ease-out);
}

@keyframes resultsReveal {
  from {
    opacity: 0.4;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.results-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.results-meta h2 {
  margin: 0.15rem 0 0;
  font-size: clamp(1.45rem, 3.5vw, 1.85rem);
  letter-spacing: -0.02em;
}

.results-meta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.results-live {
  margin: 0;
  font-size: 0.9rem;
  color: #78716c;
}

.results-close {
  border: 1px solid #d6d3d1;
  background: #fff;
  color: #57534e;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.results-close:hover {
  border-color: var(--accent-mid);
  color: var(--accent-deep);
  background: #f5f3ff;
}

.results-empty {
  text-align: center;
  color: #57534e;
  padding: 2rem 0;
}

/* Keep deal cards clickable and stable under destinations */
.results-section .deal-card {
  pointer-events: auto;
}

.results-section .btn-deal {
  position: relative;
  z-index: 2;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.9rem, 2vw, 1.25rem);
  width: 100%;
  max-width: 100%;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .card-grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1400px) {
  .card-grid.cols-3 {
    gap: 1.35rem;
  }
}

.deal-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid #e7e5e4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  height: 100%;
  min-width: 0;
  max-width: 100%;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.deal-card-media,
.shop-card-media {
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: #e7e5e4;
}

.deal-card-media img,
.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Image placeholders (when original photo not ready) */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 16 / 10;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.img-placeholder__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem;
}

.img-placeholder i {
  font-size: 1.75rem;
  opacity: 0.9;
  margin-bottom: 0.15rem;
}

.img-placeholder__label {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.img-placeholder__hint {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
  font-weight: 600;
}

.theme-ocean {
  background: linear-gradient(145deg, #0e7490 0%, #0369a1 45%, #155e75 100%);
}
.theme-rose {
  background: linear-gradient(145deg, #9f1239 0%, #be185d 50%, #7c2d12 100%);
}
.theme-city {
  background: linear-gradient(145deg, #1e293b 0%, #334155 50%, #0f172a 100%);
}
.theme-earth {
  background: linear-gradient(145deg, #78350f 0%, #a16207 50%, #422006 100%);
}
.theme-forest {
  background: linear-gradient(145deg, #14532d 0%, #166534 50%, #052e16 100%);
}
.theme-ice {
  background: linear-gradient(145deg, #0c4a6e 0%, #0369a1 40%, #1e3a5f 100%);
}
.theme-sunset {
  background: linear-gradient(145deg, #9a3412 0%, #c2410c 40%, #7c2d12 100%);
}
.theme-slate {
  background: linear-gradient(145deg, #44403c 0%, #57534e 50%, #292524 100%);
}
.theme-sand {
  background: linear-gradient(145deg, #a16207 0%, #ca8a04 45%, #713f12 100%);
}
.theme-violet {
  background: linear-gradient(145deg, #5b21b6 0%, #7c3aed 50%, #4c1d95 100%);
}
.theme-night {
  background: linear-gradient(145deg, #020617 0%, #1e1b4b 55%, #0f172a 100%);
}
.theme-sky {
  background: linear-gradient(145deg, #0369a1 0%, #0ea5e9 50%, #075985 100%);
}
.theme-teal {
  background: linear-gradient(145deg, #2a7eb0 0%, #3ebfb0 50%, #2a9a90 100%);
}

.deal-card-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.deal-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
}

.deal-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}

.type-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.type-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.type-hotel { background: #e0f2fe; color: #0369a1; }
.type-flight { background: #fef3c7; color: #b45309; }
.type-experience { background: #ffe4e6; color: #be123c; }
.type-destination { background: #d1fae5; color: #047857; }
.type-luxury { background: #fef3c7; color: #92400e; }
.type-cruise { background: #e0e7ff; color: #3730a3; }
.type-gear { background: #ffedd5; color: #c2410c; }
.type-insurance { background: #f3e8ff; color: #7e22ce; }

.btn-deal {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  /* Soft purple â†’ soft turquoise, white text for contrast */
  background: linear-gradient(145deg, #8b7fd4 0%, #6b9ec9 50%, #5eb8b0 100%);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(107, 143, 212, 0.3);
  transition: filter 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-deal:hover {
  background: linear-gradient(145deg, #9b90e0 0%, #7aaed4 50%, #6ec4bc 100%);
  filter: brightness(1.02);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(124, 111, 212, 0.32);
  color: #fff !important;
}

.partner-note {
  font-size: 0.75rem;
  color: #a8a29e;
}

/* ---------- Destination tiles ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 900px) {
  .dest-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

.dest-tile {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  background: #d6d3d1;
  color: #fff;
  text-align: left;
  font: inherit;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.dest-tile:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.dest-tile img,
.dest-tile .dest-tile-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.dest-tile .dest-tile-placeholder {
  aspect-ratio: auto;
  min-height: 100%;
}

.dest-tile:hover img,
.dest-tile:focus-visible img,
.dest-tile:hover .dest-tile-placeholder,
.dest-tile:focus-visible .dest-tile-placeholder {
  transform: scale(1.08);
}

.dest-tile--placeholder .img-placeholder__hint {
  opacity: 0.85;
}

.dest-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
  pointer-events: none;
}

.dest-tile-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.05rem;
  z-index: 1;
}

.dest-tile-body .country {
  margin: 0 0 0.2rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #99f6e4;
  font-weight: 600;
}

.dest-tile-body h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.dest-tile-body p {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dest-tile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.dest-tile__deal {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  color: #1c1917;
  background: linear-gradient(145deg, #f0d4a8 0%, #e8b86d 50%, #d4a85a 100%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.dest-tile__explore {
  background: linear-gradient(145deg, #c4b5fd 0%, #8b7fdc 50%, #5ec4b8 100%);
  color: #fff;
}

.dest-tile__deal:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  color: inherit;
}

.dest-tile__explore:hover {
  color: #fff;
}

/* Mobile place cards â€” keep titles + both CTAs fully visible (no clip) */
@media (max-width: 640px) {
  .dest-grid {
    gap: 0.65rem;
  }

  .dest-tile {
    aspect-ratio: auto;
    min-height: 16.25rem;
  }

  .dest-tile img,
  .dest-tile .dest-tile-placeholder {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }

  .dest-tile-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.55) 42%,
      rgba(0, 0, 0, 0.15) 70%,
      transparent 100%
    );
  }

  .dest-tile-body {
    padding: 0.65rem 0.7rem 0.75rem;
  }

  .dest-tile-body .country {
    font-size: 0.62rem;
    margin-bottom: 0.1rem;
  }

  .dest-tile-body h3 {
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .dest-tile-body p {
    margin-top: 0.2rem;
    font-size: 0.7rem;
    -webkit-line-clamp: 1;
  }

  .dest-tile__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    margin-top: 0.5rem;
  }

  .dest-tile__deal {
    width: 100%;
    justify-content: center;
    min-height: 2.35rem;
    font-size: 0.68rem;
    padding: 0.45rem 0.5rem;
    box-sizing: border-box;
  }
}

@media (max-width: 380px) {
  .dest-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .dest-tile {
    min-height: 14.5rem;
  }

  .dest-tile-body h3 {
    font-size: 1.05rem;
  }

  .dest-tile-body p {
    -webkit-line-clamp: 2;
    font-size: 0.78rem;
  }
}

/* Book section elevated under hero */
.browse-section--elevated {
  padding-top: clamp(2rem, 4vw, 2.75rem);
  background:
    linear-gradient(180deg, rgba(245, 243, 255, 0.85) 0%, #fafaf9 40%, #fff 100%);
  border-bottom: 1px solid #e7e5e4;
}

.browse-section--elevated .browse-card {
  border-radius: 1.15rem;
  box-shadow: 0 14px 36px rgba(91, 82, 176, 0.1);
  min-width: 0;
}

/* Global responsive safety for grids/media */
main {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

.dest-grid,
.feelings-grid,
.glow-grid,
.hub-layout {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* ---------- Feelings ---------- */
.feelings-section {
  background: #fff;
  border-block: 1px solid #e7e5e4;
}

.feelings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .feelings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feelings-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feeling-card {
  text-align: left;
  border: 1px solid #e7e5e4;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.3s var(--ease-out);
}

.feeling-card:hover,
.feeling-card[aria-pressed='true'] {
  border-color: #99f6e4;
  background: #f0fdfa;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.feeling-card .emoji {
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.feeling-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.feeling-card span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------- Cruises ---------- */
.cruises-section {
  background:
    radial-gradient(ellipse 70% 50% at 10% 20%, rgba(13, 148, 136, 0.08), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #f0fdfa 100%);
}

.cruise-feature {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 1.75rem;
}

@media (min-width: 900px) {
  .cruise-feature {
    grid-template-columns: 1.15fr 1fr;
  }
}

.feature-panel {
  position: relative;
  border-radius: calc(var(--radius) + 0.25rem);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-soft);
}

.feature-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-panel-body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.15) 60%);
}

.feature-panel-body h3 {
  margin: 0.35rem 0;
  font-size: 1.65rem;
}

.feature-panel-body p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.88);
}

.line-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.line-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e7e5e4;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.15s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.line-pill:hover {
  border-color: #99f6e4;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* ---------- Essentials shop ---------- */
.shop-section {
  background: #fff;
}

.shop-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e7e5e4;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.shop-card-media {
  aspect-ratio: 4 / 3;
}

.shop-card-body {
  padding: 1.05rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-card h3 {
  margin: 0.35rem 0;
  font-size: 1.1rem;
}

.shop-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}

/* ---------- Insurance ---------- */
.insurance-section {
  /* Soft night ocean â†’ teal glow â†’ lavender mist */
  background:
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(167, 139, 250, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 45% at 10% 80%, rgba(62, 191, 176, 0.18), transparent 50%),
    linear-gradient(135deg, #1a2744 0%, #1e4a5c 42%, #2a6b7a 72%, #3d4a7a 100%);
  color: #f8fafc;
  overflow: hidden;
}

.insurance-section .section-kicker {
  color: var(--gold-soft);
}

.insurance-section .section-head p {
  color: rgba(248, 250, 252, 0.82);
}

.insurance-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 800px) {
  .insurance-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
  }
}

.insurance-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 0.15rem);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.insurance-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.45rem;
}

.insurance-card p {
  margin: 0 0 1rem;
  color: rgba(248, 250, 252, 0.82);
}

.insurance-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.insurance-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  color: rgba(248, 250, 252, 0.9);
}

.insurance-list i {
  color: var(--lavender-soft);
  margin-top: 0.2rem;
}

.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f5f3ff 100%);
  color: var(--purple-deep) !important;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(124, 111, 212, 0.28);
}

.insurance-aside {
  display: grid;
  gap: 0.85rem;
}

.mini-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.1rem;
  padding: 1.1rem 1.2rem;
}

.mini-stat strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.mini-stat span {
  font-size: 0.88rem;
  color: rgba(248, 250, 252, 0.72);
}

/* ---------- Luxury ---------- */
.luxury-section {
  background: linear-gradient(180deg, #1c1917 0%, #292524 100%);
  color: #fafaf9;
}

.luxury-section .section-kicker {
  color: #fcd34d;
}

.luxury-section .section-head p {
  color: #a8a29e;
}

.luxury-section .section-head a {
  color: #fde68a;
  text-underline-offset: 3px;
}

.luxury-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(41, 37, 36, 0.6);
  transition: border-color 0.2s ease, transform 0.35s var(--ease-out);
}

.luxury-card:hover {
  border-color: rgba(252, 211, 77, 0.4);
  transform: translateY(-3px);
}

.luxury-card img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.luxury-card:hover img {
  transform: scale(1.05);
}

.luxury-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.luxury-card-body .tag {
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(252, 211, 77, 0.85);
  font-weight: 600;
}

.luxury-card-body h3 {
  margin: 0.3rem 0;
  font-size: 1.2rem;
}

.luxury-card-body p {
  margin: 0;
  font-size: 0.9rem;
  color: #a8a29e;
}

/* ---------- Browse essentials row ---------- */
.browse-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  text-decoration: none;
  color: #fff;
  background: #d6d3d1;
}

.browse-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.browse-card:hover img {
  transform: scale(1.06);
}

.browse-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.15) 55%, transparent);
}

.browse-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem;
  z-index: 1;
}

.browse-card-body .tag {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.browse-card-body h3 {
  margin: 0;
  font-size: 1.25rem;
}

.browse-card-body p {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 640px) {
  .browse-card {
    min-height: 14rem;
    min-width: 0;
  }

  .browse-card-body {
    padding: 0.95rem 1rem;
  }

  .browse-card-body h3 {
    font-size: 1.1rem;
  }

  .browse-card-body p {
    font-size: 0.82rem;
  }

  .deal-card-body {
    padding: 0.85rem 0.9rem 1rem;
  }

  .deal-card h3 {
    font-size: 1rem;
  }

  .deal-card p {
    font-size: 0.84rem;
  }

  .btn-deal {
    min-height: 2.75rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.9rem;
  }

  .results-section .card-grid {
    gap: 0.85rem;
  }

  .hub-filters {
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  .hub-filter {
    font-size: 0.72rem;
    padding: 0.4rem 0.65rem;
  }

  .glow-card__title,
  .ess-card__title {
    font-size: 0.88rem;
  }

  .btn-glow,
  .btn-ess {
    min-height: 2.6rem;
    font-size: 0.82rem;
  }

  .section-inner {
    padding-left: max(0.85rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.85rem, env(safe-area-inset-right, 0px));
  }
}

/* ---------- Metaverse teaser (cinematic, open layout) ---------- */
/* ---------- Unified Metaverse Worlds block ---------- */
.mv-worlds {
  position: relative;
  background: #0b0720;
  color: #f5f3ff;
}

.mv-worlds__shell {
  display: flex;
  flex-direction: column;
}

.mv-layer {
  position: relative;
  padding: 2.75rem 0 2.5rem;
}

.mv-layer--hero {
  padding: 3.25rem 0 2.75rem;
  background:
    radial-gradient(ellipse 80% 60% at 15% 10%, rgba(168, 85, 247, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(34, 211, 238, 0.18), transparent 50%),
    linear-gradient(180deg, #12082b 0%, #0b0720 55%, #140a2e 100%);
  overflow: hidden;
}

.mv-layer__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.mv-layer__glow--a {
  width: 18rem;
  height: 18rem;
  top: -4rem;
  right: -2rem;
  background: rgba(192, 132, 252, 0.35);
}

.mv-layer__glow--b {
  width: 14rem;
  height: 14rem;
  bottom: 10%;
  left: -3rem;
  background: rgba(45, 212, 191, 0.2);
}

.mv-layer__head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.mv-layer__kicker {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c4b5fd;
}

.mv-layer__kicker--soft {
  color: #a78bfa;
}

.mv-layer__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  line-height: 1.1;
  color: #faf5ff;
  text-shadow: 0 0 40px rgba(168, 85, 247, 0.35);
}

.mv-layer__title--md {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  text-shadow: none;
  color: #1c1917;
}

.mv-layer__lead {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  line-height: 1.55;
  color: #ddd6fe;
  max-width: 34rem;
}

.mv-layer__lead--soft {
  color: #57534e;
}

.mv-layer__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.mv-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 45%, #22d3ee 120%);
  color: #0f172a;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 12px 32px rgba(124, 58, 237, 0.4);
  transition: transform 0.15s var(--ease-out), filter 0.15s ease;
}

.mv-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #0f172a;
}

.mv-cta--ghost {
  background: transparent;
  color: #e9d5ff;
  box-shadow: none;
  border: 1px solid rgba(196, 181, 253, 0.45);
}

.mv-cta--ghost:hover {
  background: rgba(167, 139, 250, 0.12);
  color: #faf5ff;
}

/* Primary Otherside card under Digital Travel â†’ Metaverse */
.mv-otherside-primary {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem 1.35rem;
  margin-bottom: 1.15rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(103, 232, 249, 0.35);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(34, 211, 238, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(167, 139, 250, 0.28), transparent 50%),
    linear-gradient(145deg, #1e0b42 0%, #0c061f 50%, #1a1040 100%);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@media (min-width: 640px) {
  .mv-otherside-primary {
    grid-template-columns: auto 1fr;
    gap: 1.5rem 1.75rem;
    padding: 1.75rem 1.75rem;
  }
}

.mv-otherside-primary__logo {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(103, 232, 249, 0.35);
  box-shadow: 0 0 32px rgba(103, 232, 249, 0.2);
  overflow: hidden;
  flex-shrink: 0;
}

.mv-otherside-primary__logo img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  display: block;
}

.mv-otherside-primary__name {
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  line-height: 1.15;
  color: #faf5ff;
}

.mv-otherside-primary__text {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #ddd6fe;
  max-width: 32rem;
}

.mv-op-sp-blurb {
  position: relative;
  z-index: 1;
  margin: 1.1rem 0 0;
  padding: 0.95rem 1.1rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #c4b5fd;
  background: rgba(30, 16, 64, 0.55);
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 1rem;
  max-width: 48rem;
}

/* Metaverse brand feature cards (OpenPage / Sugar Punks) */
.mv-brand-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}

.mv-brand-grid--pair {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .mv-brand-grid--pair {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }
}

@media (min-width: 768px) {
  .mv-brand-grid:not(.mv-brand-grid--pair) {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

/* Featured kicker spacing (Spotlight only) */
.section-head--featured {
  margin-bottom: 1.85rem;
  gap: 0.35rem;
}

.section-head--featured .section-kicker {
  margin-bottom: 0.45rem;
  letter-spacing: 0.1em;
}

.section-head--featured h2 {
  margin-bottom: 0.65rem;
}

.section-head--featured > p {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.mv-brand-card {
  border-radius: 1.35rem;
  padding: 1.5rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 17rem;
  border: 1px solid rgba(192, 132, 252, 0.4);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.2s var(--ease-out), border-color 0.15s ease, box-shadow 0.2s ease;
}

.mv-brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 22px 50px rgba(124, 58, 237, 0.4);
}

.mv-brand-card--otherside {
  background:
    radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.25), transparent 50%),
    linear-gradient(160deg, #1a0b3a 0%, #0f0724 55%, #1e1045 100%);
}

.mv-brand-card--openpage {
  background:
    radial-gradient(circle at 20% 100%, rgba(167, 139, 250, 0.3), transparent 50%),
    linear-gradient(160deg, #22104a 0%, #12082e 60%, #1a1240 100%);
}

.mv-brand-card--sugar {
  background:
    radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.2), transparent 45%),
    linear-gradient(160deg, #2a1248 0%, #140820 55%, #3b1d5c 100%);
}

.mv-brand-card__logo-wrap {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.25);
}

.mv-brand-card__logo-wrap--sp {
  background: #f5c56b;
  border-color: rgba(245, 197, 107, 0.5);
}

.mv-brand-card__logo {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  display: block;
}

.mv-brand-card__logo--sp {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-brand-card__logo-wrap img[src$=".svg"] {
  width: 3.5rem;
  height: 3.5rem;
}

.mv-brand-card__tag {
  margin: 0 0 0.3rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #67e8f9;
}

.mv-brand-card__name {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  line-height: 1.15;
  color: #faf5ff;
}

.mv-brand-card__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #c4b5fd;
  flex: 1;
}

.mv-brand-card__cta {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 50%, #22d3ee 130%);
  color: #0f172a;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.35);
  transition: filter 0.15s ease, transform 0.15s var(--ease-out);
}

.mv-brand-card__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  color: #0f172a;
}

/* Spotlight layer â€” soft paper panel under dark metaverse hero */
.mv-layer--spotlight {
  background: linear-gradient(180deg, #faf9ff 0%, #fafaf9 100%);
  color: var(--ink);
  border-top: 1px solid rgba(196, 181, 253, 0.35);
  border-bottom: 1px solid #e7e5e4;
  padding: 2.75rem 0 2.5rem;
}

.mv-layer--spotlight.spotlight-section {
  /* keep original spotlight-section kicker/heading colors */
  padding: 2.75rem 0 2.5rem;
}

.mv-layer--spotlight .section-head {
  text-align: center;
  margin-bottom: 1.75rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.mv-layer--spotlight .section-head h2 {
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.mv-layer--spotlight .spotlight-grid {
  max-width: 56rem;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .mv-layer--spotlight .spotlight-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mv-layer__head--soft {
  max-width: 36rem;
}

.mv-spot-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .mv-spot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mv-spot-card {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 1.15rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s var(--ease-out), border-color 0.15s ease, box-shadow 0.2s ease;
}

.mv-spot-card:hover {
  transform: translateY(-3px);
  border-color: #c4b5fd;
  box-shadow: 0 14px 34px rgba(91, 82, 176, 0.12);
}

.mv-spot-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #ede9fe, #e0e7ff);
}

.mv-spot-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-spot-card__body {
  padding: 0.95rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.mv-spot-card__tag {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.mv-spot-card__name {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.mv-spot-card__blurb {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #57534e;
  flex: 1;
}

.mv-spot-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.mv-spot-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.mv-spot-btn:hover {
  filter: brightness(1.05);
  color: #fff;
}

.mv-spot-btn--ghost {
  background: #fff;
  color: var(--accent-deep);
  border: 1px solid #ddd6fe;
}

.mv-spot-btn--ghost:hover {
  background: #f5f3ff;
  color: var(--accent-deep);
}

.mv-spot-note {
  margin: 1.15rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: #78716c;
}

.mv-spot-note a {
  color: var(--accent-deep);
  font-weight: 600;
}

/* Avatars layer (compact, under Spotlight) */
.mv-layer--avatars {
  background: linear-gradient(180deg, #fafaf9 0%, #f5f3ff 100%);
  color: var(--ink);
  padding: 2rem 0 2.5rem;
  border-top: 1px solid #ede9fe;
}

.mv-avatars-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1.1rem;
}

.mv-avatars-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.mv-avatars-title {
  margin: 0 0 0.3rem;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.25;
}

.mv-avatars-sub {
  margin: 0;
  font-size: 0.88rem;
  color: #57534e;
  max-width: 28rem;
}

.mv-avatars-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-deep);
  text-decoration: none;
  white-space: nowrap;
}

.mv-avatars-more:hover {
  text-decoration: underline;
}

.mv-avatar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 520px) {
  .mv-avatar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 800px) {
  .mv-avatar-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.mv-avatar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 0.95rem;
  padding: 0.55rem 0.45rem 0.7rem;
  transition: transform 0.15s var(--ease-out), border-color 0.15s ease, box-shadow 0.15s ease;
}

.mv-avatar-card:hover {
  transform: translateY(-2px);
  border-color: #c4b5fd;
  box-shadow: 0 10px 24px rgba(91, 82, 176, 0.12);
}

.mv-avatar-card__media {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.7rem;
  overflow: hidden;
  margin-bottom: 0.4rem;
  background: #0f172a;
}

.mv-avatar-card.bg-gold .mv-avatar-card__media { background: #f5c56b; }
.mv-avatar-card.bg-indigo .mv-avatar-card__media { background: #1e1b4b; }
.mv-avatar-card.bg-slate .mv-avatar-card__media { background: #0f172a; }
.mv-avatar-card.bg-violet .mv-avatar-card__media { background: #4c1d95; }
.mv-avatar-card.bg-ember .mv-avatar-card__media { background: #7c2d12; }
.mv-avatar-card.bg-teal .mv-avatar-card__media { background: #2a9a90; }

.mv-avatar-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-avatar-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #292524;
  line-height: 1.2;
}

.mv-avatar-card__hint {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a8a29e;
  margin-top: 0.15rem;
}

.metaverse-teaser {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 6.5rem 0 5rem;
  color: #f5f3ff;
  background:
    radial-gradient(ellipse 90% 70% at 20% 20%, rgba(99, 102, 241, 0.35), transparent 55%),
    radial-gradient(ellipse 80% 60% at 85% 70%, rgba(147, 51, 234, 0.28), transparent 50%),
    linear-gradient(160deg, #020617 0%, #0f172a 35%, #1e1b4b 70%, #0c0a1d 100%);
}

.metaverse-teaser__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.metaverse-teaser__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  mix-blend-mode: screen;
  transform: scale(1.06);
}

.metaverse-teaser__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}

.metaverse-teaser__glow--a {
  width: min(50vw, 420px);
  height: min(50vw, 420px);
  top: -8%;
  right: 5%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.55), transparent 70%);
}

.metaverse-teaser__glow--b {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  bottom: -12%;
  left: -5%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.5), transparent 70%);
}

.metaverse-teaser__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(165, 180, 252, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 180, 252, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
}

.metaverse-teaser__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

/* Open hero â€” no heavy glass card */
.metaverse-hero {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
  padding: 0.5rem 0.5rem 0;
}

.metaverse-teaser__kicker {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a5b4fc;
}

.metaverse-teaser__title {
  margin: 0 0 1.15rem;
  font-size: clamp(2.35rem, 6vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fafafa;
  text-shadow: 0 8px 40px rgba(76, 29, 149, 0.45);
}

.metaverse-teaser__desc {
  margin: 0 auto 2rem;
  max-width: 30rem;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.92);
}

.metaverse-teaser__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.05rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: #0f172a !important;
  background: linear-gradient(135deg, #e0e7ff 0%, #c4b5fd 45%, #a78bfa 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 12px 40px rgba(129, 140, 248, 0.45);
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.metaverse-teaser__cta:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.45) inset,
    0 18px 50px rgba(167, 139, 250, 0.55);
}

.metaverse-teaser__cta:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px #0f172a,
    0 0 0 6px #c4b5fd,
    0 12px 40px rgba(129, 140, 248, 0.45);
}

.metaverse-teaser__cta:active {
  transform: translateY(-1px) scale(1.01);
}

.metaverse-teaser__openpage {
  margin: 1.35rem auto 0;
  max-width: 28rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.82);
}

.metaverse-teaser__openpage a {
  color: #c4b5fd;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.metaverse-teaser__openpage a:hover,
.metaverse-teaser__openpage a:focus-visible {
  color: #ede9fe;
}

.metaverse-teaser__note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: rgba(196, 181, 253, 0.88);
  letter-spacing: 0.01em;
}

/* Otherside motion â€” transform only (no box-shadow / opacity thrash) */
.metaverse-teaser__bg {
  animation: metaBgDrift 28s ease-in-out infinite alternate;
}

.metaverse-teaser__glow--a {
  animation: metaGlowFloat 22s ease-in-out infinite alternate;
}

.metaverse-teaser__glow--b {
  animation: metaGlowFloat 26s ease-in-out infinite alternate-reverse;
}

.metaverse-teaser__cta {
  animation: none;
}

@keyframes metaBgDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(0, -1.2%, 0) scale(1.03); }
}

@keyframes metaGlowFloat {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(2.5%, -3%, 0); }
}

.metaverse-hero.metaverse-reveal.is-visible .metaverse-teaser__kicker {
  animation: metaFadeUp 0.7s var(--ease-out) both;
}

.metaverse-hero.metaverse-reveal.is-visible .metaverse-teaser__title {
  animation: metaFadeUp 0.75s var(--ease-out) 0.08s both;
}

.metaverse-hero.metaverse-reveal.is-visible .metaverse-teaser__desc {
  animation: metaFadeUp 0.75s var(--ease-out) 0.16s both;
}

.metaverse-hero.metaverse-reveal.is-visible .metaverse-teaser__cta {
  animation: metaFadeUp 0.75s var(--ease-out) 0.24s both;
}

.metaverse-hero.metaverse-reveal.is-visible .metaverse-teaser__openpage {
  animation: metaFadeUp 0.75s var(--ease-out) 0.32s both;
}

.metaverse-hero.metaverse-reveal.is-visible .metaverse-teaser__note {
  animation: metaFadeUp 0.75s var(--ease-out) 0.4s both;
}

@keyframes metaFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .metaverse-teaser__bg,
  .metaverse-teaser__glow--a,
  .metaverse-teaser__glow--b,
  .metaverse-teaser__cta {
    animation: none !important;
  }

  .metaverse-hero.metaverse-reveal.is-visible .metaverse-teaser__kicker,
  .metaverse-hero.metaverse-reveal.is-visible .metaverse-teaser__title,
  .metaverse-hero.metaverse-reveal.is-visible .metaverse-teaser__desc,
  .metaverse-hero.metaverse-reveal.is-visible .metaverse-teaser__cta,
  .metaverse-hero.metaverse-reveal.is-visible .metaverse-teaser__openpage,
  .metaverse-hero.metaverse-reveal.is-visible .metaverse-teaser__note {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* Slim avatar strip under hero */
.metaverse-avatars {
  width: 100%;
  max-width: 52rem;
  padding: 1.25rem 1.15rem 1.35rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(167, 139, 250, 0.22);
  background: rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.metaverse-avatars__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}

.metaverse-avatars__label {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: #e9d5ff;
}

.metaverse-avatars__sub {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: rgba(203, 213, 225, 0.8);
}

.metaverse-avatars__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #c4b5fd !important;
  text-decoration: none;
  white-space: nowrap;
}

.metaverse-avatars__link:hover {
  color: #ede9fe !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sp-chip-row {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.sp-chip-row::-webkit-scrollbar {
  height: 4px;
}

.sp-chip-row::-webkit-scrollbar-thumb {
  background: rgba(167, 139, 250, 0.4);
  border-radius: 999px;
}

.sp-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: 5.5rem;
  text-decoration: none;
  color: #e2e8f0 !important;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
}

.sp-chip img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1rem;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sp-chip:hover img {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.sp-chip.bg-gold img { background: #f5c56b; }
.sp-chip.bg-indigo img { background: #1e1b4b; }
.sp-chip.bg-slate img { background: #0f172a; }
.sp-chip.bg-violet img { background: #4c1d95; }
.sp-chip.bg-ember img { background: #7c2d12; }
.sp-chip.bg-teal img { background: #2a9a90; }

/* Scroll: fade in + slide up */
.metaverse-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.metaverse-reveal--delay {
  transition-delay: 0.14s;
}

.metaverse-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.95rem 1.6rem;
  border-radius: 1.1rem;
  background: var(--teal-700);
  color: #fff;
  transition: background 0.15s ease;
  width: fit-content;
}

.btn-primary:hover {
  background: var(--teal-800);
}

@media (prefers-reduced-motion: reduce) {
  .metaverse-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .metaverse-teaser__cta:hover {
    transform: none;
  }
}

.sugar-card {
  background: linear-gradient(145deg, #fff7ed 0%, #fdf2f8 45%, #eff6ff 100%);
  border: 1px solid #ffedd5;
  border-radius: calc(var(--radius) + 0.15rem);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.sugar-grid {
  display: grid;
}

@media (min-width: 900px) {
  .sugar-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.sugar-media {
  position: relative;
  min-height: 260px;
  background: linear-gradient(135deg, #4a044e, #1e1b4b);
}

.sugar-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sugar-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}

.sugar-copy {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sugar-copy h3 {
  margin: 0.25rem 0 0.55rem;
  font-size: 1.65rem;
}

.sugar-copy p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.sugar-copy ul {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
}

.sugar-copy li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.sugar-copy li i {
  color: #f97316;
  margin-top: 0.2rem;
}

.sugar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.sugar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.15rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, #f97316, #ec4899 50%, #8b5cf6);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.1rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #44403c !important;
  border: 2px solid #e7e5e4;
  background: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.btn-ghost:hover {
  border-color: #fdba74;
  background: #fff7ed;
}

.avatar-strip {
  border-top: 1px solid rgba(255, 237, 213, 0.9);
  background: rgba(255, 255, 255, 0.55);
  padding: 1.1rem 1.25rem 1.35rem;
}

.avatar-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.avatar-strip-head h4 {
  margin: 0;
  font-size: 1rem;
}

.avatar-strip-head a {
  color: #ea580c;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.avatar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.avatar-tile {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e7e5e4;
  text-decoration: none;
  aspect-ratio: 1;
}

.avatar-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.avatar-tile:hover img {
  transform: scale(1.03);
}

.avatar-tile.bg-gold { background: #f5c56b; }
.avatar-tile.bg-indigo { background: #1e1b4b; }
.avatar-tile.bg-slate { background: #0f172a; }

/* ---------- Partner strip ---------- */
.partner-strip {
  margin-top: 2.25rem;
  text-align: center;
}

.partner-strip-label {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.partner-strip .line-pills {
  justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  border-top: 1px solid #e7e5e4;
  padding: 2.75rem 1.25rem 2.25rem;
}

/* Footer: no animated overlay (global aurora already covers it) */
.site-footer::after {
  content: none;
  display: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--teal-700);
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid #d6d3d1;
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: #44403c;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.share-btn:hover {
  border-color: #99f6e4;
  background: #f0fdfa;
  color: var(--teal-800);
}

.footer-note {
  margin: 0;
  font-size: 0.78rem;
  color: #78716c;
  max-width: 28rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.75rem;
  color: #a8a29e;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal a {
  font-size: 0.78rem;
  color: #78716c;
  text-decoration: none;
  font-weight: 500;
}

.footer-legal a:hover {
  color: var(--brand-deep);
  text-decoration: underline;
}

.footer-contact {
  margin: 0;
  font-size: 0.82rem;
  color: #57534e;
}

.footer-contact a {
  color: var(--brand-deep);
  font-weight: 500;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact__note {
  color: #a8a29e;
  font-weight: 400;
}

/* ---------- Glow Market ---------- */
.glow-market {
  position: relative;
  overflow: hidden;
  background: #fdf8f5;
}

.glow-market__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(251, 182, 206, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 20%, rgba(253, 186, 116, 0.22), transparent 50%),
    radial-gradient(ellipse 55% 45% at 50% 100%, rgba(196, 181, 253, 0.28), transparent 55%),
    linear-gradient(180deg, #fff7f5 0%, #fdf8f5 45%, #f5f3ff 100%);
}

.glow-market__inner {
  position: relative;
  z-index: 1;
}

.glow-kicker {
  color: #c26d8a !important;
}

.glow-block {
  margin-top: 1.75rem;
}

.glow-block__head {
  margin-bottom: 1rem;
}

.glow-block__title {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  color: #4a3f45;
}

.glow-block__sub {
  margin: 0;
  font-size: 0.88rem;
  color: #8a7a80;
}

.glow-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .glow-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .glow-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .glow-grid--travel {
    grid-template-columns: repeat(3, 1fr);
  }
}

.glow-card {
  background: linear-gradient(165deg, #ffffff 0%, #fff9f7 100%);
  border: 1px solid rgba(253, 224, 220, 0.95);
  border-radius: 1.15rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  box-shadow: 0 10px 28px rgba(194, 109, 138, 0.08);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.15s ease;
}

.glow-card:hover {
  transform: translateY(-4px);
  border-color: #f9a8d4;
  box-shadow: 0 16px 36px rgba(194, 109, 138, 0.14);
}

.glow-card__cat {
  margin: 0;
  padding: 0.6rem 0.85rem 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c26d8a;
}

.glow-card__media {
  margin: 0.4rem 0.75rem 0;
  border-radius: 0.8rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #fce7f3, #ffedd5, #ede9fe);
}

.glow-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glow-card__media--empty {
  min-height: 7rem;
}

.glow-card__body {
  padding: 0.7rem 0.85rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.glow-card__title {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.25;
  color: #3f3a3c;
}

.glow-card__blurb {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #8a7a80;
  flex: 1;
}

.glow-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  margin-top: 0.15rem;
}

.glow-card__price {
  font-size: 0.86rem;
  font-weight: 700;
  color: #b4536a;
}

.glow-card__rating {
  font-size: 0.7rem;
  color: #e8b86d;
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
}

.glow-card__count {
  color: #a8a29e;
  margin-left: 0.15rem;
  font-weight: 500;
}

.btn-glow {
  margin-top: 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, #f9a8d4 0%, #fdba74 48%, #c4b5fd 100%);
  color: #3f2a32;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.15s ease, transform 0.15s var(--ease-out);
}

.btn-glow:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  color: #3f2a32;
}

.glow-tips {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .glow-tips {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .glow-tips {
    grid-template-columns: repeat(5, 1fr);
  }
}

.glow-tip {
  border-radius: 1.05rem;
  padding: 1rem 0.95rem;
  border: 1px solid transparent;
  min-height: 8.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.glow-tip--0 {
  background: linear-gradient(160deg, #fff1f2 0%, #ffe4e6 100%);
  border-color: #fecdd3;
}
.glow-tip--1 {
  background: linear-gradient(160deg, #fff7ed 0%, #ffedd5 100%);
  border-color: #fed7aa;
}
.glow-tip--2 {
  background: linear-gradient(160deg, #f5f3ff 0%, #ede9fe 100%);
  border-color: #ddd6fe;
}
.glow-tip--3 {
  background: linear-gradient(160deg, #faf5f0 0%, #f5e6d8 100%);
  border-color: #e7d5c5;
}
.glow-tip--4 {
  background: linear-gradient(160deg, #fdf2f8 0%, #fae8ff 100%);
  border-color: #f5d0fe;
}

.glow-tip__n {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #c26d8a;
  opacity: 0.85;
}

.glow-tip__title {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.25;
  color: #4a3f45;
}

.glow-tip__text {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #7a6a70;
}

.glow-affiliate-note {
  margin: 1.35rem 0 0;
  text-align: center;
  font-size: 0.72rem;
  color: #a8a29e;
  line-height: 1.4;
}

/* ---------- JRNYfun Travel Hub ---------- */
.travel-hub {
  /* Static gradients only â€” animated background-position was expensive on scroll */
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(167, 139, 250, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 100%, rgba(62, 191, 176, 0.1), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #fafaf9 40%, #f5f3ff 100%);
}

.hub-layout {
  display: grid;
  gap: 1.75rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

@media (min-width: 1024px) {
  .hub-layout {
    grid-template-columns: 1fr 1.15fr;
    gap: 2rem;
    align-items: start; /* Pack Smart keeps natural content height */
  }

  /* JRNY Tip panel only: stretch feed to match Pack Smart (set via JS) */
  .hub-stream.is-height-matched {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .hub-stream.is-height-matched .stream-feed {
    flex: 1 1 auto;
    max-height: none;
    min-height: 0;
  }
}

.hub-stream,
.hub-essentials {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(231, 229, 228, 0.95);
  border-radius: calc(var(--radius) + 0.15rem);
  padding: 1.25rem 1.15rem 1.35rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .hub-stream,
  .hub-essentials {
    padding: 1.5rem 1.4rem 1.6rem;
  }
}

.hub-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem 1rem;
  margin-bottom: 1.15rem;
}

.hub-eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hub-panel-title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--ink);
}

.btn-hub-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid #c4b5fd;
  background: linear-gradient(180deg, #fff 0%, #f5f3ff 100%);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s var(--ease-out);
}

.btn-hub-outline:hover {
  border-color: var(--accent-mid);
  box-shadow: 0 8px 22px rgba(124, 111, 212, 0.18);
  transform: translateY(-1px);
}

.stream-feed {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: 36rem;
  overflow-y: auto;
  padding-right: 0.15rem;
}

/* Curated JRNYfun Travel Stream (static cards â€” always loads) */
.hub-stream {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
}

.jrny-stream-panel {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem 1.35rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.jrny-stream-panel__head {
  text-align: center;
  margin-bottom: 1.35rem;
}

.jrny-stream-panel__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.jrny-stream-panel__sub {
  margin: 0;
  font-size: 0.92rem;
  color: #64748b;
}

.jrny-stream-cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-height: none;
  overflow: visible;
  padding: 0;
}

.jrny-post-card {
  background: #fff;
  border-radius: 0.85rem;
  padding: 1.15rem 1.15rem 1.2rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: box-shadow 0.2s var(--ease-out), transform 0.2s var(--ease-out), border-color 0.15s ease;
}

.jrny-post-card:hover {
  transform: translateY(-2px);
  border-color: #c4b5fd;
  box-shadow: 0 12px 28px rgba(91, 82, 176, 0.1);
}

.jrny-post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.jrny-post-card__avatar {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(145deg, #8b7fdc 0%, #5ec4b8 100%);
  box-shadow: 0 4px 12px rgba(94, 196, 184, 0.35);
}

.jrny-post-card__handle {
  display: inline;
  font-size: 0.92rem;
  color: #0f172a;
  font-weight: 700;
}

.jrny-post-card__time {
  color: #94a3b8;
  font-size: 0.86rem;
  font-weight: 500;
  margin-left: 0.25rem;
}

.jrny-post-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
}

.jrny-stream-cta {
  margin: 1.25rem 0 0;
  text-align: center;
}

.jrny-stream-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: #0f172a;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.jrny-stream-cta__btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.22);
  color: #fff !important;
}

.jrny-stream-cta__note {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .jrny-stream-panel {
    padding: 1.75rem 1.5rem 1.5rem;
  }

  .jrny-post-card {
    padding: 1.25rem 1.3rem;
  }
}

@media (max-width: 640px) {
  .hub-stream,
  .hub-essentials {
    padding: 0 !important;
  }

  .hub-essentials {
    background: rgba(255, 255, 255, 0.72) !important;
    border: 1px solid rgba(231, 229, 228, 0.95) !important;
    border-radius: calc(var(--radius) + 0.15rem) !important;
    padding: 1rem 0.85rem 1.1rem !important;
    box-shadow: var(--shadow-soft) !important;
  }

  .jrny-stream-panel {
    padding: 1.25rem 1rem 1.15rem;
  }

  .jrny-stream-panel__title {
    font-size: 1.35rem;
  }

  .jrny-post-card__text {
    font-size: 0.9rem;
  }

  .jrny-stream-cta__btn {
    width: 100%;
    max-width: 22rem;
  }

  .hub-panel-head {
    gap: 0.65rem;
    margin-bottom: 0.9rem;
  }

  .hub-panel-title {
    font-size: 1.15rem;
  }

  .btn-hub-outline {
    width: 100%;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.78rem;
  }
}

.stream-card {
  border: 1px solid #e7e5e4;
  border-radius: 1.05rem;
  background: linear-gradient(165deg, #ffffff 0%, #fafafa 100%);
  padding: 0.85rem 0.9rem 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.2s var(--ease-out);
}

.stream-card:hover {
  border-color: #ddd6fe;
  box-shadow: 0 10px 28px rgba(91, 82, 176, 0.08);
}

.stream-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  color: #78716c;
}

.stream-card__handle,
.stream-card__tip {
  font-weight: 700;
  color: var(--accent-deep);
}

.stream-card__tip {
  background: #ede9fe;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stream-card__media {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.65rem;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #e0e7ff, #ccfbf1);
}

.stream-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stream-card__text {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #44403c;
}

.stream-card__stats {
  display: flex;
  gap: 0.85rem;
  font-size: 0.75rem;
  color: #a8a29e;
  margin-bottom: 0.45rem;
}

.stream-card__stats span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.stream-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.stream-card__link:hover {
  text-decoration: underline;
}

.stream-empty {
  margin: 0;
  font-size: 0.9rem;
  color: #78716c;
  text-align: center;
  padding: 1.5rem 0.5rem;
}

/* Essentials cards */
.hub-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.hub-filter {
  border: 1px solid #e7e5e4;
  background: #fff;
  color: #57534e;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.hub-filter:hover {
  border-color: #c4b5fd;
  color: var(--accent-deep);
}

.hub-filter.is-active {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #fff;
}

.hub-essentials-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .hub-essentials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ess-card {
  border: 1px solid #e7e5e4;
  border-radius: 1.1rem;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.15s ease;
}

.ess-card:hover {
  transform: translateY(-3px);
  border-color: #c4b5fd;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.ess-card__cat {
  margin: 0;
  padding: 0.55rem 0.85rem 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.ess-card__media {
  margin: 0.45rem 0.75rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #e0f2fe, #f5f3ff);
}

.ess-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ess-card__media--empty {
  min-height: 7rem;
}

.ess-card__body {
  padding: 0.75rem 0.85rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.ess-card__title {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.25;
  color: var(--ink);
}

.ess-card__blurb {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #78716c;
  flex: 1;
}

.ess-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin-top: 0.15rem;
}

.ess-card__price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.ess-card__rating {
  font-size: 0.72rem;
  color: #e8b86d;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.ess-card__count {
  color: #a8a29e;
  margin-left: 0.2rem;
  font-weight: 500;
}

.btn-ess {
  margin-top: 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 0.75rem;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: filter 0.15s ease, transform 0.15s var(--ease-out);
}

.btn-ess:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  color: #fff;
}

.hub-affiliate-note {
  margin: 0.95rem 0 0;
  font-size: 0.72rem;
  color: #a8a29e;
  text-align: center;
  line-height: 1.4;
}

/* ---------- Legal pages ---------- */
.legal-page .site-header {
  position: sticky;
  top: 0;
}

.legal-main {
  padding: 2rem 1.25rem 3.5rem;
}

.legal-article {
  max-width: 42rem;
  margin: 0 auto;
}

.legal-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.legal-article h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
}

.legal-meta {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: #78716c;
}

.legal-notice {
  margin: 0 0 1.75rem;
  padding: 0.9rem 1rem;
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
  border-radius: 0.85rem;
  font-size: 0.9rem;
  color: #44403c;
}

.legal-article h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.15rem;
}

.legal-article h3 {
  margin: 1.15rem 0 0.45rem;
  font-size: 1rem;
}

.legal-article p,
.legal-article li {
  color: #44403c;
  font-size: 0.95rem;
}

.legal-article ul {
  padding-left: 1.25rem;
}

.legal-article a {
  color: var(--brand-deep);
  font-weight: 500;
}

.legal-back {
  margin-top: 2.5rem !important;
}

.legal-back a {
  text-decoration: none;
}

/* ---------- Cookie notice ---------- */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 28rem;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  background: #1c1917;
  color: #fafaf9;
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner p {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #e7e5e4;
}

.cookie-banner a {
  color: #a5b4fc;
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-banner__btn {
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner__btn--primary {
  background: #a78bfa;
  color: #1c1917;
}

.cookie-banner__btn--ghost {
  background: transparent;
  color: #e7e5e4;
  border: 1px solid #57534e;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  padding: 0;
}

@media (min-width: 768px) {
  .modal-backdrop {
    align-items: center;
    padding: 1rem;
  }
}

.modal-panel {
  background: #fff;
  width: 100%;
  max-width: 26rem;
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 1.35rem;
  box-shadow: var(--shadow-lift);
}

@media (min-width: 768px) {
  .modal-panel {
    border-radius: 1.5rem;
  }
}

.modal-panel h3 {
  margin: 0;
  font-size: 1.15rem;
}

.modal-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

/* ---------- Parallax float layers (decorative) ---------- */
.parallax-band {
  position: relative;
  overflow: hidden;
}

.parallax-float {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* ---------- Metaverse Spotlight (cinematic banners + glass cards) ---------- */
.spotlight-section {
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(99, 102, 241, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(13, 148, 136, 0.08), transparent 50%),
    linear-gradient(180deg, #0c0a14 0%, #12101c 45%, #0f172a 100%);
  color: #f8fafc;
  overflow: hidden;
}

.spotlight-section .section-kicker {
  color: #a5b4fc;
}

.spotlight-section .section-head p {
  color: rgba(226, 232, 240, 0.82);
}

.spotlight-section .section-head h2 {
  color: #fafafa;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .spotlight-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.spotlight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.45);
  color: #f8fafc;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.35s ease;
  isolation: isolate;
}

.spotlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(165, 180, 252, 0.35);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

/* Banner media with slow zoom on hover */
.spotlight-card__media {
  position: relative;
  height: 11.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .spotlight-card__media {
    height: 13rem;
  }
}

.spotlight-card__banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.05);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.spotlight-card:hover .spotlight-card__banner {
  transform: scale(1.14) translateY(-2%);
}

.spotlight-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 16, 0.15) 0%, rgba(8, 8, 16, 0.55) 55%, rgba(8, 8, 16, 0.92) 100%),
    linear-gradient(90deg, rgba(13, 148, 136, 0.2), transparent 50%);
  pointer-events: none;
}

.spotlight-card__overlay--hood {
  background:
    linear-gradient(180deg, rgba(8, 8, 16, 0.2) 0%, rgba(8, 8, 16, 0.55) 55%, rgba(8, 8, 16, 0.92) 100%),
    linear-gradient(90deg, rgba(234, 88, 12, 0.22), transparent 55%);
}

.spotlight-card__content {
  position: relative;
  z-index: 1;
  margin-top: -2.25rem;
  padding: 0 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.spotlight-card__logo {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 1.1rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.spotlight-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotlight-card__logo--jrny {
  background: #0a0a0a;
  padding: 0.5rem;
}

.spotlight-card__logo--jrny img {
  object-fit: contain;
}

.spotlight-card__logo--hood {
  background: #111;
}

.spotlight-card__tag {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender-soft);
}

.spotlight-card__name {
  margin: 0 0 0.55rem;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.spotlight-card__blurb {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.9);
  flex: 1;
}

.spotlight-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.spotlight-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.72rem 1.05rem;
  border-radius: 0.95rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: #0f172a !important;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.spotlight-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.spotlight-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0 !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.spotlight-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.spotlight-note {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(203, 213, 225, 0.7);
}

.spotlight-note a {
  color: var(--lavender-soft);
  font-weight: 600;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1.15rem;
  z-index: 85;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 10px 28px rgba(124, 111, 212, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, filter 0.15s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  filter: brightness(1.08);
}

.back-to-top:focus-visible {
  box-shadow: var(--ring), 0 10px 28px rgba(15, 23, 42, 0.25);
}

.back-to-top[hidden] {
  display: none !important;
}

.back-to-top.is-visible[hidden] {
  display: grid !important;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-parallax,
  .parallax-float,
  [data-parallax] {
    transform: none !important;
  }

  .deal-card:hover,
  .shop-card:hover,
  .feeling-card:hover,
  .luxury-card:hover,
  .spotlight-card:hover {
    transform: none;
  }

  .spotlight-card__banner,
  .spotlight-card:hover .spotlight-card__banner {
    transform: scale(1.05) !important;
    transition: none !important;
  }

  .dest-tile img,
  .browse-card img,
  .luxury-card img {
    transition: none;
  }

  .back-to-top {
    transition: none;
  }
}

/* ---------- Subpages (Hotels etc.) ---------- */
.subpage .site-header {
  position: sticky;
}

.page-hero {
  padding: clamp(5.5rem, 10vw, 7rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(167, 139, 250, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 45% at 90% 20%, rgba(94, 196, 184, 0.14), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #fafaf9 60%, #fff 100%);
  border-bottom: 1px solid #e7e5e4;
}

.page-hero__inner {
  max-width: 46rem;
  text-align: center;
}

.page-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0f172a;
}

.page-hero__lead {
  margin: 0 auto 1.5rem;
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  line-height: 1.6;
  color: #475569;
  max-width: 40rem;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
}

.page-hero__cta {
  width: auto;
  min-width: 12rem;
  margin-top: 0;
}

.page-hero__secondary {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-deep, #5b52b0);
  text-decoration: none;
}

.page-hero__secondary:hover {
  text-decoration: underline;
}

.hotels-widget-shell {
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hotels-widget-placeholder {
  border: 2px dashed #c4b5fd;
  border-radius: 1.15rem;
  background: linear-gradient(165deg, #f5f3ff 0%, #fff 100%);
  padding: 2rem 1.25rem;
  text-align: center;
}

.hotels-widget-placeholder__label {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: var(--accent-deep, #5b52b0);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hotels-widget-placeholder__hint {
  margin: 0;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

.hotels-widget-placeholder__hint code {
  font-size: 0.8rem;
  background: #f1f5f9;
  padding: 0.1rem 0.35rem;
  border-radius: 0.35rem;
}

.hotels-fallback {
  text-align: center;
}

.hotels-fallback__label {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.hotels-fallback__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.hotels-fallback__btns .btn-deal {
  width: auto;
  margin-top: 0;
  min-width: 10rem;
}

.hotel-dest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 560px) {
  .hotel-dest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .hotel-dest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hotel-dest-card--wide {
    grid-column: span 1;
  }
}

.hotel-dest-card {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 1.15rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  min-width: 0;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, border-color 0.15s ease;
}

.hotel-dest-card:hover {
  transform: translateY(-3px);
  border-color: #c4b5fd;
  box-shadow: 0 14px 32px rgba(91, 82, 176, 0.1);
}

.hotel-dest-card__body {
  padding: 1.2rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  box-sizing: border-box;
}

.hotel-dest-card h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #0f172a;
}

.hotel-dest-card p {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #57534e;
}

.hotel-dest-card .btn-deal {
  margin-top: 0.5rem;
}

.hotels-featured {
  background: linear-gradient(180deg, #fafaf9 0%, #f5f3ff 50%, #fafaf9 100%);
}

.hotels-seo {
  background: #fff;
  border-block: 1px solid #e7e5e4;
}

.hotels-seo__inner {
  max-width: 48rem;
}

.hotels-seo__grid {
  display: grid;
  gap: 1.5rem;
}

.hotels-seo__block h2 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  color: #0f172a;
}

.hotels-seo__block p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
}

.hotels-seo__note {
  margin: 2rem 0 0;
  font-size: 0.8rem;
  color: #94a3b8;
  text-align: center;
  line-height: 1.5;
}

.hotels-more__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 560px) {
  .hotels-more__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .hotels-more__links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hotels-more__card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid #e7e5e4;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.hotels-more__card:hover {
  border-color: #c4b5fd;
  box-shadow: 0 10px 24px rgba(91, 82, 176, 0.08);
  transform: translateY(-2px);
}

.hotels-more__card strong {
  font-size: 1rem;
  color: #0f172a;
}

.hotels-more__card span {
  font-size: 0.85rem;
  color: #64748b;
}

@media (max-width: 640px) {
  .page-hero {
    padding-top: 5rem;
  }

  .hotels-fallback__btns .btn-deal,
  .hotels-fallback__btns .btn-hub-outline {
    width: 100%;
  }

  .page-hero__cta {
    width: 100%;
  }
}

/* =========================================================
   Phase 1 redesign â€” Ask JRNY, multi-page chrome, cards
   ========================================================= */

.nav-cta {
  margin-left: 0.5rem;
  white-space: nowrap;
}
.nav-link.is-active {
  color: var(--brand-deep);
  font-weight: 600;
}
.mobile-nav__link.is-active,
.mobile-nav__link--cta {
  font-weight: 600;
}
.mobile-nav__link--cta {
  background: var(--brand-gradient);
  color: #fff !important;
  border-radius: 999px;
  margin-top: 0.5rem;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: none;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  background: var(--brand-gradient);
  transition: transform 0.15s var(--ease-out), box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); color: #fff; }
.btn:focus-visible { outline: none; box-shadow: var(--ring); }
.btn--sm { padding: 0.45rem 0.9rem; font-size: 0.875rem; }
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(28,25,23,0.12);
}
.btn--ghost:hover { color: var(--ink); }
.btn--accent { background: var(--accent-gradient); }
.btn--partner { background: #fff; color: var(--ink); border: 1px solid rgba(28,25,23,0.12); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.page-main { padding-bottom: 3rem; }
.page-hero {
  padding: calc(var(--header-h) + 2.5rem) 0 1.5rem;
  background: linear-gradient(180deg, #f3f0ff 0%, var(--paper) 100%);
}
.page-hero .section-inner { max-width: 720px; }
.lead { font-size: 1.125rem; color: var(--muted); max-width: 40rem; }
.section--soft { background: #f5f4f2; }
.section-more { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.disclosure-inline {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 1rem 0 0;
  max-width: 40rem;
}
.trust-banner {
  background: #ecfeff;
  border: 1px solid #a5f3fc;
  color: #164e63;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

/* Ask JRNY shell */
/* Allow follow-up cards below the form to show (default hero clips overflow) */
.hero--ask {
  overflow: visible;
}
.hero--ask .hero-media {
  overflow: hidden;
  border-radius: 0;
}
.hero--ask .hero-content--ask {
  max-width: 44rem;
  width: 100%;
  overflow: visible;
}
.hero-positioning {
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0.75rem 0 0;
  color: rgba(255,255,255,0.92);
}
.ask-shell {
  margin-top: 1.5rem;
  background: rgba(255,255,255,0.96);
  border-radius: 1.25rem;
  padding: 1.15rem 1.15rem 1rem;
  box-shadow: var(--shadow-lift);
  color: var(--ink);
}
.ask-shell--page {
  margin-top: 1.25rem;
  box-shadow: var(--shadow-soft);
}
.ask-shell__label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.ask-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
@media (min-width: 720px) {
  .ask-row {
    flex-direction: row;
    align-items: stretch;
  }
  .ask-submit { flex: 0 0 auto; align-self: stretch; }
}
.ask-input-wrap {
  position: relative;
  flex: 1;
  width: 100%;
  min-width: 0;
}
.ask-input {
  flex: 1;
  width: 100%;
  min-height: 3.25rem;
  resize: vertical;
  border: 1px solid rgba(28,25,23,0.12);
  border-radius: 1rem;
  padding: 0.85rem 2.75rem 0.85rem 1rem;
  font: inherit;
  font-size: 1.05rem;
  background: #fff;
  color: var(--ink);
  box-sizing: border-box;
}
.ask-input:focus {
  outline: none;
  box-shadow: var(--ring);
  border-color: transparent;
}
.ask-clear {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #f5f5f4;
  color: #44403c;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
  z-index: 2;
  transition: background 0.15s ease, color 0.15s ease;
}
.ask-clear:hover,
.ask-clear:focus-visible {
  background: #e7e5e4;
  color: #1c1917;
  outline: none;
  box-shadow: 0 0 0 2px rgba(124, 111, 212, 0.35);
}
.ask-clear[hidden] {
  display: none !important;
}

/* Trip Assistant dashboard (Master PRD Phase A) */
.trip-dashboard {
  width: 100%;
  max-width: 44rem;
  margin: 0.85rem auto 0;
  text-align: left;
}
.trip-dashboard[hidden] {
  display: none !important;
}
.trip-dashboard__card {
  background: #fff;
  color: #1c1917;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 1rem;
  padding: 1rem 1.1rem 1.1rem;
  box-shadow: var(--shadow-soft, 0 8px 24px rgba(0, 0, 0, 0.08));
}
.hero--ask .trip-dashboard__card {
  background: rgba(255, 255, 255, 0.98);
}
.trip-dashboard__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.trip-dashboard__kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f766e;
}
.trip-dashboard__title {
  margin: 0.2rem 0 0;
  font-size: 1.25rem;
}
.trip-dashboard__oneline {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: #57534e;
  line-height: 1.4;
}
.trip-dashboard__body {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
}
.trip-dashboard__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.trip-dashboard__row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.5rem;
  font-size: 0.92rem;
}
.trip-dashboard__label {
  color: #78716c;
  font-weight: 600;
}
.trip-dashboard__value {
  color: #1c1917;
  font-weight: 500;
  word-break: break-word;
}
.trip-dashboard__ready {
  margin-top: 0.85rem;
  padding: 0.7rem 0.8rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.75rem;
}
.trip-dashboard__ready-score {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}
.trip-dashboard__kit-line {
  margin: 0 0 0.45rem;
  font-size: 0.85rem;
  color: #047857;
}
.trip-dashboard__bar {
  height: 0.45rem;
  background: #d1fae5;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 0 0.55rem;
}
.trip-dashboard__bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #10b981, #059669);
  border-radius: inherit;
  min-width: 0;
  transition: width 0.25s ease;
}
.trip-dashboard__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  font-size: 0.85rem;
  color: #57534e;
}
.trip-dashboard__check.is-done {
  color: #047857;
  font-weight: 600;
}
.trip-dashboard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}
.trip-dashboard__hint {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: #78716c;
  line-height: 1.35;
}
@media (max-width: 520px) {
  .trip-dashboard__row {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
  .trip-dashboard__label {
    font-size: 0.78rem;
  }
}
.ask-teach {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0.75rem 0 0.5rem;
}
.ask-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
}
.ask-chip {
  border: 1px solid rgba(28,25,23,0.12);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font: inherit;
  font-size: 0.875rem;
  cursor: pointer;
}
.ask-chip:hover,
.ask-chip:focus-visible {
  border-color: var(--accent);
  box-shadow: var(--ring);
  outline: none;
}
.ask-chip--answer {
  background: #f5f3ff;
  border-color: #ddd6fe;
}

.ask-followup { margin-top: 1rem; width: 100%; max-width: 100%; }
.ask-followup[hidden] { display: none !important; }
.ask-followup__card {
  background: #fff;
  border-radius: 1.15rem;
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}
.ask-followup__kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 0.35rem;
  font-weight: 600;
}
.ask-followup__q {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.85rem;
}
.ask-followup__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.ask-followup__actions { margin-top: 0.85rem; }

.trip-ideas-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .trip-ideas-grid { grid-template-columns: repeat(3, 1fr); }
}
.trip-idea-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.trip-idea-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.trip-idea-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trip-idea-card__band {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}
.trip-idea-card__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.trip-idea-card__place { margin: 0; font-size: 0.8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.trip-idea-card__title { margin: 0; font-size: 1.2rem; font-family: 'Playfair Display', Georgia, serif; }
.trip-idea-card__badge {
  margin: 0;
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}
.trip-idea-card--placeholder {
  border: 1px solid #a7f3d0;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}
.trip-idea-card__summary { margin: 0; color: var(--muted); font-size: 0.95rem; }
.trip-idea-card__why-block {
  margin: 0.15rem 0 0.25rem;
  padding: 0.55rem 0.7rem;
  background: #fafaf9;
  border-radius: 0.65rem;
  border: 1px solid rgba(28, 25, 23, 0.06);
}
.trip-idea-card__why-title {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
}
.trip-idea-card__why {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink);
  font-size: 0.9rem;
}
.trip-idea-card__why li { margin: 0.2rem 0; }

/* Confirm strip — “Here's what I have so far” */
.ask-confirm {
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 0.85rem;
}
.ask-confirm.is-confirmed {
  background: #ecfdf5;
  border-color: #a7f3d0;
}
.ask-confirm__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #134e4a;
}
.ask-confirm__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}
.ask-confirm__note {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f766e;
}
.trip-idea-card__meta { margin: 0; font-size: 0.88rem; color: var(--muted); }
.trip-idea-card__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0.25rem 0; }
.tag-pill {
  font-size: 0.75rem;
  background: #f5f3ff;
  color: #4c1d95;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
}
.trip-idea-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.ask-extra {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .ask-extra { grid-template-columns: repeat(3, 1fr); }
}
.ask-extra__block {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow-soft);
}

/* Breadcrumbs */
.breadcrumbs {
  max-width: var(--max-width, 72rem);
  margin: 0 auto;
  padding: 0.65rem 1.25rem 0;
}
.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.35rem;
  font-size: 0.85rem;
  color: #64748b;
}
.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.breadcrumbs__item:not(:last-child)::after {
  content: '/';
  color: #cbd5e1;
  margin-left: 0.15rem;
}
.breadcrumbs__item a {
  color: #0f766e;
  text-decoration: none;
}
.breadcrumbs__item a:hover { text-decoration: underline; }
.breadcrumbs__item [aria-current='page'] {
  color: #334155;
  font-weight: 600;
}

/* Destination detail SEO content */
.dest-detail__seo-body {
  margin: 0.75rem 0 1rem;
  line-height: 1.6;
  color: #334155;
}
.dest-detail__sections {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 1.25rem;
}
@media (min-width: 800px) {
  .dest-detail__sections { grid-template-columns: 1fr 1fr; }
}
.dest-detail__sec {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
}
.dest-detail__sec h2 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: #0f766e;
}
.dest-detail__sec p,
.dest-detail__sec ul {
  margin: 0;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.5;
}
.dest-detail__sec ul { padding-left: 1.1rem; }
.dest-detail__h2 {
  margin: 1.25rem 0 0.65rem;
  font-size: 1.15rem;
}
.dest-detail__related {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}
.dest-detail__related h2 { font-size: 1.1rem; margin: 0 0 0.5rem; }
.dest-detail__related-list {
  margin: 0;
  padding-left: 1.15rem;
  color: #334155;
  line-height: 1.55;
}
.dest-detail__related-list a { color: #0f766e; font-weight: 600; }
.dest-detail__trust {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: #64748b;
}

/* How-it-works steps (Pack, Glow, etc.) */
.page-how {
  margin: 1rem 0 0;
  padding: 0.9rem 1.1rem;
  list-style: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  display: grid;
  gap: 0.45rem;
}
.page-how li {
  margin: 0;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.45;
}
.pack-shop-step { margin-bottom: 1.75rem; }
.pack-shop-step__hint {
  margin: 0.25rem 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.pack-shop-placeholder {
  margin: 0;
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: #64748b;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius);
}
.pack-shop-placeholder i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #94a3b8;
}
.preview-card.is-selected {
  outline: 2px solid #0d9488;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
}
.preview-card__step {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
}
.preview-card__cta {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f766e;
}
.pack-detail__panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem 1.5rem;
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 5rem;
}
.pack-detail__head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.pack-detail__blurb { margin: 0.35rem 0; color: #475569; }
.pack-detail__count { margin: 0; font-size: 0.9rem; color: #0f766e; font-weight: 600; }
.pack-detail__explainer {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  background: #ecfeff;
  border-radius: 0.5rem;
  font-size: 0.92rem;
  color: #134e4a;
}
.pack-item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.pack-item__main { flex: 1 1 14rem; }
.pack-item__main h3 { margin: 0 0 0.25rem; font-size: 1.05rem; }
.pack-item__why { margin: 0; color: #475569; font-size: 0.92rem; }
.pack-item__shop { flex: 0 0 auto; }
.pack-detail__next {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}
.collection-card {
  cursor: pointer;
  text-align: left;
  border: 1px solid #e2e8f0;
  background: #fff;
  width: 100%;
  font: inherit;
  color: inherit;
  transition: box-shadow 0.15s ease, outline 0.15s ease;
}
.collection-card.is-selected {
  outline: 2px solid #0d9488;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}
.collection-card__cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f766e;
}
.guide-card--rich {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.3rem 1.35rem;
}
.guide-card__cat {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0f766e;
}
.guide-card__blurb {
  margin: 0 !important;
  color: #0f172a !important;
  font-weight: 500;
}
.guide-card__body {
  margin: 0.35rem 0 0 !important;
  color: #475569 !important;
  line-height: 1.55;
}
.guide-card__points {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.45;
}
.guide-card__points li { margin: 0.25rem 0; }
.guide-card__next {
  margin: 0.55rem 0 0 !important;
  font-size: 0.92rem !important;
  color: #134e4a !important;
}
.guide-card__actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Ask planning path */
.ask-path {
  margin: 0 0 1.15rem;
  padding: 0.85rem 1rem;
  background: #f0fdfa;
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius);
}
.ask-path__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
}
.ask-path__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
}
.ask-path__item span {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e2e8f0;
  font-size: 0.75rem;
}
.ask-path__item.is-done { color: #0f766e; }
.ask-path__item.is-done span { background: #99f6e4; color: #134e4a; }
.ask-path__item.is-active { color: #0f172a; }
.ask-path__item.is-active span { background: #0d9488; color: #fff; }
.ask-path__hint {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  color: #475569;
}
.ask-path__step-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0f766e;
}
.ask-journey {
  margin-top: 1.75rem;
  padding: 1.15rem 1.2rem 1.35rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.ask-journey__lead {
  margin: 0.25rem 0 1rem;
  color: #475569;
}
.ask-extra--journey {
  margin-top: 0;
}
.ask-extra__num {
  margin: 0 0 0.35rem;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ccfbf1;
  color: #0f766e;
  font-size: 0.8rem;
  font-weight: 700;
}
.ask-extra__block--primary {
  border: 1px solid rgba(13, 148, 136, 0.25);
  background: linear-gradient(165deg, #f0fdfa 0%, #fff 70%);
}

/* Search destinations — place explorer hub (visual) */
.dest-hub { margin: 0 0 1.75rem; }
.dest-hub__hero { margin-bottom: 1.1rem; }
.dest-hub__hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 12rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}
.dest-hub__hero-media img {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  max-height: 18rem;
  object-fit: cover;
  display: block;
}
.dest-hub__hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(15, 23, 42, 0.78) 0%,
    rgba(95, 120, 188, 0.45) 55%,
    rgba(78, 196, 182, 0.25) 100%
  );
}
.dest-hub__hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.35rem 1.4rem;
  color: #fff;
  z-index: 1;
}
.dest-hub__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.45rem;
  padding: 0.28rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.dest-hub__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}
.dest-hub__country { font-weight: 500; opacity: 0.9; font-size: 0.85em; }
.dest-hub__lead {
  margin: 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  font-size: 0.98rem;
}
.dest-hub__mode-note {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: #1e3a5f;
  background: linear-gradient(90deg, #e0f2fe, #f0fdfa);
  border: 1px solid #bae6fd;
  padding: 0.65rem 0.9rem;
  border-radius: 0.75rem;
  line-height: 1.45;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.dest-hub__mode-note i { color: var(--brand-deep); margin-top: 0.15rem; }
.dest-hub__grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.25rem;
}
@media (min-width: 700px) {
  .dest-hub__grid { grid-template-columns: 1fr 1fr; }
}
.dest-hub__card {
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem 1.2rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.dest-hub__card--weather {
  background: linear-gradient(160deg, #fff7ed 0%, #fff 50%);
  border-color: #fed7aa;
}
.dest-hub__card--tips {
  background: linear-gradient(160deg, #f0fdfa 0%, #fff 50%);
  border-color: #99f6e4;
}
.dest-hub__card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
  color: #fff;
  background: var(--brand-gradient);
}
.dest-hub__card--weather .dest-hub__card-icon {
  background: linear-gradient(145deg, #fb923c, #f59e0b);
}
.dest-hub__card--tips .dest-hub__card-icon {
  background: linear-gradient(145deg, #2dd4bf, #0d9488);
}
.dest-hub__h {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  color: #0f172a;
  letter-spacing: 0.02em;
}
.dest-hub__card p { margin: 0 0 0.55rem; font-size: 0.92rem; color: #334155; line-height: 1.5; }
.dest-hub__tips {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.45;
}
.dest-hub__tips li {
  margin: 0.4rem 0;
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
}
.dest-hub__tips li i {
  color: #0d9488;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.dest-hub__section-head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}
.dest-hub__section-icon {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  color: #fff;
  background: var(--accent-gradient);
  font-size: 1.1rem;
}
.dest-hub__section-icon--gear { background: linear-gradient(145deg, #38bdf8, #6366f1); }
.dest-hub__section-icon--glow { background: linear-gradient(145deg, #e879f9, #c084fc); }
.dest-hub__packages {
  margin: 0 0 1.25rem;
  padding: 1.2rem 1.25rem 1.35rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 40%);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.dest-hub__gear,
.dest-hub__glow {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem 1.35rem;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-soft);
}
.dest-hub__sub { margin: 0.15rem 0 0; color: #64748b; font-size: 0.9rem; }
.dest-hub__gear-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  margin-bottom: 0.9rem;
}
@media (min-width: 600px) {
  .dest-hub__gear-grid { grid-template-columns: 1fr 1fr; }
}
.dest-hub__gear-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0.9rem;
  border-radius: 0.9rem;
  background: linear-gradient(145deg, #f8fafc, #fff);
  border: 1px solid #e2e8f0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.dest-hub__gear-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.dest-hub__gear-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 1rem;
}
.dest-hub__gear-body strong { display: block; margin-bottom: 0.2rem; font-size: 0.98rem; }
.dest-hub__gear-body p { margin: 0 0 0.5rem; color: #475569; font-size: 0.88rem; line-height: 1.4; }
.dest-hub__products {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  margin-bottom: 0.85rem;
}
@media (min-width: 600px) {
  .dest-hub__products { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .dest-hub__products { grid-template-columns: repeat(4, 1fr); }
}
.dest-hub__product {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.dest-hub__product:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}
.dest-hub__product-media {
  aspect-ratio: 4/3;
  background: #f1f5f9;
  overflow: hidden;
}
.dest-hub__product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dest-hub__product-media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #c084fc;
  background: linear-gradient(145deg, #faf5ff, #fdf2f8);
}
.dest-hub__product-body { padding: 0.75rem 0.85rem 0.95rem; flex: 1; display: flex; flex-direction: column; }
.dest-hub__product-body strong { font-size: 0.92rem; line-height: 1.3; }
.dest-hub__product-body p {
  margin: 0.3rem 0 0.55rem;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.4;
  flex: 1;
}
.dest-hub__cta {
  margin-top: 0.35rem;
  padding: 1.15rem 1.25rem;
  background: var(--brand-gradient);
  border: none;
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(95, 120, 188, 0.28);
}
.dest-hub__cta-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.dest-hub__cta-copy { flex: 1 1 14rem; }
.dest-hub__cta p { margin: 0 0 0.65rem; color: #fff; font-size: 0.98rem; line-height: 1.45; }
.dest-hub__cta-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.dest-hub__cta .btn {
  background: #fff;
  color: var(--brand-deep);
  border: none;
}
.dest-hub__cta .btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.dest-hub__ideas-note {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  color: #475569;
  background: #f8fafc;
  border-radius: 0.75rem;
  border: 1px dashed #cbd5e1;
}
.ask-results--search #ask-results-heading::after {
  content: ' · explorer';
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
}

/* Destination overview + travel packages (Master PRD Version 1.0 flow) */
.ask-dest-overview {
  margin: 1.25rem 0 1.75rem;
}
.ask-dest-overview__card {
  background: linear-gradient(165deg, #f0fdfa 0%, #fff 55%);
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem 1.4rem;
  box-shadow: var(--shadow-soft);
}
.ask-dest-overview__place {
  margin: 0.15rem 0 0.85rem;
  font-size: 1.45rem;
}
.ask-dest-overview__block {
  margin-bottom: 0.85rem;
}
.ask-dest-overview__label {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
  font-weight: 700;
}
.ask-dest-overview__text {
  margin: 0;
  line-height: 1.55;
  color: #334155;
}
.ask-packages {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 118, 110, 0.15);
}
.ask-packages__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}
.ask-packages__note,
.ask-packages__empty-msg {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.5;
}
.ask-packages__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .ask-packages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .ask-packages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ask-package-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.1rem;
  padding: 1.05rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  position: relative;
  overflow: hidden;
}
.ask-package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-gradient);
  opacity: 0.85;
}
.ask-package-card--flights::before { background: linear-gradient(90deg, #38bdf8, #6366f1); }
.ask-package-card--hotel::before { background: linear-gradient(90deg, #f472b6, #a78bfa); }
.ask-package-card--cruise::before { background: linear-gradient(90deg, #22d3ee, #0ea5e9); }
.ask-package-card--experiences::before { background: linear-gradient(90deg, #fbbf24, #f97316); }
.ask-package-card--flight-hotel::before { background: var(--accent-gradient); }
.ask-package-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}
.ask-package-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}
.ask-package-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: #f1f5f9;
  color: var(--brand-deep);
  font-size: 1.1rem;
}
.ask-package-card--flights .ask-package-card__icon { background: #e0f2fe; color: #0284c7; }
.ask-package-card--hotel .ask-package-card__icon { background: #fce7f3; color: #db2777; }
.ask-package-card--cruise .ask-package-card__icon { background: #cffafe; color: #0891b2; }
.ask-package-card--experiences .ask-package-card__icon { background: #ffedd5; color: #ea580c; }
.ask-package-card--flight-hotel .ask-package-card__icon { background: #ede9fe; color: #7c3aed; }
.ask-package-card__badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0f766e;
  background: #ccfbf1;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
}
.ask-package-card__title {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.3;
  color: #0f172a;
}
.ask-package-card__blurb {
  margin: 0;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.45;
  flex: 1;
}
.ask-package-card__price {
  margin: 0;
  font-size: 0.84rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.ask-package-card__price i { color: #0d9488; }
.ask-package-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.45rem;
}

/* Trip kit visual refresh */
.trip-kit--visual {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.trip-kit--visual .trip-kit__head {
  max-width: none;
  margin-bottom: 0;
  padding: 0 1.25rem 0.5rem;
}
.trip-kit--visual .trip-kit__hero {
  position: relative;
  min-height: 9.5rem;
  margin: 0 -1.25rem 1rem;
  border-radius: 0;
}
.trip-kit--visual .trip-kit__grid {
  padding: 0 1.25rem 0.25rem;
}
.trip-kit--visual .trip-kit__actions--top,
.trip-kit--visual .trip-kit__print-tip,
.trip-kit--visual .trip-kit__hint,
.trip-kit--visual .trip-kit__shop-gate,
.trip-kit--visual .trip-kit__progress {
  margin-left: 0;
  margin-right: 0;
}
.trip-kit__hero {
  position: relative;
  min-height: 9.5rem;
}
.trip-kit__hero img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  display: block;
}
.trip-kit__hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 23, 42, 0.8) 0%, rgba(95, 120, 188, 0.4) 100%);
}
.trip-kit__hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.15rem 1.15rem;
  color: #fff;
  z-index: 1;
}
.trip-kit__kicker { color: rgba(255, 255, 255, 0.85) !important; }
.trip-kit__hero-copy #trip-kit-title,
.trip-kit__hero-copy .heading-font {
  color: #fff;
  margin: 0.15rem 0 0.35rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}
.trip-kit__hero-copy .trip-kit__summary {
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
.trip-kit__back {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  margin-bottom: 0.5rem;
}
.trip-kit__item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.trip-kit__item-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.95rem;
  margin-top: 0.15rem;
}
.trip-kit__item.is-picked .trip-kit__item-icon {
  background: #ccfbf1;
  color: #0f766e;
}
.trip-kit--visual .trip-kit__col {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid #e2e8f0;
}
.trip-kit--visual .trip-kit__col h3 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.trip-kit--visual .trip-kit__col h3 i { color: var(--brand-deep); }
.trip-kit__foot-note {
  margin: 1rem 1.25rem 0;
  font-size: 0.85rem;
  color: var(--muted, #64748b);
  line-height: 1.45;
}
.ask-packages__more-wrap {
  margin: 0.85rem 0 0;
}
.ask-packages__grid--more {
  margin-top: 0.85rem;
}
.ask-packages__kit {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: #ecfeff;
  border-radius: calc(var(--radius) - 2px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}
.ask-packages__kit p {
  margin: 0;
  flex: 1 1 14rem;
  font-size: 0.95rem;
  color: #134e4a;
}
.ask-packages--empty {
  text-align: left;
}
.ask-packages--empty .btn {
  margin-top: 0.25rem;
}

/* Grids */
.ways-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.way-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.1rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s var(--ease-out);
}
.way-card:hover { transform: translateY(-2px); }
.way-card__icon {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: #ecfeff;
  color: #0f766e;
  margin-bottom: 0.6rem;
}
.way-card h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.way-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.dest-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.dest-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
}
.dest-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.dest-card__body { padding: 0.9rem 1rem 1.1rem; }
.dest-card h3 { margin: 0 0 0.2rem; font-size: 1.15rem; }
.dest-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.dest-card__hook { margin-top: 0.4rem !important; }

.preview-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.preview-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
}
.preview-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.preview-card > div { padding: 0.9rem 1rem 1.1rem; }
.preview-card h3 { margin: 0 0 0.35rem; font-size: 1.1rem; }
.preview-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.product-card__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.product-card__body { padding: 0.9rem 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.product-card__cat { margin: 0; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.product-card__title { margin: 0; font-size: 1.05rem; }
.product-card__blurb { margin: 0 0 0.5rem; color: var(--muted); font-size: 0.9rem; flex: 1; }

.guides-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.guides-grid--full { grid-template-columns: 1fr; max-width: 720px; }
.guide-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  display: block;
}
.guide-card__meta { margin: 0 0 0.4rem; font-size: 0.8rem; color: var(--muted); font-weight: 600; }
.guide-card h2, .guide-card h3 { margin: 0 0 0.4rem; font-size: 1.15rem; }
.guide-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.guide-card__note { margin-top: 0.65rem !important; font-size: 0.88rem !important; }

.journey-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  counter-reset: none;
}
.journey-steps li {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow-soft);
}
.journey-steps__num {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.journey-steps h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.journey-steps p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.trust-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.trust-grid article {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow-soft);
}
.trust-grid h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.trust-grid p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.digital-preview__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .digital-preview__inner { grid-template-columns: 1.1fr 0.9fr; }
}
.digital-preview__media img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-soft);
}
.digital-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin: 1rem 0;
}
.collections-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.collection-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
}
.collection-card h3 { margin: 0 0 0.35rem; }
.collection-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.text-link { color: var(--brand-deep); font-weight: 600; }

.pack-items {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}
.pack-item {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
}
.pack-item h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.pack-item p { margin: 0 0 0.65rem; color: var(--muted); }

.dest-detail {
  margin-bottom: 2rem;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.dest-detail__hero img { width: 100%; max-height: 360px; object-fit: cover; display: block; }
.dest-detail__body { padding: 1.25rem 1.35rem 1.5rem; }
.dest-detail__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }

.newsletter-panel {
  background: #fff;
  border-radius: calc(var(--radius) + 0.25rem);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-soft);
}
.newsletter-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.newsletter-form__row input[type="email"] {
  flex: 1 1 220px;
  min-height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(28,25,23,0.12);
  padding: 0.65rem 1rem;
  font: inherit;
}
.newsletter-interests {
  border: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}
.newsletter-interests legend {
  font-weight: 600;
  margin-bottom: 0.5rem;
  width: 100%;
}
.newsletter-interests label {
  font-size: 0.9rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.newsletter-status { margin-top: 0.85rem; font-size: 0.9rem; color: var(--muted); }

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
}
.chip-list li {
  background: #f5f3ff;
  color: #4c1d95;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-inner {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  padding: 2.5rem 1.25rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .footer-inner { grid-template-columns: 1.1fr 1.4fr; }
}
.footer-cols {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.footer-col h3 {
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 0.35rem 0; }
.footer-col a { color: inherit; text-decoration: none; opacity: 0.9; }
.footer-col a:hover { text-decoration: underline; }
.footer-tagline { font-weight: 600; margin: 0.65rem 0 0.25rem; }
.footer-sub { margin: 0; opacity: 0.8; font-size: 0.92rem; }
.footer-social { display: inline-flex; gap: 0.4rem; margin-top: 0.75rem; color: inherit; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1rem 1.25rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.85rem;
  opacity: 0.9;
}
.footer-disclosure { margin: 0 0 0.5rem; }
.footer-copy { margin: 0; }
.ext-icon { font-size: 0.75em; opacity: 0.75; }

.prose-block { max-width: 720px; }
.prose-block h2 { margin-top: 1.75rem; }
.legal-main { padding: calc(var(--header-h) + 1.5rem) 1.25rem 3rem; }
.legal-article { max-width: 720px; margin: 0 auto; }
.legal-kicker {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
}
.legal-meta { color: var(--muted); font-size: 0.9rem; }
.legal-notice {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  color: #9a3412;
}

.home-v2 .hero-sub { max-width: 36rem; }




/* Phase 1 chrome overrides (must win over legacy footer) */
.site-footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  align-items: start;
  padding: 0;
}
@media (min-width: 800px) {
  .site-footer .footer-inner {
    grid-template-columns: 1.1fr 1.4fr;
  }
}
.site-footer .footer-brand { text-align: left; }
.site-footer .footer-cols a { color: var(--muted); }
.site-footer .footer-bottom {
  color: var(--muted);
  border-top-color: #e7e5e4;
}
.site-footer .footer-bottom a { color: var(--brand-deep); }
.nav-desktop {
  gap: 0.1rem 0.65rem;
}
.nav-desktop .nav-link {
  font-size: 0.8rem;
}
@media (min-width: 1100px) {
  .nav-desktop .nav-link { font-size: 0.875rem; }
  .nav-desktop { gap: 0.15rem 0.9rem; }
}
/* Compact header CTA */
.nav-desktop .nav-cta.btn {
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
}

/* ========== jrny-2 visual polish ========== */
.hero--tall {
  min-height: 75vh;
  min-height: 75dvh;
}
.hero-slides {
  position: absolute;
  inset: -10% 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.03);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-slide:not(.is-active) { display: none; }
}

.ask-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 720px) {
  .ask-actions { min-width: 11rem; }
}
.ask-voice {
  font-size: 0.85rem !important;
  white-space: normal;
  text-align: center;
}
.ask-voice.is-listening {
  border-color: #ef4444 !important;
  color: #b91c1c !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.25);
}

.ask-correction {
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}
.ask-correction__note { margin: 0 0 0.5rem; font-weight: 600; }
.ask-correction__suggestions { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.ask-extra__btns { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; }

/* Destinations more cinematic */
.dest-card img { transition: transform 0.45s ease; }
.dest-card:hover img { transform: scale(1.04); }
.section--soft { background: linear-gradient(180deg, #f3f0ff 0%, #f5f4f2 40%, #fafaf9 100%); }

/* Digital Adventures preview + page */
.da-preview-grid {
  display: grid;
  gap: 1rem;
  /* minmax(240px) forced overflow under ~280px content width */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}
.da-preview-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  padding-bottom: 1rem;
  display: block;
  transition: transform 0.2s ease;
}
.da-preview-card:hover { transform: translateY(-3px); }
.da-preview-card__logo {
  display: block;
  margin: 0.85rem 1rem 0.35rem;
  max-height: 40px;
  width: auto;
  object-fit: contain;
}
.da-preview-card__logos {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem 0.35rem;
}
.da-preview-card__logos img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: 0.35rem;
}
.da-preview-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.da-preview-card h3 { margin: 0.75rem 1rem 0.25rem; font-size: 1.1rem; }
.da-preview-card p { margin: 0 1rem; color: var(--muted); font-size: 0.92rem; }

.page-hero--da {
  background:
    linear-gradient(120deg, rgba(30,20,60,0.82), rgba(15,80,90,0.55)),
    url('../adventure-metaverse.jpg') center/cover no-repeat;
  color: #fff;
}
/* Fallback if CSS relative path fails when opened via file:// */
body.digital-page .page-hero--da {
  background-color: #1e143c;
}
.page-hero--da .section-kicker,
.page-hero--da .lead { color: rgba(255,255,255,0.88); }
.page-hero--da h1 { color: #fff; }

.da-feature-card {
  display: grid;
  gap: 1.5rem;
  background: #fff;
  border-radius: calc(var(--radius) + 0.15rem);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
@media (min-width: 900px) {
  .da-feature-card { grid-template-columns: 1.05fr 1fr; }
}
.da-feature-card__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
.da-feature-card__body { padding: 1.35rem 1.4rem 1.5rem; }
.da-logo-link { display: inline-block; }
.da-logo { max-height: 56px; width: auto; object-fit: contain; }
.da-logo--round { border-radius: 50%; max-height: 72px; }
.da-logo--os { max-height: 48px; }
.da-actions { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0.85rem 0; }
.da-subgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.da-subgrid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0.65rem;
}

.da-duo {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .da-duo { grid-template-columns: 1fr 1fr; }
}
.da-brand-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}
.da-brand-card--sugar {
  background: linear-gradient(160deg, #fff7ed 0%, #fff 55%);
  border: 1px solid #fed7aa;
}
.da-gallery-title { margin: 2rem 0 0.85rem; font-size: 1.15rem; }
.da-gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.da-gallery__item {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}
.da-gallery__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.da-gallery__item span { display: block; padding: 0.45rem; }

.da-community-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .da-community-grid { grid-template-columns: 1fr 1fr; }
}
.da-community-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow-soft);
}
.da-community-card__banner {
  width: 100%;
  border-radius: 0.75rem;
  margin: 0.65rem 0;
  max-height: 160px;
  object-fit: cover;
  display: block;
}

/* Richer cruise / glow previews on home */
.preview-card img { transition: transform 0.4s ease; }
.preview-card:hover img { transform: scale(1.03); }
.home-v2 .ways-grid .way-card {
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(28,25,23,0.06);
}

/* Digital Adventures final card system (corrections-3) */
.da-card {
  background: #fff;
  border-radius: calc(var(--radius) + 0.1rem);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.da-card--feature { box-shadow: var(--shadow-lift); }
.da-card--sugar {
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}
.da-card__banner {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f172a;
}
.da-card__banner--lg {
  aspect-ratio: 21 / 9;
  min-height: 220px;
}
@media (min-width: 800px) {
  .da-card__banner--lg { min-height: 300px; }
}
.da-card__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.da-card__banner-brand {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255,255,255,0.92);
  border-radius: 0.65rem;
  padding: 0.4rem 0.65rem;
  line-height: 0;
}
.da-card__banner-brand img {
  width: auto;
  height: 28px;
  object-fit: contain;
}
.da-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.da-card__avatar-link {
  display: inline-flex;
  width: fit-content;
  margin-top: -2.25rem;
  position: relative;
  z-index: 1;
}
.da-card__avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 6px 18px rgba(15,23,42,0.12);
  background: #fff;
}
.da-card__avatar--wide {
  width: auto;
  max-width: 7.5rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  object-fit: contain;
  padding: 0.25rem 0.4rem;
}
.da-card__title {
  margin: 0.15rem 0 0;
  font-size: 1.35rem;
}
.da-card__title a {
  color: inherit;
  text-decoration: none;
}
.da-card__title a:hover { text-decoration: underline; }
.da-card__desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 40rem;
}
.da-card .da-actions { margin-top: 0.5rem; }

.da-duo {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .da-duo { grid-template-columns: 1fr 1fr; }
}
.da-community-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .da-community-grid { grid-template-columns: 1fr 1fr; }
}

/* Single clickable brand logo (Otherside cleanup) */
.da-card__body--brand-row {
  gap: 0.55rem;
}
.da-brand-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0.15rem 0 0.15rem;
  padding: 0.35rem 0.5rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid rgba(28,25,23,0.08);
  box-shadow: 0 4px 14px rgba(15,23,42,0.06);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.da-brand-logo img {
  display: block;
  width: auto;
  height: 2.5rem;
  object-fit: contain;
}
.da-brand-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15,23,42,0.12);
  border-color: rgba(95,120,188,0.45);
}
.da-brand-logo:focus {
  outline: none;
}
.da-brand-logo:focus-visible {
  outline: none;
  box-shadow: var(--ring), 0 10px 24px rgba(15,23,42,0.12);
  border-color: var(--accent);
}
/* Remove leftover non-clickable banner brand overlay if any */
.da-card__banner-brand { display: none !important; }

/* Ask JRNY search box - readable text (fix garbled/contrast issues) */
.ask-shell {
  color: #1c1917;
}
.ask-shell__label {
  color: #1c1917;
  font-weight: 600;
}
.ask-input {
  color: #1c1917;
  background: #fff;
}
.ask-input::placeholder {
  color: #78716c;
  opacity: 1;
}
.ask-teach {
  color: #57534e;
  line-height: 1.45;
}
.ask-chip {
  color: #1c1917;
  line-height: 1.3;
}
.ask-voice {
  color: #1c1917 !important;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}
.ask-voice span { display: inline; }
.hero--ask .hero-sub {
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}

/* Voice status + transcript review */
.ask-voice-status {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f766e;
}
.ask-voice.is-listening {
  border-color: #ef4444 !important;
  color: #b91c1c !important;
  animation: askPulse 1.2s ease-in-out infinite;
}
@keyframes askPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(239,68,68,0.12); }
}
@media (prefers-reduced-motion: reduce) {
  .ask-voice.is-listening { animation: none; }
}
.ask-voice-review {
  margin-top: 0.85rem;
}
.ask-voice-review__card {
  background: #f8fafc;
  border: 1px solid rgba(28,25,23,0.1);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
}
.ask-voice-review__label {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #57534e;
}
.ask-voice-review__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

/* Phase 1 homepage AI strip */
.ai-strip {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 860px) {
  .ai-strip { grid-template-columns: 1.2fr 0.8fr; }
}
.ai-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.ai-strip__examples {
  margin: 0;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  list-style: none;
}
.ai-strip__examples li {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(28,25,23,0.06);
  color: var(--muted);
  font-size: 0.95rem;
}
.ai-strip__examples li:last-child { border-bottom: 0; }

/* Session memory banner */
.ask-session-banner {
  margin: 0 0 0.85rem;
}
.ask-session-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  border-radius: 0.85rem;
  padding: 0.7rem 0.95rem;
  font-size: 0.92rem;
}
.ask-session-banner__inner p { margin: 0; }

/* Share bars */
.share-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
}
.share-bar__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-right: 0.25rem;
}
.share-bar__btn {
  border: 1px solid rgba(28,25,23,0.12);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}
.share-bar__btn:hover,
.share-bar__btn:focus-visible {
  border-color: var(--accent);
  outline: none;
  box-shadow: var(--ring);
}
.share-bar--card {
  padding: 0 0.85rem 0.85rem;
}
.dest-card--article {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.dest-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.dest-card__link img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* Single Share button → dropdown menu */
.share-menu {
  position: relative;
  display: inline-block;
  margin-top: 0.5rem;
}
.share-menu__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.share-menu__panel {
  position: absolute;
  left: 0;
  top: calc(100% + 0.35rem);
  z-index: 40;
  min-width: 11.5rem;
  background: #fff;
  border: 1px solid rgba(28,25,23,0.12);
  border-radius: 0.85rem;
  box-shadow: var(--shadow-lift);
  padding: 0.35rem;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
}
.share-menu.is-open .share-menu__panel {
  display: flex;
}
.share-menu__panel[hidden] {
  display: none !important;
}
.share-menu.is-open .share-menu__panel { display: flex; }
.share-menu__option {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 0.75rem;
  border-radius: 0.55rem;
  cursor: pointer;
}
.share-menu__option:hover,
.share-menu__option:focus-visible {
  background: #f5f3ff;
  outline: none;
}
.share-bar--card .share-menu,
.share-menu.share-bar--card {
  margin: 0.15rem 0.85rem 0.85rem;
}
/* legacy flat share-bar kept non-breaking if any remain */
.share-bar { display: none; }


/* Trip kit — gear recommendations + curated list + print */
.ask-trip-kit {
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.ask-trip-kit.is-visible,
.ask-trip-kit:not([hidden]) {
  opacity: 1;
  transform: none;
}
.ask-trip-kit[hidden] {
  display: none !important;
}
.trip-kit {
  background: #fff;
  border-radius: calc(var(--radius) + 0.15rem);
  box-shadow: var(--shadow-lift);
  padding: 1.35rem 1.25rem 1.5rem;
  border: 1px solid rgba(28,25,23,0.06);
}
.trip-kit__head { margin-bottom: 1.25rem; max-width: 40rem; }
.trip-kit__summary {
  font-weight: 600;
  margin: 0.35rem 0;
  color: var(--ink);
}
.trip-kit__hint {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.trip-kit__progress {
  margin: 0.75rem 0 0.35rem;
  padding: 0.7rem 0.85rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.75rem;
}
.trip-kit__progress-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  font-size: 0.9rem;
  color: #064e3b;
  margin-bottom: 0.45rem;
}
.trip-kit__progress-bar {
  height: 0.5rem;
  background: #d1fae5;
  border-radius: 999px;
  overflow: hidden;
}
.trip-kit__progress-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #34d399, #059669);
  border-radius: inherit;
  transition: width 0.25s ease;
}
.trip-kit__progress-tip {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: #047857;
  line-height: 1.35;
}
.trip-kit__shop-gate {
  margin: 0.75rem 0 0.5rem;
  padding: 0.85rem 1rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 0.85rem;
}
.trip-kit__shop-gate.is-open {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.trip-kit__shop-gate-text {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #44403c;
}
.trip-kit__shop-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.trip-kit__why-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #0f766e;
  margin-bottom: 0.15rem;
}
.ask-extra__why {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  color: #57534e;
  line-height: 1.4;
}
.newsletter-soon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin: 0.5rem 0 0;
}
.ask-empty {
  padding: 1.5rem 1.25rem;
  background: #fafaf9;
  border: 1px dashed rgba(28, 25, 23, 0.15);
  border-radius: 1rem;
  text-align: center;
  max-width: 32rem;
  margin: 0.5rem auto 1rem;
}
.ask-empty__title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 1.1rem;
}
.ask-empty__text {
  margin: 0;
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.45;
}
.product-card__why {
  margin: 0.25rem 0 0.5rem;
  font-size: 0.85rem;
  color: #57534e;
  line-height: 1.35;
}
.trip-kit__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .trip-kit__grid { grid-template-columns: 1.1fr 0.9fr; }
}
.trip-kit__col h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}
.trip-kit__subh {
  margin: 1.25rem 0 0.65rem !important;
  font-size: 1rem !important;
}
.trip-kit__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.trip-kit__item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 0.85rem;
  background: #fafaf9;
  border-radius: 0.85rem;
  border: 1px solid transparent;
}
.trip-kit__item.is-picked {
  background: #ecfdf5;
  border-color: #a7f3d0;
}
.trip-kit__check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  flex: 1;
  cursor: pointer;
  min-width: 0;
}
.trip-kit__check input {
  margin-top: 0.25rem;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}
.trip-kit__item-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.trip-kit__item-body strong { font-size: 0.98rem; }
.trip-kit__meta {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.trip-kit__why {
  font-size: 0.88rem;
  color: var(--muted);
}
.trip-kit__shop { flex-shrink: 0; }
.trip-kit__picked {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink);
}
.trip-kit__picked li { margin: 0.4rem 0; }
.trip-kit__empty {
  list-style: none;
  margin-left: -1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.trip-kit__print-tip {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: #57534e;
  line-height: 1.4;
}
.trip-kit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  align-items: center;
}
.trip-kit__actions--top {
  margin-top: 0.85rem;
  padding: 0.75rem;
  background: #f0fdf4;
  border: 1px solid #a7f3d0;
  border-radius: 0.85rem;
}
.trip-kit__actions .btn i {
  margin-right: 0.3rem;
}
.ask-chips__hint {
  flex-basis: 100%;
  width: 100%;
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  color: #57534e;
  line-height: 1.35;
}
.ask-chip.is-active {
  background: #ecfdf5;
  border-color: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* On-page export panel (Print / PDF / Share) — not a blank popup */
.jrny-export-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.25rem;
  overflow: auto;
  background: rgba(28, 25, 23, 0.45);
}
.jrny-export-panel[hidden] {
  display: none !important;
}
.jrny-export-panel__card {
  width: min(36rem, 100%);
  margin: 1.5rem auto 2rem;
  background: #fff;
  color: #1c1917;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  padding: 1.15rem 1.25rem 1.35rem;
}
.jrny-export-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.jrny-export-panel__head h3 {
  margin: 0;
  font-size: 1.25rem;
}
.jrny-export-panel__body {
  max-height: min(50vh, 28rem);
  overflow: auto;
  padding: 0.5rem 0.15rem 0.75rem;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
  font-size: 0.95rem;
  line-height: 1.45;
}
.jrny-export-panel__body h2 {
  font-size: 1.05rem;
  margin: 1rem 0 0.4rem;
}
.jrny-export-panel__body ul {
  margin: 0.25rem 0 0.5rem;
  padding-left: 1.2rem;
}
.jrny-export-panel__body .meta {
  color: #57534e;
  font-size: 0.9rem;
}
.jrny-export-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}
.jrny-export-panel__actions .btn i {
  margin-right: 0.3rem;
}
.jrny-export-panel__tip {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: #57534e;
  line-height: 1.4;
}
.jrny-export-panel__share {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(28, 25, 23, 0.12);
}
.jrny-export-panel__share-label {
  margin: 0 0 0.45rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.jrny-export-panel__share-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.jrny-export-panel__preview {
  margin: 0.65rem 0 0;
  padding: 0.65rem 0.75rem;
  background: #fafaf9;
  border-radius: 0.65rem;
  font-size: 0.78rem;
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 10rem;
  overflow: auto;
  color: #44403c;
}
body.jrny-export-open {
  overflow: hidden;
}
@media print {
  .site-header, .site-footer, .ask-shell, .cookie-banner, .nav-toggle, .share-menu,
  .jrny-export-panel, .trip-kit__actions, .ask-kit-cta {
    display: none !important;
  }
  .ask-trip-kit, .trip-kit { box-shadow: none; border: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ask-trip-kit { transition: none; transform: none; }
}

/* Hidden UI shells must never flash content before JS */
#ask-results[hidden],
#ask-trip-kit[hidden],
#ask-followup[hidden],
#ask-kit-cta[hidden],
#ask-correction[hidden],
#jrny-trip-dashboard[hidden],
.jrny-feedback[hidden],
.jrny-export-panel[hidden] {
  display: none !important;
}

/* Glowing "View your trip kit" CTA near search — does not auto-jump */
.ask-kit-cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin-top: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(16, 185, 129, 0.45);
  border-radius: 1rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 50%, #ecfeff 100%);
  color: #064e3b;
  font: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}
.ask-kit-cta[hidden] { display: none !important; }
.ask-kit-cta__glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(16,185,129,0.35), rgba(45,212,191,0.25), rgba(52,211,153,0.35));
  z-index: -1;
  opacity: 0.85;
  filter: blur(0.5px);
}
.ask-kit-cta.is-glowing .ask-kit-cta__glow {
  animation: kitCtaPulse 2.2s ease-in-out infinite;
}
@keyframes kitCtaPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.01); }
}
.ask-kit-cta__icon {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: #10b981;
  color: #fff;
  flex-shrink: 0;
}
.ask-kit-cta__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}
.ask-kit-cta__label {
  font-weight: 700;
  font-size: 1rem;
}
.ask-kit-cta__sub {
  font-size: 0.85rem;
  color: #047857;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ask-kit-cta__arrow {
  color: #059669;
  flex-shrink: 0;
}
.ask-kit-cta:hover,
.ask-kit-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35);
  border-color: #10b981;
}
.trip-kit__nav {
  margin-bottom: 0.75rem;
}
@media (prefers-reduced-motion: reduce) {
  .ask-kit-cta.is-glowing .ask-kit-cta__glow { animation: none; }
}

/* On-page print sheet — only visible when printing */
.jrny-print-sheet {
  display: none;
}
body.jrny-printing .jrny-print-sheet {
  display: block !important;
  position: static;
  background: #fff;
  color: #111;
  padding: 1rem;
}
body.jrny-printing .jrny-print-sheet[hidden] {
  display: block !important;
}
body.jrny-printing .site-header,
body.jrny-printing .site-footer,
body.jrny-printing .hero,
body.jrny-printing .ask-shell,
body.jrny-printing .ask-followup,
body.jrny-printing .ask-kit-cta,
body.jrny-printing .cookie-banner,
body.jrny-printing .back-to-top,
body.jrny-printing .mobile-nav,
body.jrny-printing .section:not(.ask-results),
body.jrny-printing .trip-kit__actions,
body.jrny-printing .trip-kit__shop,
body.jrny-printing .share-menu,
body.jrny-printing .jrny-export-panel,
body.jrny-printing .ask-results .trip-ideas-grid,
body.jrny-printing .ask-results .ask-dest-overview,
body.jrny-printing .ask-results .ask-extra,
body.jrny-printing .results-meta,
body.jrny-printing .trust-banner,
body.jrny-printing .ask-correction {
  display: none !important;
}
body.jrny-printing #ask-trip-kit,
body.jrny-printing .ask-results {
  display: block !important;
}
body.jrny-printing .trip-kit {
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
}
body.jrny-printing .trip-kit__grid,
body.jrny-printing .trip-kit__col,
body.jrny-printing .trip-kit__list,
body.jrny-printing .trip-kit__head {
  display: none !important;
}
body.jrny-printing .jrny-print-sheet__inner h1 { font-size: 1.4rem; }
body.jrny-printing .jrny-print-sheet__inner h2 { font-size: 1.1rem; margin-top: 1rem; }
body.jrny-printing .jrny-print-sheet__inner .meta { color: #444; }
body.jrny-printing .jrny-print-sheet__inner ul { padding-left: 1.2rem; }
@media print {
  body.jrny-printing .jrny-print-sheet,
  body.jrny-printing .jrny-print-sheet[hidden] {
    display: block !important;
  }
  body.jrny-printing .jrny-export-panel {
    display: none !important;
  }
}

/* ========== Global Community Announcement + Feedback (PRD) ========== */
:root {
  --jrny-announce-h: 0px;
}
html.has-jrny-announce .site-header {
  top: var(--jrny-announce-h, 0px);
}
#jrny-announce-root {
  position: sticky;
  top: 0;
  z-index: 130;
}
.jrny-announce {
  width: 100%;
  background: linear-gradient(105deg, #0f766e 0%, #0d9488 45%, #5b6fd6 100%);
  color: #fff;
  box-shadow: 0 2px 12px rgba(15, 118, 110, 0.25);
}
.jrny-announce__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
}
.jrny-announce__copy {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  flex: 1;
  min-width: min(100%, 16rem);
}
.jrny-announce__emoji {
  font-size: 1.35rem;
  line-height: 1.2;
  flex-shrink: 0;
}
.jrny-announce__title {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.jrny-announce__body {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  opacity: 0.95;
  max-width: 42rem;
}
.jrny-announce__actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.jrny-announce__cta {
  background: #fff !important;
  color: #0f766e !important;
  border: 0 !important;
  font-weight: 700 !important;
  white-space: normal;
  min-height: 2.5rem;
  max-width: 100%;
}
.jrny-announce__cta:hover {
  filter: brightness(0.97);
}
.jrny-announce__dismiss {
  border: 0;
  background: rgba(255,255,255,0.15);
  color: #fff;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.jrny-announce__dismiss:hover,
.jrny-announce__dismiss:focus-visible {
  background: rgba(255,255,255,0.28);
  outline: none;
}
@media (max-width: 640px) {
  .jrny-announce__body {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
  }
  .jrny-announce__inner {
    padding: 0.55rem 0.75rem;
    flex-direction: column;
    align-items: stretch;
  }
  .jrny-announce__actions {
    width: 100%;
    flex-wrap: wrap;
  }
}

/* Feedback modal */
.jrny-feedback[hidden] { display: none !important; }
.jrny-feedback.is-open {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.jrny-feedback__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.45);
  border: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.jrny-feedback__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(28rem, 100%);
  background: #fff;
  color: #1c1917;
  box-shadow: -12px 0 40px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  animation: jrnyFeedbackIn 0.28s ease;
}
@keyframes jrnyFeedbackIn {
  from { transform: translateX(100%); opacity: 0.6; }
  to { transform: translateX(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .jrny-feedback__panel { animation: none; }
}
.jrny-feedback__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.1rem 1.15rem 0.85rem;
  border-bottom: 1px solid rgba(28,25,23,0.08);
}
.jrny-feedback__kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f766e;
}
.jrny-feedback__head h2 {
  margin: 0.2rem 0 0;
  font-size: 1.35rem;
}
.jrny-feedback__body {
  padding: 1rem 1.15rem 1.5rem;
  overflow: auto;
  flex: 1;
}
.jrny-feedback__intro,
.jrny-feedback__q {
  margin: 0 0 0.75rem;
  line-height: 1.45;
  color: #44403c;
}
.jrny-feedback__q {
  font-weight: 700;
  color: #1c1917;
}
.jrny-feedback__cats {
  display: grid;
  gap: 0.5rem;
}
.jrny-feedback__cat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  border: 1px solid rgba(28,25,23,0.1);
  background: #fafaf9;
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  min-height: 3.25rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.jrny-feedback__cat:hover,
.jrny-feedback__cat:focus-visible {
  border-color: #0d9488;
  background: #f0fdfa;
  outline: none;
}
.jrny-feedback__cat-emoji {
  font-size: 1.35rem;
}
.jrny-feedback__form-label {
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: #0f766e;
}
.jrny-feedback__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.jrny-feedback__field input,
.jrny-feedback__field textarea,
.jrny-feedback__field select {
  font: inherit;
  font-weight: 400;
  border: 1px solid rgba(28,25,23,0.14);
  border-radius: 0.65rem;
  padding: 0.55rem 0.7rem;
  width: 100%;
  box-sizing: border-box;
}
.jrny-feedback__field input:focus,
.jrny-feedback__field textarea:focus,
.jrny-feedback__field select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.25);
  border-color: #0d9488;
}
.jrny-feedback__check {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.88rem;
  margin: 0.5rem 0 0.85rem;
  font-weight: 500;
}
.jrny-feedback__note {
  font-size: 0.8rem;
  color: #78716c;
  margin: 0 0 0.75rem;
  line-height: 1.4;
}
.jrny-feedback__form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.5rem;
}
.jrny-feedback__thanks {
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.jrny-feedback__thanks-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.jrny-feedback__error {
  background: #fef2f2;
  color: #991b1b;
  padding: 0.55rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
}
body.jrny-feedback-open {
  overflow: hidden;
}
body.jrny-printing .jrny-announce,
body.jrny-printing #jrny-community-root,
body.jrny-printing #jrny-announce-root {
  display: none !important;
}


/* =========================================================
   MOBILE LAYOUT HARDENING (urgent regression pass)
   Targets 320-430px without changing desktop intent.
   ========================================================= */

html,
body {
  overflow-x: clip;
  max-width: 100%;
}

/* Contain children that can force horizontal scroll */
img,
video,
svg,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

/* Flex/grid children: allow shrink below intrinsic content width */
.header-inner,
.section-inner,
.ask-shell,
.ask-row,
.ask-actions,
.hero-content,
.hero-copy,
.dest-hub,
.dest-hub__cta,
.dest-hub__cta-actions,
.trip-kit,
.trip-kit__grid,
.trip-kit__item,
.ask-package-card,
.footer-inner,
.jrny-announce__inner,
.jrny-announce__copy,
.cookie-banner,
.jrny-export-panel__card,
.jrny-feedback__panel,
.trip-dashboard__card {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* ---------- <= 900px: tighten sticky header + page shell ---------- */
@media (max-width: 900px) {
  :root {
    --header-h: 3.75rem;
  }

  .header-inner {
    padding: 0.55rem 0.85rem;
    gap: 0.5rem;
  }

  .brand {
    font-size: 1.05rem;
    gap: 0.45rem;
  }

  .brand-mark {
    width: 2rem;
    height: 2rem;
    font-size: 1.05rem;
  }

  .page-hero {
    padding: calc(var(--header-h) + 1.35rem) 0 1.15rem;
  }

  .page-hero .section-inner {
    max-width: 100%;
  }

  .lead {
    font-size: 1.02rem;
  }
}

/* ---------- <= 640px: primary phone band (360-430) ---------- */
@media (max-width: 640px) {
  .section-inner,
  .footer-inner {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }

  .site-footer {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }

  /* Hero */
  .hero-content {
    padding: 5.25rem max(0.75rem, env(safe-area-inset-left, 0px)) 4rem
      max(0.75rem, env(safe-area-inset-right, 0px));
    max-width: 100%;
  }

  .hero-content--ask {
    max-width: 100% !important;
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }

  .hero-kicker {
    max-width: 100%;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    padding: 0.45rem 0.85rem;
    white-space: normal;
    line-height: 1.35;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.75rem, 9.2vw, 2.75rem);
    margin-bottom: 0.85rem;
  }

  .hero-sub {
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
    padding: 0 0.15rem;
  }

  .hero-copy {
    margin-bottom: 1.35rem;
    max-width: 100%;
    padding: 0;
  }

  /* Ask form: full-width controls, 16px inputs (no iOS zoom) */
  .ask-shell {
    margin-top: 1rem;
    padding: 0.9rem 0.8rem 0.85rem;
    border-radius: 1.1rem;
    width: 100%;
    max-width: 100%;
  }

  .ask-row {
    flex-direction: column !important;
    width: 100%;
  }

  .ask-actions {
    width: 100%;
    min-width: 0 !important;
  }

  .ask-actions .btn,
  .ask-actions .search-btn,
  .ask-submit {
    width: 100%;
    min-height: 2.85rem;
    justify-content: center;
  }

  .ask-input,
  .ask-input-wrap textarea,
  textarea.ask-input,
  .jrny-feedback__field input,
  .jrny-feedback__field textarea,
  .jrny-feedback__field select {
    font-size: 16px !important; /* prevent iOS focus zoom */
    max-width: 100%;
  }

  .ask-teach {
    font-size: 0.85rem;
    line-height: 1.45;
  }

  .ask-chips {
    gap: 0.4rem;
  }

  .ask-chip {
    min-height: 2.5rem;
    padding: 0.45rem 0.75rem;
    font-size: 0.82rem;
  }

  /* Announcement bar */
  .jrny-announce__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .jrny-announce__copy {
    min-width: 0;
    width: 100%;
  }

  .jrny-announce__title {
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .jrny-announce__actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .jrny-announce__cta {
    flex: 1 1 auto;
    min-width: min(100%, 9rem);
    text-align: center;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  /* Destination explorer / packages */
  .dest-hub__hero-copy {
    padding: 0.85rem 0.9rem 1rem;
  }

  .dest-hub__title {
    font-size: clamp(1.25rem, 6.5vw, 1.65rem);
  }

  .dest-hub__lead {
    font-size: 0.88rem;
  }

  .dest-hub__mode-note {
    font-size: 0.82rem;
    padding: 0.55rem 0.7rem;
  }

  .dest-hub__packages,
  .dest-hub__gear,
  .dest-hub__glow {
    padding: 0.95rem 0.85rem 1.05rem;
  }

  .ask-packages__grid,
  .dest-hub__gear-grid,
  .dest-hub__products {
    grid-template-columns: 1fr !important;
  }

  .dest-hub__cta {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0.9rem;
  }

  .dest-hub__cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .dest-hub__cta-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    min-height: 2.85rem;
  }

  /* Trip kit */
  .trip-kit--visual {
    margin-left: 0;
    margin-right: 0;
  }

  .trip-kit--visual .trip-kit__head {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .trip-kit--visual .trip-kit__grid {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    grid-template-columns: 1fr !important;
  }

  .trip-kit__actions,
  .trip-kit__actions--top {
    flex-wrap: wrap;
    width: 100%;
  }

  .trip-kit__actions .btn,
  .trip-kit__actions--top .btn {
    flex: 1 1 auto;
    min-width: min(100%, 8rem);
    justify-content: center;
  }

  .trip-kit__item {
    flex-wrap: wrap;
  }

  .trip-kit__hero img {
    height: 8rem;
  }

  /* Trip dashboard */
  .trip-dashboard__card {
    padding: 0.9rem 0.85rem;
  }

  .trip-dashboard__actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 8rem);
  }

  /* Cards / grids that can spill */
  .ways-grid,
  .preview-grid,
  .collections-grid,
  .product-grid,
  .guides-grid,
  .trip-ideas-grid,
  .dest-grid {
    grid-template-columns: 1fr !important;
    width: 100%;
    max-width: 100%;
  }

  .preview-card,
  .dest-card,
  .guide-card,
  .product-card,
  .collection-card {
    max-width: 100%;
  }

  /* Partner pills: allow wrap, no horizontal force */
  .line-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    max-width: 100%;
  }

  /* Cookie banner: safe area + full usable width */
  .cookie-banner {
    left: max(0.65rem, env(safe-area-inset-left, 0px));
    right: max(0.65rem, env(safe-area-inset-right, 0px));
    bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
    max-width: none;
    width: auto;
  }

  .back-to-top {
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner__actions .cookie-banner__btn {
    min-height: 2.6rem;
    flex: 1 1 auto;
  }

  /* Feedback modal: full-width sheet on phones */
  .jrny-feedback__panel {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }

  .jrny-feedback__head,
  .jrny-feedback__body {
    padding-left: max(0.9rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.9rem, env(safe-area-inset-right, 0px));
  }

  .jrny-feedback__body {
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    -webkit-overflow-scrolling: touch;
  }

  .jrny-feedback__form-actions .btn {
    flex: 1 1 auto;
    min-height: 2.75rem;
  }

  /* Export panel */
  .jrny-export-panel {
    padding: 0.65rem;
    align-items: stretch;
  }

  .jrny-export-panel__card {
    width: 100%;
    margin: 0.5rem 0 1rem;
    padding: 0.95rem 0.9rem 1.1rem;
  }

  .jrny-export-panel__body {
    max-height: min(55vh, 22rem);
  }

  .jrny-export-panel__actions .btn {
    flex: 1 1 auto;
    min-height: 2.75rem;
  }

  /* Trust / buttons general */
  .btn {
    max-width: 100%;
  }

  .section-more {
    flex-direction: column;
    align-items: stretch;
  }

  .section-more .btn,
  .section-more a.btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .dest-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .dest-detail__actions .btn,
  .dest-detail__actions a {
    flex: 1 1 auto;
    min-width: min(100%, 9rem);
    justify-content: center;
    text-align: center;
  }

  /* Avoid sticky header + announce crushing content */
  .subpage .page-main {
    overflow-x: clip;
  }

  /* Share menus shouldn't spill */
  .share-menu,
  .share-bar {
    max-width: 100%;
    flex-wrap: wrap;
  }
}

/* ---------- <= 390px (iPhone 12/13/14/15 class) ---------- */
@media (max-width: 390px) {
  .hero-title {
    font-size: clamp(1.65rem, 8.8vw, 2.35rem);
  }

  .ask-shell {
    padding: 0.8rem 0.7rem 0.75rem;
  }

  .jrny-announce__emoji {
    font-size: 1.15rem;
  }

  .dest-hub__section-head {
    gap: 0.55rem;
  }

  .dest-hub__section-icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.95rem;
  }
}

/* ---------- <= 360px (common Android) ---------- */
@media (max-width: 360px) {
  .hero-content {
    padding-top: 4.75rem;
    padding-bottom: 3.5rem;
  }

  .hero-title {
    font-size: 1.55rem;
    line-height: 1.08;
  }

  .hero-kicker {
    font-size: 0.58rem;
    padding: 0.4rem 0.65rem;
  }

  .btn--sm {
    padding: 0.45rem 0.7rem;
  }

  .ask-package-card {
    padding: 0.85rem 0.8rem 0.95rem;
  }
}

/* ---------- <= 320px (narrowest common) ---------- */
@media (max-width: 320px) {
  .header-inner {
    padding: 0.45rem 0.55rem;
  }

  .brand span:last-child {
    font-size: 0.95rem;
  }

  .hero-title {
    font-size: 1.45rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .section-inner {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .ask-shell {
    padding: 0.7rem 0.55rem 0.65rem;
    border-radius: 0.95rem;
  }

  .jrny-announce__title {
    font-size: 0.82rem;
  }

  .jrny-announce__body {
    font-size: 0.75rem;
  }
}

/* Touch targets: primary interactive controls */
@media (max-width: 640px) {
  .btn,
  .nav-toggle,
  .ask-chip,
  .jrny-announce__dismiss,
  .jrny-feedback__cat,
  .cookie-banner__btn {
    min-height: 44px;
  }

  .nav-toggle {
    min-width: 44px;
  }
}

/* Desktop unchanged: rules above only apply at max-width breakpoints */

/* =========================================================
   HOMEPAGE VISUAL / MOBILE UX - image-first travel app feel
   ========================================================= */

.section--tight {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.section--meta {
  padding-top: 0.75rem;
  padding-bottom: 2rem;
}
.section-head--row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
  max-width: none;
  margin: 0 0 1rem;
}
.section-head--row .heading-font {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
}
.text-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-deep);
  text-decoration: none;
  white-space: nowrap;
}
.text-link:hover { text-decoration: underline; }

/* Compact hero */
.hero-content--visual .hero-copy--tight {
  margin-bottom: 1rem;
}
.hero-sub--short {
  max-width: 22rem;
  font-size: clamp(0.95rem, 3.2vw, 1.1rem) !important;
  opacity: 0.95;
}
.ask-shell--compact {
  padding: 0.85rem 0.85rem 0.75rem;
}
.ask-chips--hero {
  margin-top: 0.55rem;
}
.ask-chip--link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.ask-voice__label { margin-left: 0.25rem; }

/* Accordion: learn more / how it works */
.ux-details {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.ux-details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--brand-deep);
  list-style: none;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
}
.ux-details summary::-webkit-details-marker { display: none; }
.ux-details summary::before {
  content: '+';
  display: inline-flex;
  width: 1.25rem;
  margin-right: 0.35rem;
  font-weight: 700;
}
.ux-details[open] summary::before { content: '\2212'; }
.ux-details p,
.ux-details li {
  margin: 0.4rem 0 0;
  line-height: 1.45;
  color: #44403c;
}
.ux-details--hero {
  margin-top: 0.5rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
}
.ux-details--hero summary {
  color: #57534e;
  font-size: 0.82rem;
  min-height: 2rem;
}
.ux-details--block {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 0.9rem;
  padding: 0.65rem 0.9rem;
  margin-bottom: 0.55rem;
}
.journey-steps--compact {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: #44403c;
  font-size: 0.9rem;
  line-height: 1.5;
}
.meta-list {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #44403c;
  line-height: 1.5;
}

/* Image-first visual cards (Airbnb-style tappable tiles) */
.visual-card-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}
.visual-card-grid--dest {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.visual-card-grid--4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.visual-card-grid--products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) {
  .visual-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
  .visual-card-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 960px) {
  .visual-card-grid--dest {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.visual-card {
  position: relative;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  background: #1c1917;
  min-width: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.visual-card:active {
  transform: scale(0.98);
}
@media (hover: hover) {
  .visual-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
  }
}
.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.visual-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(15, 23, 42, 0.75) 100%
  );
  pointer-events: none;
}
.visual-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0.75rem 0.85rem;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.visual-card__label i {
  margin-right: 0.35rem;
}
.visual-card__sub {
  font-weight: 500;
  font-size: 0.78rem;
  opacity: 0.9;
}
.visual-card-grid--4 .visual-card {
  aspect-ratio: 1 / 1;
}
.visual-card-grid--products .visual-card {
  aspect-ratio: 1 / 1.05;
}

/* Book & browse cards: square tiles */
@media (max-width: 639px) {
  .visual-card-grid--4 .visual-card__label {
    font-size: 0.85rem;
    padding: 0.6rem 0.7rem;
  }
}

/* Digital adventures as photo tiles */
.da-preview-card--visual {
  position: relative;
  padding-bottom: 0;
  aspect-ratio: 4 / 3;
}
.da-preview-card--visual .da-preview-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}
.da-preview-card--visual .visual-card__label {
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.da-preview-grid {
  grid-template-columns: 1fr !important;
}
@media (min-width: 640px) {
  .da-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* Guide chips row */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

/* Mobile: even tighter homepage copy */
@media (max-width: 640px) {
  .section--tight {
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
  }
  .hero-content--visual {
    padding-top: 5rem;
    padding-bottom: 3.25rem;
  }
  .hero-content--visual .hero-title {
    font-size: clamp(1.85rem, 10vw, 2.5rem) !important;
    margin-bottom: 0.45rem;
  }
  .hero-content--visual .hero-kicker {
    margin-bottom: 0.75rem;
  }
  .ask-shell--compact .ask-actions .btn span:not(.search-btn__text) {
    /* keep short labels */
  }
  .visual-card {
    aspect-ratio: 3 / 4;
    border-radius: 0.9rem;
  }
  .visual-card-grid {
    gap: 0.55rem;
  }
  .section-head--row .heading-font {
    font-size: 1.25rem;
  }
  /* Hide long teach text patterns if any remain */
  .ask-teach,
  .section-head > p:not(.section-kicker) {
    display: none;
  }
  .section-head--row + .visual-card-grid {
    margin-top: 0;
  }
}

@media (min-width: 900px) {
  .hero-content--visual .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
  }
  .visual-card {
    aspect-ratio: 4 / 5;
  }
}

/* =========================================================
   PREMIUM UI RESTORATION - grouped travel cards
   Desktop: 3-4 balanced columns | Mobile: horizontal rails
   ========================================================= */

.section--premium {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}
.section-head--premium {
  text-align: left;
  max-width: none;
  margin: 0 0 1.35rem;
}
.section-head--premium .section-kicker {
  margin: 0 0 0.35rem;
}
.section-head__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
}
.section-head__row .heading-font {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
}

/* Card grid */
.jrny-card-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}
.jrny-card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.jrny-card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .jrny-card-grid,
  .jrny-card-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .jrny-card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile: horizontal snap carousel rails */
@media (max-width: 640px) {
  .section--premium {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
  .jrny-card-grid--rail,
  .jrny-card-grid--3,
  .jrny-card-grid--4,
  .jrny-card-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    margin: 0 -0.15rem;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
    scrollbar-width: thin;
  }
  .jrny-card-grid--rail > .jrny-card,
  .jrny-card-grid--3 > .jrny-card,
  .jrny-card-grid--4 > .jrny-card,
  .jrny-card-grid > .jrny-card {
    flex: 0 0 min(78vw, 17.5rem);
    scroll-snap-align: start;
    max-width: min(78vw, 17.5rem);
  }
}

/* Premium card */
.jrny-card {
  background: #fff;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(28, 25, 23, 0.06);
  min-width: 0;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.jrny-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.jrny-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #e7e5e4;
}
.jrny-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.jrny-card:hover .jrny-card__media img,
.jrny-card:focus-within .jrny-card__media img {
  transform: scale(1.04);
}
.jrny-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}
.jrny-card__body {
  padding: 0.95rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.25rem;
}
.jrny-card__title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jrny-card__sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.jrny-card__cta {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.jrny-card__cta i {
  font-size: 0.75rem;
  transition: transform 0.15s ease;
}
.jrny-card:hover .jrny-card__cta i {
  transform: translateX(3px);
}

/* Hero premium balance - not oversized */
.hero-content--premium {
  max-width: min(44rem, 100%);
}
.hero-content--premium .hero-title {
  font-size: clamp(2rem, 6.5vw, 3.4rem) !important;
  line-height: 1.08 !important;
  margin-bottom: 0.75rem !important;
}
.hero-content--premium .hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem) !important;
  max-width: 28rem;
}
.hero-content--premium .hero-copy {
  margin-bottom: 1.35rem;
}

/* Soften previous sparse visual-card overrides that clashed with premium cards */
@media (max-width: 640px) {
  .hero-content--premium {
    padding-top: 5.25rem;
    padding-bottom: 3.5rem;
  }
  .jrny-card__body {
    padding: 0.8rem 0.85rem 0.95rem;
  }
  .jrny-card__title {
    font-size: 1rem;
  }
  .jrny-card__sub {
    font-size: 0.82rem;
  }
  .jrny-card__cta {
    min-height: 2.4rem;
  }
  /* Restore section head paragraphs if any - we use kickers only */
  .section-head--premium > p:not(.section-kicker) {
    display: none;
  }
}

@media (min-width: 1200px) {
  .jrny-card-grid:not(.jrny-card-grid--4):not(.jrny-card-grid--3) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Dest page keep dest-card polish */
.dest-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr));
}

/* =========================================================
   VISUAL RESTORATION FINAL — 2026-07-26
   Source of truth: placeholder image-card homepage (no Git SHA)
   Fixes: left-column collapse, icon lists, empty grids, text clutter
   ========================================================= */

/* Global content shell: always fill intended page width */
.home-v2 main#main,
.home-v2 .section > .section-inner {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.home-v2 .section-inner {
  max-width: min(72rem, 100%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

/* Section heads: left-aligned with the card grid (never center over empty void) */
.home-v2 .section-head--premium,
.home-v2 .section--premium > .section-inner > .section-head {
  text-align: left !important;
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 1.25rem !important;
}

.home-v2 .section-head--premium .section-head__row {
  display: flex !important;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
  width: 100%;
}

.home-v2 .section-head--premium .section-head__row .heading-font,
.home-v2 .section-head--premium h2 {
  margin: 0 !important;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem) !important;
  text-align: left !important;
}

/* ---- Image-first card grid (full width, never thin left stack) ---- */
.home-v2 .jrny-card-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1.1rem !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
  align-items: stretch;
  justify-items: stretch;
}

.home-v2 .jrny-card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.home-v2 .jrny-card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

@media (min-width: 1200px) {
  .home-v2 .jrny-card-grid:not(.jrny-card-grid--4):not(.jrny-card-grid--3) {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .home-v2 #home-ways-grid.jrny-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1400px) {
  .home-v2 #home-ways-grid.jrny-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .home-v2 #home-destinations-grid.jrny-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1024px) {
  .home-v2 .jrny-card-grid,
  .home-v2 .jrny-card-grid--3,
  .home-v2 .jrny-card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Premium card anatomy */
.home-v2 .jrny-card {
  display: flex !important;
  flex-direction: column;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  height: 100%;
  margin: 0 !important;
  background: #fff;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(28, 25, 23, 0.07);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  box-sizing: border-box;
}

.home-v2 .jrny-card__link {
  display: flex !important;
  flex-direction: column;
  flex: 1;
  height: 100%;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.home-v2 .jrny-card__media {
  position: relative;
  aspect-ratio: 16 / 11 !important;
  width: 100% !important;
  overflow: hidden;
  background: linear-gradient(135deg, #e7e5e4 0%, #d6d3d1 100%);
  flex-shrink: 0;
}

.home-v2 .jrny-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
  display: block !important;
}

.home-v2 .jrny-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem 1.05rem;
  flex: 1;
}

.home-v2 .jrny-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink, #1c1917);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-v2 .jrny-card__sub {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted, #78716c);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.home-v2 .jrny-card__cta {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-deep, #0f766e);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 1.5rem;
}

/* Kill legacy icon-list way-cards if any stale script injects them */
.home-v2 .way-card,
.home-v2 a.way-card {
  display: none !important;
}

/* If ways-grid appears, force multi-col image layout width */
.home-v2 .ways-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1.1rem !important;
  width: 100% !important;
}

/* Mobile: horizontal snap rails for discovery sections */
@media (max-width: 640px) {
  .home-v2 .section--premium {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }

  .home-v2 .jrny-card-grid,
  .home-v2 .jrny-card-grid--3,
  .home-v2 .jrny-card-grid--4,
  .home-v2 .jrny-card-grid--rail {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0.8rem !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100% !important;
    max-width: 100% !important;
    padding-bottom: 0.4rem;
    grid-template-columns: none !important;
  }

  .home-v2 .jrny-card-grid > .jrny-card,
  .home-v2 .jrny-card-grid--rail > .jrny-card,
  .home-v2 .jrny-card-grid--3 > .jrny-card,
  .home-v2 .jrny-card-grid--4 > .jrny-card {
    flex: 0 0 min(78vw, 17rem) !important;
    max-width: min(78vw, 17rem) !important;
    width: min(78vw, 17rem) !important;
    scroll-snap-align: start;
  }

  .home-v2 .section-head--premium .section-head__row .heading-font,
  .home-v2 .section-head--premium h2 {
    font-size: 1.28rem !important;
  }

  .home-v2 .jrny-card__body {
    padding: 0.75rem 0.8rem 0.9rem;
  }

  .home-v2 .jrny-card__title {
    font-size: 0.98rem;
  }

  .home-v2 .jrny-card__sub {
    font-size: 0.8rem;
  }

  .home-v2 .jrny-card__cta {
    min-height: 2.4rem;
  }

  /* Prevent horizontal page overflow */
  body.home-v2,
  body.home-v2 main#main {
    overflow-x: clip;
  }
}

/* Hero Ask: compact, not documentation */
.home-v2 .hero-content--premium {
  max-width: min(44rem, 100%);
}

.home-v2 .ask-chips--hero {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-start;
}

.home-v2 .ux-details--hero {
  margin-top: 0.65rem;
  font-size: 0.85rem;
}

/* Hide instructional chip/help copy from primary UI */
.home-v2 .ask-chips__hint,
.ask-chips__hint {
  display: none !important;
}

.home-v2 .section--meta {
  padding-top: 1.25rem;
  padding-bottom: 2rem;
}

/* Dest page grids stay multi-col */
.dest-grid {
  display: grid !important;
  gap: 1.15rem !important;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15.5rem), 1fr)) !important;
  width: 100% !important;
}


/* =========================================================
   PLANNER / EXPLORE UX — compact summary, no visual redesign
   ========================================================= */

.trip-dashboard--compact {
  margin: 1rem 0 0.5rem;
}
.trip-dashboard__card--compact {
  padding: 0.9rem 1rem 1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.08);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}
.trip-dashboard__summary-line {
  margin: 0.25rem 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink, #1c1917);
  font-weight: 600;
}
.trip-dashboard__actions--compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}
.trip-dashboard__details {
  margin-top: 0.5rem;
  border-top: 1px solid #e7e5e4;
  padding-top: 0.45rem;
}
.trip-dashboard__details > summary {
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: #57534e;
  list-style: none;
}
.trip-dashboard__details > summary::-webkit-details-marker { display: none; }
.trip-dashboard__details[open] > summary { margin-bottom: 0.5rem; }

.ask-results__compact {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #57534e;
}
.ask-dest-overview__fold {
  margin: 1.25rem 0;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 0.9rem;
  padding: 0.65rem 0.9rem;
}
.ask-dest-overview__fold > summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}
.ask-journey-details {
  margin: 1rem 0 1.5rem;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 0.9rem;
  padding: 0.65rem 0.9rem;
}
.ask-journey-details > summary {
  cursor: pointer;
  font-weight: 600;
}
.ask-browse-row {
  margin: 0.65rem 0 0.35rem;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
}
.ask-browse-row .text-link,
.ask-browse-row button.text-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--brand-deep, #0f766e);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ask-browse-sep { color: #a8a29e; }
.page-hero--planner .lead { display: none; }

/* Destination detail: primary CTA + secondary + accordions */
.dest-detail__cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}
.dest-detail__cta-row > .btn {
  align-self: flex-start;
}
.dest-detail__secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.dest-detail__accordions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.dest-detail__acc {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 0.75rem;
  padding: 0.55rem 0.85rem;
}
.dest-detail__acc > summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
}
.dest-detail__acc[open] > summary { margin-bottom: 0.45rem; }
.dest-detail__acc p,
.dest-detail__acc li {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #44403c;
}
.dest-detail__weather { margin-top: 0.5rem; }

.jrny-card--discovery .jrny-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 0.9rem 0.9rem;
}
.jrny-card__tags {
  margin: 0.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.dest-discovery-grid {
  margin-top: 0.5rem;
}
.dest-related-grid {
  margin-top: 0.75rem;
}

@media (max-width: 640px) {
  .trip-dashboard__actions--compact .btn {
    flex: 1 1 auto;
    min-height: 2.6rem;
    justify-content: center;
  }
  .dest-detail__cta-row > .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .trip-idea-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .trip-idea-card__actions .btn {
    flex: 1 1 auto;
    min-height: 2.6rem;
    justify-content: center;
  }
}


/* =========================================================
   DESTINATION NAV — visual catalogue + actionable detail
   ========================================================= */
.page-hero--dest-browse {
  padding-top: calc(var(--header-h, 4rem) + 1.1rem);
  padding-bottom: 1rem;
}
.lead--compact {
  max-width: 32rem;
  margin: 0.35rem 0 0.85rem;
  font-size: 1rem;
  color: var(--muted, #57534e);
}
.dest-browse-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.75rem;
}
.dest-search-input {
  min-width: min(100%, 16rem);
  padding: 0.65rem 0.85rem;
  border: 1px solid #e7e5e4;
  border-radius: 999px;
  font: inherit;
  background: #fff;
}
.dest-vibe-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}
.dest-vibe-pills .ask-chip {
  text-decoration: none;
}
.dest-catalog-grid,
.dest-grid.jrny-card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
  width: 100%;
}
.dest-card--tappable .jrny-card__link,
.dest-card--tappable a.dest-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}
.dest-detail--actionable {
  max-width: 48rem;
  margin: 0 auto;
}
.dest-detail__back {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}
.dest-detail--actionable .dest-detail__hero {
  border-radius: 1.1rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
  background: #e7e5e4;
}
.dest-detail--actionable .dest-detail__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dest-detail--actionable .dest-detail__title {
  margin: 0.15rem 0 0.45rem;
  font-size: clamp(1.55rem, 4vw, 2.1rem);
}
.dest-detail__ideas {
  margin: 1.35rem 0;
}
.dest-detail__h2 {
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
}
body.dest-page--detail .page-hero--dest-browse {
  display: none !important;
}
@media (max-width: 640px) {
  .page-hero--dest-browse {
    padding-bottom: 0.65rem;
  }
  .dest-browse-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .dest-search-input {
    width: 100%;
    min-height: 2.75rem;
  }
  .dest-browse-actions .btn {
    min-height: 2.75rem;
    justify-content: center;
  }
  .dest-detail__cta-row > .btn {
    width: 100%;
    min-height: 2.85rem;
    justify-content: center;
    text-align: center;
  }
  .dest-detail__secondary {
    width: 100%;
  }
  .dest-detail__secondary .btn {
    flex: 1 1 auto;
    min-height: 2.6rem;
    justify-content: center;
  }
  .section--dest-main {
    padding-top: 0.75rem;
  }
}

/* KI-002: full-card touch targets on destination rails */
@media (max-width: 640px) {
  .home-v2 #home-destinations-grid.jrny-card-grid--rail {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .home-v2 #home-destinations-grid > .jrny-card {
    flex: 0 0 min(78vw, 17rem) !important;
    max-width: min(78vw, 17rem) !important;
    scroll-snap-align: start;
  }
  .dest-card--tappable a.jrny-card__link,
  .dest-card--tappable a.dest-card__link,
  #home-destinations-grid .jrny-card__link {
    min-height: 12rem;
    touch-action: manipulation;
  }
}

/* =========================================================
   My JRNY V1 companion (KI-007)
   ========================================================= */
.my-jrny {
  --mj-z: 80;
  --mj-safe-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  pointer-events: none;
}
.my-jrny > * {
  pointer-events: auto;
}

.my-jrny__pill {
  position: fixed;
  z-index: var(--mj-z);
  left: 50%;
  bottom: calc(0.85rem + var(--mj-safe-bottom));
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: min(92vw, 22rem);
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(139, 127, 220, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
  color: var(--ink);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.my-jrny__pill:hover,
.my-jrny__pill:focus-visible {
  border-color: rgba(94, 196, 184, 0.55);
  outline: none;
  box-shadow: var(--ring), 0 12px 32px rgba(15, 23, 42, 0.16);
}
.my-jrny__pill-icon {
  color: var(--accent);
  font-size: 0.95rem;
}
.my-jrny__pill-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.my-jrny__pill-bar {
  display: none;
  width: 2.5rem;
  height: 0.28rem;
  border-radius: 99px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.my-jrny__pill-bar > span {
  display: block;
  height: 100%;
  background: var(--brand-gradient);
  border-radius: inherit;
}

/* Desktop: floating summary bottom-right, not a full-width pill */
@media (min-width: 1024px) {
  .my-jrny__pill {
    left: auto;
    right: 1.25rem;
    bottom: 1.25rem;
    transform: none;
    max-width: 16rem;
  }
  .my-jrny__pill-bar {
    display: inline-block;
  }
  /* Reserve space so pill does not cover sticky footers awkwardly */
  body:not(.my-jrny-open) {
    /* no horizontal overflow */
  }
}

.my-jrny__backdrop {
  position: fixed;
  inset: 0;
  z-index: calc(var(--mj-z) + 1);
  background: rgba(15, 23, 42, 0.35);
  border: 0;
  cursor: pointer;
}

.my-jrny__panel {
  position: fixed;
  z-index: calc(var(--mj-z) + 2);
  display: flex;
  flex-direction: column;
  background: var(--card);
  color: var(--ink);
  box-shadow: var(--shadow-lift);
  outline: none;
  overflow: hidden;
}

/* Mobile: bottom sheet */
@media (max-width: 1023px) {
  .my-jrny__panel {
    left: 0;
    right: 0;
    bottom: 0;
    max-height: min(88vh, 40rem);
    border-radius: 1.15rem 1.15rem 0 0;
    transform: translateY(105%);
    transition: transform 0.28s ease;
  }
  .my-jrny__panel.is-open {
    transform: translateY(0);
  }
  /* Keep page CTAs usable: pad bottom when sheet closed so pill does not cover primary actions */
  body {
    padding-bottom: 0;
  }
  main,
  #main {
    padding-bottom: 4.25rem;
  }
}

/* Desktop: side panel */
@media (min-width: 1024px) {
  .my-jrny__panel {
    top: 0;
    right: 0;
    width: min(22.5rem, 32vw);
    height: 100%;
    max-height: 100vh;
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    transform: translateX(105%);
    transition: transform 0.28s ease;
  }
  .my-jrny__panel.is-open {
    transform: translateX(0);
  }
  /* Do not shrink main content permanently — overlay panel only */
}

.my-jrny__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem 0.5rem;
}
.my-jrny__kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.my-jrny__pct {
  margin: 0.15rem 0 0;
  font-size: 1.35rem;
  font-weight: 700;
  font-family: inherit;
}
.my-jrny__close {
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  cursor: pointer;
  color: var(--ink);
}
.my-jrny__progress {
  margin: 0 1.1rem 0.75rem;
  height: 0.4rem;
  border-radius: 99px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.my-jrny__progress > span {
  display: block;
  height: 100%;
  background: var(--brand-gradient);
  border-radius: inherit;
  transition: width 0.35s ease;
}

.my-jrny__section {
  padding: 0.65rem 1.1rem;
  overflow: auto;
}
.my-jrny__panel {
  overflow-y: auto;
  overscroll-behavior: contain;
}
.my-jrny__h {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.my-jrny__fields {
  list-style: none;
  margin: 0;
  padding: 0;
}
.my-jrny__field {
  display: grid;
  grid-template-columns: 1.25rem 1fr auto;
  gap: 0.4rem;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}
.my-jrny__field-check {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(15, 23, 42, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #fff;
}
.my-jrny__field.is-done .my-jrny__field-check {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
}
.my-jrny__field-value {
  color: var(--muted);
  font-size: 0.85rem;
  text-align: right;
  max-width: 9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.my-jrny__field.is-done .my-jrny__field-value {
  color: var(--ink);
  font-weight: 600;
}

.my-jrny__next {
  background: linear-gradient(145deg, rgba(179, 154, 252, 0.12), rgba(94, 196, 184, 0.1));
  border-radius: 0.9rem;
  margin: 0.35rem 1.1rem;
  padding: 0.85rem 1rem;
}
.my-jrny__next-label {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.my-jrny__next-cta {
  display: inline-flex;
}

.my-jrny__empty {
  margin: 0.5rem 1.1rem;
  padding: 1rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.03);
  text-align: left;
}
.my-jrny__empty-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}
.my-jrny__empty p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.my-jrny__empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.my-jrny__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.my-jrny__list-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.4rem 0.55rem;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}
.my-jrny__thumb {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.55rem;
  object-fit: cover;
  background: rgba(15, 23, 42, 0.06);
}
.my-jrny__thumb--empty {
  display: block;
}
.my-jrny__list-label {
  font-size: 0.9rem;
  font-weight: 600;
}
.my-jrny__list-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.my-jrny__mini {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
}
.my-jrny__mini--ghost {
  background: transparent;
  color: var(--muted);
}
.my-jrny__muted {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.my-jrny__panel-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem 1.25rem;
  margin-top: auto;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.my-jrny__linkish {
  border: 0;
  background: none;
  color: var(--brand-deep);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
}

/* Confirm dialog */
.my-jrny__confirm-wrap {
  position: fixed;
  inset: 0;
  z-index: calc(var(--mj-z) + 5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.4);
}
.my-jrny__confirm {
  position: relative;
  width: min(100%, 22rem);
  background: var(--card);
  border-radius: 1.1rem;
  padding: 1.15rem 1.15rem 1rem;
  box-shadow: var(--shadow-lift);
}
.my-jrny__confirm-title {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.1rem;
  line-height: 1.3;
}
.my-jrny__confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.85rem;
}
.my-jrny__confirm-x {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  cursor: pointer;
}

/* Toast */
.my-jrny__toast {
  position: fixed;
  z-index: calc(var(--mj-z) + 6);
  left: 50%;
  bottom: calc(4.5rem + var(--mj-safe-bottom));
  transform: translateX(-50%) translateY(0.5rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: min(92vw, 24rem);
  padding: 0.65rem 0.95rem;
  border-radius: 0.85rem;
  background: rgba(28, 25, 23, 0.92);
  color: #fff;
  font-size: 0.88rem;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.my-jrny__toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.my-jrny__toast-check {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--teal-glow);
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .my-jrny__toast {
    left: auto;
    right: 1.25rem;
    transform: translateY(0.5rem);
    bottom: 5rem;
  }
  .my-jrny__toast.is-show {
    transform: translateY(0);
  }
}

/* Return welcome banner */
.my-jrny__welcome {
  position: fixed;
  z-index: calc(var(--mj-z) - 1);
  left: 0.75rem;
  right: 0.75rem;
  top: max(4.5rem, env(safe-area-inset-top, 0px) + 3.75rem);
  max-width: 28rem;
  margin: 0 auto;
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .my-jrny__welcome {
    left: auto;
    right: 1.25rem;
    margin: 0;
  }
}
.my-jrny__welcome-inner {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(139, 127, 220, 0.28);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-soft);
}
.my-jrny__welcome-title {
  margin: 0 0 0.25rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.my-jrny__welcome-body {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.my-jrny__welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

/* Destination page My JRNY CTAs */
.dest-detail__mj-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.65rem 0 0.25rem;
}
.dest-detail__mj-actions .btn {
  min-height: 2.4rem;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .my-jrny__panel,
  .my-jrny__toast,
  .my-jrny__progress > span {
    transition: none;
  }
}

/* Avoid horizontal overflow from fixed UI */
html, body {
  overflow-x: clip;
}

/* =========================================================
   KI-009 Launch polish — guided flow, empty states, compact planner
   (no redesign of working card/hero systems)
   ========================================================= */
.section-bridge {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--muted, #57534e);
  line-height: 1.45;
  max-width: 40rem;
}
.section-bridge a {
  font-weight: 600;
  color: var(--brand-deep, #5f78bc);
}
.section-lead--soft {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--muted, #57534e);
  max-width: 36rem;
  line-height: 1.45;
}

.ask-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.85rem;
}

.ask-confirm--compact {
  margin-top: 0.65rem;
  padding: 0.75rem 0.9rem;
}
.ask-confirm--compact .ask-confirm__text {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
}
.ask-confirm--compact .ask-confirm__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ask-next-step {
  margin: 1rem 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(179, 154, 252, 0.1), rgba(94, 196, 184, 0.08));
  border: 1px solid rgba(139, 127, 220, 0.18);
}
.ask-next-step__kicker {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted, #57534e);
}
.ask-next-step__text {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}
.ask-next-step__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.trip-dashboard__actions--compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}
.trip-dashboard__hint {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
}
.trip-dashboard__hint .text-link,
.trip-dashboard__hint button.text-link {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 600;
  color: var(--brand-deep, #5f78bc);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.dest-detail__book-when {
  margin: 0.75rem 0 0.25rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.85rem;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.dest-detail__book-when summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
}
.dest-detail__book-hint {
  margin: 0.45rem 0 0.55rem;
  font-size: 0.85rem;
  color: var(--muted, #57534e);
  line-height: 1.4;
}
.dest-detail__mj-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.35rem;
}
.dest-detail__cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

/* Avoid double bottom padding fights with My JRNY pill on very small screens */
@media (max-width: 640px) {
  .ask-next-step__actions .btn,
  .dest-detail__mj-actions .btn {
    min-height: 2.5rem;
  }
  .section-bridge {
    font-size: 0.88rem;
  }
}

/* Consistent results summary spacing */
.ask-results__compact {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--muted, #57534e);
}
.ask-results__summary {
  margin-top: 0.35rem;
}

/* =========================================================
   Launch Polish Pack A — hero trust, value strip, journey guide
   ========================================================= */
.value-strip {
  padding: 1.35rem 0 0.5rem;
  background: var(--paper, #fafaf9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.value-strip__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.value-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem 1.5rem;
}
@media (min-width: 768px) {
  .value-strip__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.value-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink, #1c1917);
}
.value-strip__check {
  color: var(--teal-deep, #2fa89c);
  font-size: 0.9rem;
  line-height: 1.4;
  flex-shrink: 0;
}
.value-strip__philosophy {
  margin: 1rem 0 0;
  max-width: 44rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted, #57534e);
}

.journey-guide {
  padding: 1rem 0 0.25rem;
}
.journey-guide__steps {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}
.journey-guide__steps > li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink, #1c1917);
}
.journey-guide__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(179, 154, 252, 0.25), rgba(94, 196, 184, 0.25));
  font-size: 0.72rem;
  font-weight: 700;
}
.journey-guide__arrow {
  color: var(--muted, #57534e);
  font-weight: 500;
  opacity: 0.7;
  padding: 0 0.1rem;
}
@media (max-width: 640px) {
  .journey-guide__steps {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0.25rem;
  }
  .journey-guide__arrow {
    padding-left: 0.45rem;
  }
}

.trust-statement {
  margin: 1.25rem 0 0;
  padding: 1.1rem 1.15rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  max-width: 44rem;
}
.trust-statement p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink, #1c1917);
}
.trust-statement__sub {
  margin-top: 0.55rem !important;
  font-size: 0.88rem !important;
  color: var(--muted, #57534e) !important;
}
.trust-statement a {
  font-weight: 600;
}

.footer-trust-line {
  margin: 0 0 0.45rem;
  max-width: 40rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}
.site-footer .footer-trust-line {
  color: inherit;
  opacity: 0.9;
}

/* Hero sub readability on tall hero */
.hero--ask .hero-sub {
  max-width: 36rem;
  line-height: 1.5;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
}
.hero--ask .hero-title {
  max-width: 18ch;
}
@media (min-width: 768px) {
  .hero--ask .hero-title {
    max-width: 16ch;
  }
}

/* =========================================================
   Mobile/Desktop UX fixes — welcome, kit back, destinations, partner
   ========================================================= */

/* Destinations nav emphasis */
.nav-desktop .nav-link--destinations {
  font-weight: 700;
  color: var(--ink, #1c1917);
  letter-spacing: 0.01em;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}
.nav-desktop .nav-link--destinations .nav-link__icon {
  font-size: 0.78em;
  margin-right: 0.15rem;
  color: var(--teal-deep, #2fa89c);
  opacity: 0.95;
}
.nav-desktop .nav-link--destinations:hover,
.nav-desktop .nav-link--destinations.is-active {
  color: var(--brand-deep, #5f78bc);
}
.mobile-nav__link.nav-link--destinations {
  font-weight: 700;
}
.mobile-nav__link.nav-link--destinations .nav-link__icon {
  margin-right: 0.35rem;
  color: var(--teal-deep, #2fa89c);
}

/* Explore Destinations hero button — keep label on one line */
.ask-search-btn {
  white-space: nowrap;
  flex-shrink: 0;
}
.ask-search-btn .ask-search-btn__label,
.ask-search-btn span {
  white-space: nowrap;
}
@media (max-width: 420px) {
  .ask-search-btn {
    font-size: 0.82rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}

/* Destinations vibe chips active state */
.dest-vibe-pills .ask-chip.is-active {
  background: var(--brand-gradient, linear-gradient(145deg, #9b8fdc, #5ec4b8));
  color: #fff;
  border-color: transparent;
  font-weight: 700;
}

/* Trip kit Back to Search — never clipped */
.trip-kit--visual .trip-kit__hero {
  overflow: visible;
  min-height: 11.5rem;
}
.trip-kit__hero {
  overflow: visible;
}
.trip-kit__hero-copy {
  justify-content: space-between;
  padding: 0.75rem 1rem 1rem;
  overflow: visible;
  gap: 0.35rem;
  box-sizing: border-box;
}
.trip-kit__nav {
  margin-bottom: 0.35rem;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  z-index: 2;
}
.trip-kit__back,
.trip-kit--visual .trip-kit__back {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
  max-width: 100%;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  padding: 0.4rem 0.75rem !important;
  font-size: 0.8rem !important;
  line-height: 1.2;
  min-height: 2.25rem;
  box-sizing: border-box;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}
@media (max-width: 640px) {
  .trip-kit--visual .trip-kit__hero {
    min-height: 12rem;
  }
  .trip-kit__hero img {
    height: 11rem;
  }
  .trip-kit__back {
    font-size: 0.78rem !important;
    padding: 0.45rem 0.7rem !important;
  }
}

/* Partner picker expandable control */
.ask-partner-picker {
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  overflow: hidden;
}
.ask-partner-picker__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 0.95rem 1.1rem;
  min-height: 3.25rem;
  width: 100%;
  box-sizing: border-box;
  user-select: none;
  transition: background 0.15s ease;
}
.ask-partner-picker__summary::-webkit-details-marker {
  display: none;
}
.ask-partner-picker__summary:hover,
.ask-partner-picker__summary:focus-visible {
  background: rgba(139, 127, 220, 0.08);
  outline: none;
}
.ask-partner-picker__summary:active {
  background: rgba(139, 127, 220, 0.14);
}
.ask-partner-picker__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink, #1c1917);
}
.ask-partner-picker__chevron {
  transition: transform 0.2s ease;
  color: var(--brand-deep, #5f78bc);
  font-size: 0.85em;
}
.ask-partner-picker[open] .ask-partner-picker__chevron {
  transform: rotate(180deg);
}
.ask-partner-picker__hint {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted, #57534e);
  padding-left: 1.35rem;
  line-height: 1.35;
}
.ask-partner-picker__note {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--muted, #57534e);
}
.ask-partner-picker .ask-extra {
  padding: 0 1.1rem 1.1rem;
}
@media (max-width: 640px) {
  .ask-partner-picker__summary {
    min-height: 3.5rem;
    padding: 1rem 1rem;
  }
}

/* Welcome actions wrap cleanly on mobile */
.my-jrny__welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.my-jrny__welcome-actions .btn {
  min-height: 2.4rem;
}

/* Voice listening state already uses .is-listening — ensure visible */
.ask-voice.is-listening {
  box-shadow: 0 0 0 3px rgba(94, 196, 184, 0.45);
  border-color: var(--teal-glow, #4cc4b6);
}

/* Destination library filters + cards */
.jrny-card__desc {
  margin: 0.25rem 0 0.4rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--muted, #57534e);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jrny-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0.35rem 0 0.5rem;
}
.jrny-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(139, 127, 220, 0.12);
  color: var(--brand-deep, #5f78bc);
}
.dest-vibe-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.35rem;
  max-width: 100%;
  scrollbar-width: thin;
}
.dest-vibe-pills .ask-chip {
  flex: 0 0 auto;
  white-space: nowrap;
}
.dest-load-more {
  margin-top: 1.25rem;
  text-align: center;
}
.dest-discovery-grid,
.dest-catalog-grid {
  width: 100%;
}
@media (max-width: 640px) {
  .dest-vibe-pills {
    margin: 0 -0.25rem;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }
}

/* ========== Phase 2: professional UX polish ========== */
.hero-value-line {
  margin: 0.55rem 0 0;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  max-width: 36rem;
}
.value-strip__lead {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text, #1e2433);
  max-width: 42rem;
}
.journey-guide__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-deep, #5f78bc);
  text-align: center;
}
.home-v2 .section {
  scroll-margin-top: 5rem;
}
.home-v2 .section--premium + .section--soft,
.home-v2 .section--soft + .section--premium {
  border-top: 1px solid rgba(95, 120, 188, 0.08);
}
.home-v2 .section-head--premium {
  margin-bottom: 1.15rem;
}
.home-v2 .section-lead--soft {
  max-width: 40rem;
  margin-top: 0.45rem;
}
.plan-path-grid .jrny-card--static {
  min-height: 100%;
  box-shadow: 0 8px 28px rgba(30, 36, 51, 0.06);
  border-radius: 1rem;
  background: var(--surface, #fff);
}
.plan-path-grid .jrny-card__title {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.plan-path-grid .jrny-card__title i {
  margin-right: 0.35rem;
  color: var(--teal-deep, #2fa89c);
}
.plan-path-grid .jrny-card__body {
  padding: 1.15rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-start;
}
.plan-path-grid .btn {
  margin-top: 0.35rem;
  min-height: 2.6rem;
}

/* Insurance home card */
.insurance-home-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1rem;
  border-radius: 1.15rem;
  background: var(--surface, #fff);
  box-shadow: 0 10px 32px rgba(30, 36, 51, 0.07);
  border: 1px solid rgba(95, 120, 188, 0.1);
}
.insurance-home-card__media {
  border-radius: 0.9rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.insurance-home-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.insurance-home-card__body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
}
.insurance-home-card__body p {
  margin: 0 0 0.75rem;
  color: var(--text-muted, #5a6478);
  line-height: 1.5;
}
.insurance-home-card__bullets {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--text-muted, #5a6478);
  line-height: 1.5;
}
.insurance-home-card__bullets li {
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  .insurance-home-card {
    grid-template-columns: 1fr;
  }
}

/* Community home */
.community-home-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.community-home-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: var(--surface, #fff);
  border: 1px solid rgba(95, 120, 188, 0.12);
  text-decoration: none;
  color: inherit;
  min-height: 5.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.community-home-card:hover,
.community-home-card:focus-visible {
  border-color: rgba(95, 120, 188, 0.35);
  box-shadow: 0 10px 28px rgba(30, 36, 51, 0.08);
  transform: translateY(-2px);
  outline: none;
}
.community-home-card__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 127, 220, 0.12);
  color: var(--brand-deep, #5f78bc);
  flex-shrink: 0;
}
.community-home-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.community-home-card__text strong {
  font-size: 0.98rem;
}
.community-home-card__text span {
  font-size: 0.88rem;
  color: var(--text-muted, #5a6478);
  line-height: 1.35;
}
@media (max-width: 768px) {
  .community-home-row {
    grid-template-columns: 1fr;
  }
}

/* Cruise page lines + cards */
.cruise-lines-block {
  margin-top: 1.5rem;
}
.cruise-page .jrny-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 1rem 1rem;
}
.line-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}
.line-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(95, 120, 188, 0.1);
  color: var(--brand-deep, #5f78bc);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.line-pill:hover,
.line-pill:focus-visible {
  background: rgba(95, 120, 188, 0.18);
  outline: 2px solid var(--brand-deep, #5f78bc);
  outline-offset: 2px;
}

/* Focus / a11y polish */
.ask-chip:focus-visible,
.btn:focus-visible,
.search-btn:focus-visible,
.text-link:focus-visible,
.jrny-card__link:focus-visible {
  outline: 2px solid var(--teal-deep, #2fa89c);
  outline-offset: 3px;
}
.ask-actions .btn,
.ask-actions .search-btn {
  min-height: 2.75rem;
}
@media (max-width: 640px) {
  .home-v2 .section {
    padding-top: 1.65rem;
    padding-bottom: 1.65rem;
  }
  .hero-value-line {
    font-size: 0.95rem;
  }
  .plan-path-grid {
    grid-template-columns: 1fr !important;
  }
  .community-home-card {
    min-height: 4.75rem;
  }
  /* Prevent accidental page horizontal scroll from rails */
  .jrny-card-grid--rail {
    max-width: 100%;
  }
}

/* =========================================================
   Pack & Shop + trip kit MOBILE parity fix
   Root issue: mobile rails (overflow-x + nowrap) hid most pack
   cards; gear/shop controls could sit off-screen or feel missing.
   ========================================================= */

/* Always stack pack recommendation content on small screens */
@media (max-width: 900px) {
  /* Homepage Pack & Shop preview: show ALL collections, not a swipe rail */
  body.home-v2 #home-pack-grid.jrny-card-grid--rail,
  body.home-v2 #home-pack-grid.jrny-card-grid,
  #home-pack-grid.jrny-card-grid--rail,
  #home-pack-grid.jrny-card-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    flex-wrap: unset !important;
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    scroll-snap-type: none !important;
    gap: 0.75rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  body.home-v2 #home-pack-grid > .jrny-card,
  #home-pack-grid > .jrny-card {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  /* Pack & Shop page collections */
  .pack-shop-layout .preview-grid,
  #pack-collections.preview-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  .pack-shop-layout .preview-card {
    max-width: 100% !important;
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  body.home-v2 #home-pack-grid.jrny-card-grid--rail,
  body.home-v2 #home-pack-grid.jrny-card-grid,
  #home-pack-grid.jrny-card-grid--rail,
  #home-pack-grid.jrny-card-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Pack list detail items  full mobile readability */
.pack-item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible;
}
.pack-item__main {
  flex: 1 1 12rem;
  min-width: 0;
}
.pack-item__meta {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted, #64748b);
}
.pack-item__why {
  margin: 0;
}
.pack-item__why-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f766e;
  margin-bottom: 0.2rem;
}
.pack-item__why-text {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.45;
}
.pack-item__shop {
  flex: 0 0 auto;
  min-width: 0;
}
.pack-item__shop-btn,
.pack-item__shop .btn {
  min-height: 2.75rem;
  white-space: nowrap;
}
.pack-detail__panel {
  overflow: visible;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.pack-items {
  overflow: visible;
  width: 100%;
}
#pack-list-detail:not([hidden]) {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
  max-height: none !important;
}
.pack-shop-layout {
  overflow: visible;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 640px) {
  .pack-item {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0.15rem;
  }
  .pack-item__main {
    flex: 1 1 auto;
    width: 100%;
  }
  .pack-item__shop {
    width: 100%;
  }
  .pack-item__shop-btn,
  .pack-item__shop .btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .pack-detail__panel {
    padding: 1rem 0.9rem 1.25rem;
  }
  .pack-detail__head {
    flex-direction: column;
    align-items: stretch;
  }
  .pack-detail__head .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Trip kit gear recommendations  never clip Why Listed / Shop Now */
.trip-kit--visual {
  overflow: visible;
}
.trip-kit__list {
  overflow: visible;
}
.trip-kit__item {
  overflow: visible;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.trip-kit__why {
  display: block;
  white-space: normal;
  overflow: visible;
  max-height: none;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}
.trip-kit__shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .trip-kit--visual .trip-kit__grid {
    overflow: visible !important;
  }
  .trip-kit__item {
    flex-direction: column !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
    gap: 0.55rem !important;
  }
  .trip-kit__check {
    width: 100%;
  }
  .trip-kit__item-icon {
    margin-top: 0;
  }
  .trip-kit__item > .trip-kit__item-icon {
    align-self: flex-start;
  }
  /* Icon + label on first row structure: keep icon inline with label */
  .trip-kit__item {
    display: grid !important;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon body"
      "shop shop";
    gap: 0.55rem 0.65rem;
  }
  .trip-kit__item-icon { grid-area: icon; }
  .trip-kit__check { grid-area: body; min-width: 0; }
  .trip-kit__shop {
    grid-area: shop;
    width: 100%;
    flex-shrink: 0;
    margin-top: 0.15rem;
  }
  .trip-kit__shop.btn,
  a.trip-kit__shop {
    width: 100%;
    justify-content: center;
    min-height: 2.85rem;
  }
}

/* Dest hub recommended gear (search explore) */
.dest-hub__why-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0f766e;
  margin-bottom: 0.15rem;
}
.dest-hub__why p {
  margin: 0 0 0.55rem !important;
}
.dest-hub__shop-btn,
.dest-hub__gear-body .btn {
  min-height: 2.6rem;
}
@media (max-width: 640px) {
  .dest-hub__gear,
  .dest-hub__glow {
    overflow: visible;
  }
  .dest-hub__gear-grid {
    grid-template-columns: 1fr !important;
    overflow: visible;
  }
  .dest-hub__gear-card {
    flex-direction: column;
    align-items: stretch;
  }
  .dest-hub__gear-body .btn,
  .dest-hub__shop-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   Conversational TripData UI
   ========================================================= */
.jrny-trip-conversation {
  margin: 0.85rem 0 0.5rem;
  width: 100%;
  max-width: 40rem;
}
.jrny-trip-summary__card,
.jrny-trip-followup,
.jrny-partner-confirm__card {
  background: #fff;
  border: 1px solid rgba(95, 120, 188, 0.16);
  border-radius: 1rem;
  padding: 1rem 1.1rem 1.1rem;
  box-shadow: 0 8px 24px rgba(30, 36, 51, 0.06);
  margin-bottom: 0.75rem;
}
.jrny-trip-summary__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-deep, #5f78bc);
}
.jrny-trip-summary__list {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
  color: #1e2433;
  line-height: 1.45;
}
.jrny-trip-summary__list li { margin: 0.2rem 0; }
.jrny-trip-summary__edit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
}
.jrny-trip-summary__note,
.jrny-trip-followup__hint,
.jrny-partner-confirm__lead,
.jrny-partner-confirm__disc,
.jrny-partner-confirm__notes {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: #5a6478;
  line-height: 1.45;
}
.jrny-trip-followup__q {
  margin: 0 0 0.65rem;
  font-weight: 600;
  font-size: 1rem;
  color: #1e2433;
  line-height: 1.4;
}
.jrny-trip-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}
.jrny-trip-dates__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}
.jrny-trip-dates__input {
  min-height: 2.75rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.65rem;
  font: inherit;
  width: 100%;
  box-sizing: border-box;
}
.jrny-trip-dates__opts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.jrny-trip-dates__check {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}
.jrny-trip-followup__actions,
.jrny-partner-confirm__actions,
.jrny-partner-confirm__go {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.jrny-trip-followup__textrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.jrny-trip-followup__textrow .jrny-trip-dates__input {
  flex: 1 1 12rem;
}
.jrny-partner-confirm__warn {
  margin: 0 0 0.5rem;
  color: #9a3412;
  font-weight: 600;
}
.jrny-partner-confirm__preview {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}
.trip-kit__before-lead {
  margin: -0.25rem 0 0.65rem;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .jrny-trip-dates {
    grid-template-columns: 1fr;
  }
  .jrny-trip-summary__edit .btn,
  .jrny-partner-confirm__actions .btn {
    flex: 1 1 auto;
    min-height: 2.75rem;
    justify-content: center;
  }
  .jrny-trip-followup__textrow {
    flex-direction: column;
  }
  .jrny-trip-followup__textrow .btn {
    width: 100%;
  }
}
