/* ═══════════════════════════════════════════════════════════════════════
   LASER FORCE — V3 PREMIUM THEME
   Loaded AFTER styles.css. Disciplined, editorial, photography-forward.
   Rules: ONE accent (coral) for action. Teal as a rare brand accent.
   Hairline borders, no neon, no rainbow, no emoji kitsch, no pulse.
   ═══════════════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'ZonaPro';
  src: url('../fonts/ZonaPro-Bold.woff2') format('woff2'),
       url('../fonts/ZonaPro-Bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ─── TOKENS ─── */
:root {
  --bg:        #0a0a0c;
  --bg-2:      #0e0f12;
  --bg-elev:   #141519;
  --bg-elev-2: #191b20;

  --line:   rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.16);

  --text:   #f4f3f0;
  --muted:  rgba(244,243,240,0.60);
  --dim:    rgba(244,243,240,0.42);

  /* Single action colour */
  --accent:      #ff5a3c;
  --accent-2:    #ff6e52;
  /* Rare brand accent (highlighted words, micro-labels, links) */
  --teal:        #46cbb0;

  /* Map legacy vars used by base styles.css to the disciplined palette */
  --blue:   #46cbb0;
  --purple: #f4f3f0;
  --cyan:   #46cbb0;
  --pink:   #ff5a3c;
  --bg-card: var(--bg-elev);
  --bg-card-hover: var(--bg-elev-2);
  --border: var(--line);
  --border-hover: var(--line-2);
  --text-muted: var(--muted);
  --text-dim: var(--dim);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;

  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'ZonaPro', 'Inter', system-ui, sans-serif;
  --transition:   0.3s cubic-bezier(0.22,1,0.36,1);

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow:    0 24px 60px -28px rgba(0,0,0,0.8);
  --shadow-lg: 0 40px 100px -40px rgba(0,0,0,0.85);
}

/* ─── BASE ─── */
body {
  background: var(--bg);
  color: var(--text);
  letter-spacing: -0.011em;
  line-height: 1.65;
  font-size: 1.02rem;
}
::selection { background: var(--accent); color: #fff; }

/* Kill the AI tells globally */
.orb, .hero-bg, .cta-bg,
.activity-icon, .pricing-icon, .package-icon,
.arcade-banner-icon, .info-icon, .gift-card-mock-chip,
.hero-scroll-hint { display: none !important; }
/* Hide icon spans left empty after emoji cleanup (no orphan gaps) */
.related-icon, .related-icon:empty,
.page-badge:empty, .cta-badge:empty, .feature-icon:empty { display: none !important; }
.feature-list li:empty, .info-list li:empty { display: none; }
/* Risk-reversal reassurance line near CTAs/pricing */
.reassure-inline { display: block; margin-top: 10px; font-size: 0.86rem; color: var(--teal); font-weight: 600; }
.btn-pulse::after { content: none !important; animation: none !important; }

/* ─── TYPOGRAPHY ─── */
.hero-title, .cta-title { font-family: var(--font-display); text-transform: uppercase; line-height: 0.98; letter-spacing: 0.005em; }
.section-title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.04; }
.logo-text, .trust-score, .stat-value, .price-big, .trust-stat-num, .related-pages h2, .related-card h3 { font-family: var(--font-display); }

/* Highlighted words: a single tasteful teal — NOT a rainbow */
.gradient-text {
  -webkit-text-fill-color: currentColor;
  background: none;
  color: var(--teal);
}

/* Eyebrow labels: small, wide-tracked, restrained */
.section-tag, .hero-badge, .cta-urgency-badge, .pricing-badge, .activity-tag, .trust-badge {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 0.7rem;
}
.section-tag { color: var(--teal); background: none; padding: 0; }
.section-title { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.section-desc { color: var(--muted); font-size: 1.05rem; }

/* ─── BUTTONS — solid, substantial, no glow ─── */
.btn {
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0;
  padding: 14px 26px;
  font-size: 0.95rem;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.btn-primary, .cookie-btn-accept, .mobile-sticky-book {
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px -12px rgba(255,90,60,0.7) !important;
  border: none;
}
.btn-primary:hover, .cookie-btn-accept:hover, .mobile-sticky-book:hover {
  background: var(--accent-2) !important;
  transform: translateY(-2px);
}
.btn-large { padding: 17px 34px; font-size: 1rem; }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--text);
  backdrop-filter: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--text); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--line-2); background: transparent; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); background: transparent; }

/* ─── NAV — clean, minimal ─── */
.nav { backdrop-filter: blur(16px) saturate(120%); -webkit-backdrop-filter: blur(16px) saturate(120%); }
.nav.scrolled { background: rgba(10,10,12,0.86); border-bottom: 1px solid var(--line); box-shadow: none; }
.nav-cta { box-shadow: none; }
.nav-links > li > a:hover { color: var(--text); }
.dropdown-menu { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.dropdown-menu a:hover { background: rgba(255,255,255,0.04); color: var(--teal); }

/* ─── URGENCY BAR — quiet, not a rainbow ─── */
.urgency-bar { background: var(--bg-elev); color: var(--muted); border-bottom: 1px solid var(--line); font-weight: 500; font-size: 0.82rem; }
.urgency-bar a { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--accent); font-weight: 600; }
.urgency-dot { background: var(--accent); }

/* ─── SECTION RHYTHM — generous ─── */
.section { padding: clamp(72px, 10vw, 140px) 0; }
.section--dark { background: var(--bg-2); }
.section-header { margin-bottom: clamp(40px, 6vw, 72px); }

/* ─── HERO — let the photo lead ─── */
.hero { min-height: 94vh; }
.hero-img-bg img { transform: none; filter: saturate(1.05) contrast(1.05) brightness(0.92); }
.hero-img-overlay {
  background:
    linear-gradient(180deg, rgba(10,10,12,0.40) 0%, rgba(10,10,12,0.30) 35%, rgba(10,10,12,0.96) 100%),
    linear-gradient(90deg, rgba(10,10,12,0.85) 0%, rgba(10,10,12,0.20) 60%, transparent 100%);
}
.hero-badge {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--muted);
  backdrop-filter: none;
  letter-spacing: 0.18em;
}
.hero-badge .badge-dot { background: var(--teal); box-shadow: none; }
.hero-title { font-size: clamp(2.7rem, 6.6vw, 5.4rem); text-shadow: none; }
.hero-subtitle { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 34ch; line-height: 1.6; }
.hero-reassurance, .hero-social-proof span { color: var(--muted); }
.hero-social-proof .proof-stars, .cta-proof .proof-stars { color: var(--accent); letter-spacing: 1px; }
.stat-value, .trust-stat-num, .trust-score { color: var(--text); -webkit-text-fill-color: var(--text); background: none; }
.stat-label, .trust-stat-label { color: var(--dim); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.68rem; }
.stat-divider, .trust-stat-divider { background: var(--line); }

/* Hero photo cards — quiet frames */
.hero-img-card { border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.hero-img-card::after { content: none; }

/* ─── CARDS — hairline, no rainbow ─── */
.activity-card, .pricing-card, .package-card, .info-card, .review-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.activity-card:hover, .pricing-card:hover, .package-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-2);
  box-shadow: var(--shadow);
}
.activity-card--featured { border-color: rgba(255,90,60,0.35); }
.activity-card-glow { display: none; }
.activity-price-badge {
  background: rgba(10,10,12,0.72);
  color: #fff; font-weight: 700; letter-spacing: 0.02em;
  border: 1px solid var(--line-2);
  backdrop-filter: blur(6px);
  border-radius: 8px;
}
.activity-tag { background: var(--accent); color: #fff; border-radius: 6px; }
.activity-urgency { background: rgba(10,10,12,0.7); border: 1px solid var(--line-2); backdrop-filter: blur(6px); border-radius: 6px; }
.activity-features .check, .pricing-includes li::before { color: var(--teal); }
.activity-card h3, .pricing-card h3, .package-card h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.01em; }

/* Pricing */
.pricing-card--highlight { border-color: rgba(70,203,176,0.4); transform: none; }
.pricing-card--highlight:hover { transform: translateY(-5px); }
.pricing-badge { background: var(--teal); color: #06201b; border-radius: 6px; }
.price-big { color: var(--text); font-size: clamp(2.2rem, 4.6vw, 3rem); }
.pricing-amount .price-desc { color: var(--muted); }

/* Packages — calm, one featured */
.package-card--glow { border-color: rgba(255,90,60,0.35); background: var(--bg-elev); }
.package-icon { display: none; }
.link-arrow { color: var(--teal); }

/* ─── GALLERY ─── */
.gallery-item img { filter: saturate(1.04) brightness(0.95); border-radius: 12px; }

/* ─── TRUST ─── */
.trust-section { background: var(--bg-2); }
.trust-rating-bar { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.trust-star svg, .review-card-star, .trust-stars svg { fill: var(--accent); }
.review-avatar { background: var(--bg-elev-2); color: var(--text); border: 1px solid var(--line-2); font-weight: 700; }
.trust-badge { background: transparent; color: var(--teal); border: 1px solid var(--line-2); }
.review-card-text { color: var(--muted); }

/* ─── FINAL CTA ─── */
.cta-section { padding: clamp(80px, 11vw, 150px) 0; }
.cta-img-bg img { filter: brightness(0.5) saturate(1.05); }
.cta-img-overlay { background: linear-gradient(180deg, rgba(10,10,12,0.82), rgba(10,10,12,0.94)); }
.cta-urgency-badge { background: transparent; color: var(--accent); border: 1px solid rgba(255,90,60,0.5); }
.cta-title { font-size: clamp(2.4rem, 6vw, 4.4rem); }

/* ─── RELATED ─── */
.related-pages { background: var(--bg-2); padding: clamp(56px,8vw,90px) 0; border-top: 1px solid var(--line); }
.related-pages h2 { text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 32px; font-size: clamp(1.6rem,3vw,2.2rem); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 16px; }
.related-card { display: block; padding: 26px; border-radius: var(--radius-sm); background: var(--bg-elev); border: 1px solid var(--line); transition: transform var(--transition), border-color var(--transition); }
.related-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.related-card h3 { text-transform: uppercase; margin-bottom: 8px; color: var(--text); }
.related-card p { color: var(--dim); font-size: 0.92rem; }

/* ─── STICKY / FLOATING / FOOTER ─── */
.floating-cta .btn-primary { box-shadow: 0 10px 30px -12px rgba(255,90,60,0.7); }
.mobile-sticky-bar { background: rgba(10,10,12,0.94); border-top: 1px solid var(--line); backdrop-filter: blur(14px); }
.mobile-sticky-call { color: var(--text); }
.footer { background: var(--bg-2); border-top: 1px solid var(--line); }
.footer a:hover { color: var(--teal); }
.social-btn { border: 1px solid var(--line); }
.social-btn:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

/* ─── PAGE HERO (interior) ─── */
.page-hero-title, .page-title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.01em; }
.page-hero-bg { filter: brightness(0.78) saturate(1.05); }

/* ─── PREMIUM MOTION ─── */
.v3-reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1),
              filter 0.9s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
.v3-in { opacity: 1; transform: none; filter: none; }

/* Image zoom micro-interaction on hover */
.activity-card-img, .pricing-card-img, .hero-img-card, .content-img-main { overflow: hidden; }
.activity-card-img img, .pricing-card-img img, .hero-img-card img {
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.activity-card:hover .activity-card-img img,
.pricing-card:hover .pricing-card-img img,
.hero-img-card:hover img { transform: scale(1.06); }

/* Hero cinematic ken-burns drift on load (parallax JS takes over on scroll) */
@keyframes kenburns { from { transform: scale(1.03); } to { transform: scale(1.09); } }
.hero-img-bg img { animation: kenburns 20s ease-out both; }

/* Buttons: refined easing already set; add a touch of press feedback */
.btn:active { transform: translateY(0) scale(0.985); }

/* ─── MOTION-SAFE ─── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .v3-reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero-img-bg img { animation: none !important; }
}

/* ─── MOBILE ─── */
@media (max-width: 720px) {
  .hero-title { font-size: clamp(1.9rem, 8.4vw, 2.8rem); letter-spacing: 0.003em; overflow-wrap: anywhere; }
  .hero-content, .hero-layout { min-width: 0; max-width: 100%; }
  .hero { overflow-x: clip; }
  .hero-subtitle { max-width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero-reassurance, .hero-social-proof { flex-wrap: wrap; row-gap: 6px; max-width: 100%; }
  .hero-reassurance { font-size: 0.82rem; }
  .hero-social-proof > span { min-width: 0; flex: 1 1 auto; white-space: normal; }
  .pricing-card--highlight { transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL-PINNED ACTIVITIES SHOWCASE
   ═══════════════════════════════════════════════════════════════ */
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.showcase { position: relative; background: var(--bg); }
.showcase-track { position: relative; height: calc(var(--sc-steps, 4) * 100vh); }
.showcase-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; }

.showcase-stage { position: absolute; inset: 0; z-index: 0; }
.sc-visual {
  position: absolute; inset: 0; opacity: 0; transform: scale(1.08);
  transition: opacity 0.8s ease, transform 1.6s cubic-bezier(0.16,1,0.3,1);
}
.sc-visual img { width: 100%; height: 100%; object-fit: cover; }
.sc-visual.is-active { opacity: 1; transform: scale(1); }
.showcase-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,12,0.94) 0%, rgba(10,10,12,0.78) 36%, rgba(10,10,12,0.30) 68%, rgba(10,10,12,0.55) 100%),
    linear-gradient(0deg, rgba(10,10,12,0.65), transparent 45%);
}

.showcase-inner { position: relative; z-index: 2; width: 100%; }
.sc-eyebrow { display: block; margin-bottom: 22px; }
.sc-panels { display: grid; max-width: 560px; min-height: 360px; }
.sc-panel {
  grid-area: 1 / 1; opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.sc-panel.is-active { opacity: 1; transform: none; pointer-events: auto; }
.sc-index { font-family: var(--font-display); letter-spacing: 0.22em; color: var(--dim); font-size: 0.78rem; }
.sc-index b { color: var(--accent); }
.sc-title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.6rem, 5.2vw, 4.4rem); line-height: 0.98; letter-spacing: 0.01em; margin: 16px 0 20px; }
.sc-desc { color: var(--muted); font-size: 1.1rem; line-height: 1.6; max-width: 46ch; margin-bottom: 26px; }
.sc-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 30px; flex-wrap: wrap; }
.sc-price { font-family: var(--font-display); color: var(--text); font-size: 1.15rem; letter-spacing: 0.01em; }
.sc-tagm { color: var(--muted); font-size: 0.84rem; border: 1px solid var(--line-2); border-radius: 100px; padding: 5px 14px; }
.sc-panel-img { display: none; }

.sc-dots { position: absolute; right: clamp(20px, 4vw, 48px); top: 50%; transform: translateY(-50%); z-index: 3; display: flex; flex-direction: column; gap: 16px; }
.sc-dot { width: 11px; height: 11px; border-radius: 50%; border: 1px solid var(--line-2); background: transparent; cursor: pointer; padding: 0; transition: transform 0.3s, background 0.3s, border-color 0.3s; }
.sc-dot:hover { border-color: var(--text); }
.sc-dot.is-active { background: var(--accent); border-color: var(--accent); transform: scale(1.35); }

/* Mobile: drop the pin, render as a clean stacked sequence */
@media (max-width: 879px) {
  .showcase-track { height: auto !important; }
  .showcase-sticky { position: static; height: auto; display: block; }
  .showcase-stage, .sc-dots, .sc-index { display: none; }
  .showcase-inner { padding-top: 64px; padding-bottom: 64px; }
  .sc-panels { display: block; max-width: none; min-height: 0; }
  .sc-panel { position: static; opacity: 1 !important; transform: none !important; pointer-events: auto; display: flex; flex-direction: column; margin-bottom: 64px; }
  .sc-panel:last-child { margin-bottom: 0; }
  .sc-panel-img { display: block; order: -1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); margin-bottom: 22px; }
  .sc-title { font-size: clamp(2rem, 9vw, 2.8rem); }
}

/* Reduced motion: keep it functional, drop the crossfade drift */
@media (prefers-reduced-motion: reduce) {
  .sc-visual { transition: opacity 0.2s linear; transform: none; }
  .sc-visual.is-active { transform: none; }
  .sc-panel { transition: opacity 0.2s linear; transform: none; }
}
