/* ============================================================
   03-banner.css — "Booked till 2027" scarcity strip
   Module: <div id="banner"> just below the header
   ============================================================ */

#banner {
  background: var(--c-ink);
  color: var(--c-white);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--c-green);
}
#banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  padding: 12px var(--s-4);
  text-align: center;
  flex-wrap: wrap;
}
#banner strong {
  color: var(--c-yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}
#banner .dot {
  width: 9px; height: 9px;
  background: var(--c-yellow);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 2px rgba(249, 199, 79, 0.25);
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
#banner a {
  color: var(--c-yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}
#banner a:hover { color: var(--c-white); }
