/* Landing + US explorer map — Phase A polish */

.landing-body {
  background:
    radial-gradient(ellipse 80% 50% at 8% 0%, rgba(255, 220, 140, 0.28), transparent 50%),
    radial-gradient(ellipse 70% 45% at 96% 4%, rgba(140, 205, 255, 0.22), transparent 48%),
    linear-gradient(180deg, var(--sky, #eaf4ff) 0%, var(--grass, #e3f2e4) 50%, var(--park-end, #d5ebcf) 100%);
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
  padding: 28px 28px 26px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(243, 251, 246, 0.92));
  border: 3px solid rgba(15, 92, 92, 0.16);
  box-shadow: 0 18px 40px rgba(21, 34, 56, 0.1);
}

.landing-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  color: #0a4545;
  max-width: 14ch;
}

.landing-hero .lead {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #2a3d55;
  max-width: 40rem;
}

.landing-steps {
  margin-top: 18px;
}

.landing-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.landing-hero-badge {
  text-align: center;
  padding: 18px;
}

.badge-orb {
  width: 110px;
  height: 110px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 3rem;
  background: linear-gradient(160deg, #ffe08a, #7ec8ff);
  border: 4px solid #0f5c5c;
  box-shadow: 0 12px 28px rgba(15, 92, 92, 0.2);
}

.landing-hero-badge p {
  margin: 0;
  font-weight: 900;
  color: #0a4545;
  line-height: 1.25;
}

.landing-hero-badge span {
  font-weight: 700;
  color: #3d4f6f;
  font-size: 0.95rem;
}

/* Filters: Metroarea | OR | State | Place — fixed columns so Place never jumps */
.dual-selects {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: 12px 10px;
  margin: 0 0 8px;
  align-items: end;
}

.filter-or {
  display: grid;
  place-items: center;
  align-self: end;
  min-height: 46px;
  padding: 0 2px 0;
  margin-bottom: 1px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-soft, #5a6b82);
  user-select: none;
}

.select-field-place {
  min-width: 0;
}

.select-field {
  display: grid;
  gap: 6px;
  font-weight: 800;
  color: #0a4545;
}

/* Author `display: grid` would otherwise beat UA `[hidden]{display:none}`
   (same specificity) — State field stayed visible with an empty <select>. */
.select-field[hidden] {
  display: none !important;
}

.select-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal, #0f5c5c);
}

.landing-select {
  font: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: var(--radius-sm, 12px);
  border: 1.5px solid var(--border-strong, rgba(15, 92, 92, 0.22));
  background: var(--card, #fff);
  color: var(--teal-deep, #0a4545);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(21, 34, 56, 0.05));
  width: 100%;
  cursor: pointer;
  transition: border-color var(--dur-fast, 120ms) ease, box-shadow var(--dur-fast, 120ms) ease;
}

.landing-select:hover,
.landing-select:focus {
  border-color: var(--teal, #0f5c5c);
  outline: none;
  box-shadow: var(--shadow, 0 8px 24px rgba(21, 34, 56, 0.08));
}

.select-hint {
  margin: 0 0 14px;
  font-weight: 700;
  color: #3d4f6f;
  font-size: 0.98rem;
  line-height: 1.4;
}

.pd-official {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 0.92rem;
}

/* Map */
.map-section {
  margin-bottom: 28px;
}

.map-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.map-section-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: #0a4545;
}

.map-section-head p {
  margin: 0;
  font-weight: 750;
  color: #3d4f6f;
}

.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 4px;
  border: 2px solid #0a4545;
}

.legend-dot.ready {
  background: #ff8a3d;
  box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.35);
}

.legend-dot.soon {
  background: #5b8def;
  box-shadow: 0 0 0 3px rgba(91, 141, 239, 0.3);
}

/* Full-width map; pin detail floats on the canvas when a place is selected */
.map-shell {
  display: block;
  width: 100%;
}
.map-shell-full .map-canvas-wrap {
  width: 100%;
}

.map-canvas-wrap {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg, 24px);
  border: 1.5px solid var(--border, rgba(15, 92, 92, 0.12));
  box-shadow: var(--shadow-lg, 0 18px 48px rgba(21, 34, 56, 0.1));
  overflow: hidden;
  padding: 6px;
}

/* In-map selection card — maps-style bottom sheet, not a permanent side column */
.pin-detail.map-pin-card {
  position: absolute;
  z-index: 6;
  left: 12px;
  bottom: 12px;
  width: min(360px, calc(100% - 24px));
  max-height: min(52vh, 420px);
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  min-height: 0;
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  border: 1.5px solid rgba(15, 92, 92, 0.16);
  box-shadow: 0 14px 36px rgba(21, 34, 56, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: map-pin-card-in 0.18s ease-out;
}
.pin-detail.map-pin-card[hidden] {
  display: none !important;
}
.pin-detail.map-pin-card.empty {
  display: none !important;
}
@keyframes map-pin-card-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Compact actions inside the float card */
.pin-detail.map-pin-card .pd-actions {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.pin-detail.map-pin-card .pd-actions .btn {
  width: 100%;
  justify-content: center;
}
.pin-detail.map-pin-card .pd-sample-card {
  grid-template-columns: 72px 1fr;
}
.pin-detail.map-pin-card .pd-sample-card img,
.pin-detail.map-pin-card .pd-sample-fallback {
  width: 72px;
  min-height: 88px;
}
.pin-detail.map-pin-card h3 {
  font-size: 1.05rem;
  margin: 0;
}
.pin-detail.map-pin-card .pd-blurb {
  font-size: 0.88rem;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pin-detail.map-pin-card .pd-hint.pd-quality {
  display: none; /* keep float card short — status badge is enough */
}
.pin-detail.map-pin-card .pd-more-hint {
  display: none;
}
.pin-detail.map-pin-card .pd-mission-cta {
  text-align: center;
  line-height: 1.25;
  padding-top: 12px;
  padding-bottom: 12px;
}
.pin-detail.map-pin-card .pd-cta-main {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
}
.pin-detail.map-pin-card .pd-cta-short {
  display: none;
}
.pin-detail.map-pin-card .pd-actions-secondary {
  margin-top: 0;
}
.pin-detail.map-pin-card .pd-actions-secondary .btn-ghost {
  width: auto;
  align-self: flex-start;
  padding-left: 2px;
  font-size: 0.88rem;
  font-weight: 700;
}

/* Phone: dense bottom sheet so the card fits without eating the map */
@media (max-width: 640px) {
  .pin-detail.map-pin-card {
    left: 6px;
    right: 6px;
    bottom: 6px;
    width: auto;
    max-width: none;
    max-height: min(38vh, 280px);
    padding: 8px 10px 8px;
    border-radius: 14px;
    gap: 0;
    box-shadow: 0 10px 28px rgba(21, 34, 56, 0.2);
  }
  .pin-detail.map-pin-card.pin-detail-rich {
    gap: 5px;
  }
  .pin-detail.map-pin-card .pin-detail-kicker {
    margin: 0;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    line-height: 1.2;
  }
  .pin-detail.map-pin-card .pd-title-row {
    align-items: flex-start;
    gap: 6px;
  }
  .pin-detail.map-pin-card h3 {
    font-size: 0.84rem;
    line-height: 1.15;
    font-weight: 800;
  }
  .pin-detail.map-pin-card .pd-clear {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 1.15rem;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .pin-detail.map-pin-card .pd-blurb {
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.25;
    font-weight: 600;
    -webkit-line-clamp: 1;
  }
  .pin-detail.map-pin-card .pd-hint {
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.25;
  }
  .pin-detail.map-pin-card .pd-status {
    font-size: 0.62rem;
    padding: 2px 7px;
  }
  .pin-detail.map-pin-card .pd-actions {
    gap: 4px;
  }
  .pin-detail.map-pin-card .pd-mission-cta,
  .pin-detail.map-pin-card .pd-actions .btn-primary {
    padding: 8px 10px;
    min-height: 36px;
    border-radius: 10px;
    font-size: 0.78rem;
  }
  .pin-detail.map-pin-card .pd-cta-long {
    display: none;
  }
  .pin-detail.map-pin-card .pd-cta-short {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
  }
  .pin-detail.map-pin-card .pd-sample-card {
    grid-template-columns: 52px 1fr;
    border-radius: 10px;
    margin: 0;
  }
  .pin-detail.map-pin-card .pd-sample-card img,
  .pin-detail.map-pin-card .pd-sample-fallback {
    width: 52px;
    min-height: 52px;
    height: 52px;
  }
  .pin-detail.map-pin-card .pd-sample-fallback {
    font-size: 1.25rem;
  }
  .pin-detail.map-pin-card .pd-sample-body {
    padding: 5px 8px;
    gap: 1px;
  }
  .pin-detail.map-pin-card .pd-sample-kicker {
    font-size: 0.55rem;
    letter-spacing: 0.04em;
  }
  .pin-detail.map-pin-card .pd-sample-name {
    font-size: 0.75rem;
    line-height: 1.15;
  }
  .pin-detail.map-pin-card .pd-sample-blurb {
    display: none; /* name + CTA enough on phone */
  }
  .pin-detail.map-pin-card .pd-sample-cta {
    font-size: 0.68rem;
    margin: 0;
  }
  .pin-detail.map-pin-card .pd-actions-secondary {
    margin: 0;
  }
  .pin-detail.map-pin-card .pd-actions-secondary .btn-ghost,
  .pin-detail.map-pin-card .pd-actions-secondary .btn {
    min-height: 0;
    padding: 2px 0;
    font-size: 0.72rem;
    font-weight: 700;
  }
  /* Cluster picker list */
  .pin-detail.map-pin-card .pd-hint {
    font-size: 0.7rem;
  }
  .pin-detail.map-pin-card .nearby-list {
    gap: 4px;
  }
  .pin-detail.map-pin-card .nearby-item {
    padding: 6px 8px;
    border-radius: 10px;
    gap: 6px;
  }
  .pin-detail.map-pin-card .nearby-emoji {
    font-size: 1rem;
  }
  .pin-detail.map-pin-card .nearby-copy strong {
    font-size: 0.78rem;
  }
  .pin-detail.map-pin-card .nearby-copy small {
    font-size: 0.65rem;
  }
}

/* Very small phones (SE / mini): drop sample card so CTA + title always fit */
@media (max-width: 380px) {
  .pin-detail.map-pin-card {
    max-height: min(34vh, 240px);
    padding: 7px 8px;
  }
  .pin-detail.map-pin-card .pd-sample-card {
    display: none;
  }
  .pin-detail.map-pin-card h3 {
    font-size: 0.8rem;
  }
  .pin-detail.map-pin-card .pd-blurb {
    font-size: 0.66rem;
  }
}

.usa-real-map,
.world-real-map {
  width: 100%;
  height: auto;
  display: block;
}

/* World basemap: soft ocean frame so continents read clearly */
.map-canvas-wrap.is-world-map {
  background: linear-gradient(180deg, #c5e2ec 0%, #d7ebf2 45%, #b9dce8 100%);
  border-color: rgba(15, 92, 92, 0.16);
}
.map-canvas-wrap.is-world-map .map-viewport {
  background: transparent;
}
.world-real-map {
  /* Equirectangular 2:1 — pin projection matches viewBox 0 0 1000 500 */
  aspect-ratio: 2 / 1;
}

.map-loading {
  margin: 0;
  padding: 48px;
  text-align: center;
  font-weight: 800;
  color: #3d4f6f;
}

.map-banner {
  fill: #0a4545;
  font-size: 22px;
  font-weight: 800;
  font-family: system-ui, -apple-system, sans-serif;
}

.city-pin {
  cursor: pointer;
  outline: none;
}

.city-pin .pin-core {
  stroke: #0a4545;
  stroke-width: 2.5;
}

.city-pin.ready .pin-core {
  fill: #ff8a3d;
}

.city-pin.soon .pin-core {
  fill: #5b8def;
}

.city-pin .pin-halo {
  fill: rgba(255, 207, 90, 0.35);
  opacity: 0;
}

.city-pin.selected .pin-halo,
.city-pin:hover .pin-halo,
.city-pin:focus-visible .pin-halo {
  opacity: 1;
}

.city-pin .pin-emoji {
  font-size: 11px;
  pointer-events: none;
}

.city-pin .label-bg {
  fill: rgba(255, 255, 255, 0.96);
  stroke: #0a4545;
  stroke-width: 1.5;
}

.city-pin .label-city {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 900;
  fill: #0a4545;
}

.city-pin .label-sym {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 750;
  fill: #3d4f6f;
}

.city-pin.dim {
  opacity: 0.22;
  pointer-events: none;
}

.city-pin.selected .label-bg {
  stroke: #d9652e;
  stroke-width: 2.5;
}

.pd-place-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.pd-place {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f4faf6;
  border: 1px solid rgba(15, 92, 92, 0.12);
}

.pd-place a {
  display: flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-weight: 750;
  min-width: 0;
}

.pd-place .muted,
.pc-official.muted {
  color: #5a6b84;
  font-size: 0.85rem;
  font-weight: 650;
}

.pd-emoji {
  font-size: 1.25rem;
}

.btn-sm {
  min-height: 36px !important;
  padding: 6px 10px !important;
  font-size: 0.85rem !important;
}

.map-side {
  display: none; /* legacy; pin card floats on map now */
}

.pin-detail {
  background: var(--card, #fff);
  border-radius: var(--radius-lg, 24px);
  border: 1.5px solid var(--border, rgba(15, 92, 92, 0.12));
  box-shadow: var(--shadow, 0 8px 24px rgba(21, 34, 56, 0.08));
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
}

/* Idle: nothing — full map until a pin is chosen */
.pin-detail.empty {
  display: none;
}
.pin-detail.empty .pd-empty-line {
  display: none;
}

.pin-detail-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal, #0f5c5c);
}

.pin-detail h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--teal-deep, #0a4545);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.pin-detail .pd-actions {
  margin-top: auto;
  padding-top: 12px;
}

.pin-detail .pd-actions .btn-primary {
  flex: 1 1 auto;
  min-width: min(100%, 12rem);
}

.pin-detail .pd-actions .btn-secondary {
  font-weight: 650;
  box-shadow: none;
}

.pin-detail .pd-meta {
  margin: 0 0 10px;
  font-weight: 800;
  color: #3d4f6f;
}

.pin-detail .pd-blurb {
  margin: 0 0 14px;
  color: #2a3d55;
  font-weight: 650;
  line-height: 1.45;
}

.pin-detail .pd-status {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
}

.pin-detail .pd-status.ready {
  background: #ffe8d6;
  color: #b45309;
}

.pin-detail .pd-status.soon {
  background: #e0ebff;
  color: #1d4f91;
}
.pin-detail .pd-status.starter {
  background: #e8f0e8;
  color: #2d5a3d;
}
.pin-detail .pd-hint.pd-quality {
  font-size: 0.88rem;
  margin-top: 0.25rem;
}

.pin-detail .pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 2px solid rgba(15, 92, 92, 0.2);
  background: white;
  color: #0a4545;
  font: inherit;
  font-weight: 800;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(21, 34, 56, 0.06);
}

.chip.active {
  background: #0f5c5c;
  color: white;
  border-color: #0a4545;
}

/* Places board */
.places-board {
  margin-bottom: 28px;
}

.places-board-head {
  margin-bottom: 12px;
}

.places-board-head h2 {
  margin: 0 0 4px;
  color: #0a4545;
}

.places-board-head p {
  margin: 0;
  font-weight: 700;
  color: #3d4f6f;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.place-card {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: white;
  border: 3px solid rgba(15, 92, 92, 0.12);
  box-shadow: 0 10px 24px rgba(21, 34, 56, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.12s ease, border-color 0.12s ease;
}

.place-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 101, 46, 0.55);
}

.place-card .pc-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: start;
}

.place-card .pc-emoji {
  font-size: 1.6rem;
  line-height: 1;
}

.place-card .pc-name {
  font-weight: 900;
  font-size: 1.08rem;
  color: #0a4545;
  line-height: 1.2;
}

.place-card .pc-city {
  font-weight: 750;
  color: #3d4f6f;
  font-size: 0.95rem;
}

.place-card .pc-blurb {
  font-weight: 650;
  color: #2a3d55;
  font-size: 0.95rem;
  line-height: 1.35;
}

.place-card .pc-badge {
  font-size: 0.75rem;
  font-weight: 950;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.place-card .pc-badge.ready {
  background: #ffe8d6;
  color: #b45309;
}

.place-card .pc-badge.soon {
  background: #e0ebff;
  color: #1d4f91;
}

.landing-promise {
  background: white;
  border-radius: 24px;
  border: 3px solid rgba(15, 92, 92, 0.14);
  padding: 24px;
  box-shadow: 0 14px 32px rgba(21, 34, 56, 0.08);
  margin-bottom: 24px;
}

.landing-promise h2 {
  margin: 0 0 14px;
  color: #0a4545;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.promise-card {
  border-radius: 16px;
  padding: 16px 18px;
}

.promise-card.yes {
  background: #e8f8ee;
  border: 2px solid rgba(26, 122, 60, 0.25);
}

.promise-card.no {
  background: #fff1e8;
  border: 2px solid rgba(180, 83, 9, 0.22);
}

.promise-card h3 {
  margin: 0 0 8px;
  color: #0a4545;
}

.promise-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #2a3d55;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .landing-hero,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .dual-selects {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .dual-selects .select-field-place {
    grid-column: 1 / -1;
  }

  .filter-or {
    min-height: 44px;
  }

  .landing-hero-badge {
    order: -1;
  }

  .map-pin text {
    font-size: 11px;
  }
}

/* --- Hook / Ready now (post-rearch) --- */
.ready-now {
  margin: 0 0 22px;
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg, 24px);
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px solid var(--border, rgba(15, 92, 92, 0.12));
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(21, 34, 56, 0.05));
  backdrop-filter: blur(8px);
}

.ready-now h2 {
  margin: 0 0 6px;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--teal-deep, #0a4545);
}

.ready-now .ready-lead {
  margin: 0 0 16px;
  color: var(--muted, #3d4f6f);
  font-weight: 600;
}

.ready-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.ready-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  border-radius: var(--radius, 16px);
  background: var(--card, #fff);
  border: 1.5px solid var(--border, rgba(15, 92, 92, 0.12));
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm, none);
  transition:
    transform var(--dur-fast, 120ms) var(--ease, ease),
    box-shadow var(--dur-fast, 120ms) var(--ease, ease),
    border-color var(--dur-fast, 120ms) ease;
}

.ready-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow, 0 8px 24px rgba(21, 34, 56, 0.08));
  border-color: var(--accent, #d9652e);
}

.ready-card .rc-emoji {
  font-size: 1.65rem;
  line-height: 1;
}

.ready-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 750;
  color: var(--teal-deep, #0a4545);
  letter-spacing: -0.01em;
}

.ready-card p {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  color: var(--muted, #3d4f6f);
  font-weight: 600;
}

.ready-card .rc-cta {
  font-weight: 750;
  color: var(--accent, #d9652e);
  font-size: 0.9rem;
}

.continue-chip {
  display: none;
  margin: 0 0 14px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff8e6;
  border: 2px solid rgba(180, 120, 20, 0.25);
  font-weight: 750;
  color: #5c3d0a;
}

.continue-chip a {
  color: #0f5c5c;
  font-weight: 900;
}

.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}

.city-chip-wrap {
  position: relative;
  z-index: 1;
}
.city-chip-wrap:hover,
.city-chip-wrap:focus-within,
.city-chip-wrap.is-open {
  z-index: 30;
}

.city-chip {
  appearance: none;
  border: 1.5px solid var(--border, rgba(15, 92, 92, 0.14));
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-deep, #0a4545);
  font: inherit;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 8px 14px;
  min-height: 40px;
  border-radius: var(--radius-pill, 999px);
  cursor: pointer;
  box-shadow: var(--shadow-sm, none);
  transition:
    background var(--dur-fast, 120ms) ease,
    border-color var(--dur-fast, 120ms) ease,
    color var(--dur-fast, 120ms) ease;
  position: relative;
  z-index: 2; /* stay above dropdown so label never paints under menu */
}

.city-chip:hover,
.city-chip-wrap:focus-within .city-chip:not([aria-pressed="true"]) {
  background: #eef8f3;
  border-color: var(--teal, #0f5c5c);
  color: var(--teal-deep, #0a4545);
}

.city-chip[aria-pressed="true"],
.city-chip[aria-pressed="true"]:hover,
.city-chip-wrap:focus-within .city-chip[aria-pressed="true"],
.city-chip-wrap.is-open .city-chip[aria-pressed="true"] {
  background: var(--teal, #0f5c5c);
  border-color: var(--teal-deep, #0a4545);
  color: #fff;
}

.city-chip .chip-tag {
  font-weight: 700;
  opacity: 0.7;
  margin-left: 4px;
  font-size: 0.75rem;
}

/* Hover / focus / open menu: venues in that city (below chip, never covers label) */
.city-chip-menu {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  min-width: 12.5rem;
  max-width: min(18rem, 85vw);
  padding: 6px;
  margin: 0;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid rgba(15, 92, 92, 0.16);
  box-shadow: 0 12px 28px rgba(21, 34, 56, 0.14);
  z-index: 1;
}
.city-chip-wrap:hover .city-chip-menu,
.city-chip-wrap:focus-within .city-chip-menu,
.city-chip-wrap.is-open .city-chip-menu {
  display: grid;
  gap: 2px;
}
.city-chip-menu-item {
  display: block;
  padding: 9px 11px;
  border-radius: 10px;
  text-decoration: none;
  color: #0a4545;
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.city-chip-menu-item:hover,
.city-chip-menu-item:focus-visible {
  background: #e8f6f0;
  outline: none;
}

.landing-hero h1 {
  max-width: 18ch;
}

.waiting-cities {
  margin: 0 0 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.85);
  border: 2px dashed rgba(15, 92, 92, 0.25);
  color: #3d4f6f;
  font-weight: 700;
  font-size: 0.95rem;
}

.soon-save {
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px;
  background: #fff8e8;
  border: 2px solid rgba(180, 120, 20, 0.22);
}

.soon-save .btn-save-city {
  margin-top: 8px;
  width: 100%;
}

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

/* polish mobile landing */
@media (max-width: 720px) {
  .landing-hero {
    grid-template-columns: 1fr;
    padding: 20px 18px;
  }
  .landing-hero-badge { display: none; }
  .landing-hero h1 { max-width: none; font-size: clamp(1.65rem, 7vw, 2.2rem); }
  .dual-selects {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }
  .dual-selects .select-field-place {
    grid-column: 1 / -1;
  }
  .map-shell { grid-template-columns: 1fr; }
  .ready-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .city-chips { gap: 6px; }
  .city-chip { font-size: 0.8rem; padding: 7px 10px; }
}
.oneless-shell {
  position: sticky;
  top: 8px;
}

/* Map scope + zoom — overlay top-left on the map */
.map-canvas-wrap {
  position: relative;
}
.map-overlay-tl {
  position: absolute;
  z-index: 6;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  pointer-events: none;
}
.map-overlay-tl > * {
  pointer-events: auto;
}
.scope-toggle {
  display: inline-flex;
  gap: 0;
  margin: 0;
  padding: 3px;
  border-radius: var(--radius-pill, 999px);
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid var(--border, rgba(15, 92, 92, 0.14));
  box-shadow: var(--shadow, 0 6px 16px rgba(21, 34, 56, 0.1));
  backdrop-filter: blur(10px);
}
.scope-btn {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 7px 10px;
  border-radius: var(--radius-pill, 999px);
  cursor: pointer;
  color: var(--muted, #3d4f6f);
  white-space: nowrap;
  transition: background 0.12s ease, color 0.12s ease;
}
.scope-btn.active,
.scope-btn[aria-pressed="true"] {
  background: var(--teal, #0f5c5c);
  color: #fff;
}
.map-viewport {
  overflow: hidden;
  border-radius: calc(var(--radius-lg, 24px) - 4px);
  /* none = one-finger pan + two-finger pinch without page scroll/zoom fighting */
  touch-action: none;
  -webkit-user-select: none;
  cursor: grab;
  min-height: 280px;
  user-select: none;
}
.map-viewport.is-dragging {
  cursor: grabbing;
}
.map-viewport.is-dragging .venue-pin {
  pointer-events: none;
}
/* Avoid iOS callout / magnifier while gesturing on the map */
.map-viewport,
.map-viewport * {
  -webkit-touch-callout: none;
}
.map-zoom-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.zoom-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm, 12px);
  border: 1.5px solid var(--border, rgba(15, 92, 92, 0.14));
  background: rgba(255, 255, 255, 0.94);
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--teal-deep, #0a4545);
  line-height: 1;
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(21, 34, 56, 0.06));
  backdrop-filter: blur(10px);
  transition: background 0.12s ease, border-color 0.12s ease;
}
.zoom-btn:hover:not(:disabled) {
  border-color: var(--teal, #0f5c5c);
  background: #e8f6f0;
}
.zoom-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
@media (max-width: 520px) {
  .scope-btn {
    font-size: 0.68rem;
    padding: 6px 8px;
  }
  .scope-toggle {
    max-width: min(100%, 280px);
    flex-wrap: wrap;
  }
  .map-overlay-tl {
    top: 8px;
    left: 8px;
  }
}
.venue-pin .vpin-core {
  fill: #ff8a3d;
  stroke: #0a4545;
  stroke-width: 1.5;
}
/* Pin colors by place type */
.venue-pin.pin-type-zoo .vpin-core {
  fill: #ff8a3d; /* orange — zoos */
}
.venue-pin.pin-type-aquarium .vpin-core {
  fill: #2b8fd9; /* blue — aquariums */
}
.venue-pin.pin-type-museum .vpin-core {
  fill: #7c5cbf; /* purple — museums / science */
}
.venue-pin.pin-type-park .vpin-core {
  fill: #2f8f4e; /* forest green — national parks */
}
.venue-pin.pin-type-other .vpin-core,
.venue-pin.pin-type-mixed .vpin-core {
  fill: #0f5c5c; /* teal — mixed cluster / other */
}
.venue-pin .vpin-halo {
  fill: rgba(255, 138, 61, 0.25);
  opacity: 0;
}
.venue-pin.pin-type-aquarium .vpin-halo {
  fill: rgba(43, 143, 217, 0.3);
}
.venue-pin.pin-type-museum .vpin-halo {
  fill: rgba(124, 92, 191, 0.3);
}
.venue-pin.pin-type-park .vpin-halo {
  fill: rgba(47, 143, 78, 0.32);
}
.venue-pin.pin-type-other .vpin-halo,
.venue-pin.pin-type-mixed .vpin-halo {
  fill: rgba(15, 92, 92, 0.28);
}
.venue-pin:hover .vpin-halo,
.venue-pin.selected .vpin-halo,
.venue-pin:focus-visible .vpin-halo {
  opacity: 1;
}
.venue-pin .vpin-chip {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.venue-pin .vpin-chip.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.venue-pin .vpin-chip-bg {
  fill: rgba(255, 255, 255, 0.96);
  stroke: #0a4545;
  stroke-width: 1.5;
}
.venue-pin .vpin-chip-on .vpin-chip-bg {
  stroke: #d9652e;
  stroke-width: 2;
  fill: #fff8f0;
}
.venue-pin .vpin-label {
  font-family: system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  fill: #0a4545;
  pointer-events: none;
}
.venue-pin .vpin-label-on {
  font-size: 11px;
  font-weight: 900;
  fill: #7c2d12;
}
.venue-pin .vpin-dismiss-bg {
  fill: #0f5c5c;
  stroke: #fff;
  stroke-width: 1;
}
.venue-pin .vpin-dismiss-x {
  font-family: system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
  fill: #fff;
  pointer-events: none;
}
.venue-pin .vpin-dismiss:hover .vpin-dismiss-bg {
  fill: #c2410c;
}
.venue-pin.selected .vpin-core {
  stroke-width: 2.5;
}
.venue-pin.selected.pin-type-zoo .vpin-core {
  fill: #d9652e;
}
.venue-pin.selected.pin-type-aquarium .vpin-core {
  fill: #1a6fad;
}
.venue-pin.selected.pin-type-museum .vpin-core {
  fill: #5b3fa0;
}
.venue-pin.selected.pin-type-park .vpin-core {
  fill: #1f6b38;
}
.venue-pin.selected.pin-type-other .vpin-core,
.venue-pin.selected.pin-type-mixed .vpin-core {
  fill: #0a4545;
}
.venue-pin.selected .vpin-halo {
  opacity: 1;
}
.venue-pin.selected.pin-type-zoo .vpin-halo {
  fill: rgba(217, 101, 46, 0.35);
}
.venue-pin.selected.pin-type-aquarium .vpin-halo {
  fill: rgba(26, 111, 173, 0.35);
}
.venue-pin.selected.pin-type-museum .vpin-halo {
  fill: rgba(91, 63, 160, 0.35);
}
.venue-pin.selected.pin-type-park .vpin-halo {
  fill: rgba(31, 107, 56, 0.35);
}
.venue-pin:hover,
.venue-pin.selected {
  z-index: 10;
}
.pin-detail h3 {
  word-break: break-word;
  margin: 0;
  flex: 1;
}
.pd-title-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 6px;
}
.pd-title-link {
  color: inherit;
  text-decoration: none;
  border-radius: 4px;
}
.pd-title-link:hover {
  color: #0a4545;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pd-title-link:focus-visible {
  outline: 2px solid rgba(15, 92, 92, 0.45);
  outline-offset: 2px;
}
.pd-clear {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid rgba(15, 92, 92, 0.25);
  background: #fff;
  color: #0a4545;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.pd-clear:hover {
  background: #ffe4d6;
  border-color: #c2410c;
  color: #c2410c;
}

.venue-pin .vpin-count {
  font-family: system-ui, sans-serif;
  font-size: 11px;
  font-weight: 900;
  fill: #fff;
  pointer-events: none;
}
.nearby-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.nearby-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  text-align: left;
  border: 2px solid rgba(15, 92, 92, 0.16);
  border-radius: 14px;
  background: #fff;
  padding: 10px 12px;
  cursor: pointer;
  font: inherit;
}
.nearby-item:hover,
.nearby-item:focus-visible {
  border-color: #0f5c5c;
  background: #f0faf5;
  outline: none;
}
.nearby-emoji {
  font-size: 1.4rem;
  line-height: 1;
}
.nearby-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.nearby-copy strong {
  font-size: 0.95rem;
  color: #0a4545;
}
.nearby-copy small {
  font-size: 0.8rem;
  font-weight: 650;
  color: #5a6b82;
}
.nearby-go {
  font-weight: 850;
  font-size: 0.85rem;
  color: #0f5c5c;
  white-space: nowrap;
}

/* ===== Clean landing (map-first, Phase A craft) ===== */
.landing-clean {
  max-width: 1100px;
}

/* Place typeahead above map */
.place-search-wrap {
  position: relative;
  margin: 0 0 12px;
  max-width: 28rem;
}
.place-search-label {
  display: block;
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--teal-deep, #0a4545);
}
.place-search-input {
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  font-weight: 650;
  font-size: 1rem;
  padding: 12px 14px;
  min-height: 48px;
  border-radius: 14px;
  border: 1.5px solid rgba(15, 92, 92, 0.2);
  background: #fff;
  color: #0a4545;
  box-shadow: 0 4px 14px rgba(21, 34, 56, 0.06);
}
.place-search-input:focus {
  outline: 2px solid #ffcf5a;
  outline-offset: 1px;
  border-color: #0f5c5c;
}
.place-search-results {
  list-style: none;
  margin: 6px 0 0;
  padding: 6px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 40;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid rgba(15, 92, 92, 0.16);
  box-shadow: 0 14px 32px rgba(21, 34, 56, 0.14);
  max-height: min(50vh, 320px);
  overflow: auto;
}
.place-search-hit {
  display: grid;
  gap: 2px;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.place-search-hit:hover,
.place-search-hit:focus-visible {
  background: #e8f6f0;
  outline: none;
}
.place-search-hit strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0a4545;
}
.place-search-hit small {
  font-size: 0.78rem;
  font-weight: 650;
  color: #5a6b82;
}
.place-search-empty {
  padding: 12px;
  font-weight: 650;
  color: #5a6b82;
  font-size: 0.9rem;
}
.seo-about {
  margin: 20px 0 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(15, 92, 92, 0.12);
  max-width: 40rem;
}
.seo-about h2 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: #0a4545;
}
.seo-about p {
  margin: 0;
  font-weight: 600;
  color: #3d4f6f;
  line-height: 1.45;
  font-size: 0.92rem;
}
.footer-privacy {
  margin: 8px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6a7d96;
  line-height: 1.4;
}
.footer-dot {
  opacity: 0.5;
  margin: 0 0.2em;
}

/* Hero: outcome H1 + phone-free differentiator + search CTA + real sheet */
.landing-pitch {
  margin: 4px 0 14px;
  padding: 0 2px 4px;
  text-align: left;
}
.pitch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(150px, 0.7fr);
  gap: 14px 28px;
  align-items: start;
  margin-bottom: 10px;
}
.pitch-hero-copy-only {
  grid-template-columns: 1fr;
  max-width: 40rem;
}
.landing-pitch h1 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 4.2vw, 2.05rem);
  font-weight: 850;
  line-height: 1.08;
  color: var(--teal-deep, #0a4545);
  letter-spacing: -0.035em;
  max-width: 22ch;
}
.pitch-differentiator {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 2.8vw, 1.22rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0a4545;
  letter-spacing: -0.02em;
}
.pitch-line {
  margin: 0 0 14px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--muted, #3d4f6f);
  max-width: 36rem;
  line-height: 1.42;
}
.pitch-cta-block {
  margin: 0 0 12px;
  max-width: 28rem;
}
.hero-search-form {
  margin: 0;
  position: relative;
}
.hero-search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
}
.hero-place-search-input {
  flex: 1 1 12rem;
  min-height: 48px;
  font-size: 1.02rem !important;
  font-weight: 650;
}
.hero-search-submit {
  min-height: 48px;
  padding: 0 1.1rem;
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(15, 92, 92, 0.18);
}
@media (max-width: 720px) {
  .hero-search-row {
    flex-wrap: nowrap;
  }
  .hero-place-search-input {
    min-width: 0;
    flex: 1 1 auto;
  }
}
@media (max-width: 420px) {
  .hero-search-row {
    flex-wrap: wrap;
  }
  .hero-place-search-input {
    flex: 1 1 100%;
  }
  .hero-search-submit {
    width: 100%;
  }
}
.hero-place-search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 40;
  max-height: 16rem;
  overflow: auto;
}
.pitch-secondary {
  margin: 10px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
}
.pitch-sample-link-text {
  color: #0f5c5c;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(15, 92, 92, 0.28);
}
.pitch-sample-link-text:hover {
  border-bottom-color: #0f5c5c;
}
.pitch-trust-strip {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.35;
  color: #5a6b82;
  max-width: 36rem;
}
.pitch-artifact {
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 220px;
}
.pitch-artifact-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  outline-offset: 3px;
}
.pitch-artifact-link:focus-visible {
  outline: 3px solid var(--focus, #ffcf5a);
}
.pitch-artifact-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52vh, 340px);
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  border: 2px solid rgba(15, 92, 92, 0.2);
  background: #fffef8;
  box-shadow:
    6px 8px 0 rgba(15, 92, 92, 0.07),
    0 12px 28px rgba(21, 34, 56, 0.1);
  transform: rotate(1.5deg);
}
.pitch-artifact-link:hover .pitch-artifact-img {
  border-color: #d9652e;
  transform: rotate(0.5deg) translateY(-2px);
}
.pitch-artifact-cap {
  margin: 8px 2px 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: #5a6b82;
  text-align: center;
}
/* Compressed how-it-works strip (not competing CTAs) */
.hero-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  margin: 4px 0 0;
  padding: 10px 12px;
  list-style: none;
  border-radius: 12px;
  background: rgba(15, 92, 92, 0.06);
  border: 1px solid rgba(15, 92, 92, 0.1);
  font-size: 0.88rem;
  font-weight: 750;
  color: #0a4545;
}
.hero-steps li {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}
.hero-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: #0f5c5c;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}
.catalog-extras-note,
.story-extras-note {
  margin: 1rem 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #5a6b82;
  line-height: 1.4;
}
.pitch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.pitch-cta {
  min-height: 48px;
  padding: 12px 22px;
  font-size: 1.05rem;
  box-shadow: 0 6px 18px rgba(15, 92, 92, 0.18);
}
.pitch-sub {
  display: none; /* retired — keep class for any legacy */
}
.pitch-trust {
  /* legacy class — prefer .pitch-differentiator / .pitch-trust-strip */
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  color: #0a4545;
  opacity: 0.85;
}
@media (max-width: 720px) {
  .pitch-hero {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pitch-artifact {
    justify-self: stretch;
    max-width: none;
    order: 3;
  }
  .pitch-copy {
    order: 1;
  }
  .landing-pitch h1 {
    max-width: none;
    font-size: clamp(1.38rem, 6.2vw, 1.75rem);
  }
  .pitch-differentiator {
    font-size: 1.08rem;
  }
  .pitch-artifact-img {
    max-height: 220px;
    margin: 0 auto;
    max-width: 200px;
  }
  .hero-steps {
    gap: 0.45rem 0.75rem;
    font-size: 0.84rem;
  }
}

/* Print artifact — “what you walk out with” (clickable sample) */
.pitch-artifact {
  margin: 0;
  justify-self: end;
  max-width: 200px;
  width: 100%;
}
a.pitch-sample-link {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 16px;
  outline-offset: 4px;
}
a.pitch-sample-link:hover .artifact-sheet,
a.pitch-sample-link:focus-visible .artifact-sheet {
  border-color: #d9652e;
  box-shadow:
    6px 8px 0 rgba(217, 101, 46, 0.12),
    0 14px 32px rgba(21, 34, 56, 0.14);
  transform: rotate(1.5deg) translateY(-2px);
}
a.pitch-sample-link:focus-visible {
  outline: 3px solid var(--focus, #ffcf5a);
}
a.pitch-sample-link:hover .artifact-cap,
a.pitch-sample-link:focus-visible .artifact-cap {
  color: #d9652e;
}
.artifact-sheet {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #fffef8 0%, #f7fbf9 100%);
  border: 2px solid #0f5c5c;
  border-radius: 14px;
  padding: 12px 12px 10px;
  box-shadow:
    6px 8px 0 rgba(15, 92, 92, 0.08),
    0 12px 28px rgba(21, 34, 56, 0.1);
  transform: rotate(2.5deg);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.sample-watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 2;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(217, 101, 46, 0.28);
  transform: rotate(-18deg);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.sample-watermark-sm {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 3px rgba(10, 30, 40, 0.45);
  transform: rotate(-16deg);
}
.artifact-banner {
  background: #ffcf5a;
  color: #0a4545;
  font-weight: 850;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 8px;
  padding: 6px 8px;
  margin-bottom: 10px;
  border: 1.5px solid rgba(10, 69, 69, 0.2);
}
.artifact-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.artifact-rows li {
  display: grid;
  grid-template-columns: 18px 22px 1fr;
  gap: 6px;
  align-items: center;
}
.artifact-box {
  width: 16px;
  height: 16px;
  border: 1.5px solid #0f5c5c;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #0f5c5c;
  background: #fff;
}
.artifact-emoji {
  font-size: 1rem;
  line-height: 1;
}
.artifact-line {
  height: 7px;
  border-radius: 99px;
  background: #d5dee8;
}
.artifact-line.short {
  width: 65%;
}
.artifact-foot {
  margin: 10px 0 0;
  font-size: 0.68rem;
  font-weight: 700;
  color: #5a6b82;
  text-align: center;
}
.artifact-cap {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 750;
  color: #c45a12;
  transform: rotate(2.5deg);
}

/* Compact starters (not a directory dump) */
.starter-strip {
  margin: 10px 0 4px;
  padding: 10px 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px solid rgba(15, 92, 92, 0.12);
  max-width: min(40rem, 100%);
}
.starter-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted, #3d4f6f);
}
.pilot-mission-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pilot-mission-link {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
  color: #0a4545;
  background: #e8f6f0;
  border: 1.5px solid rgba(15, 92, 92, 0.22);
}
.pilot-mission-link:hover,
.pilot-mission-link:focus-visible {
  background: #0f5c5c;
  color: #fff;
  border-color: #0a4545;
  outline: 2px solid #ff8a3d;
  outline-offset: 2px;
}
.starter-more,
.pilot-mission-more {
  margin: 8px 0 0;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--muted, #3d4f6f);
  line-height: 1.35;
}

/* Legacy class names kept for any cached HTML */
.pilot-mission-strip {
  margin: 0 0 12px;
}
.pilot-mission-kicker,
.pilot-mission-lead {
  display: none;
}

@media (max-width: 720px) {
  .pitch-hero {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pitch-artifact {
    justify-self: start;
    max-width: 168px;
  }
  .artifact-sheet {
    transform: rotate(1.5deg);
  }
  .artifact-cap {
    transform: none;
  }
}

/* Map → Print → Play — full landing width on desktop */
.story-flow {
  list-style: none;
  margin: 0 0 10px;
  padding: 18px 20px;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: stretch;
  gap: 10px 14px;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  border-radius: var(--radius-lg, 24px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(232, 248, 240, 0.9));
  border: 1.5px solid var(--border, rgba(15, 92, 92, 0.14));
  box-shadow: var(--shadow-sm, 0 2px 10px rgba(21, 34, 56, 0.06));
}
.story-step {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  gap: 8px;
  padding: 14px 12px 16px;
  border-radius: 18px;
  transition: background var(--dur-fast, 120ms) ease;
}
.story-step:hover {
  background: rgba(255, 255, 255, 0.8);
}
.story-jump {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  outline-offset: 3px;
}
.story-jump:focus-visible {
  outline: 3px solid var(--focus, #ffcf5a);
}
.story-step-map {
  background: rgba(255, 248, 230, 0.55);
  box-shadow: inset 0 0 0 1.5px rgba(217, 101, 46, 0.22);
}
.story-step-map:hover,
.story-step-map:focus-within {
  background: rgba(255, 244, 220, 0.9);
}
.story-step-print {
  position: relative;
  z-index: 2;
  overflow: visible;
  background: rgba(255, 255, 255, 0.45);
}
.story-step-play {
  position: relative;
  z-index: 2;
  overflow: visible;
  background: rgba(255, 252, 235, 0.4);
}
.story-step-has-pop {
  position: relative;
  overflow: visible;
}
.story-sample-link {
  position: relative;
  overflow: visible;
}
/* Sample pop: hover desktop; is-pop-open on touch (JS) */
.story-pop {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(8px) scale(0.96);
  border-radius: 14px;
  border: 1.5px solid rgba(15, 92, 92, 0.2);
  background: #fff;
  box-shadow: 0 14px 36px rgba(21, 34, 56, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 30;
  text-align: left;
}
.story-pop-animal {
  width: min(240px, 70vw);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}
.story-pop-animal img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
  background: #e8f0ea;
}
.story-pop-animal .sample-watermark-sm {
  inset: 0 auto 0 0;
  width: 72px;
}
.story-pop-animal .story-animal-meta {
  display: grid;
  gap: 2px;
  align-content: center;
  padding: 8px 10px;
  min-width: 0;
}
.story-pop-animal .story-animal-meta strong {
  font-size: 0.82rem;
  font-weight: 850;
  color: #0a4545;
  line-height: 1.15;
}
.story-pop-animal .story-animal-meta small {
  font-size: 0.68rem;
  font-weight: 750;
  color: #0f5c5c;
  line-height: 1.2;
}
.story-pop-hunt {
  width: min(200px, 72vw);
  padding: 10px 10px 8px;
  overflow: hidden;
}
.story-pop-hunt .sample-watermark {
  font-size: 1.05rem;
  color: rgba(217, 101, 46, 0.32);
}
.story-pop-hunt-sheet {
  position: relative;
  border: 1.5px solid #0f5c5c;
  border-radius: 10px;
  padding: 8px 8px 6px;
  background: linear-gradient(165deg, #fffef8 0%, #f7fbf9 100%);
}
.story-pop-hunt .artifact-banner {
  font-size: 0.68rem;
  padding: 4px 6px;
  margin-bottom: 6px;
}
.story-pop-hunt .artifact-rows {
  gap: 5px;
}
.story-pop-hunt .artifact-rows li {
  grid-template-columns: 14px 18px 1fr;
  gap: 4px;
}
.story-pop-hunt .artifact-box {
  width: 12px;
  height: 12px;
  font-size: 0.55rem;
}
.story-pop-hunt .artifact-emoji {
  font-size: 0.85rem;
}
.story-pop-hunt .artifact-line {
  height: 5px;
}
.story-pop-hunt .artifact-foot {
  margin: 6px 0 0;
  font-size: 0.6rem;
}
.story-pop-cta {
  display: block;
  margin-top: 6px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #d9652e;
}
.story-step-has-pop:hover,
.story-step-has-pop:focus-within,
.story-step-has-pop.is-pop-open {
  z-index: 25;
}
.story-step-print:hover,
.story-step-print:focus-within,
.story-step-print.is-pop-open {
  background: rgba(255, 255, 255, 0.95);
}
.story-step-play:hover,
.story-step-play:focus-within,
.story-step-play.is-pop-open {
  background: rgba(255, 248, 220, 0.95);
}
/* Desktop: hover peeks. Touch uses .is-pop-open from JS. */
@media (hover: hover) and (pointer: fine) {
  .story-step-has-pop:hover .story-pop,
  .story-step-has-pop:focus-within .story-pop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}
.story-step-has-pop.is-pop-open .story-pop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.story-art {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 88px;
}
.story-svg {
  display: block;
  width: min(112px, 72%);
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(21, 34, 56, 0.08));
}
.story-svg-hunt {
  width: min(120px, 78%);
}
.story-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--teal-deep, #0a4545);
}
.story-num {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--teal, #0f5c5c);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  flex: 0 0 auto;
}
.story-desc {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.35;
  color: var(--muted, #3d4f6f);
  max-width: 18ch;
}
/* Thick filled arrows with teal → orange / warm gradient */
.story-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 4px;
  align-self: center;
  margin-top: -2.2rem; /* sit between the art blocks, not the labels */
}
.story-arrow-svg {
  display: block;
  width: 44px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(21, 34, 56, 0.14));
}

/* Wide desktop: even bigger step cards */
@media (min-width: 900px) {
  .story-flow {
    padding: 22px 28px 24px;
    gap: 14px 20px;
  }
  .story-step {
    padding: 18px 16px 20px;
    gap: 10px;
  }
  .story-art {
    min-height: 120px;
  }
  .story-svg {
    width: min(140px, 70%);
  }
  .story-svg-hunt {
    width: min(152px, 78%);
  }
  .story-label {
    font-size: 1.28rem;
    gap: 10px;
  }
  .story-num {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.92rem;
  }
  .story-desc {
    font-size: 1.05rem;
    max-width: 22ch;
  }
  .story-arrow {
    margin-top: -2.8rem;
  }
  .story-arrow-svg {
    width: 52px;
    height: 36px;
  }
  .story-pop-animal {
    width: min(280px, 28vw);
  }
  .story-pop-animal img {
    width: 88px;
    height: 88px;
  }
  .story-pop-hunt {
    width: min(240px, 26vw);
  }
}
.story-step-map .story-num { background: #0f5c5c; }
.story-step-print .story-num { background: #d9652e; }
.story-step-play .story-num { background: #c9a227; color: #1a1a1a; }

/* Soft pulse on Map pin → draws eye to “tap a place” */
.story-pin-pulse {
  transform-origin: 0 0;
  animation: story-pin-pulse 2s var(--ease, ease) infinite;
  transform-box: fill-box;
}
@keyframes story-pin-pulse {
  0% {
    transform: translate(54px, 28px) scale(0.85);
    opacity: 0.75;
  }
  70% {
    transform: translate(54px, 28px) scale(1.45);
    opacity: 0;
  }
  100% {
    transform: translate(54px, 28px) scale(1.45);
    opacity: 0;
  }
}

/* Cue arrow from story → real map */
.story-map-cue {
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--accent, #d9652e);
  letter-spacing: 0.01em;
}
.story-map-cue-arrow {
  display: inline-flex;
  animation: story-bounce-y 1.4s var(--ease, ease) infinite;
  font-size: 1rem;
  line-height: 1;
}
@keyframes story-bounce-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* Gentle invite ring on the real map (first ~12s, then calm) */
.map-canvas-invite {
  animation: map-invite-glow 2.4s var(--ease, ease) 3;
}
@keyframes map-invite-glow {
  0%,
  100% {
    box-shadow: var(--shadow-lg, 0 18px 48px rgba(21, 34, 56, 0.1));
  }
  50% {
    box-shadow:
      0 0 0 3px rgba(217, 101, 46, 0.35),
      0 18px 48px rgba(21, 34, 56, 0.12);
  }
}

@media (max-width: 640px) {
  .story-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px 12px;
    max-width: none;
  }
  .story-step {
    max-width: none;
    padding: 8px 6px;
  }
  /* Phone: pop below step so it isn’t clipped */
  .story-pop {
    bottom: auto;
    top: calc(100% + 6px);
    left: 0;
    right: auto;
    width: min(260px, calc(100vw - 48px));
    transform: translateY(6px) scale(0.98);
  }
  .story-pop-animal {
    width: min(260px, calc(100vw - 48px));
  }
  .story-pop-hunt {
    width: min(200px, calc(100vw - 48px));
  }
  .story-step-has-pop.is-pop-open .story-pop,
  .story-step-has-pop:focus-within .story-pop {
    transform: translateY(0) scale(1);
  }
  .story-jump {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 2px;
    text-align: left;
    justify-items: start;
  }
  .story-step:not(:has(.story-jump)) {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 2px;
    text-align: left;
    justify-items: start;
  }
  .story-jump .story-art,
  .story-step:not(:has(.story-jump)) .story-art {
    grid-row: 1 / span 2;
    width: 72px;
    min-height: 60px;
  }
  .story-svg {
    width: 72px;
  }
  .story-svg-hunt {
    width: 78px;
  }
  .story-desc {
    max-width: none;
  }
  .story-arrow {
    margin: 2px 0;
    padding: 0;
    height: auto;
    transform: rotate(90deg);
    align-self: center;
  }
  .story-arrow-svg {
    width: 28px;
    height: 20px;
  }
  .story-map-cue {
    justify-content: flex-start;
    padding-left: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-pin-pulse,
  .story-map-cue-arrow,
  .map-canvas-invite {
    animation: none !important;
  }
}

.map-first {
  margin: 0 0 18px;
}
.landing-clean .map-shell {
  margin-bottom: 14px;
}
.landing-clean .map-viewport {
  min-height: 380px;
}
.landing-clean .pin-detail.map-pin-card {
  min-height: 0;
  padding: 14px 14px 12px;
}
.landing-clean .pin-detail.empty {
  display: none;
}
.landing-clean .pd-hint {
  margin: 0 0 10px;
  font-weight: 600;
  color: var(--muted, #3d4f6f);
  line-height: 1.45;
  font-size: 0.95rem;
}
.landing-clean .pd-hint strong {
  color: var(--teal-deep, #0a4545);
  font-weight: 750;
}
.landing-clean .pin-detail .pd-meta {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--muted-soft, #5a6b82);
}
.landing-clean .pin-detail .pd-blurb {
  margin: 0 0 10px;
  font-weight: 600;
  color: var(--muted, #3d4f6f);
  line-height: 1.4;
}
.landing-clean .pin-detail .pd-actions .btn-primary {
  font-size: 0.98rem;
}
.landing-clean .pin-detail .pd-actions {
  flex-direction: column;
  align-items: stretch;
}
.landing-clean .pin-detail .pd-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.landing-clean .pin-detail .pd-actions .btn-ghost {
  width: auto;
  align-self: flex-start;
}

/* Rich pin panel: hunt + photo sample Q&A card */
.pin-detail-rich {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd-sample-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0;
  padding: 0;
  margin: 4px 0 0;
  border: 1.5px solid rgba(15, 92, 92, 0.16);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 16px rgba(21, 34, 56, 0.07);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.pd-sample-card:hover {
  border-color: #d9652e;
  box-shadow: 0 8px 20px rgba(217, 101, 46, 0.15);
  transform: translateY(-1px);
}
.pd-sample-card img,
.pd-sample-fallback {
  width: 96px;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
  background: linear-gradient(145deg, #e8f0f8, #d4e4d8);
  display: block;
}
.pd-sample-fallback {
  display: grid;
  place-items: center;
  font-size: 2rem;
}
.pd-sample-body {
  display: grid;
  gap: 3px;
  padding: 10px 12px 11px;
  align-content: center;
}
.pd-sample-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f5c5c;
}
.pd-sample-name {
  font-size: 1rem;
  font-weight: 800;
  color: #0a4545;
  line-height: 1.2;
}
.pd-sample-blurb {
  font-size: 0.82rem;
  font-weight: 600;
  color: #3d4f6f;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pd-sample-cta {
  margin-top: 2px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #d9652e;
}
.pd-more-hint {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 650;
  color: #5a6b82;
  line-height: 1.3;
}
.pd-actions-secondary {
  margin-top: 2px;
  display: flex;
  justify-content: flex-start;
}
.landing-clean .pin-detail-rich .pd-actions-secondary .btn {
  font-size: 0.9rem;
  font-weight: 700;
}
/* Light secondary CTA → outing/stops (not primary print) */
.btn.btn-soft,
.pd-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(15, 92, 92, 0.18);
  background: #eef7f4;
  color: #0a4545;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.btn.btn-soft:hover,
.pd-details-btn:hover {
  background: #e0f2ec;
  border-color: rgba(15, 92, 92, 0.28);
  color: #063636;
}
.pin-detail.map-pin-card .pd-actions-secondary .btn-soft,
.pin-detail.map-pin-card .pd-details-btn {
  width: auto;
  min-width: 5.5rem;
  align-self: flex-start;
}

/* Filters live under the map so the visual leads */
.map-controls-below {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.map-cities-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 750;
  color: var(--muted, #3d4f6f);
}
.map-cities-hint {
  font-weight: 600;
  color: var(--muted-soft, #5a6b82);
  font-size: 0.76rem;
}
.map-filters-more {
  margin: 2px 0 0;
  max-width: 42rem;
}
.map-filters-more > summary {
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 750;
  color: var(--teal-deep, #0a4545);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  user-select: none;
}
.map-filters-more > summary::-webkit-details-marker {
  display: none;
}
.map-filters-more > summary::before {
  content: "▸";
  font-size: 0.75rem;
  color: var(--accent, #d9652e);
}
.map-filters-more[open] > summary::before {
  content: "▾";
}
.map-filters-more .filter-row {
  margin-top: 10px;
}
.city-chips-slim {
  margin: 0;
  gap: 8px;
}
.city-chips-slim .city-chip {
  padding: 7px 13px;
  font-size: 0.82rem;
}
.dual-selects-tight {
  margin: 0;
  gap: 8px 10px;
}
.dual-selects-tight .landing-select {
  min-height: 44px;
  font-size: 0.95rem;
  padding: 8px 12px;
}
.dual-selects-tight .select-label {
  font-size: 0.72rem;
}
.dual-selects-tight .filter-or {
  min-height: 44px;
  font-size: 0.68rem;
}
.map-count-quiet {
  margin: 0 !important;
  font-size: 0.82rem !important;
  font-weight: 650 !important;
  color: var(--muted-soft, #5a6b82) !important;
  letter-spacing: 0.01em;
}
.map-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  margin-top: 2px;
}
.map-pin-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-size: 0.78rem;
  font-weight: 750;
  color: var(--muted, #3d4f6f);
}
.map-pin-legend li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.leg-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  border: 1.5px solid #0a4545;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(21, 34, 56, 0.12);
}
.leg-zoo {
  background: #ff8a3d;
}
.leg-aquarium {
  background: #2b8fd9;
}
.leg-museum {
  background: #7c5cbf;
}
.leg-park {
  background: #2f8f4e;
}

.ready-slim {
  margin: 0 0 16px;
  padding: 14px 16px 12px;
}
.ready-slim h2 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 750;
  color: var(--teal-deep, #0a4545);
  letter-spacing: -0.01em;
}
.ready-slim .ready-card {
  padding: 12px 14px;
  gap: 10px;
  flex-direction: row;
  align-items: center;
}
.ready-slim .ready-card p { display: none; }
.ready-slim .ready-card h3 {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  font-weight: 700;
}
.ready-slim .rc-emoji {
  font-size: 1.4rem;
  width: 2rem;
  text-align: center;
}
.ready-slim .rc-cta {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 750;
}

.site-footer-slim {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border, rgba(15, 92, 92, 0.1));
}
.site-footer-slim p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-soft, #5a6b82);
}
.site-footer-slim a {
  font-weight: 700;
  text-decoration: none;
}
.site-footer-slim a:hover {
  text-decoration: underline;
}
.footer-dot {
  opacity: 0.45;
  margin: 0 4px;
}

/* Slightly less page chrome so map rises faster */
body.landing-body {
  padding-top: 12px;
  padding-bottom: 28px;
}
.landing-clean .oneless-shell {
  margin-bottom: 12px;
}
.landing-clean .continue-chip {
  margin-bottom: 10px;
  padding: 11px 16px;
  border-radius: var(--radius, 16px);
  border-width: 1.5px;
  background: rgba(255, 248, 230, 0.95);
  box-shadow: var(--shadow-sm, none);
}

.nearby-item {
  border-radius: var(--radius, 16px);
  border-width: 1.5px;
  transition: background 0.12s ease, border-color 0.12s ease;
}
.pd-status.ready {
  background: #fff0e6;
  color: #b45309;
  font-weight: 750;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .landing-pitch {
    margin-bottom: 10px;
  }
  .pitch-flow {
    display: block;
    margin: 8px 0 0;
    width: fit-content;
  }
  .landing-clean .map-viewport {
    min-height: 280px;
  }
  .landing-clean .pin-detail.map-pin-card {
    padding: 8px 10px;
  }
  .landing-clean .pin-detail .pd-actions {
    flex-direction: column;
  }
  .landing-clean .pin-detail .pd-actions .btn {
    width: 100%;
  }
  .landing-clean .pin-detail.map-pin-card .pd-actions .btn {
    font-size: 0.78rem;
  }
  .ready-slim .ready-card {
    flex-direction: row;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ready-card:hover,
  .btn:hover {
    transform: none;
  }
  .pin-detail.map-pin-card {
    animation: none;
  }
}

.story-extras-note {
  margin: 0.75rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted-soft, #5a6b82);
  line-height: 1.45;
}
.story-extras-note a { font-weight: 650; }

/* Place type tabs under Field Trip Kit header */
.place-type-tabs {
  display: flex;
  justify-content: center;
  padding: 0 12px 4px;
  margin: -2px 0 4px;
}
.place-type-seg {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 100%;
  border-radius: 999px;
  border: 1.5px solid rgba(15, 92, 92, 0.16);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(21, 34, 56, 0.04);
}
.place-type-tab {
  appearance: none;
  margin: 0;
  border: none;
  border-right: 1px solid rgba(15, 92, 92, 0.1);
  background: transparent;
  color: #3d4f6f;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 750;
  padding: 10px 16px;
  min-height: 42px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: background 0.12s ease, color 0.12s ease;
}
a.place-type-tab {
  color: inherit;
}
.place-type-tab:last-child {
  border-right: none;
}
.place-type-tab:hover {
  background: #f0faf6;
  color: #0a4545;
}
.place-type-tab.is-active {
  background: #0f5c5c;
  color: #fff;
}
.place-type-tab:focus-visible {
  outline: 2px solid rgba(15, 92, 92, 0.45);
  outline-offset: -2px;
  z-index: 1;
}
.seo-dir-empty {
  margin: 0.5rem 0 0;
  font-weight: 650;
  color: #5a6b82;
}
@media (max-width: 480px) {
  .place-type-tab {
    flex: 1 1 auto;
    padding: 9px 10px;
    font-size: 0.8rem;
    min-height: 40px;
  }
}

/* Map pin panel — park hero */
.pd-park-hero {
  margin: 0.35rem 0 0.65rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(15, 92, 92, 0.12);
  background: #e8f2ee;
  aspect-ratio: 16 / 10;
  max-height: 160px;
}
.pd-park-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* —— T4 paired artifacts + Before/During/After —— */
.pitch-artifacts {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0;
  position: relative;
  width: 100%;
  max-width: 280px;
  justify-self: end;
}
.pitch-artifact-mission {
  max-width: 200px;
  z-index: 2;
}
.pitch-artifact-card {
  max-width: 132px;
  margin-left: -36px !important;
  z-index: 1;
  margin-bottom: 18px !important;
}
.pitch-artifact-card .pitch-artifact-img {
  transform: rotate(-4deg);
  max-height: 200px;
  object-fit: cover;
}
.pitch-artifact-card .pitch-artifact-link:hover .pitch-artifact-img {
  transform: rotate(-2deg) translateY(-2px);
}
.pitch-cards-link {
  color: #0f5c5c;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(15, 92, 92, 0.28);
  font-weight: 750;
}
.pitch-cards-link:hover,
.pitch-cards-link:focus-visible {
  border-bottom-color: #0f5c5c;
  outline: none;
}
.hero-moments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.hero-moments li {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 92, 92, 0.06);
  border: 1px solid rgba(15, 92, 92, 0.1);
}
.hero-moment-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f5c5c;
  margin-bottom: 0.25rem;
}
.hero-moment-text {
  font-size: 0.86rem;
  font-weight: 650;
  color: #0a4545;
  line-height: 1.35;
}
.hero-moment-link {
  color: #0f5c5c;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 720px) {
  .pitch-artifacts {
    max-width: none;
    justify-content: center;
    order: 3;
    margin-top: 4px;
  }
  .pitch-artifact-mission {
    max-width: 180px;
  }
  .pitch-artifact-card {
    max-width: 110px;
    margin-left: -28px !important;
    margin-bottom: 12px !important;
  }
  .pitch-artifact-mission .pitch-artifact-img {
    max-height: 210px;
  }
  .hero-moments {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 721px) {
  .pitch-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(200px, 0.85fr);
  }
}

/* —— T5 compact catalog —— */
.seo-dir-body-compact {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.cat-cards-h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: #0a4545;
}
.cat-cards-blurb {
  margin: 0 0 0.85rem;
  color: #3d4f6f;
  font-size: 0.98rem;
  line-height: 1.4;
  max-width: 36rem;
}
.cat-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.cat-pill {
  appearance: none;
  border: 1.5px solid rgba(15, 92, 92, 0.18);
  background: #fff;
  color: #0a4545;
  font-weight: 750;
  font-size: 0.88rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  min-height: 40px;
}
.cat-pill.is-active,
.cat-pill[aria-pressed="true"] {
  background: #0f5c5c;
  color: #fff;
  border-color: #0f5c5c;
}
.cat-pill:focus-visible {
  outline: 3px solid #ffcf5a;
  outline-offset: 2px;
}
.cat-card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
@media (min-width: 720px) {
  .cat-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.cat-card-tile {
  margin: 0;
}
.cat-card-tile[hidden] {
  display: none !important;
}
.cat-card-grid {
  gap: 0.65rem;
}
.cat-card-tile-link {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1.5px solid var(--silo-cards-border, rgba(196, 92, 38, 0.22));
  background: #fff;
  text-decoration: none;
  color: inherit;
  min-height: 0;
}
.cat-card-tile-link:hover,
.cat-card-tile-link:focus-visible {
  border-color: var(--silo-cards, #c45c26);
  outline: 2px solid var(--silo-cards, #c45c26);
  outline-offset: 2px;
}
.cat-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: #f4f1ea;
  overflow: hidden;
}
.cat-card-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
.cat-card-media-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-card-emoji {
  font-size: 2.4rem;
  line-height: 1;
}
.cat-card-name {
  display: block;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1.25;
  color: #0a4545;
  padding: 0.5rem 0.55rem 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-cards-all {
  margin: 0.85rem 0 0;
  font-weight: 800;
}
.cat-cards-all a {
  color: #0f5c5c;
}
.vz-landing-promo {
  margin: 0.85rem 0 0;
}
.vz-landing-promo a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: #fff7ee;
  border: 1.5px solid rgba(196, 92, 38, 0.28);
  color: #c45c26;
  font-weight: 800;
  text-decoration: none;
  min-height: 48px;
}
.vz-landing-promo a:hover,
.vz-landing-promo a:focus-visible {
  outline: 2px solid #c45c26;
  outline-offset: 2px;
}
.cat-places-h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: #0a4545;
}
.cat-place-hubs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
@media (min-width: 800px) {
  .cat-place-hubs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.cat-place-hub {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.7rem;
  min-height: 44px;
  border-radius: 12px;
  border: 1.5px solid rgba(15, 92, 92, 0.14);
  background: #fff;
  text-decoration: none;
  color: inherit;
}
.cat-place-hub:hover,
.cat-place-hub:focus-visible {
  border-color: #0f5c5c;
  outline: 2px solid #0f5c5c;
  outline-offset: 2px;
}
.cat-place-emoji {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}
.cat-place-label {
  font-weight: 800;
  font-size: 0.88rem;
  color: #0a4545;
  min-width: 0;
  line-height: 1.2;
}
.cat-place-count {
  margin-left: auto;
  font-weight: 750;
  color: #0f5c5c;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.cat-popular {
  margin-top: 1rem;
}
.cat-popular-label {
  margin: 0 0 0.45rem;
  font-size: 0.85rem;
  font-weight: 750;
  color: #5a6a84;
}
.cat-popular-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.cat-popular-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid rgba(15, 92, 92, 0.14);
  color: #0a4545;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
}
.cat-popular-chip:hover,
.cat-popular-chip:focus-visible {
  border-color: #0f5c5c;
  outline: 2px solid #0f5c5c;
  outline-offset: 2px;
}

/* —— Journey spine + Place/Cards silos —— */
:root {
  --silo-place: #0f5c5c;
  --silo-place-soft: rgba(15, 92, 92, 0.08);
  --silo-place-border: rgba(15, 92, 92, 0.22);
  --silo-cards: #c45c26;
  --silo-cards-soft: rgba(196, 92, 38, 0.1);
  --silo-cards-border: rgba(196, 92, 38, 0.28);
}

.silo-chip {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  margin: 0;
}
.silo-chip-place {
  background: var(--silo-place-soft);
  color: var(--silo-place);
  border: 1px solid var(--silo-place-border);
}
.silo-chip-cards {
  background: var(--silo-cards-soft);
  color: #9a3f12;
  border: 1px solid var(--silo-cards-border);
}

.hero-search-mode {
  display: inline-flex;
  padding: 3px;
  gap: 2px;
  margin: 0 0 0.55rem;
  border-radius: 999px;
  background: rgba(15, 34, 56, 0.06);
  border: 1px solid rgba(15, 34, 56, 0.08);
}
.hero-mode-btn {
  appearance: none;
  border: 0;
  background: transparent;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  color: #3d4f6f;
  min-height: 36px;
}
.hero-mode-btn.is-active[data-search-mode="place"] {
  background: var(--silo-place);
  color: #fff;
}
.hero-mode-btn.is-active[data-search-mode="card"] {
  background: var(--silo-cards);
  color: #fff;
}
.hero-mode-btn:focus-visible {
  outline: 3px solid #ffcf5a;
  outline-offset: 2px;
}
#hero-search-block[data-search-mode="card"] .hero-search-submit {
  background: var(--silo-cards);
  border-color: var(--silo-cards);
  box-shadow: 0 6px 18px rgba(196, 92, 38, 0.22);
}
#hero-search-block[data-search-mode="card"] .hero-place-search-input:focus {
  border-color: var(--silo-cards);
}

.pitch-jumps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 750;
}
.pitch-jump {
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
}
.silo-place-link {
  color: var(--silo-place);
  border-bottom-color: rgba(15, 92, 92, 0.28);
}
.silo-cards-link {
  color: var(--silo-cards);
  border-bottom-color: rgba(196, 92, 38, 0.35);
}
.pitch-jump:hover {
  border-bottom-color: currentColor;
}
.pitch-jump-dot {
  color: #9aa8bc;
}

.pitch-artifact.silo-place .pitch-artifact-img {
  border-color: var(--silo-place-border);
  box-shadow: 6px 8px 0 rgba(15, 92, 92, 0.08), 0 12px 28px rgba(21, 34, 56, 0.1);
}
.pitch-artifact.silo-cards .pitch-artifact-img {
  border-color: var(--silo-cards-border);
  box-shadow: 6px 8px 0 rgba(196, 92, 38, 0.1), 0 12px 28px rgba(21, 34, 56, 0.1);
}
.pitch-artifact.silo-cards .pitch-artifact-cap {
  color: #9a3f12;
}

/* Journey moments as nav cards */
nav.hero-moments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 8px 0 0;
  padding: 0;
}
a.hero-moment {
  display: block;
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 92, 92, 0.06);
  border: 1px solid rgba(15, 92, 92, 0.12);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}
a.hero-moment:hover,
a.hero-moment:focus-visible {
  border-color: var(--silo-place);
  outline: none;
  transform: translateY(-1px);
}
a.hero-moment#hero-after-link {
  background: var(--silo-cards-soft);
  border-color: var(--silo-cards-border);
}
a.hero-moment#hero-after-link:hover,
a.hero-moment#hero-after-link:focus-visible {
  border-color: var(--silo-cards);
}
@media (max-width: 720px) {
  nav.hero-moments {
    grid-template-columns: 1fr;
  }
}

.journey-section {
  margin: 1.75rem 0 0.5rem;
  padding: 1.15rem 0 0.25rem;
  scroll-margin-top: 5.75rem;
}
#about,
#faq,
#cat-cards-showcase {
  scroll-margin-top: 5.75rem;
}
.journey-head {
  margin: 0 0 1rem;
  max-width: 40rem;
}
.journey-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 750;
  color: #5a6a84;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}
.journey-head h2,
.during-heading {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  color: #0a4545;
}
.journey-lead {
  margin: 0;
  color: #3d4f6f;
  font-size: 0.98rem;
  line-height: 1.4;
}
.journey-during {
  padding: 1rem 0.75rem 1.25rem;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--silo-place-soft), transparent 120px);
  border: 1.5px solid var(--silo-place-border);
}
.journey-after {
  padding: 1rem 0.75rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--silo-cards-soft), transparent 100px);
  border: 1.5px solid var(--silo-cards-border);
}
.journey-before {
  padding: 0.25rem 0;
}

.before-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 720px) {
  .before-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.before-panel {
  padding: 1rem 1rem 1.1rem;
  border-radius: 14px;
  border: 1.5px solid transparent;
  background: #fff;
}
.before-panel.silo-place {
  border-color: var(--silo-place-border);
  box-shadow: 0 8px 20px rgba(15, 92, 92, 0.06);
}
.before-panel.silo-cards {
  border-color: var(--silo-cards-border);
  box-shadow: 0 8px 20px rgba(196, 92, 38, 0.07);
}
.before-panel-title {
  margin: 0.45rem 0 0.35rem;
  font-size: 1.05rem;
  color: #0a4545;
}
.before-panel-text {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: #3d4f6f;
  line-height: 1.4;
}
.before-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  align-items: center;
  margin: 0;
}
.before-text-link {
  font-weight: 750;
  font-size: 0.9rem;
  color: var(--silo-place);
}
.before-panel.silo-cards .before-text-link {
  color: var(--silo-cards);
}
.before-panel .btn-secondary {
  background: #fff;
  color: var(--silo-cards);
  border: 1.5px solid var(--silo-cards-border);
  font-weight: 800;
}

.during-places {
  margin-top: 1.25rem;
  padding-top: 0.5rem;
}
.during-places .cat-places-h3 {
  margin-bottom: 0.65rem;
}
.during-places .cat-place-hub {
  border-color: var(--silo-place-border);
}
.during-places .cat-popular-chip {
  border-color: var(--silo-place-border);
}

.journey-after .cat-card-tile-link {
  border-color: var(--silo-cards-border);
}
.journey-after .cat-pill.is-active,
.journey-after .cat-pill[aria-pressed="true"] {
  background: var(--silo-cards);
  border-color: var(--silo-cards);
}
.journey-after .cat-cards-all a {
  color: var(--silo-cards);
}

.during-map-anchor {
  position: relative;
  top: -0.5rem;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Type tabs live with the map (not site chrome above hero) */
.place-type-tabs-map {
  justify-content: flex-start;
  padding: 0 0 10px;
  margin: 0 0 4px;
}
.journey-during .place-type-tabs-map .place-type-seg {
  border-color: var(--silo-place-border, rgba(15, 92, 92, 0.22));
  box-shadow: 0 2px 8px rgba(15, 92, 92, 0.06);
}
.place-type-tabs-map .place-type-tab {
  padding: 8px 14px;
  min-height: 38px;
  font-size: 0.84rem;
}
@media (max-width: 480px) {
  .place-type-tabs-map {
    justify-content: stretch;
  }
  .place-type-tabs-map .place-type-seg {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
  }
  .place-type-tabs-map .place-type-tab {
    padding: 8px 4px;
    font-size: 0.72rem;
    min-height: 40px;
    min-width: 0;
    flex: unset;
    border-right: none;
    border-left: 1px solid rgba(15, 92, 92, 0.1);
  }
  .place-type-tabs-map .place-type-tab:first-child {
    border-left: none;
  }
}

/* —— T4b: moment-strip hero —— */
.landing-pitch-t4b {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0 0 1rem;
  padding: 4px 2px 8px;
  max-width: 40rem;
}
.landing-pitch-t4b #pitch-heading {
  margin: 0 0 10px;
  font-size: clamp(1.28rem, 5.2vw, 1.75rem);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--teal-deep, #0a4545);
  max-width: none;
}

.hero-moment-strip {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.hero-moment-card {
  margin: 0;
  min-width: 0;
}
.hero-moment-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  border: 1.5px solid rgba(15, 92, 92, 0.14);
  background: #fff;
  overflow: hidden;
  min-height: 44px;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
}
.hero-moment-card.silo-cards .hero-moment-link {
  border-color: var(--silo-cards-border, rgba(196, 92, 38, 0.28));
}
.hero-moment-card.silo-place .hero-moment-link {
  border-color: var(--silo-place-border, rgba(15, 92, 92, 0.22));
}
.hero-moment-link:hover,
.hero-moment-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 6px 16px rgba(21, 34, 56, 0.1);
}
.hero-moment-card.silo-cards .hero-moment-link:hover,
.hero-moment-card.silo-cards .hero-moment-link:focus-visible {
  border-color: var(--silo-cards, #c45c26);
}
.hero-moment-card.silo-place .hero-moment-link:hover,
.hero-moment-card.silo-place .hero-moment-link:focus-visible {
  border-color: var(--silo-place, #0f5c5c);
}
.hero-moment-kicker {
  display: block;
  padding: 5px 6px 3px;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #5a6a84;
}
.hero-moment-card.silo-cards .hero-moment-kicker {
  color: #9a3f12;
  background: var(--silo-cards-soft, rgba(196, 92, 38, 0.08));
}
.hero-moment-card.silo-place .hero-moment-kicker {
  color: var(--silo-place, #0f5c5c);
  background: var(--silo-place-soft, rgba(15, 92, 92, 0.07));
}
.hero-moment-visual {
  display: block;
  aspect-ratio: 180 / 234;
  background: #f4f1ea;
  overflow: hidden;
}
.hero-moment-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-moment-label {
  display: block;
  padding: 6px 6px 8px;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.25;
  color: #0a4545;
  /* keep labels from colliding with kicker for plain text extractors */
}

.landing-pitch-t4b .pitch-cta-block {
  margin: 0 0 8px;
  max-width: none;
}
.landing-pitch-t4b .pitch-trust-strip {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.35;
  color: #5a6b82;
  max-width: none;
}

/* Desktop: larger vignettes, still 3-across single column */
@media (min-width: 720px) {
  .landing-pitch-t4b {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }
  .landing-pitch-t4b #pitch-heading {
    font-size: clamp(1.55rem, 2.5vw, 1.95rem);
    text-align: center;
    margin-bottom: 14px;
  }
  .hero-moment-strip {
    gap: 10px;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-moment-kicker {
    font-size: 0.7rem;
    padding: 7px 8px 4px;
  }
  .hero-moment-label {
    font-size: 0.78rem;
    padding: 8px 8px 10px;
  }
  .landing-pitch-t4b .pitch-cta-block {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }
  .landing-pitch-t4b .pitch-trust-strip {
    text-align: center;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .hero-moment-strip {
    max-width: 40rem;
    gap: 12px;
  }
}


/* First-visit cue: Cards mode is tappable (motion-safe) */
@keyframes hero-mode-cue-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 92, 38, 0); transform: scale(1); }
  40% { box-shadow: 0 0 0 4px rgba(196, 92, 38, 0.28); transform: scale(1.04); }
  70% { box-shadow: 0 0 0 0 rgba(196, 92, 38, 0.12); transform: scale(1.02); }
}
.hero-mode-btn.hero-mode-cue {
  animation: hero-mode-cue-pulse 1.3s ease-in-out 0s 2;
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-mode-btn.hero-mode-cue {
    animation: none;
    outline: 2px solid rgba(196, 92, 38, 0.55);
    outline-offset: 2px;
  }
}
.hero-search-mode {
  position: relative;
}
.hero-search-mode::after {
  /* quiet always-on hint under the segment on very first paint context - skip, use title on group */
  content: none;
}

.hero-search-mode-hint {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 650;
  color: #5a6a84;
  line-height: 1.3;
}
.hero-search-mode-hint strong {
  font-weight: 800;
  color: #0a4545;
}
#hero-search-block[data-search-mode="card"] .hero-search-mode-hint strong:last-child {
  color: var(--silo-cards, #c45c26);
}
#hero-search-block[data-search-mode="place"] .hero-search-mode-hint strong:first-child {
  color: var(--silo-place, #0f5c5c);
}

.place-type-tabs-cards {
  justify-content: flex-start;
  padding: 0 0 12px;
  margin: 0.35rem 0 0.25rem;
}
@media (max-width: 480px) {
  .place-type-tabs-cards .place-type-seg {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }
  .place-type-tabs-cards .place-type-tab {
    padding: 8px 4px;
    font-size: 0.72rem;
    min-height: 40px;
    min-width: 0;
    flex: unset;
    border-right: none;
    border-left: 1px solid rgba(196, 92, 38, 0.18);
  }
  .place-type-tabs-cards .place-type-tab:first-child {
    border-left: none;
  }
}
.journey-after .place-type-tabs-cards .place-type-seg,
.cards-hub .place-type-tabs-cards .place-type-seg {
  border-color: var(--silo-cards-border, rgba(196, 92, 38, 0.28));
}
.journey-after .place-type-tabs-cards .place-type-tab.is-active,
.cards-hub .place-type-tabs-cards .place-type-tab.is-active {
  background: var(--silo-cards, #c45c26);
  color: #fff;
}
