/* ============================================================
   MZZI LP Template — base stylesheet
   Override colors in project theme.css or :root block
   ============================================================ */

:root {
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f5f5f2;
  --gray-200: #e8e8e3;
  --gray-400: #868680;
  --gray-600: #6e6e68;
  --gray-800: #1d1d18;

  /* Neutral theme tokens (edit per project) */
  --color-primary: #C4A962;
  --color-primary-dark: #A8894A;
  --color-primary-light: #E8D5A3;
  --color-primary-glow: rgba(196, 169, 98, 0.35);
  --color-surface-dark: #1a1814;
  --color-surface-warm: #121110;
  --color-accent: #E8D5A3;
  --color-cream: #F8F3E8;
  --color-earth: #8B6347;

  /* Layout aliases (stable — do not rename in projects) */
  --patch-gold: var(--color-primary);
  --patch-gold-dark: var(--color-primary-dark);
  --patch-gold-light: var(--color-primary-light);
  --patch-gold-glow: var(--color-primary-glow);
  --patch-black: var(--color-surface-warm);
  --patch-warm: var(--color-surface-dark);
  --forest: var(--color-primary-dark);
  --forest-dark: var(--color-surface-dark);
  --forest-glow: var(--color-primary-glow);
  --forest-light: var(--color-primary);
  --sage: var(--color-accent);
  --gold: var(--color-primary);
  --gold-light: #F5EDD4;
  --earth: var(--color-earth);
  --cream: var(--color-cream);

  --radius: 18px;
  --radius-sm: 12px;
  --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}
section[id], .dd[id] { scroll-margin-top: 92px; }
img { max-width: 100%; height: auto; display: block; filter: grayscale(100%); }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(18, 16, 12, 0.7);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: none;
  border-bottom: 1px solid rgba(208, 183, 117, 0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: all var(--transition);
}
.nav::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(208,183,117,0) 20%, rgba(208,183,117,0.55) 50%, rgba(208,183,117,0) 80%, transparent 100%);
  background-size: 200% 100%;
  animation: navStripe 9s ease-in-out infinite;
  pointer-events: none;
}
.nav.scrolled {
  background: rgba(18, 16, 12, 0.92) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5) !important;
}
@keyframes navStripe {
  0%, 100% { background-position: -100% center; opacity: 0.4; }
  50% { background-position: 100% center; opacity: 1; }
}
@keyframes floatSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 64px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; column-gap: 20px;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: #fff; flex-shrink: 0;
}
.nav-brand-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--forest-light);
  box-shadow: 0 0 14px rgba(208,183,117,0.85), 0 0 28px rgba(208,183,117,0.4);
  animation: brandDotBreath 2.2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes brandDotBreath {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.82); }
}
.nav-brand-text {
  font-size: 14px; font-weight: 600; letter-spacing: -0.2px;
  color: #fff; white-space: nowrap; line-height: 1;
}
.nav-ask {
  display: inline-flex; align-items: center; gap: 10px; padding: 0 10px 0 8px;
  height: 40px; max-width: 500px; width: 100%; justify-self: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; cursor: pointer; font-family: inherit; color: #fff;
  transition: all 0.25s ease; position: relative; overflow: hidden;
}
.nav-ask:hover { background: rgba(255,255,255,0.07); border-color: rgba(208,183,117,0.35); box-shadow: 0 0 0 4px rgba(208,183,117,0.06); }
.nav-ask-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(208,183,117,0.15); color: var(--forest-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-ask:hover .nav-ask-icon { background: rgba(208,183,117,0.25); }
.nav-ask-label { font-size: 13px; font-weight: 600; color: #fff; letter-spacing: -0.1px; flex-shrink: 0; line-height: 1; }
.nav-ask-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.15); flex-shrink: 0; }
.nav-ask-placeholder {
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.55);
  flex: 1; min-width: 0; text-align: left; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap; line-height: 1;
}
.nav-ask-placeholder::after {
  content: '▎'; margin-left: 1px; color: var(--forest-light);
  animation: askCaretBlink 1.1s steps(2) infinite; font-weight: 400;
}
@keyframes askCaretBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.nav-ask-chevron { color: rgba(255,255,255,0.4); display: flex; align-items: center; flex-shrink: 0; transition: transform 0.25s ease, color 0.25s ease; }
.nav-ask:hover .nav-ask-chevron { color: var(--forest-light); transform: translateY(1px); }
.nav-call {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 14px; height: 36px;
  background: transparent; border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8);
  transition: all 0.25s ease; flex-shrink: 0; font-family: inherit; cursor: pointer;
  text-align: center; line-height: 1.25; box-sizing: border-box;
}
.nav-call svg { flex-shrink: 0; display: block; }
.nav-call:hover { background: rgba(255,255,255,0.08); border-color: rgba(208,183,117,0.45); color: #fff; }
.nav-call-label { line-height: 1; }
@media (max-width: 768px) {
  .nav-inner {
    padding: 0 max(12px, env(safe-area-inset-right)) 0 max(12px, env(safe-area-inset-left));
    column-gap: 8px;
    height: 56px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .nav-brand-text { display: none; }
  .nav-ask {
    padding: 0 8px 0 6px;
    height: 36px;
    max-width: none;
    min-width: 0;
    width: 100%;
    justify-self: stretch;
  }
  .nav-ask-label, .nav-ask-divider { display: none; }
  .nav-ask-icon { width: 26px; height: 26px; border-radius: 7px; }
  .nav-ask-placeholder { font-size: 11px; }
  .nav-ask-chevron { display: none; }
  .nav-call-label { display: none; }
  .nav-call { padding: 0; width: 36px; justify-content: center; border-radius: 10px; flex-shrink: 0; }
}

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: var(--forest-dark);
  width: 100%;
  max-width: 100%;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--color-surface-dark) 0%, #2a2418 45%, var(--color-surface-warm) 100%);
  opacity: 0.85;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,16,12,0.65) 0%, rgba(18,16,12,0.3) 40%, rgba(18,16,12,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 120px 24px 80px; max-width: 900px; width: 100%; min-width: 0; box-sizing: border-box; }
.gvr-hero .hero-content { padding: 0 !important; max-width: 800px; }
.hero-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(220px, 72vw);
  max-height: 88px;
  aspect-ratio: 352 / 70;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 28px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5)) drop-shadow(0 0 30px rgba(208,183,117,0.15));
  animation: floatSubtle 4s ease-in-out infinite;
}
@media (max-width: 768px) {
  .hero-logo {
    max-height: 64px;
    max-width: min(200px, 68vw);
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .hero-logo {
    max-height: 56px;
    max-width: min(180px, 64vw);
  }
}
.hero-tag {
  font-size: 15px; font-weight: 500; color: var(--sage);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(48px, 9vw, 88px); font-weight: 800; line-height: 1.02;
  letter-spacing: -2px; color: var(--white); margin-bottom: 16px;
}
.hero-lead {
  font-size: clamp(18px, 2.8vw, 26px); font-weight: 300;
  color: rgba(255,255,255,0.75); letter-spacing: 0.5px; margin-bottom: 28px;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  list-style: none; padding: 0; margin: 0 0 40px;
}
.hero-pill {
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  color: var(--white); background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 16px; border-radius: 100px;
  backdrop-filter: blur(8px);
}
.hero-sub {
  font-size: clamp(17px, 2.5vw, 22px); font-weight: 300;
  color: rgba(255,255,255,0.8); line-height: 1.5; max-width: 600px; margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-hint { margin-top: 28px; font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 300; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-indicator { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.3); border-radius: 12px; position: relative; }
.scroll-indicator::after {
  content: ''; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px;
  background: rgba(255,255,255,0.6); border-radius: 2px;
  transform: translateX(-50%); animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 16px; font-weight: 700; color: var(--black);
  background: var(--patch-gold);
  padding: 14px 28px; border-radius: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 18px var(--forest-glow), inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.08);
  text-align: center; line-height: 1.25; box-sizing: border-box;
}
.btn-primary svg { flex-shrink: 0; display: block; }
.btn-primary:hover {
  background: var(--patch-gold-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(208,183,117,0.5), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-primary:active { transform: translateY(0) scale(0.97); }
.btn-primary.btn-white {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f2 100%);
  color: var(--gray-800);
  box-shadow: 0 4px 18px rgba(255,255,255,0.2), inset 0 1px 0 rgba(255,255,255,0.8), inset 0 -1px 0 rgba(0,0,0,0.08);
}
.btn-primary.btn-white:hover { background: linear-gradient(135deg, #ffffff 0%, #e8e8ed 100%); }
.btn-primary.btn-large { font-size: 19px; padding: 18px 36px; }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 16px; font-weight: 500; color: var(--white);
  padding: 14px 28px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  transition: all var(--transition);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 4px 14px rgba(0,0,0,0.15);
  text-align: center; line-height: 1.25; box-sizing: border-box;
}
.btn-secondary svg { flex-shrink: 0; display: block; }
.btn-secondary:hover { border-color: var(--patch-gold); background: rgba(208,183,117,0.12); color: var(--white); transform: translateY(-1px); }
.btn-secondary:active { transform: scale(0.97); }
.btn-glass-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08); backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.15); padding: 11px 20px; border-radius: 8px;
  cursor: pointer; transition: all var(--transition); box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); font-family: inherit;
  text-align: center; line-height: 1.25; box-sizing: border-box;
}
.btn-glass-dark svg { flex-shrink: 0; display: block; }
.btn-glass-dark:hover { background: rgba(255,255,255,0.15); border-color: rgba(208,183,117,0.5); color: var(--sage); transform: translateY(-1px); }
.btn-glass-dark:active { transform: scale(0.97); }
.btn-glass-light {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08); backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.2); padding: 11px 20px; border-radius: 8px;
  cursor: pointer; transition: all var(--transition); box-shadow: inset 0 1px 0 rgba(255,255,255,0.15); font-family: inherit;
  text-align: center; line-height: 1.25; box-sizing: border-box;
}
.btn-glass-light svg { flex-shrink: 0; display: block; }
.btn-glass-light:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.45); transform: translateY(-1px); }
.btn-glass-light:active { transform: scale(0.97); }
.btn-compact { font-size: 14px !important; padding: 11px 20px !important; width: auto !important; }
.pulse-glow { position: relative; }
.pulse-glow::before {
  content: ''; position: absolute; inset: -4px; border-radius: 8px;
  background: var(--forest); opacity: 0; animation: pulseGlow 3s ease-in-out infinite; z-index: -1;
}
@keyframes pulseGlow { 0%, 100% { opacity: 0; transform: scale(1); } 50% { opacity: 0.25; transform: scale(1.08); } }

/* ========== PROMO VIDEO ========== */
.promo-video-section {
  background: #121110; padding: 72px 24px;
  border-top: 3px solid var(--patch-gold);
}
.promo-video-inner { max-width: 420px; margin: 0 auto; }
.promo-video-wrap { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.5); border: 1px solid rgba(208,183,117,0.22); }
.promo-video { width: 100%; display: block; border-radius: 16px; aspect-ratio: 9 / 16; object-fit: cover; background: #000; }
.promo-unmute-btn {
  position: absolute; bottom: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--patch-gold); color: var(--black); border: none; border-radius: 20px;
  padding: 6px 12px; font-size: 12px; font-weight: 700; cursor: pointer; transition: background .2s ease; z-index: 2;
}
.promo-unmute-btn:hover { background: var(--patch-gold-light); }
@media (max-width: 640px) { .promo-video-section { padding: 48px 16px; } }

/* ========== OFFERING ========== */
.offering {
  padding: 80px 24px 40px;
  background: radial-gradient(ellipse at top, rgba(208,183,117,0.08), transparent 55%), transparent;
  position: relative;
}
.offering-inner {
  max-width: 1100px; margin: 0 auto; padding: 56px 48px;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative; overflow: visible;
}
.offering-inner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208,183,117,0.55), transparent);
  background-size: 200% 100%; animation: navStripe 10s ease-in-out infinite; z-index: 2;
}
.offering-bg-orb {
  position: absolute; top: -120px; right: -120px; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(208,183,117,0.14) 0%, transparent 65%);
  filter: blur(40px); pointer-events: none; z-index: 0; animation: offeringOrbDrift 14s ease-in-out infinite;
}
@keyframes offeringOrbDrift { 0%, 100% { transform: translate(0,0); opacity: 0.85; } 50% { transform: translate(-30px, 20px); opacity: 1; } }
.offering-content { position: relative; z-index: 1; text-align: center; }
.offering-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--sage); margin-bottom: 18px; line-height: 1; }
.offering-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 10px rgba(208,183,117,0.9), 0 0 20px rgba(208,183,117,0.4); animation: brandDotBreath 2s ease-in-out infinite; }
.offering-title { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.08; color: #fff; margin: 0 0 18px; }
.offering-sub { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.7); line-height: 1.65; max-width: 620px; margin: 0 auto 28px; }
.offering-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 30px; }
.offering-spec {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  transition: all 0.3s; box-shadow: inset 0 1px 0 rgba(255,255,255,0.06); text-align: left;
}
.offering-spec:hover { background: rgba(255,255,255,0.08); border-color: rgba(208,183,117,0.35); transform: translateY(-2px); }
.offering-spec-icon { width: 36px; height: 36px; border-radius: 4px; background: linear-gradient(135deg, rgba(208,183,117,0.14), rgba(208,183,117,0.04)); color: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.offering-spec-text { display: flex; flex-direction: column; min-width: 0; line-height: 1.2; }
.offering-spec-text strong { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: -0.2px; white-space: nowrap; }
.offering-spec-text strong span { color: var(--sage); margin-left: 1px; }
.offering-spec-text > span { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 3px; font-weight: 500; }
.offering-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 28px; position: relative; z-index: 1; }

/* Unlock sections — standalone lead magnets */
.unlock-section {
  padding: 0 24px 48px;
  position: relative;
}
.unlock-section:first-of-type { padding-top: 8px; }
.unlock-section-inner {
  max-width: 1100px; margin: 0 auto; padding: 40px 32px;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.unlock-section-inner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208,183,117,0.55), transparent);
  background-size: 200% 100%; animation: navStripe 10s ease-in-out infinite; z-index: 2;
}
.unlock-section-head { text-align: center; margin-bottom: 28px; position: relative; z-index: 1; }
.unlock-section-head .offering-eyebrow { margin-bottom: 12px; }
.unlock-section-title {
  font-size: clamp(22px, 4vw, 32px); font-weight: 800; letter-spacing: -0.8px;
  color: #fff; margin: 0 0 10px; line-height: 1.12;
}
.unlock-section-sub {
  font-size: 14px; color: rgba(255,255,255,0.58); margin: 0 auto;
  line-height: 1.55; max-width: 520px;
}

.unlock-media-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.unlock-media {
  position: relative; display: block; width: 100%; padding: 0;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 4px;
  overflow: hidden; cursor: pointer; font-family: inherit; text-align: left;
  background: rgba(0,0,0,0.3); aspect-ratio: 4 / 5;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.unlock-media:hover {
  border-color: rgba(208,183,117,0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
.unlock-media:active { transform: scale(0.98); }
.unlock-media-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: none !important;
  transition: transform 0.45s ease;
}
.unlock-media:hover .unlock-media-img:not(.unlock-media-img--blur) { transform: scale(1.05); }
.unlock-media-img--blur {
  filter: blur(12px) brightness(0.5) saturate(0.85) !important;
  transform: scale(1.06);
}
.unlock-media-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.12) 52%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}
.unlock-media-body {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 14px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  pointer-events: none;
}
.unlock-media-body--center {
  inset: 0; bottom: auto; align-items: center; justify-content: center; text-align: center;
}
.unlock-media-play {
  width: 42px; height: 42px; border-radius: 50%; margin-bottom: 4px;
  display: flex; align-items: center; justify-content: center;
  background: var(--patch-gold); color: var(--black);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.unlock-media-lock {
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(208,183,117,0.12); border: 1px solid rgba(208,183,117,0.35);
  color: var(--sage); backdrop-filter: blur(8px);
}
.unlock-media-label {
  font-size: 13px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; color: #fff;
}
.unlock-media-desc { font-size: 11px; color: rgba(255,255,255,0.7); line-height: 1.35; }

/* Tours panel — cinematic featured + row card */
.unlock-tours { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.unlock-tour {
  position: relative; display: block; width: 100%; padding: 0; border: none;
  font-family: inherit; cursor: pointer; text-align: left;
  border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.unlock-tour:hover {
  border-color: rgba(208,183,117,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}
.unlock-tour:active { transform: scale(0.99); }
.unlock-tour--featured {
  aspect-ratio: 16 / 9; background: #0a0908;
}
.unlock-tour--featured > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: blur(12px) brightness(0.52) saturate(0.88) !important;
  transform: scale(1.08);
  pointer-events: none;
}
.unlock-tour-shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.28) 45%, rgba(0,0,0,0.42) 100%);
  pointer-events: none;
}
.unlock-tour-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 9px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 5px 10px; border-radius: 4px;
  background: rgba(208,183,117,0.92); color: var(--black);
  pointer-events: none;
}
.unlock-tour-center {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 20px; pointer-events: none; text-align: center;
}
.unlock-tour-play-ring {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(208,183,117,0.95); color: var(--black);
  box-shadow: 0 0 0 8px rgba(208,183,117,0.2), 0 12px 32px rgba(0,0,0,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
.unlock-tour--featured:hover .unlock-tour-play-ring {
  transform: scale(1.08);
  box-shadow: 0 0 0 12px rgba(208,183,117,0.15), 0 16px 40px rgba(0,0,0,0.5);
}
.unlock-tour-title {
  font-size: 15px; font-weight: 800; letter-spacing: 0.4px; text-transform: uppercase;
  color: #fff; line-height: 1.2;
}
.unlock-tour-meta {
  font-size: 12px; color: rgba(255,255,255,0.72); max-width: 280px; line-height: 1.4;
}
.unlock-tour--row {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 12px; align-items: center;
  padding: 10px 12px 10px 10px;
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.unlock-tour-thumb {
  position: relative; width: 96px; height: 68px; border-radius: 4px; overflow: hidden;
  background: #0a0908;
}
.unlock-tour-thumb::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.28); pointer-events: none;
}
.unlock-tour-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: blur(10px) brightness(0.55) saturate(0.9) !important;
  transform: scale(1.08);
}
.unlock-tour-copy { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.unlock-tour-type {
  font-size: 9px; font-weight: 700; letter-spacing: 0.7px; text-transform: uppercase;
  color: var(--sage);
}
.unlock-tour-copy strong {
  font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3;
}
.unlock-tour-copy > span:last-child {
  font-size: 11px; color: rgba(255,255,255,0.55); line-height: 1.35;
}
.unlock-tour-play-sm {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(208,183,117,0.12); border: 1px solid rgba(208,183,117,0.35);
  color: var(--sage);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.unlock-tour--row:hover .unlock-tour-play-sm {
  background: var(--patch-gold); color: var(--black); border-color: transparent;
}

.unlock-price-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; position: relative; z-index: 1; }
.unlock-price-card {
  display: block; width: 100%; padding: 16px; border-radius: 4px; cursor: pointer;
  font-family: inherit; text-align: left;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.unlock-price-card:hover {
  background: rgba(255,255,255,0.07); border-color: rgba(208,183,117,0.35);
  transform: translateY(-2px);
}
.unlock-price-card-top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px;
}
.unlock-price-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--sage); background: rgba(208,183,117,0.1);
  border: 1px solid rgba(208,183,117,0.22); padding: 4px 10px; border-radius: 4px;
}
.unlock-price-amt { font-size: 18px; font-weight: 800; color: var(--sage); letter-spacing: -0.4px; white-space: nowrap; }
.unlock-price-area { font-size: 12px; color: rgba(255,255,255,0.55); margin: 0 0 14px; line-height: 1.4; }
.unlock-price-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; padding: 11px 14px; border-radius: 4px;
  border: 1px solid rgba(208,183,117,0.28);
  background: rgba(208,183,117,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.unlock-price-cta-text {
  font-size: 11px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--sage);
  transition: color 0.25s;
  line-height: 1.25;
  text-align: left;
}
.unlock-price-cta-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(208,183,117,0.14); border: 1px solid rgba(208,183,117,0.22);
  color: var(--sage);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.unlock-price-card:hover .unlock-price-cta {
  background: var(--patch-gold); border-color: transparent;
  box-shadow: 0 6px 18px var(--forest-glow);
}
.unlock-price-card:hover .unlock-price-cta-text { color: var(--black); }
.unlock-price-card:hover .unlock-price-cta-icon {
  background: rgba(0,0,0,0.1); border-color: transparent; color: var(--black);
  transform: translateX(2px);
}

.unlock-banner {
  width: 100%; display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 4px; cursor: pointer; font-family: inherit; text-align: left;
  background: linear-gradient(135deg, rgba(208,183,117,0.1), rgba(208,183,117,0.04));
  border: 1px solid rgba(208,183,117,0.28); transition: background 0.25s, border-color 0.25s;
}
.unlock-banner:hover { background: rgba(208,183,117,0.14); border-color: rgba(208,183,117,0.45); }
.unlock-banner-icon {
  width: 40px; height: 40px; border-radius: 4px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(208,183,117,0.12); color: var(--sage);
}
.unlock-banner-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.unlock-banner-text strong { font-size: 13px; font-weight: 700; color: #fff; }
.unlock-banner-text span { font-size: 11px; color: rgba(255,255,255,0.55); line-height: 1.4; }
.unlock-banner-arrow { color: var(--sage); flex-shrink: 0; }

.unlock-note {
  font-size: 10px; color: rgba(255,255,255,0.42); margin: 10px 0 0; text-align: center;
}
.unlock-note--left { text-align: left; margin-bottom: 12px; }

.unlock-loc-layout { display: grid; gap: 12px; position: relative; z-index: 1; }

.unlock-map-gate {
  position: relative; display: block; width: 100%; padding: 0; margin: 0;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  overflow: hidden; cursor: pointer; font-family: inherit; text-align: center;
  aspect-ratio: 16 / 9; min-height: 152px;
  background: #0e0d0c;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.unlock-map-gate:hover {
  border-color: rgba(208,183,117,0.4);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
.unlock-map-gate:active { transform: scale(0.99); }
.unlock-map-gate-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: blur(10px) brightness(0.58) saturate(0.92) !important;
  transform: scale(1.08);
  pointer-events: none;
}
.unlock-map-gate-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.32);
  pointer-events: none;
}
.unlock-map-gate-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 16px; pointer-events: none;
}
.unlock-map-gate-lock {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(208,183,117,0.14); border: 1px solid rgba(208,183,117,0.38);
  color: var(--sage); backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.unlock-map-gate-label {
  font-size: 13px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; color: #fff;
}
.unlock-map-gate-hint {
  font-size: 11px; color: rgba(255,255,255,0.62); line-height: 1.35;
}

.unlock-loc-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.unlock-loc-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.unlock-loc-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(208,183,117,0.35);
  transform: translateY(-2px);
}
.unlock-loc-icon {
  width: 36px; height: 36px; border-radius: 4px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(208,183,117,0.14), rgba(208,183,117,0.04));
  color: var(--sage);
}
.unlock-loc-text {
  display: flex; flex-direction: column; gap: 3px; min-width: 0; line-height: 1.2;
}
.unlock-loc-text strong {
  font-size: 13px; font-weight: 700; color: #fff; letter-spacing: -0.2px;
}
.unlock-loc-text > span {
  font-size: 11px; color: rgba(255,255,255,0.52); font-weight: 500; line-height: 1.35;
}

.unlock-plans-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; position: relative; z-index: 1; }
.unlock-plan-card {
  position: relative; padding: 0; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; overflow: hidden; aspect-ratio: 3/4;
  cursor: pointer; font-family: inherit; background: rgba(0,0,0,0.2);
  transition: border-color 0.25s, transform 0.25s;
}
.unlock-plan-card:hover { border-color: rgba(208,183,117,0.4); transform: translateY(-2px); }
.unlock-plan-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: blur(14px) grayscale(1) brightness(0.45) !important;
}
.unlock-plan-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--sage); background: rgba(0,0,0,0.45); pointer-events: none;
}

@media (min-width: 768px) {
  .unlock-media { aspect-ratio: 16 / 10; }
  .unlock-tour--featured { aspect-ratio: 21 / 9; max-height: 240px; }
  .unlock-tour--row { grid-template-columns: 132px 1fr auto; padding: 12px 16px 12px 12px; gap: 14px; }
  .unlock-tour-thumb { width: 132px; height: 80px; }
  .unlock-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
  .unlock-loc-layout { grid-template-columns: 1.15fr 1fr; align-items: stretch; }
  .unlock-loc-layout .unlock-map-gate { aspect-ratio: auto; min-height: 200px; height: 100%; }
  .unlock-loc-list { grid-template-columns: 1fr; align-content: start; }
  .unlock-plans-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
  .unlock-section { padding: 0 16px 40px; }
  .unlock-section-inner { padding: 32px 20px; }
  .unlock-tour-title { font-size: 14px; }
  .unlock-tour-play-ring { width: 50px; height: 50px; }
  .unlock-loc-list { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .offering { padding: 56px 16px 24px; }
  .offering-inner { padding: 40px 28px 32px; }
  .offering-specs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) { .offering-inner { padding: 32px 20px 28px; } .offering-specs { grid-template-columns: 1fr; } }

/* ========== STATS BANNER ========== */
.stats-banner { padding: 64px 20px 32px; background: transparent; }
.stats-banner-shell { max-width: 1200px; margin: 0 auto; text-align: center; }
.stats-banner-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--forest-light); margin-bottom: 20px; }
.stats-banner-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 26px 36px;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.stats-banner-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208,183,117,0.6), transparent);
  background-size: 200% 100%; animation: navStripe 9s ease-in-out infinite;
}
.sb-item { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.sb-icon { width: 46px; height: 46px; padding: 11px; background: linear-gradient(135deg, rgba(208,183,117,0.22), rgba(208,183,117,0.06)); border-radius: 4px; color: var(--sage); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.sb-body { min-width: 0; text-align: left; }
.sb-value { font-size: 28px; font-weight: 800; letter-spacing: -1.2px; color: var(--white); line-height: 1; display: inline-flex; align-items: baseline; gap: 1px; background: linear-gradient(180deg, #ffffff, #c9c9cd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sb-prefix { font-size: 19px; color: rgba(255,255,255,0.6); -webkit-text-fill-color: rgba(255,255,255,0.6); margin-right: 1px; }
.sb-suffix { font-size: 23px; color: var(--sage); -webkit-text-fill-color: var(--sage); margin-left: -2px; }
.sb-unit { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.6); -webkit-text-fill-color: rgba(255,255,255,0.6); margin-left: 4px; }
.sb-label { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; margin-top: 4px; white-space: nowrap; }
.sb-sep { width: 1px; height: 46px; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent); flex-shrink: 0; }
@media (max-width: 900px) {
  .stats-banner { padding: 40px 16px 20px; }
  .stats-banner-strip { flex-direction: column; padding: 22px; gap: 18px; }
  .sb-item { width: 100%; }
  .sb-sep { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); }
}

/* ========== RHYTHM BANNER ========== */
.rhythm-banner {
  background: radial-gradient(ellipse at top, rgba(208,183,117,0.12), transparent 55%), radial-gradient(ellipse at bottom, rgba(168,137,58,0.06), transparent 55%), linear-gradient(180deg, #121110 0%, #000 100%);
  padding: 100px 24px; text-align: center; position: relative; overflow: hidden;
}
.rhythm-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208,183,117,0.55), transparent);
  background-size: 200% 100%; animation: navStripe 10s ease-in-out infinite;
}
.rhythm-banner-inner {
  max-width: 720px; margin: 0 auto; padding: 56px 40px;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.12); position: relative;
}
.rhythm-banner-inner h2 { font-size: clamp(36px, 6vw, 56px); font-weight: 800; letter-spacing: -2px; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.rhythm-banner-inner p { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 36px; }
.rhythm-icon-large { margin-bottom: 32px; }
.rhythm-wave, .rhythm-wave-large, .rhythm-wave-small { display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 8px; }
.rhythm-wave span, .rhythm-wave-large span { width: 4px; background: var(--forest-light); border-radius: 4px; animation: wave 1.2s ease-in-out infinite; }
.rhythm-wave span { height: 20px; }
.rhythm-wave-large span { height: 32px; }
.rhythm-wave span:nth-child(1) { animation-delay: 0s; } .rhythm-wave span:nth-child(2) { animation-delay: 0.1s; } .rhythm-wave span:nth-child(3) { animation-delay: 0.2s; } .rhythm-wave span:nth-child(4) { animation-delay: 0.3s; } .rhythm-wave span:nth-child(5) { animation-delay: 0.4s; }
.rhythm-wave-large span:nth-child(1) { animation-delay: 0s; } .rhythm-wave-large span:nth-child(2) { animation-delay: 0.08s; } .rhythm-wave-large span:nth-child(3) { animation-delay: 0.16s; } .rhythm-wave-large span:nth-child(4) { animation-delay: 0.24s; } .rhythm-wave-large span:nth-child(5) { animation-delay: 0.32s; } .rhythm-wave-large span:nth-child(6) { animation-delay: 0.4s; } .rhythm-wave-large span:nth-child(7) { animation-delay: 0.48s; }
@keyframes wave { 0%, 100% { transform: scaleY(0.5); } 50% { transform: scaleY(1.5); } }
@media (max-width: 768px) { .rhythm-banner { padding: 64px 16px; } .rhythm-banner-inner { padding: 40px 24px; } }

/* ========== ACCORDION ========== */
.accordion-wrap { padding: 72px 20px 96px; background: transparent; }
.accordion-container { max-width: 900px; margin: 0 auto; }
.accordion-intro { text-align: center; font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 28px; letter-spacing: 0.3px; }
.dd {
  background: rgba(255,255,255,0.04); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 14px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1); scroll-margin-top: 72px;
}
.dd:hover:not(.open) { background: rgba(255,255,255,0.06); border-color: rgba(208,183,117,0.3); transform: translateY(-1px); }
.dd.open { background: rgba(255,255,255,0.06); border-color: rgba(208,183,117,0.4); box-shadow: 0 24px 56px rgba(208,183,117,0.15), inset 0 1px 0 rgba(255,255,255,0.12); }
.dd-head { width: 100%; display: flex; align-items: center; gap: 16px; padding: 22px 26px; background: transparent; border: none; cursor: pointer; text-align: left; }
.dd-head-icon {
  width: 44px; height: 44px; border-radius: 4px;
  background: linear-gradient(135deg, rgba(208,183,117,0.14), rgba(208,183,117,0.04));
  color: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.4s;
}
.dd.open .dd-head-icon { background: var(--patch-gold); color: var(--black); box-shadow: 0 6px 18px var(--forest-glow); }
.dd-head-text { flex: 1; min-width: 0; }
.dd-eyebrow { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--sage); margin-bottom: 4px; }
.dd-title { font-size: 19px; font-weight: 700; letter-spacing: -0.3px; color: var(--white); margin: 0; line-height: 1.3; }
.dd-lock {
  width: 30px; height: 30px; border-radius: 4px;
  background: rgba(208,183,117,0.1); border: 1px solid rgba(208,183,117,0.2);
  color: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dd-chevron {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(208,183,117,0.08); border: 1px solid rgba(208,183,117,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--sage);
  transition: all 0.4s; flex-shrink: 0;
}
.dd.open .dd-chevron { transform: rotate(180deg); background: var(--patch-gold); color: var(--black); border-color: transparent; box-shadow: 0 4px 14px var(--forest-glow); }
.dd-body { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.4,0,0.2,1); }
.dd.open .dd-body { max-height: 5000px; }
.dd-body-inner { padding: 8px 26px 30px; border-top: 1px solid rgba(208,183,117,0.12); margin-top: 4px; padding-top: 26px; }
.dd-body-inner.dd-body-dark {
  background: radial-gradient(ellipse at top left, rgba(208,183,117,0.1), transparent 50%), rgba(0,0,0,0.3);
  margin: 4px -26px -30px; padding: 28px 32px 40px;
  border-top: 1px solid rgba(208,183,117,0.25);
}
.dd-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

/* About grid inside accordion */
.dd-body-inner .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.dd-body-inner .about-image { border-radius: 4px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); }
.dd-body-inner .about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.dd-body-inner .about-text .section-desc { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 14px; }

/* Property types */
.types-v2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.type-v2-card {
  padding: 22px; background: rgba(255,255,255,0.05); backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  transition: all 0.4s; box-shadow: 0 8px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08); display: flex; flex-direction: column;
}
.type-v2-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(208,183,117,0.4); box-shadow: 0 24px 48px rgba(208,183,117,0.15), inset 0 1px 0 rgba(255,255,255,0.12); transform: translateY(-4px); }
.type-v2-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.type-v2-icon { width: 44px; height: 44px; border-radius: 4px; background: linear-gradient(135deg, rgba(208,183,117,0.14), rgba(208,183,117,0.04)); color: var(--sage); display: flex; align-items: center; justify-content: center; transition: transform 0.4s; }
.type-v2-card:hover .type-v2-icon { transform: scale(1.1) rotate(-5deg); }
.type-v2-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--sage); background: rgba(208,183,117,0.1); border: 1px solid rgba(208,183,117,0.22); padding: 4px 10px; border-radius: 4px; }
.type-v2-tag.featured-tag { color: var(--gold); background: rgba(200,150,62,0.12); border-color: rgba(200,150,62,0.3); }
.type-v2-card h4 { font-size: 18px; font-weight: 700; color: var(--white); margin: 0 0 8px; letter-spacing: -0.3px; }
.type-v2-card p { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.65); line-height: 1.55; margin: 0 0 18px; flex: 1; }
.type-v2-stats { display: flex; gap: 8px; padding: 12px; background: rgba(208,183,117,0.08); border: 1px solid rgba(208,183,117,0.2); border-radius: 4px; margin-bottom: 16px; }
.type-v2-stats > div { flex: 1; text-align: center; display: flex; flex-direction: column; gap: 2px; }
.type-v2-stats strong { font-size: 14px; font-weight: 800; color: var(--sage); letter-spacing: -0.3px; }
.type-v2-stats span { font-size: 10px; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.type-v2-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--sage);
  background: rgba(208,183,117,0.08); border: 1px solid rgba(208,183,117,0.25); padding: 11px 16px; border-radius: 4px;
  cursor: pointer; transition: all 0.4s; font-family: inherit;
  text-align: center; line-height: 1.25; box-sizing: border-box; min-height: 44px;
}
.type-v2-cta span { line-height: 1.25; }
.type-v2-cta svg { flex-shrink: 0; display: block; }
.type-v2-cta:hover { background: var(--patch-gold); color: var(--black); border-color: transparent; box-shadow: 0 6px 18px var(--forest-glow); }
@media (max-width: 900px) { .types-v2-grid { grid-template-columns: 1fr; } }

/* Location */
.dd-body-inner .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.dd-body-inner .location-list { display: flex; flex-direction: column; gap: 10px; margin: 0; }
.dd-body-inner .location-item {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px;
  transition: all 0.4s; box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.dd-body-inner .location-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(208,183,117,0.35); transform: translateX(4px); }
.dd-body-inner .location-item strong { font-size: 14px; font-weight: 600; color: var(--white); display: block; }
.dd-body-inner .location-item span { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.5); }
.location-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--forest-light); flex-shrink: 0; position: relative; box-shadow: 0 0 0 3px rgba(208,183,117,0.15); }
.dd-body-inner .location-map { border-radius: 4px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); }
.dd-body-inner .location-map img { width: 100%; object-fit: cover; }
@media (max-width: 900px) { .dd-body-inner .location-grid { grid-template-columns: 1fr; gap: 20px; } .dd-body-inner .about-grid { grid-template-columns: 1fr; gap: 20px; } }

/* Attractions */
.dd-body-inner .attractions-scroll {
  display: flex; overflow-x: auto; gap: 14px; padding: 4px 4px 16px; margin: 0;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.dd-body-inner .attractions-scroll::-webkit-scrollbar { display: none; }
.dd-body-inner .attraction-card {
  flex: 0 0 240px; scroll-snap-align: start; border-radius: 4px;
  overflow: hidden; position: relative; aspect-ratio: 3/4;
  border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.dd-body-inner .attraction-card:last-child { display: block; }
.attraction-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.attraction-card:hover img { transform: scale(1.06); }
.attraction-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 16px; background: linear-gradient(transparent, rgba(0,0,0,0.75)); }
.attraction-info h3 { font-size: 15px; font-weight: 600; color: var(--white); }

/* Amenities */
.amenities-v2-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 1fr; gap: 12px; }
.amenity-v2 {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  transition: all 0.4s; box-shadow: 0 2px 12px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
}
.amenity-v2:hover { background: rgba(255,255,255,0.1); border-color: rgba(208,183,117,0.4); transform: translateY(-2px); }
.amenity-v2-feature {
  grid-column: 1; grid-row: 1 / span 2; padding: 28px 26px; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  background: radial-gradient(ellipse at top left, rgba(208,183,117,0.15), transparent 60%), linear-gradient(135deg, rgba(208,183,117,0.1), rgba(208,183,117,0.04));
  border-color: rgba(208,183,117,0.3); min-height: 180px;
}
.amenity-v2-icon { width: 40px; height: 40px; border-radius: 4px; background: rgba(208,183,117,0.12); color: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.4s; }
.amenity-v2:hover .amenity-v2-icon { transform: scale(1.12) rotate(-6deg); }
.amenity-v2-feature .amenity-v2-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.1); margin-bottom: 16px; box-shadow: 0 6px 18px rgba(208,183,117,0.3); }
.amenity-v2-text h4 { font-size: 14px; font-weight: 700; color: var(--white); margin: 0; letter-spacing: -0.2px; }
.amenity-v2-feature .amenity-v2-text h4 { font-size: 22px; margin-bottom: 4px; letter-spacing: -0.5px; }
.amenity-v2-text span { display: block; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.5); margin-top: 2px; }
.amenity-v2-feature .amenity-v2-text span { font-size: 13px; color: var(--sage); font-weight: 600; }
@media (max-width: 900px) { .amenities-v2-grid { grid-template-columns: 1fr 1fr; } .amenity-v2-feature { grid-column: 1 / -1; grid-row: auto; min-height: 140px; } }
@media (max-width: 480px) { .amenities-v2-grid { grid-template-columns: 1fr; } .amenity-v2-feature { grid-column: 1; } }

/* Investment dark */
.dd-body-dark .invest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0 0 20px; }
.dd-body-dark .invest-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 24px 22px;
  transition: all 0.4s; position: relative; overflow: hidden;
  backdrop-filter: blur(14px) saturate(180%); -webkit-backdrop-filter: blur(14px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.dd-body-dark .invest-card::before { content: ''; position: absolute; top: -40px; left: -40px; width: 120px; height: 120px; background: radial-gradient(circle, var(--forest-glow) 0%, transparent 65%); opacity: 0.5; pointer-events: none; }
.dd-body-dark .invest-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(208,183,117,0.4); transform: translateY(-3px); }
.dd-body-dark .invest-number { font-size: 36px; font-weight: 800; letter-spacing: -1.5px; display: block; margin-bottom: 10px; line-height: 1; background: linear-gradient(180deg, #E8D5A3 0%, var(--forest-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: relative; }
.dd-body-dark .invest-card h3 { position: relative; font-size: 15px; font-weight: 600; color: var(--white); margin: 0 0 6px; }
.dd-body-dark .invest-card p { position: relative; font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.55; margin: 0; }
.dd-body-dark .invest-cta { text-align: center; padding: 20px 0 0; margin-top: 0; border-top: 1px solid rgba(255,255,255,0.1); }
.dd-body-dark .invest-cta p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0 0 14px; }
.dd-body-dark .dd-actions { justify-content: center; }
@media (max-width: 900px) { .dd-body-dark .invest-grid { grid-template-columns: 1fr; } }

/* Floor plans */
.floor-note { text-align: center; font-size: 13px; color: rgba(255,255,255,0.72); margin: 0 0 20px; padding: 14px 18px; background: rgba(208,183,117,0.06); border: 1px solid rgba(208,183,117,0.18); border-radius: 4px; }
.dd-body-inner .floor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0 0 22px; }
.dd-body-inner .floor-card { position: relative; background: rgba(255,255,255,0.04); border-radius: 4px; overflow: hidden; padding: 14px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 8px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08); aspect-ratio: 3/4; }
.dd-body-inner .floor-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; transition: filter 0.6s; }
.floor-card.locked img { filter: grayscale(100%) blur(36px) brightness(0.55); transform: scale(1.06); }
.floor-lock-overlay {
  position: absolute; inset: 14px; border-radius: 4px;
  background: linear-gradient(180deg, rgba(18,16,12,0.45), rgba(18,16,12,0.78));
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  transition: opacity 0.4s ease; cursor: pointer;
}
.floor-card.unlocked .floor-lock-overlay { opacity: 0; pointer-events: none; }
.floor-lock-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(208, 183, 117, 0.18);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(208, 183, 117, 0.45);
  display: flex; align-items: center; justify-content: center;
  color: var(--patch-gold, #D0B775);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.floor-lock-overlay p {
  font-size: 13px; font-weight: 700; color: var(--white);
  letter-spacing: 0.12em; text-transform: uppercase; margin: 0;
}
.floor-unlock-cta { text-align: center; padding: 24px 20px; background: radial-gradient(ellipse at top, rgba(208,183,117,0.1), transparent 60%), rgba(255,255,255,0.05); backdrop-filter: blur(14px) saturate(180%); -webkit-backdrop-filter: blur(14px) saturate(180%); border: 1px solid rgba(208,183,117,0.22); border-radius: 4px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.08); }
.floor-unlock-cta h4 { font-size: 16px; font-weight: 700; color: var(--white); margin: 0 0 12px; }
.floor-unlock-cta .dd-actions { justify-content: center; margin-top: 0; }
@media (max-width: 900px) { .dd-body-inner .floor-grid { grid-template-columns: 1fr; gap: 12px; } }
@media (max-width: 768px) {
  .accordion-wrap { padding: 48px max(16px, env(safe-area-inset-right)) calc(72px + env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left)); }
  .accordion-container { width: 100%; max-width: 100%; }
  .dd-head { padding: 16px 14px; gap: 10px; align-items: flex-start; }
  .dd-head-icon { width: 36px; height: 36px; }
  .dd-title { font-size: 15px; line-height: 1.35; }
  .dd-chevron { width: 34px; height: 34px; }
  .dd-lock { width: 28px; height: 28px; }
  .dd-body-inner { padding: 6px 14px 24px; padding-top: 22px; }
  .dd-body-inner.dd-body-dark { margin: 4px 0 -24px; padding: 22px 14px 32px; }
  .dd-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .dd-actions .btn-primary,
  .dd-actions .btn-secondary,
  .dd-actions .btn-glass-dark,
  .dd-actions .btn-glass-light,
  .dd-actions .btn-compact {
    width: 100% !important;
    justify-content: center;
  }
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 120px 24px;
  background: radial-gradient(ellipse at bottom, rgba(208,183,117,0.1), transparent 55%), linear-gradient(180deg, #141210 0%, #000 100%);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208,183,117,0.55), transparent);
  background-size: 200% 100%; animation: navStripe 11s ease-in-out infinite; animation-delay: -3s;
}
.final-cta-inner {
  max-width: 680px; margin: 0 auto; padding: 56px 40px;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.12); position: relative;
}
.final-cta h2 { font-size: clamp(40px, 7vw, 64px); font-weight: 800; letter-spacing: -2px; color: var(--white); line-height: 1.08; margin-bottom: 20px; }
.final-cta p { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 40px; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.final-cta-actions .btn-primary, .final-cta-actions .btn-glass-light { padding: 14px 26px !important; font-size: 15px !important; }
@media (max-width: 768px) { .final-cta { padding: 72px 16px; } .final-cta-inner { padding: 40px 24px; } }
@media (max-width: 600px) { .final-cta-actions { flex-direction: column; align-items: stretch; gap: 10px; } .final-cta-actions .btn-primary, .final-cta-actions .btn-glass-light { width: 100% !important; justify-content: center; } }

/* ========== FOOTER ========== */
.footer { background: #000; border-top: 1px solid rgba(255,255,255,0.08); padding: 48px 24px 32px; position: relative; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(208,183,117,0) 20%, rgba(208,183,117,0.55) 50%, rgba(208,183,117,0) 80%, transparent 100%);
  background-size: 200% 100%; animation: navStripe 11s ease-in-out infinite; animation-delay: -5s;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-img { height: 40px; width: auto; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; color: var(--gray-400); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--gray-400); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.footer-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; font-family: inherit; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); cursor: pointer; transition: all 0.25s; white-space: nowrap; text-align: center; line-height: 1.25; box-sizing: border-box; min-height: 40px; }
.footer-cta:hover { background: rgba(208,183,117,0.12); border-color: rgba(208,183,117,0.4); color: var(--white); }
.footer-cta-link { background: transparent; border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.footer-cta-link:hover { background: rgba(255,255,255,0.06); border-color: rgba(208,183,117,0.3); }
.footer-bottom { padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 12px; color: var(--gray-400); line-height: 1.5; }
.footer-video-credit { margin-top: 6px; }
.footer-video-credit a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }
.footer-video-credit a:hover { color: var(--patch-gold-light); }
.footer-disclaimer { margin-top: 8px; opacity: 0.6; }
@media (max-width: 900px) { .footer-contact { align-items: center; } }
@media (max-width: 768px) { .footer { padding: 36px 20px 24px; } .footer-top { grid-template-columns: 1fr; text-align: center; gap: 24px; } .footer-brand { display: flex; flex-direction: column; align-items: center; } .footer-links { align-items: center; } .footer-contact { text-align: center; align-items: center; } .footer-logo-img { margin: 0 auto 8px; display: block; } }

/* ========== FLOATING RHYTHM BUTTON ========== */
.rhythm-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: auto; height: 56px; padding: 0 24px 0 20px; border-radius: 8px;
  background: var(--patch-gold);
  color: var(--black); display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px var(--forest-glow), inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -1px 0 rgba(0,0,0,0.08);
  transition: all var(--transition); animation: floatSubtle 3.5s ease-in-out infinite;
}
.rhythm-float:hover { transform: translateY(-3px) scale(1.04); background: var(--patch-gold-light); box-shadow: 0 14px 42px rgba(208,183,117,0.55); }
.rhythm-float-waves { display: flex; align-items: center; gap: 2px; }
.rhythm-float-waves span { width: 3px; height: 16px; background: var(--black); border-radius: 3px; animation: wave 1.2s ease-in-out infinite; }
.rhythm-float-waves span:nth-child(1) { animation-delay: 0s; } .rhythm-float-waves span:nth-child(2) { animation-delay: 0.15s; } .rhythm-float-waves span:nth-child(3) { animation-delay: 0.3s; }
.rhythm-float-label { font-size: 15px; font-weight: 600; }
@media (max-width: 768px) { .rhythm-float { bottom: 16px; right: 12px; height: 48px; padding: 0 18px 0 14px; } .rhythm-float-label { font-size: 13px; } }

/* ========== FORM MODAL ========== */
.form-modal { position: fixed; inset: 0; z-index: 2500; display: none; align-items: center; justify-content: center; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.4s ease, visibility 0.4s ease; }
.form-modal.active { display: flex; opacity: 1; visibility: visible; pointer-events: all; }
.form-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.82); backdrop-filter: blur(28px) saturate(160%); -webkit-backdrop-filter: blur(28px) saturate(160%); }
.form-modal-content {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative; width: min(460px, calc(100% - 24px)); max-width: calc(100% - 24px); max-height: calc(100vh - 48px);
  background: radial-gradient(ellipse at top right, rgba(208,183,117,0.08), transparent 60%), #121110;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; overflow-y: auto;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 80px rgba(208,183,117,0.1), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateY(30px) scale(0.96); transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); padding: 36px 32px 28px; -webkit-overflow-scrolling: touch;
}
.form-modal.active .form-modal-content { transform: translateY(0) scale(1); }
.form-inner,
#leadForm {
  width: 100%;
  max-width: 100%;
}
.form-modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 22px; color: rgba(255,255,255,0.7); transition: all 0.3s; z-index: 2; font-family: inherit; font-weight: 300; line-height: 1; cursor: pointer; padding: 0; box-sizing: border-box; }
.form-modal-close:hover { background: rgba(255,255,255,0.12); border-color: rgba(208,183,117,0.4); color: #fff; transform: rotate(90deg); }
.form-header { text-align: center; margin: 0 0 26px; padding-top: 6px; }
.form-logo { height: 40px; width: auto; margin: 0 auto 18px; display: block; }
.form-header h3 { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.4px; margin: 0 0 6px; line-height: 1.2; }
.form-header p { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.55); line-height: 1.5; margin: 0; }
.form-field { margin: 0 0 16px; }
.form-field label, .form-field-label { display: block; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.55); margin: 0 0 8px; letter-spacing: 1px; text-transform: uppercase; }
.form-field input { width: 100%; padding: 13px 16px; font-size: 15px; font-family: inherit; border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; background: rgba(255,255,255,0.04); color: #fff; transition: all 0.25s; outline: none; -webkit-appearance: none; appearance: none; line-height: 1.2; }
.form-field input:focus { border-color: var(--forest-light); background: rgba(255,255,255,0.07); box-shadow: 0 0 0 3px rgba(208,183,117,0.15); }
.form-field input::placeholder { color: rgba(255,255,255,0.3); }
.phone-input-wrap { display: flex; align-items: stretch; border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; background: rgba(255,255,255,0.04); overflow: hidden; transition: all 0.25s; }
.phone-input-wrap:focus-within { border-color: var(--forest-light); background: rgba(255,255,255,0.07); box-shadow: 0 0 0 3px rgba(208,183,117,0.15); }
.phone-prefix { display: flex; align-items: center; padding: 0 12px 0 16px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.72); border-right: 1px solid rgba(255,255,255,0.1); flex-shrink: 0; line-height: 1; }
.phone-input-wrap input { border: none; background: transparent; border-radius: 0; padding: 13px 16px; flex: 1; min-width: 0; }
.phone-input-wrap input:focus { border: none; background: transparent; box-shadow: none; }
.form-options { display: flex; flex-direction: column; gap: 8px; margin: 0; }
.form-option { cursor: pointer; display: block; margin: 0; position: relative; }
.form-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.form-option-box { display: flex; align-items: center; gap: 12px; padding: 13px 44px 13px 13px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; transition: all 0.25s; position: relative; min-height: 58px; box-sizing: border-box; }
.form-option-box::after { content: ''; position: absolute; top: 50%; right: 14px; transform: translateY(-50%); width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.28); background: transparent; transition: all 0.25s; }
.form-option:hover .form-option-box { background: rgba(255,255,255,0.07); border-color: rgba(208,183,117,0.35); }
.form-option input[type="radio"]:checked + .form-option-box { background: rgba(208,183,117,0.1); border-color: rgba(208,183,117,0.55); }
.form-option input[type="radio"]:checked + .form-option-box::after { border-color: var(--forest-light); background: radial-gradient(circle, var(--forest-light) 38%, transparent 42%); box-shadow: 0 0 10px rgba(208,183,117,0.5); }
.form-option-icon { width: 36px; height: 36px; border-radius: 4px; background: rgba(208,183,117,0.12); color: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s; }
.form-option input[type="radio"]:checked + .form-option-box .form-option-icon { background: var(--patch-gold); color: var(--black); box-shadow: 0 4px 14px rgba(208,183,117,0.35); }
.form-option-text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.92); line-height: 1.35; flex: 1; min-width: 0; text-align: left; }
.form-submit {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 50px; padding: 14px 18px;
  font-size: 15px; font-weight: 700; color: var(--black); background: var(--patch-gold);
  border: none; border-radius: 4px; cursor: pointer; transition: all 0.3s; margin: 20px 0 0;
  letter-spacing: 0.2px; box-shadow: 0 8px 28px rgba(208,183,117,0.35), inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.08);
  font-family: inherit; line-height: 1.25; text-align: center; box-sizing: border-box;
}
.form-success .form-submit { margin: 0; }
.form-submit:hover { background: var(--patch-gold-light); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(208,183,117,0.45); }
.form-submit:active { transform: translateY(0) scale(0.98); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-footer-text { text-align: center; font-size: 12px; color: rgba(255,255,255,0.45); margin: 18px 0 0; line-height: 1.5; }
.form-rhythm-link { color: var(--sage); font-weight: 600; font-size: 12px; cursor: pointer; background: none; border: none; font-family: inherit; text-decoration: underline; padding: 0; transition: color 0.2s; }
.form-rhythm-link:hover { color: var(--forest-light); }
.form-success { text-align: center; padding: 12px 0 8px; }
.success-icon { display: inline-flex; width: 72px; height: 72px; border-radius: 50%; background: rgba(208,183,117,0.12); border: 1px solid rgba(208,183,117,0.35); align-items: center; justify-content: center; margin: 0 auto 22px; box-shadow: 0 0 40px rgba(208,183,117,0.25), inset 0 1px 0 rgba(255,255,255,0.1); }
.success-icon svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.3px; margin: 0 0 8px; }
.form-success p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0 0 26px; line-height: 1.55; }
.form-consent-note { margin: 12px 0 0; font-size: 11px; line-height: 1.55; color: rgba(255,255,255,0.5); text-align: center; }
.form-consent-note a { color: rgba(208,183,117,0.85); text-decoration: none; border-bottom: 1px solid rgba(208,183,117,0.3); transition: color 0.2s; }
.form-consent-note a:hover { color: var(--sage); border-bottom-color: var(--sage); }
@media (max-width: 600px) {
  .form-modal.active { align-items: flex-end; justify-content: center; }
  .form-modal-content {
    width: 100%;
    max-width: 100%;
    max-height: min(92vh, 92dvh);
    margin: 0;
    border-radius: 16px 16px 0 0;
    padding: 28px max(20px, env(safe-area-inset-right)) calc(24px + env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left));
    transform: translateY(100%);
    box-sizing: border-box;
  }
  .form-modal.active .form-modal-content { transform: translateY(0); }
  .form-header { margin-bottom: 22px; }
  .form-header h3 { font-size: 19px; }
  .form-logo { height: 36px; }
  .form-field input { font-size: 16px; min-height: 48px; }
  .phone-input-wrap input { font-size: 16px; min-height: 48px; }
  .form-option-box {
    padding: 12px 40px 12px 12px;
    align-items: center;
    min-height: 52px;
  }
  .form-option-icon { width: 32px; height: 32px; }
  .form-option-text { font-size: 12.5px; line-height: 1.35; }
  .form-submit { min-height: 48px; font-size: 15px; padding: 13px 16px; }
}

/* ========== RHYTHM MODAL ========== */
.rhythm-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.4s ease, visibility 0.4s ease; }
.rhythm-modal.active { display: flex; opacity: 1; visibility: visible; pointer-events: all; }
.rhythm-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.88); backdrop-filter: blur(40px) saturate(150%); -webkit-backdrop-filter: blur(40px) saturate(150%); }
.rhythm-modal-content {
  position: relative; width: 540px; max-width: 95vw; height: 720px; max-height: 92vh;
  background: #121110; border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7), 0 0 100px rgba(208,183,117,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
  transform: translateY(40px) scale(0.94); transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease; display: flex; flex-direction: column;
}
.rhythm-modal.active .rhythm-modal-content { transform: translateY(0) scale(1); }
.rhythm-ambient { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.rhythm-aurora { position: absolute; border-radius: 50%; filter: blur(90px); mix-blend-mode: screen; will-change: transform, opacity; }
.rhythm-aurora-1 { width: 600px; height: 600px; top: -220px; left: -220px; background: radial-gradient(circle, #B89A4F 0%, transparent 70%); opacity: 0.35; animation: auroraFloat1 22s ease-in-out infinite; }
.rhythm-aurora-2 { width: 520px; height: 520px; bottom: -160px; right: -180px; background: radial-gradient(circle, #D0B775 0%, transparent 70%); opacity: 0.28; animation: auroraFloat2 26s ease-in-out infinite; }
.rhythm-aurora-3 { width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle, #C8963E 0%, transparent 70%); opacity: 0.1; animation: auroraFloat3 18s ease-in-out infinite; }
@keyframes auroraFloat1 { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(60px,-40px) scale(1.12); } 66% { transform: translate(-40px,50px) scale(0.92); } }
@keyframes auroraFloat2 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-70px,-40px) scale(1.08); } }
@keyframes auroraFloat3 { 0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.1; } 50% { transform: translate(-45%,-55%) scale(1.2); opacity: 0.18; } }
.rhythm-grain { position: absolute; inset: 0; opacity: 0.035; mix-blend-mode: overlay; pointer-events: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"); }
.rhythm-modal-header { position: relative; z-index: 5; display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; background: transparent; border: none; }
.rhythm-modal-title { display: flex; align-items: center; gap: 10px; }
.rhythm-mini-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--forest-light); box-shadow: 0 0 12px var(--forest-light), 0 0 24px rgba(208,183,117,0.4); animation: miniDotBreath 2s ease-in-out infinite; }
@keyframes miniDotBreath { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(0.8); } }
.rhythm-modal-title h3 { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.95); letter-spacing: -0.2px; margin: 0; }
.rhythm-ai-badge { font-size: 10px; font-weight: 700; letter-spacing: 1.4px; color: var(--sage); background: rgba(208,183,117,0.12); border: 1px solid rgba(208,183,117,0.25); padding: 3px 8px; border-radius: 4px; text-transform: uppercase; }
.rhythm-modal-close { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; transition: all 0.35s; }
.rhythm-modal-close:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); color: #fff; transform: rotate(90deg); }
.rhythm-modal-body { position: relative; z-index: 5; flex: 1; padding: 0 40px 48px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
#rhythmUI { width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; text-align: center; }
/* Orb — green palette */
.rhythm-orb { position: relative; width: 260px; height: 260px; display: flex; align-items: center; justify-content: center; }
.orb-halo { position: absolute; inset: -60px; border-radius: 50%; background: radial-gradient(circle, rgba(208,183,117,0.22) 0%, rgba(208,183,117,0.08) 30%, transparent 70%); filter: blur(16px); animation: orbHaloBreath 5s ease-in-out infinite; }
@keyframes orbHaloBreath { 0%, 100% { opacity: 0.6; transform: scale(0.95); } 50% { opacity: 1; transform: scale(1.08); } }
.orb-glow { position: absolute; inset: -10px; border-radius: 50%; background: radial-gradient(circle, rgba(208,183,117,0.5) 0%, rgba(208,183,117,0.15) 40%, transparent 70%); filter: blur(12px); animation: orbGlowBreath 3.5s ease-in-out infinite; }
@keyframes orbGlowBreath { 0%, 100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }
.orb-blob { position: absolute; border-radius: 50%; filter: blur(28px); mix-blend-mode: screen; will-change: transform, opacity; }
.orb-blob-1 { width: 220px; height: 220px; background: radial-gradient(circle, #1a1814 0%, transparent 70%); animation: blobMorph1 6s ease-in-out infinite; }
.orb-blob-2 { width: 190px; height: 190px; background: radial-gradient(circle, #B89A4F 0%, transparent 70%); animation: blobMorph2 7s ease-in-out infinite; }
.orb-blob-3 { width: 160px; height: 160px; background: radial-gradient(circle, #D0B775 0%, transparent 70%); animation: blobMorph3 5s ease-in-out infinite; }
@keyframes blobMorph1 { 0%, 100% { transform: translate(0,0) scale(1); opacity: 0.85; } 33% { transform: translate(-18px,12px) scale(1.08); opacity: 0.95; } 66% { transform: translate(14px,-10px) scale(0.94); opacity: 0.8; } }
@keyframes blobMorph2 { 0%, 100% { transform: translate(0,0) scale(1); opacity: 0.8; } 50% { transform: translate(16px,14px) scale(1.06); opacity: 0.95; } }
@keyframes blobMorph3 { 0%, 100% { transform: translate(0,0) scale(1); opacity: 0.75; } 40% { transform: translate(-14px,-12px) scale(1.1); opacity: 0.9; } 80% { transform: translate(10px,16px) scale(0.92); opacity: 0.85; } }
.orb-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(208,183,117,0.28); pointer-events: none; will-change: transform, opacity; }
.orb-ring-1 { width: 200px; height: 200px; animation: ringEcho 4s ease-out infinite; }
.orb-ring-2 { width: 240px; height: 240px; animation: ringEcho 4s ease-out infinite; animation-delay: -2s; }
@keyframes ringEcho { 0% { transform: scale(0.88); opacity: 0; } 20% { opacity: 0.6; } 100% { transform: scale(1.15); opacity: 0; } }
.orb-core {
  position: relative; width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #a8d8bf 0%, #D0B775 28%, #B89A4F 55%, #1a1814 88%);
  box-shadow: 0 0 60px rgba(208,183,117,0.6), 0 10px 40px rgba(208,183,117,0.4), inset 0 -25px 45px rgba(0,0,0,0.35), inset 0 14px 35px rgba(255,255,255,0.2);
  z-index: 3; animation: coreBreath 3s ease-in-out infinite;
}
@keyframes coreBreath { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.orb-core-highlight { position: absolute; top: 14px; left: 22px; width: 42px; height: 26px; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(255,255,255,0.55) 0%, transparent 70%); filter: blur(3px); }
.rhythm-orb.speaking .orb-core { animation: coreBreathFast 0.7s ease-in-out infinite; box-shadow: 0 0 80px rgba(208,183,117,0.8), 0 10px 50px rgba(208,183,117,0.5), inset 0 -25px 45px rgba(0,0,0,0.35), inset 0 14px 35px rgba(255,255,255,0.3); }
@keyframes coreBreathFast { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.rhythm-orb.speaking .orb-halo { animation-duration: 1.2s; }
.rhythm-orb.speaking .orb-glow { animation-duration: 0.9s; }
.rhythm-orb.listening .orb-halo { animation-duration: 6s; opacity: 0.8; }
/* Text pad */
.rhythm-pad { width: 100%; max-width: 460px; display: flex; flex-direction: column; align-items: center; animation: rhythmPadRise 0.6s cubic-bezier(0.22,1,0.36,1) both; }
.rhythm-pad-msg { position: relative; width: 100%; display: flex; align-items: center; padding: 6px 6px 6px 18px; background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(208,183,117,0.04) 100%); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08); transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; }
.rhythm-pad-msg:focus-within { border-color: rgba(208,183,117,0.45); box-shadow: 0 8px 36px rgba(0,0,0,0.4), 0 0 0 4px rgba(208,183,117,0.08), 0 0 24px rgba(208,183,117,0.18); transform: translateY(-1px); }
.rhythm-pad-icon { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; color: var(--sage); opacity: 0.75; margin-right: 10px; transition: opacity 0.3s, transform 0.3s; }
.rhythm-pad-msg:focus-within .rhythm-pad-icon { opacity: 1; transform: scale(1.06); }
.rhythm-pad-input { flex: 1; min-width: 0; font-size: 14.5px; font-family: inherit; font-weight: 400; color: #fff; background: transparent; border: 0; padding: 12px 8px 12px 0; outline: none; }
.rhythm-pad-input::placeholder { color: rgba(255,255,255,0.42); }
.rhythm-pad-send { flex-shrink: 0; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg, var(--forest-light) 0%, #D0B775 100%); border: 0; border-radius: 50%; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 14px rgba(208,183,117,0.4); }
.rhythm-pad-send:hover { transform: scale(1.08) rotate(-4deg); box-shadow: 0 6px 20px rgba(208,183,117,0.55); }
.rhythm-pad-send:active { transform: scale(0.94); }
.rhythm-pad.shake .rhythm-pad-msg { animation: rhythmPadShake 0.42s cubic-bezier(0.36,0.07,0.19,0.97); border-color: rgba(255,80,80,0.5); }
@keyframes rhythmPadRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes rhythmPadShake { 10%, 90% { transform: translateX(-2px); } 20%, 80% { transform: translateX(3px); } 30%, 50%, 70% { transform: translateX(-5px); } 40%, 60% { transform: translateX(5px); } }
.rhythm-end-btn { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); padding: 13px 26px; border-radius: 8px; cursor: pointer; transition: all 0.35s; }
.rhythm-end-btn:hover { background: rgba(229,57,53,0.18); border-color: rgba(229,57,53,0.5); color: #ff8a85; }
.rhythm-end-btn:active { transform: scale(0.97); }
@media (max-width: 768px) { .rhythm-modal-content { max-width: 100%; max-height: 100%; width: 100%; height: 100%; border-radius: 0; border: none; } .rhythm-modal-header { padding: 18px max(22px, env(safe-area-inset-right)) 18px max(22px, env(safe-area-inset-left)); } .rhythm-modal-body { padding: 0 max(24px, env(safe-area-inset-right)) calc(36px + env(safe-area-inset-bottom, 0px)) max(24px, env(safe-area-inset-left)); } #rhythmUI { gap: 32px; } .rhythm-orb { width: 220px; height: 220px; } .orb-core { width: 110px; height: 110px; } }

/* ========== STICKY BAR (Aspire pattern) ========== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 16, 12, 0.97);
  border-top: 2px solid var(--patch-gold);
  padding: 10px 24px calc(10px + env(safe-area-inset-bottom, 0px));
  height: auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 97;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: auto;
  min-height: 40px;
  padding: 8px 16px;
  background: var(--patch-gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: clamp(11px, 2.9vw, 13px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.01em;
  text-transform: none;
  text-align: center;
  white-space: normal;
  max-width: min(520px, 92vw);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.sticky-cta-btn:hover { background: var(--patch-gold-light); }
body.sticky-bar-on { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
@media (max-width: 480px) {
  .sticky-cta { padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px)); }
  .sticky-cta-btn { font-size: 12px; padding: 8px 14px; }
}

/* ========== FADE UP ========== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========== GLOBAL BODY ========== */
body {
  background: radial-gradient(ellipse 80% 50% at top right, rgba(208,183,117,0.08), transparent 55%),
              radial-gradient(ellipse 80% 50% at bottom left, rgba(208,183,117,0.05), transparent 55%),
              #121110 !important;
  color: rgba(255,255,255,0.9);
}

/* ========== SELECTION ========== */
::selection { background: var(--patch-gold); color: var(--black); }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #141210; }
::-webkit-scrollbar-thumb { background: var(--patch-gold); border-radius: 4px; }

/* ========== TEMPLATE MOBILE OVERRIDES ========== */
.hero .hero-content {
  max-width: 720px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 112px max(20px, env(safe-area-inset-right)) 72px max(20px, env(safe-area-inset-left));
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .hero-content > .fade-up:nth-child(1) { transition-delay: 0.05s; }
.hero .hero-content > .fade-up:nth-child(2) { transition-delay: 0.12s; }
.hero .hero-content > .fade-up:nth-child(3) { transition-delay: 0.2s; }
.hero .hero-content > .fade-up:nth-child(4) { transition-delay: 0.28s; }
.hero .hero-content > .fade-up:nth-child(5) { transition-delay: 0.36s; }
.hero .hero-content > .fade-up:nth-child(6) { transition-delay: 0.44s; }
.hero .hero-content > .fade-up:nth-child(7) { transition-delay: 0.52s; }
.hero .hero-logo {
  max-height: 72px;
  max-width: min(220px, 72vw);
  margin-bottom: 22px;
  animation: none;
}
.hero .hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.15px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}
.hero-tag-icon {
  flex-shrink: 0;
  color: var(--patch-gold);
  opacity: 0.9;
}
.hero .hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 5.5vw, 46px);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.06;
  margin-bottom: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}
.hero .hero-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--patch-gold), transparent);
  opacity: 0.85;
}
.hero-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 22px 0 26px;
}
.hero-price-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.hero .hero-lead {
  font-family: 'Lato', sans-serif;
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1;
  color: var(--patch-gold);
  margin: 0;
  text-shadow: 0 0 36px rgba(208, 183, 117, 0.28);
}
.hero .hero-pills {
  gap: 8px;
  margin-bottom: 32px;
  max-width: 100%;
  width: 100%;
  justify-content: center;
}
.hero .hero-pill {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 7px 13px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(208, 183, 117, 0.07);
  border: 1px solid rgba(208, 183, 117, 0.22);
  max-width: 100%;
  text-align: center;
}
.hero .hero-actions {
  gap: 12px;
  width: 100%;
  max-width: 440px;
  flex-direction: column;
  align-items: stretch;
}
.hero .hero-actions .btn-primary,
.hero .hero-actions .btn-secondary {
  flex: none;
  width: 100%;
  justify-content: center;
  min-height: 48px;
  font-size: 15px;
  padding: 13px 18px;
}
.hero-disclaimer {
  margin: 14px 0 0;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25px;
  color: rgba(255, 255, 255, 0.38);
}
@media (max-width: 768px) {
  .hero .hero-content {
    padding: 96px max(16px, env(safe-area-inset-right)) 56px max(16px, env(safe-area-inset-left));
  }
  .hero .hero-logo {
    max-height: 56px;
    max-width: min(200px, 68vw);
    margin-bottom: 16px;
  }
  .hero .hero-tag { font-size: 13px; margin-bottom: 14px; padding: 0 4px; text-align: center; }
  .hero .hero-title {
    font-size: clamp(22px, 6.2vw, 30px);
    letter-spacing: 0;
    line-height: 1.15;
    padding: 0 6px;
  }
  .hero .hero-lead { font-size: clamp(22px, 6.5vw, 28px); }
  .hero .hero-pills {
    padding: 0 2px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    justify-items: center;
  }
  .hero .hero-pill {
    font-size: 11px;
    padding: 6px 10px;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero .hero-pill:last-child {
    grid-column: 1 / -1;
    width: auto;
    max-width: 100%;
  }
}
@media (min-width: 769px) {
  .hero .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .hero .hero-actions .btn-primary,
  .hero .hero-actions .btn-secondary {
    flex: 0 1 auto;
    width: auto;
    min-width: 180px;
  }
}
.hero-bg {
  background: linear-gradient(145deg, var(--color-surface-dark) 0%, #2a2418 45%, var(--color-surface-warm) 100%);
  opacity: 0.85;
}
.hero-logo {
  filter: brightness(0) invert(1) drop-shadow(0 8px 24px rgba(0,0,0,0.5)) !important;
  object-fit: contain;
  object-position: center;
}
.form-logo {
  filter: brightness(0) invert(1) !important;
  max-height: 56px;
  width: auto;
}
.footer-logo-img {
  filter: brightness(0) invert(1) !important;
  max-height: 48px;
  width: auto;
  margin-bottom: 8px;
}
.footer-partner-logo {
  filter: none !important;
}
.about-image img,
.location-map img,
.gallery-grid img,
.floor-card img {
  filter: grayscale(100%) !important;
}
.floor-card.locked img {
  filter: grayscale(100%) blur(36px) brightness(0.55) !important;
  transform: scale(1.06);
}
.floor-card.unlocked img {
  filter: grayscale(100%) !important;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
.footer-powered {
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.footer-powered-label {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer-partner-logos {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer-partner-logos--developers {
  margin: 0;
}
.footer-institutional-logos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
}
.footer-partner-logo {
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
}
.footer-partner-logo--gv { max-height: 44px; max-width: 180px; }
.footer-partner-logo--partner-b { max-height: 40px; max-width: 160px; }
.footer-partner-logo--partner-c { max-height: 52px; max-width: 120px; }
.footer-partner-logo--aspire { max-height: 36px; max-width: 120px; }
::-webkit-scrollbar-thumb:hover { background: var(--patch-gold-light); }

/* ========== MOBILE LAYOUT (page alignment) ========== */
.offering-inner,
.unlock-section-inner,
.rhythm-banner-inner,
.final-cta-inner {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .offering-inner { overflow: hidden; }
  .offering-bg-orb {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -80px;
  }
}

@media (max-width: 600px) {
  .offering { padding: 56px max(16px, env(safe-area-inset-right)) 24px max(16px, env(safe-area-inset-left)); }
  .offering-inner { padding: 32px 18px 28px; }
  .offering-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .offering-actions .btn-primary,
  .offering-actions .btn-glass-light,
  .offering-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .unlock-section {
    padding: 0 max(16px, env(safe-area-inset-right)) 40px max(16px, env(safe-area-inset-left));
  }
  .unlock-section-inner { padding: 28px 16px; }
  .unlock-banner { gap: 10px; padding: 12px 14px; align-items: flex-start; }
  .unlock-banner-text strong { font-size: 12px; line-height: 1.35; }
  .unlock-tour--row {
    grid-template-columns: 72px minmax(0, 1fr) 36px;
    gap: 10px;
    padding: 10px;
  }
  .unlock-tour-thumb { width: 72px; height: 56px; }
  .unlock-tour-play-sm { width: 36px; height: 36px; }
  .unlock-tour-copy strong { font-size: 12px; }

  .promo-video-section {
    padding: 48px max(16px, env(safe-area-inset-right)) 48px max(16px, env(safe-area-inset-left));
  }
  .promo-video-inner { width: 100%; max-width: 100%; }

  .rhythm-banner { padding: 64px max(16px, env(safe-area-inset-right)) 64px max(16px, env(safe-area-inset-left)); }
  .rhythm-banner-inner { padding: 32px 18px; }
  .rhythm-banner .btn-primary { width: 100%; justify-content: center; }

  .final-cta { padding: 72px max(16px, env(safe-area-inset-right)) 72px max(16px, env(safe-area-inset-left)); }
  .final-cta-inner { padding: 36px 18px; }
}

/* ========== SAFE AREA ========== */
@supports (padding: env(safe-area-inset-bottom)) {
  .rhythm-float { bottom: calc(16px + env(safe-area-inset-bottom)); }
  .footer { padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
  .rhythm-modal-content { padding-bottom: env(safe-area-inset-bottom); }
}
