/* =========================================
   Tourism Trinidad — Immersive Landing Page
   National colours: Red · White · Black
   ========================================= */

/* ---- Colour tokens ---- */
:root {
  --bg:       #0d0d0f;
  --surface:  #161618;
  --crimson:  #DC143C;
  --text-1:   #F1F1F3;
  --text-2:   #9CA3AF;
  --text-3:   #6B7280;
  --carnival: linear-gradient(135deg, #110005 0%, #3d0015 25%, #DC143C 52%, #8b0020 78%, #1e0000 100%);
}

/* ---- Light theme overrides ---- */
[data-theme="light"] {
  --bg:      #f5f4f2;
  --surface: #eceae6;
  --text-1:  #0f0f0f;
  --text-2:  #444444;
  --text-3:  #888888;
}

[data-theme="light"] body {
  background: var(--bg);
  color: var(--text-1);
}

[data-theme="light"] #site-nav {
  background: linear-gradient(to bottom, rgba(245,244,242,0.92) 0%, transparent 100%);
}

[data-theme="light"] .nav-logo .tourism { color: #0f0f0f; }

[data-theme="light"] .nav-skip {
  color: rgba(0,0,0,0.45);
}
[data-theme="light"] .nav-skip:hover { color: var(--crimson); }

[data-theme="light"] #beaches {
  background:
    radial-gradient(ellipse at 70% 30%, #cce6f4 0%, transparent 60%),
    linear-gradient(168deg, #daeef8 0%, #e8f4fb 40%, #f5f4f2 100%);
}

[data-theme="light"] .beach-tag {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,100,160,0.2);
  color: #1a1a1a;
}
[data-theme="light"] .beach-tag:hover {
  border-color: rgba(220,20,60,0.35);
  background: rgba(255,255,255,0.95);
}

[data-theme="light"] .stat-number { color: var(--text-1); }
[data-theme="light"] .stat-label  { color: var(--text-3); }

[data-theme="light"] .wave-svg path { fill: var(--bg); }

[data-theme="light"] #vendors {
  background: var(--bg);
}
[data-theme="light"] #vendors::before {
  background: radial-gradient(ellipse at 50% 60%, rgba(220,20,60,0.05) 0%, transparent 65%);
}

[data-theme="light"] .pill {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.12);
  color: var(--text-1);
}
[data-theme="light"] .pill:hover {
  background: rgba(220,20,60,0.08);
  border-color: rgba(220,20,60,0.25);
}

[data-theme="light"] .vendor-note { color: var(--text-3); }
[data-theme="light"] .vendor-count-label { color: var(--text-3); }

[data-theme="light"] .culture-card {
  background: rgba(255,255,255,0.55);
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .card-body { color: rgba(0,0,0,0.55); }

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  overflow-x: hidden;
}

/* =============================================
   FIXED CHROME
   ============================================= */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), #ff4566, var(--crimson));
  background-size: 200% 100%;
  z-index: 300;
  width: 0%;
  transition: width 0.12s linear;
  animation: shimmer 2.5s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 36px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, transparent 100%);
  pointer-events: none;
}

.nav-logo {
  pointer-events: all;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text-1);
}
.nav-logo .tourism  { color: #fff; }
.nav-logo .trinidad { color: var(--crimson); }

/* Theme toggle */
.theme-toggle {
  pointer-events: all;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  backdrop-filter: blur(8px);
}
.theme-toggle:hover {
  background: rgba(220,20,60,0.18);
  border-color: rgba(220,20,60,0.35);
  color: #fff;
}
.theme-toggle .toggle-icon { font-size: 0.95em; }

[data-theme="light"] .theme-toggle {
  background: rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.6);
}
[data-theme="light"] .theme-toggle:hover {
  background: rgba(220,20,60,0.1);
  border-color: rgba(220,20,60,0.3);
  color: var(--crimson);
}
[data-theme="light"] .nav-logo .tourism { color: #0f0f0f; }

.nav-skip {
  pointer-events: all;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-skip:hover { color: var(--crimson); }

/* =============================================
   SHARED SECTION BASE
   ============================================= */
.section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-1);
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 48px;
}

/* =============================================
   SECTION 1 — HERO
   ============================================= */
#hero { background: #000; }

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  z-index: 1;
}

#hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 40%, #3d0015 0%, #110005 42%, #0a0003 80%),
    linear-gradient(155deg, #110005 0%, #3d0015 25%, #8b0020 52%, #3d0015 78%, #0f0800 100%);
  display: none;
}

#three-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 28%, rgba(0,0,0,0.65) 100%);
  z-index: 4;
}

.scroll-prompt {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-prompt-text {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  animation: textPulse 2.2s ease-in-out infinite;
}

@keyframes textPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

.scroll-arrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: arrowDrop 2.4s ease-in-out infinite;
}
.scroll-arrow-wrap span {
  display: block;
  width: 13px;
  height: 13px;
  border-right: 2px solid rgba(255,255,255,0.85);
  border-bottom: 2px solid rgba(255,255,255,0.85);
  transform: rotate(45deg);
}
.scroll-arrow-wrap span:nth-child(2) { opacity: 0.6; margin-top: -6px; }
.scroll-arrow-wrap span:nth-child(3) { opacity: 0.3; margin-top: -6px; }

@keyframes arrowDrop {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* =============================================
   SECTION 2 — BEACHES
   ============================================= */
#beaches {
  background:
    radial-gradient(ellipse at 70% 30%, #0a2a3d 0%, transparent 60%),
    linear-gradient(168deg, #071828 0%, #0a1e2e 40%, #0d0d0f 100%);
  flex-direction: column;
  padding: 100px 24px 120px;
}

.beaches-content {
  max-width: 1020px;
  width: 100%;
  text-align: center;
}

.beach-names {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.beach-tag {
  background: rgba(10, 42, 61, 0.7);
  border: 1px solid rgba(0, 160, 210, 0.18);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
}
.beach-tag:hover {
  border-color: rgba(220,20,60,0.35);
  background: rgba(80,0,20,0.5);
}
.beach-tag .em { margin-right: 6px; }

.stats-row {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-number {
  font-size: clamp(2.8rem, 5.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-1);
}
.stat-number .unit {
  font-size: 0.45em;
  color: var(--crimson);
  vertical-align: super;
  font-weight: 700;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Animated wave border */
.wave-container {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 88px;
  overflow: hidden;
  line-height: 0;
}
.wave-svg {
  width: 200%;
  height: 88px;
  animation: waveScroll 9s linear infinite;
}
@keyframes waveScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTION 3 — CULTURE
   ============================================= */
#culture {
  background: var(--carnival);
  flex-direction: column;
  padding: 100px 24px;
}

.confetti-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.confetti-piece {
  position: absolute;
  top: -20px;
  animation: confettiFall linear infinite;
  border-radius: 2px;
}
@keyframes confettiFall {
  0%   { transform: translateY(-20px) rotate(0deg);   opacity: 0.9; }
  75%  { opacity: 0.6; }
  100% { transform: translateY(110vh) rotate(680deg); opacity: 0; }
}

.culture-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  width: 100%;
  text-align: center;
}

.culture-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.culture-card {
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 38px 30px;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.culture-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220,20,60,0.38);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.card-icon  { font-size: 2.6rem; margin-bottom: 18px; display: block; }
.card-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.card-body  { font-size: 0.875rem; color: rgba(255,255,255,0.58); line-height: 1.7; }

/* =============================================
   SECTION 4 — VENDORS
   ============================================= */
#vendors {
  background: var(--bg);
  flex-direction: column;
  padding: 100px 24px;
}
#vendors::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(220,20,60,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.vendors-content {
  max-width: 860px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.vendor-big-count {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text-1);
  margin: 28px 0 6px;
}
.vendor-big-count .accent { color: var(--crimson); }

.vendor-count-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 52px;
}

.category-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-1);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: default;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.pill:hover {
  background: rgba(220,20,60,0.1);
  border-color: rgba(220,20,60,0.28);
  transform: translateY(-2px);
}
.pill .pill-em { font-size: 1.15em; }

.vendor-note {
  font-size: 0.85rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* =============================================
   SECTION 5 — CTA
   ============================================= */
#cta {
  background:
    radial-gradient(ellipse at 50% 40%, #8b0020 0%, #3d0015 40%, #1a0008 70%, #0a0003 100%),
    linear-gradient(155deg, #1a0008 0%, #3d0015 30%, #DC143C 62%, #8b0020 88%, #1a0006 100%);
  flex-direction: column;
  padding: 100px 24px;
  text-align: center;
}

.cta-pre {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}

.cta-headline {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-shadow: 0 6px 40px rgba(0,0,0,0.5);
  margin-bottom: 0;
}

/* Glass card */
.cta-card {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 26px;
  padding: 52px 48px;
  margin-top: 40px;
  animation: cardGlow 3.5s ease-in-out infinite;
}

@keyframes cardGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(220,20,60,0.18), 0 0 90px rgba(220,20,60,0.06); }
  50%       { box-shadow: 0 0 70px rgba(220,20,60,0.32), 0 0 140px rgba(220,20,60,0.12); }
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 36px;
}

.enter-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 18px 42px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.4);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s, border-color 0.2s;
  box-shadow: 0 6px 30px rgba(0,0,0,0.35);
}
.enter-btn:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 14px 48px rgba(0,0,0,0.45);
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.65);
}
.enter-btn .btn-arrow {
  display: inline-flex;
  transition: transform 0.2s ease;
  font-style: normal;
}
.enter-btn:hover .btn-arrow { transform: translateX(5px); }

.cta-footer {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  #site-nav { padding: 16px 20px; }
  .stats-row { gap: 36px; }
  .culture-cards { grid-template-columns: 1fr; }
  .cta-card { padding: 36px 24px; }
  .enter-btn { font-size: 1rem; padding: 16px 30px; }
  .vendor-big-count { font-size: 4rem; }
}

@media (max-width: 480px) {
  .section-headline { font-size: 2rem; }
  .cta-headline { font-size: 2.5rem; }
  .beach-names { gap: 10px; }
  .theme-toggle span.toggle-label { display: none; }
}

/* =============================================
   HERO CONTENT + ENTER (GSAP landing upgrade)
   ============================================= */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 24px 21vh;
  pointer-events: none;           /* let clicks pass except on the button */
}
.hero-content > * { pointer-events: auto; }
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 10px;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 10px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.hero-title .amp { color: var(--crimson, #DC143C); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin: 0 0 26px;
  letter-spacing: 0.04em;
}
.hero-enter { font-size: 1rem; padding: 15px 36px; }

/* GSAP owns reveal animation — disable the CSS transitions it replaces */
html.gsap .reveal,
html.gsap .reveal-left,
html.gsap .reveal-scale { transition: none; }

@media (max-width: 640px) {
  .hero-content { padding-bottom: 12vh; }
  .hero-enter { font-size: 0.9rem; padding: 13px 28px; }
}


/* =============================================
   FLY-THROUGH (camera flies forward through panels)
   Fixed particle background + 3D depth-stacked panels.
   Progressive enhancement: without html.fly-on the panels
   stay as normal vertical sections (see .section rules).
   ============================================= */

/* Particle field as a fixed full-screen background */
#bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #000;
  pointer-events: none;
}
#bg-fx #three-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
#bg-fx .hero-vignette { position: absolute; inset: 0; }

#progress-bar { z-index: 61; }
#site-nav     { z-index: 60; }

/* Stage active only when JS confirms GSAP + motion is allowed */
html.fly-on #fly { position: relative; height: 100vh; z-index: 10; }
html.fly-on #fly-viewport {
  position: absolute; inset: 0;
  height: 100vh; width: 100%;
  perspective: 1200px;
  perspective-origin: 50% 46%;
  overflow: hidden;
}
html.fly-on #fly-world {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}
html.fly-on .panel {
  position: absolute;
  top: 50%; left: 50%;
  width: min(92vw, 1040px);
  min-height: 0;
  padding: 5vh 4vw;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) translateZ(var(--z, 0px));
  transform-style: preserve-3d;
  background: radial-gradient(ellipse 72% 62% at center,
              rgba(13,13,15,.92) 0%, rgba(13,13,15,.78) 55%, rgba(13,13,15,0) 100%) !important;
  border-radius: 40px;
  overflow: visible;
  backface-visibility: hidden;
  will-change: transform, opacity;
  opacity: 0;
}
html.fly-on #culture, html.fly-on #cta { flex-direction: row; }
/* section-body has a big bottom margin that unbalances a centered panel */
html.fly-on .section-body { margin-bottom: 24px; }
html.fly-on .stats-row,
html.fly-on .culture-cards,
html.fly-on .category-pills { margin-top: 8px; }

@media (max-width: 640px) {
  html.fly-on #fly-viewport { perspective: 900px; }
  html.fly-on .panel { width: 94vw; border-radius: 28px; padding: 4vh 5vw; }
}

/* Respect reduced motion: never enter fly mode (handled in JS too) */
@media (prefers-reduced-motion: reduce) {
  html.fly-on #fly-viewport { perspective: none; }
}

/* =============================================
   HERO VIDEO inside the flythrough panel
   ============================================= */
html.fly-on #hero { flex-direction: column; }
html.fly-on .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  width: 100%;
}
/* override the old full-bleed cover styling */
html.fly-on #hero-video {
  position: static;
  inset: auto;
  width: min(88%, 900px);
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 1;
  z-index: auto;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

/* Scroll cue pinned to the viewport, fades out as the flythrough starts */
html.fly-on #scroll-prompt {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 55;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

@media (max-width: 640px) {
  html.fly-on #hero-video { width: 94%; }
}

/* =============================================
   FINAL CTA SECTION — white card, red button
   (scoped so the hero's translucent button is unaffected)
   ============================================= */
#cta .cta-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  animation: none;
}
#cta .cta-sub {
  color: #3a3a3f;
}
#cta .enter-btn {
  background: var(--crimson);
  color: #fff;
  border: 1px solid transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 8px 30px rgba(220,20,60,0.4);
}
#cta .enter-btn:hover {
  background: #c00030;
  border-color: transparent;
  box-shadow: 0 14px 44px rgba(220,20,60,0.5);
}
