/* Raised Florida illustration with an approximate circular service area.

   This section runs on navy ink. That is not decoration: the map's own palette
   is a white-to-#dceafb face with a green service circle and a red pin, so on
   a dark ground the state shape reads as lit rather than drawn, and the two
   accent colors stop competing with a white page. The map SVG is unchanged.
   Every label inside it sits on the light face and keeps its navy fill. */
.rg-area { background: var(--rg-navy-ink); color: var(--rg-on-dark); }
.rg-area .rg-eyebrow { color: var(--rg-cyan-light); }
.rg-area .rg-h2 { color: var(--rg-on-dark); }
.rg-area .rg-lede { color: var(--rg-on-dark-dim); }
.rg-area__intro { max-width: 740px; margin-bottom: 36px; }
.rg-area__intro .rg-lede { max-width: 62ch; }
.rg-area__layout { display: grid; grid-template-columns: 1.08fr 1fr; align-items: center; gap: 72px; }
.rg-area__layout > * { min-width: 0; }
/* Glass panel rather than a light card. A white box here would read as
   pasted on, and the map does not need the extra contrast. */
.rg-area-map {
  position: relative;
  margin: 0;
  padding: 36px 24px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
}
.rg-florida-map { display: block; width: 100%; height: auto; }
.rg-florida-map text { font-family: var(--rg-font-head); }
.rg-florida-map__label { font-size: 24px; font-weight: 800; fill: var(--rg-navy); }
.rg-florida-map__small { font-size: 12px; font-weight: 600; fill: #4e6881; }
.rg-florida-map__region { font-size: 16px; font-weight: 700; fill: var(--rg-blue); }
.rg-florida-map__ripple { fill: none; stroke: #37bc54; stroke-width: 2; opacity: 0; transform-box: fill-box; transform-origin: center; animation: rg-area-radius 4s ease-out infinite; animation-play-state: paused; }
.rg-florida-map__pin { animation: rg-area-pin 4s ease-in-out infinite; animation-play-state: paused; }
.rg-area.is-map-running .rg-florida-map__ripple, .rg-area.is-map-running .rg-florida-map__pin { animation-play-state: running; }
@keyframes rg-area-radius { 0% { opacity: .65; transform: scale(1); } 80%, 100% { opacity: 0; transform: scale(1.16); } }
@keyframes rg-area-pin { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.rg-area-map__motion {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--rg-on-dark);
  cursor: pointer;
}
.rg-area-map__motion[hidden] { display: none; }
.rg-area-map__motion:hover { background: rgba(255,255,255,.2); }
.rg-area-map__motion svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.rg-area-map__play, .rg-area.is-map-paused .rg-area-map__pause { display: none; }
.rg-area.is-map-paused .rg-area-map__play { display: block; }
.rg-area-map figcaption { display: flex; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,.66); font-size: .75rem; line-height: 1.5; margin-top: 10px; }
.rg-area-map__key { flex: 0 0 10px; height: 10px; background: #59dc65; border-radius: 50%; }
.rg-area__directory-label { margin-bottom: 14px; color: var(--rg-cyan-light); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.rg-area__town-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.rg-area__town-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 46px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: .9375rem;
  text-decoration: none;
  color: rgba(255,255,255,.86);
  transition: color 140ms ease;
}
.rg-area__town-links a span { color: rgba(255,255,255,.4); transition: color 140ms ease; }
.rg-area__town-links a:hover, .rg-area__town-links a:hover span { color: var(--rg-cyan); }

/* The ask used to live here as a pair of buttons. It now belongs to the CTA
   band directly below, so this is only the caveat the town list needs. */
.rg-area__note {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 10px;
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 44px;
  padding-top: 26px;
  color: rgba(255,255,255,.74);
  font-size: .9375rem;
}
.rg-area__note b { color: var(--rg-on-dark); font-family: var(--rg-font-head); font-weight: 800; }
.rg-area__note a {
  color: var(--rg-cyan-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(127,219,255,.45);
}
.rg-area__note a:hover { color: var(--rg-on-dark); text-decoration-color: currentColor; }

@media (max-width: 1100px) {
  .rg-area__layout { gap: 36px; }
}
@media (max-width: 760px) {
  .rg-area__intro { margin-bottom: 28px; }
  .rg-area__layout { grid-template-columns: 1fr; gap: 30px; }
  .rg-area-map { width: 100%; max-width: 510px; justify-self: center; padding: 44px 12px 20px; }
  .rg-area__town-links a { min-height: 44px; }
  .rg-area__note { margin-top: 30px; padding-top: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .rg-florida-map__ripple, .rg-florida-map__pin { animation: none; }
}
