/* ─── Marquee ─── */
.marquee-inner {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
}

@media (prefers-reduced-motion: no-preference) {
  .marquee-inner {
    animation: marquee 40s linear infinite;
  }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Hero SVG fade-in ─── */
@media (prefers-reduced-motion: no-preference) {
  .hero-svg {
    animation: svg-appear 1.5s ease-out both;
  }
  .hero-copy {
    animation: copy-appear 0.9s ease-out both;
  }
}

@keyframes svg-appear {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes copy-appear {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Sticky CTA bar ─── */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #2D6A4F;
  display: flex;
  align-items: stretch;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 12px;
  text-decoration: none;
  min-height: 56px;
  transition: background-color 0.15s ease;
  letter-spacing: 0.01em;
}

.cta-btn:hover  { background-color: #245a42; }
.cta-btn:focus-visible { outline: 3px solid #fbbf24; outline-offset: -3px; }

.cta-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  align-self: stretch;
}

/* Footer extra bottom padding on mobile to clear sticky bar */
@media (max-width: 639px) {
  footer {
    padding-bottom: calc(3.75rem + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* Utility */
.serif { font-family: Georgia, 'Times New Roman', serif; }
