/* ============ POSITIVE VIBES ONLY — tokens + base ============ */
:root {
  --violet: oklch(62% 0.22 285);
  --violet-soft: oklch(72% 0.18 285);
  --violet-deep: oklch(48% 0.22 285);
  --violet-glow: oklch(62% 0.22 285 / .45);

  --chrome-1: #f4f4fb;
  --chrome-2: #c9c9d6;
  --chrome-3: #7d7d90;
  --chrome-4: #2d2d38;

  /* dark theme (default) */
  --bg: #0a0a0d;
  --bg-1: #111114;
  --bg-2: #17171c;
  --bg-card: #131316;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --fg: #ffffff;
  --fg-1: rgba(255,255,255,0.82);
  --fg-2: rgba(255,255,255,0.56);
  --fg-3: rgba(255,255,255,0.36);
  --on-violet: #ffffff;

  --radius: 22px;
  --radius-lg: 32px;
  --radius-sm: 12px;
  --input-bg: rgba(255,255,255,0.05);

  --container: 1360px;
  --ease: cubic-bezier(.22,1,.36,1);
}

:root[data-theme="light"] {
  --bg: #f2f2f5;
  --bg-1: #e9e9ee;
  --bg-2: #ffffff;
  --bg-card: #ffffff;
  --line: rgba(15,15,20,0.08);
  --line-strong: rgba(15,15,20,0.16);
  --fg: #0a0a0d;
  --fg-1: rgba(10,10,13,0.82);
  --fg-2: rgba(10,10,13,0.56);
  --fg-3: rgba(10,10,13,0.36);
  --input-bg: rgba(10,10,13,0.04);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  transition: background .5s var(--ease), color .5s var(--ease);
}

h1, h2, h3, h4 {
  font-family: 'Unbounded', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ============ layout primitives ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}

.h-mega {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(48px, 8.2vw, 132px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.h-xl { font-size: clamp(40px, 5.6vw, 84px); font-weight: 700; line-height: 0.95; letter-spacing: -0.035em; }
.h-lg { font-size: clamp(32px, 3.6vw, 52px); font-weight: 700; line-height: 1; letter-spacing: -0.025em; }
.h-md { font-size: clamp(22px, 2.2vw, 32px); font-weight: 600; line-height: 1.1; letter-spacing: -0.015em; }

.mono { font-family: 'JetBrains Mono', monospace; }

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .4s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--violet);
  color: var(--on-violet);
  box-shadow: 0 18px 50px -12px var(--violet-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 60px -10px var(--violet-glow), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  color: var(--fg);
  backdrop-filter: blur(10px);
}
:root[data-theme="light"] .btn-ghost { background: rgba(10,10,13,0.04); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
:root[data-theme="light"] .btn-ghost:hover { background: rgba(10,10,13,0.08); }
.btn-dark {
  background: #0a0a0d;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-dark:hover { transform: translateY(-2px); }
.btn .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 999px;
  background: rgba(255,255,255,0.15); font-size: 11px;
}
.btn-primary .arrow { background: rgba(255,255,255,0.22); }

/* ============ chrome card (reusable) ============ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease), transform .4s var(--ease);
}
.card:hover { border-color: var(--line-strong); }

/* ============ pill ============ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
}
:root[data-theme="light"] .pill { background: rgba(10,10,13,0.04); }
.pill.violet { background: var(--violet); color: var(--on-violet); border-color: transparent; }
.pill.sold { background: #d32030; color: #fff; border-color: transparent; text-shadow: 0 1px 3px rgba(0,0,0,.4); }
.pill.open { background: #17854a; color: #fff; border-color: transparent; text-shadow: 0 1px 3px rgba(0,0,0,.3); }
.pill.soon { background: #b8780a; color: #fff; border-color: transparent; text-shadow: 0 1px 3px rgba(0,0,0,.3); }
:root[data-theme="light"] .pill.sold { background: #d32030; color: #fff; border-color: transparent; }
:root[data-theme="light"] .pill.open { background: #17854a; color: #fff; border-color: transparent; }
:root[data-theme="light"] .pill.soon { background: #b8780a; color: #fff; border-color: transparent; }
.pill .dot { width: 6px; height: 6px; border-radius: 999px; background: currentColor; }

/* ============ chrome blob visuals ============ */
.blob-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  mix-blend-mode: screen;
  opacity: .95;
  filter: blur(.3px);
  will-change: transform;
}
:root[data-theme="light"] .blob { mix-blend-mode: luminosity; opacity: .75; }

@keyframes blob-spin {
  0%   { transform: translate3d(0,0,0) rotate(0deg)   scale(1); }
  50%  { transform: translate3d(-10px,20px,0) rotate(180deg) scale(1.04); }
  100% { transform: translate3d(0,0,0) rotate(360deg) scale(1); }
}
@keyframes blob-drift {
  0%,100% { transform: translate3d(0,0,0) rotate(0deg); }
  50%     { transform: translate3d(20px,-30px,0) rotate(25deg); }
}
.blob-a { animation: blob-spin 28s linear infinite; }
.blob-b { animation: blob-drift 18s ease-in-out infinite; }
.blob-c { animation: blob-spin 42s linear infinite reverse; }

/* noisy video placeholder */
.video-ph {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 30% 30%, rgba(140,90,255,.35), transparent 60%),
    radial-gradient(70% 60% at 80% 70%, rgba(60,60,90,.7), transparent 60%),
    linear-gradient(135deg, #1a1a22, #0a0a0d);
  isolation: isolate;
}
.video-ph::before {
  content: '';
  position: absolute;
  inset: -25%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .18 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: .5;
  mix-blend-mode: overlay;
  animation: noise 1.2s steps(6) infinite;
}
.video-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(160,120,255,.12) 40%, transparent 80%);
  animation: sweep 6s var(--ease) infinite;
}
@keyframes noise {
  0% { transform: translate(0,0); } 20% { transform: translate(-3%,2%); }
  40% { transform: translate(2%,-3%); } 60% { transform: translate(-2%,3%); }
  80% { transform: translate(3%,-2%); } 100% { transform: translate(0,0); }
}
@keyframes sweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.video-ph .ph-label {
  position: absolute;
  top: 18px; left: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(12px);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.video-ph .ph-label .rec {
  width: 6px; height: 6px; border-radius: 999px; background: #ff3b3b;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; } 50% { opacity: .3; }
}

/* photo placeholder (striped) */
.photo-ph {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #1a1a22, #0e0e12);
  border: 1px solid var(--line);
}
:root[data-theme="light"] .photo-ph {
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,.04) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #e8e8ee, #d8d8e0);
}
.photo-ph.gradient {
  background:
    radial-gradient(60% 80% at var(--px, 30%) var(--py, 40%), var(--violet-soft), transparent 70%),
    linear-gradient(135deg, #1a1a22, #0e0e12);
}
.photo-ph .ph-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: rgba(0,0,0,.45);
  padding: 4px 8px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}
:root[data-theme="light"] .photo-ph .ph-tag { color: rgba(10,10,13,.55); background: rgba(255,255,255,.7); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* marquee */
.marquee {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* page transition */
.page-fade { animation: pageFade .6s var(--ease); }
@keyframes pageFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--violet); }

/* cursor */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--violet);
  border-radius: 999px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease);
}
.cursor-dot.hover {
  width: 48px; height: 48px;
  background: var(--violet-glow);
}

/* nav */
.nav {
  position: fixed;
  top: 18px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 20px;
  background: rgba(15,15,18,0.72);
  backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,0.08);
}
:root[data-theme="light"] .nav-inner {
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 32px -8px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,0.9);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.02em;
  padding-right: 14px;
  border-right: 1px solid var(--line);
}
.nav-links {
  display: flex; gap: 2px;
}
.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--fg-1);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,0.08); color: var(--fg); }
:root[data-theme="light"] .nav-link:hover, :root[data-theme="light"] .nav-link.active { background: rgba(10,10,13,0.08); }
.nav-right { display: flex; align-items: center; gap: 8px; padding-left: 10px; border-left: 1px solid var(--line); }

/* logo mark */
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--violet), var(--violet-deep));
  display: grid; place-items: center;
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 8px 20px -4px var(--violet-glow), inset 0 1px 0 rgba(255,255,255,0.35);
}

/* util */
.grid { display: grid; gap: 24px; }
.flex { display: flex; }
.stack { display: flex; flex-direction: column; }
.between { justify-content: space-between; }
.center { justify-content: center; align-items: center; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-6 { gap: 24px; } .gap-8 { gap: 32px; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; } .mt-12 { margin-top: 48px; } .mt-16 { margin-top: 64px; } .mt-24 { margin-top: 96px; }

section { padding: clamp(64px, 9vw, 140px) 0; position: relative; }

/* ============ MOBILE HAMBURGER NAV ============ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 9px;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  flex-shrink: 0;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.nav-hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
  transform-origin: center;
}
:root[data-theme="light"] .nav-hamburger { background: rgba(10,10,13,0.05); }
.nav-hamburger:hover { background: rgba(255,255,255,0.10); border-color: var(--violet); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: var(--bg);
  padding: 96px 32px 48px;
  flex-direction: column;
  overflow-y: auto;
  animation: pageFade .3s var(--ease);
}
.mobile-menu.open { display: flex; }
.mobile-menu-link {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 9vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--fg);
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  background: none;
  text-align: left;
  cursor: pointer;
  transition: color .2s var(--ease), transform .25s var(--ease);
  width: 100%;
}
.mobile-menu-link:active { color: var(--violet-soft); transform: translateX(6px); }
.mobile-menu-bottom {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mobile-menu-social a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-2);
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: color .2s, border-color .2s;
}
.mobile-menu-social a:hover { color: var(--violet-soft); border-color: var(--violet-soft); }

/* ============ RESPONSIVE — ≤768px ============ */
@media (max-width: 768px) {
  /* --- Cursor --- */
  .cursor-dot { display: none !important; }

  /* --- Global: every element stays within the viewport --- */
  * { box-sizing: border-box; }
  .container { overflow: hidden; }
  /* Re-allow overflow for horizontal scroll carousels */
  .container:has(.tours-grid),
  .container:has(.testimonials-grid),
  .container:has(.videohub-grid) { overflow: visible; }

  /* --- Section spacing --- */
  section { padding: clamp(48px, 10vw, 80px) 0 !important; overflow: hidden !important; }
  /* Carousels live in sections that must not clip their scrollable overflow */
  section:has(.tours-grid),
  section:has(.testimonials-grid),
  section:has(.videohub-grid) { overflow: visible !important; }

  /* --- Typography --- */
  .h-mega { font-size: clamp(32px, 8.5vw, 44px) !important; line-height: 0.96 !important; }
  .h-xl   { font-size: clamp(24px, 7vw, 36px) !important; line-height: 1.02 !important; }
  .h-lg   { font-size: clamp(18px, 5vw, 24px) !important; }
  .h-md   { font-size: clamp(15px, 4vw, 20px) !important; }

  /* --- Nav: pill by default, full-width when scrolled --- */
  .nav {
    top: 14px;
    justify-content: center;
    transition: top .4s var(--ease);
  }
  .nav-inner {
    width: calc(100% - 32px) !important;
    max-width: 100% !important;
    min-height: 52px;
    padding: 6px 6px 6px 16px !important;
    gap: 0 !important;
    /* inherit desktop pill styles — background, border, border-radius, box-shadow */
    background: rgba(15,15,18,0.72) !important;
    backdrop-filter: blur(22px) saturate(160%) !important;
    border: 1px solid var(--line-strong) !important;
    border-radius: 999px !important;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,0.08) !important;
    justify-content: space-between;
    transition:
      border-radius .4s var(--ease),
      padding .35s var(--ease),
      border-color .35s var(--ease),
      box-shadow .35s var(--ease),
      width .4s var(--ease);
  }
  :root[data-theme="light"] .nav-inner {
    background: rgba(255,255,255,.82) !important;
    box-shadow: 0 8px 32px -8px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,0.9) !important;
  }

  /* Scrolled: expand to full-width bar */
  .nav.nav-scrolled {
    top: 0 !important;
  }
  .nav.nav-scrolled .nav-inner {
    width: 100% !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: 1px solid var(--line) !important;
    padding: 0 20px !important;
    min-height: 60px;
    background: rgba(10,10,13,0.88) !important;
    backdrop-filter: blur(24px) saturate(200%) !important;
    box-shadow: none !important;
  }
  :root[data-theme="light"] .nav.nav-scrolled .nav-inner {
    background: rgba(255,255,255,0.92) !important;
    box-shadow: 0 1px 0 var(--line) !important;
  }

  .nav-logo { border-right: none !important; padding-right: 0 !important; gap: 8px !important; }
  .nav-logo-text { display: inline !important; font-size: 12px !important; }
  .nav-right { border-left: none !important; padding-left: 0 !important; gap: 8px !important; margin-left: auto; }
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-hamburger { display: flex !important; flex-shrink: 0; }

  /* --- Hero: account for floating pill nav --- */
  .hero-section { padding-top: 88px !important; padding-bottom: 32px !important; }
  .hero-grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .hero-text-col { padding-bottom: 0 !important; }
  .hero-eyebrow { font-size: 10px !important; }
  .hero-title { margin-top: 12px !important; }
  .hero-desc { font-size: 15px !important; margin-top: 16px !important; line-height: 1.5 !important; }
  .hero-btns { flex-direction: column !important; gap: 10px !important; margin-top: 20px !important; }
  .hero-btns .btn { width: 100% !important; justify-content: center !important; min-height: 52px !important; }
  .hero-video-wrap { order: 2 !important; margin-top: 32px !important; }
  .hero-video-container { aspect-ratio: 3/4 !important; border-radius: 20px !important; }

  /* Stats row */
  .hero-stats {
    margin-top: 24px !important;
    padding-top: 18px !important;
    gap: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    border-top: 1px solid var(--line) !important;
  }
  .hero-stats > div { padding: 0 12px !important; border-right: 1px solid var(--line) !important; }
  .hero-stats > div:first-child { padding-left: 0 !important; }
  .hero-stats > div:last-child { border-right: none !important; }
  .stat-number { font-size: 28px !important; line-height: 1 !important; }
  .stat-label { font-size: 9px !important; margin-top: 4px !important; }

  /* --- All generic grids → single column --- */
  .grid { grid-template-columns: 1fr !important; }

  /* --- MarqueeBar --- */
  .marquee { gap: 20px; }

  /* --- Tour cards: horizontal scroll snap --- */
  .tours-grid {
    display: flex !important;
    overflow-x: auto !important;
    gap: 12px !important;
    padding-bottom: 16px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: calc(-1 * clamp(20px, 4vw, 48px));
    margin-right: calc(-1 * clamp(20px, 4vw, 48px));
    padding-left: clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
  }
  .tours-grid::-webkit-scrollbar { display: none; }
  .tours-grid .card { flex: 0 0 78vw !important; scroll-snap-align: start; min-width: 0; }

  /* --- Calendar header --- */
  .tours-header { flex-direction: column !important; align-items: flex-start !important; gap: 16px !important; }

  /* --- MultiExperience --- */
  .exp-header { grid-template-columns: 1fr !important; gap: 16px !important; }
  .exp-zones { display: flex !important; flex-direction: column !important; height: auto !important; gap: 8px !important; }
  .exp-zone { flex: none !important; height: 100px !important; transition: height .5s var(--ease) !important; border-radius: var(--radius) !important; }
  .exp-zone.exp-zone-active { height: 240px !important; }
  .exp-zone-title { font-size: 20px !important; }

  /* --- Community --- */
  .community-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .community-photos { display: none !important; }
  .community-steps { grid-template-columns: 1fr !important; gap: 8px !important; }
  .community-steps .card { padding: 14px !important; display: flex !important; align-items: center !important; gap: 12px !important; }

  /* --- Story --- */
  .story-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .story-team { display: none !important; }

  /* --- MusicDNA --- */
  .music-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .waveform-bars { height: 36px !important; }

  /* --- Scale stats: 2×2 --- */
  .scale-stats-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .scale-stats-grid .card { padding: 18px !important; }
  .scale-big { font-size: clamp(36px, 9vw, 52px) !important; }

  /* Testimonials: horizontal scroll */
  .testimonials-grid {
    display: flex !important;
    overflow-x: auto !important;
    gap: 12px !important;
    padding-bottom: 12px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: calc(-1 * clamp(20px, 4vw, 48px));
    margin-right: calc(-1 * clamp(20px, 4vw, 48px));
    padding-left: clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonials-grid > * { flex: 0 0 72vw !important; scroll-snap-align: start; }

  /* --- VideoHub --- */
  .videohub-grid {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 12px !important;
    padding-bottom: 16px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: calc(-1 * clamp(20px, 4vw, 48px));
    margin-right: calc(-1 * clamp(20px, 4vw, 48px));
    padding-left: clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
  }
  .videohub-grid::-webkit-scrollbar { display: none; }
  .videohub-item { flex: 0 0 68vw !important; width: 68vw !important; scroll-snap-align: start; border-radius: var(--radius) !important; }

  /* --- Tour page --- */
  .room-card-inner { grid-template-columns: 1fr !important; }
  .room-card-inner > div:first-child { min-height: 220px; }
  .itinerary-item { grid-template-columns: 60px 1fr !important; gap: 12px !important; }
  .itinerary-item > span:last-child { display: none; }

  /* --- Booking --- */
  .booking-steps-bar { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  .booking-layout { grid-template-columns: 1fr !important; }

  /* --- Footer --- */
  .footer-main { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-main .card { padding: 20px !important; }
  .footer-bottom-grid { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
  .footer-brand { grid-column: 1 / -1 !important; }
  .footer-copy { flex-direction: column !important; gap: 8px !important; align-items: flex-start !important; }

  /* --- Touch targets --- */
  .btn { min-height: 48px; }
}

/* ============ SCROLL-TO-TOP BUTTON ============ */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px -4px var(--violet-glow), 0 0 0 1px rgba(255,255,255,.12) inset;
  opacity: 0;
  transform: translateY(16px) scale(0.8);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-top-btn:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 12px 32px -4px var(--violet-glow); }
