/* ==========================================================================
   DUSTYWALKS77 — COMPONENTS
   Buttons, pillars, stats, cards, contact band, suggestion panel.
   ========================================================================== */

/* ==========================================================================
   BUTTONS
   Every button clears the 44x44px touch target minimum.
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.7rem 1.4rem;
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform var(--d-fast) var(--e-out),
              background var(--d-fast) var(--e-soft),
              border-color var(--d-fast) var(--e-soft),
              box-shadow var(--d-fast) var(--e-soft),
              color var(--d-fast) var(--e-soft);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--c-charcoal);
  color: #fff;
  box-shadow: var(--sh-md);
}
.btn--primary:hover { background: #1d2530; color: #fff; }

.btn--secondary {
  background: #fff;
  color: var(--c-charcoal);
  border-color: var(--c-charcoal);
}
.btn--secondary:hover { background: var(--c-sun); color: var(--c-charcoal); }

.btn--ghost {
  background: transparent;
  color: var(--c-charcoal);
  border-color: rgba(16, 20, 25, 0.28);
}
.btn--ghost:hover { border-color: var(--c-charcoal); background: rgba(255, 255, 255, 0.4); }

/* "Suggest a Cleanup" — deliberately the odd one out in the nav. */
.btn--suggest {
  background: var(--c-orange);
  color: #fff;
  box-shadow: 0 2px 0 #a83206;
}
.btn--suggest:hover { background: #e04d1f; color: #fff; }

.btn--sun {
  background: var(--c-sun);
  color: var(--c-charcoal);
  box-shadow: 0 2px 0 #c9b400;
}
.btn--sun:hover { background: #ffec5c; }

.btn--sm { min-height: 2.75rem; padding: 0.5rem 1.1rem; font-size: var(--t-xs); }

.btn--block { width: 100%; }

.btn[aria-disabled="true"],
.btn:disabled {
  background: var(--c-line);
  color: var(--c-ink-faint);
  border-color: transparent;
  box-shadow: none;
  cursor: not-allowed;
}

.btn .icon { width: 1.05em; height: 1.05em; flex: none; }

/* ==========================================================================
   THREE PILLARS
   One connected journey, drawn as three linked panels rather than three
   unrelated cards.
   ========================================================================== */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  position: relative;
}
@media (max-width: 58rem) { .pillars { grid-template-columns: 1fr; gap: var(--s-4); } }

/* The thread that ties the three together. */
.pillars::before {
  content: "";
  position: absolute;
  top: 3.25rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg,
    var(--c-line) 0 10px, transparent 10px 20px);
  z-index: 0;
}
@media (max-width: 58rem) {
  .pillars::before {
    top: 4rem; bottom: 4rem; left: 2.25rem; right: auto;
    width: 2px; height: auto;
    background: repeating-linear-gradient(180deg,
      var(--c-line) 0 10px, transparent 10px 20px);
  }
}

.pillar {
  position: relative;
  z-index: 1;
  background: var(--c-surface);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-organic);
  padding: var(--s-6) var(--s-5) var(--s-5);
  transition: transform var(--d-base) var(--e-out),
              box-shadow var(--d-base) var(--e-out),
              border-color var(--d-base) var(--e-soft);
}
.pillar:nth-child(even) { border-radius: var(--r-organic-alt); }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

/* Each pillar carries a number AND an icon AND a color — never color alone. */
.pillar__badge {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: var(--s-4);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: 0 0 0 5px var(--c-surface);
}
.pillar__badge .icon { width: 1.6rem; height: 1.6rem; }

.pillar--mind      { border-color: color-mix(in srgb, var(--c-purple) 32%, var(--c-line)); }
.pillar--mind .pillar__badge      { background: var(--c-purple); }
.pillar--health    { border-color: color-mix(in srgb, var(--c-sky) 42%, var(--c-line)); }
.pillar--health .pillar__badge    { background: var(--c-sky-ink); }
.pillar--community { border-color: color-mix(in srgb, var(--c-grass) 42%, var(--c-line)); }
.pillar--community .pillar__badge { background: var(--c-grass-ink); }

.pillar__step {
  font-family: var(--font-display);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-faint);
  display: block;
  margin-bottom: 0.35rem;
}
.pillar h3 { margin-bottom: var(--s-3); }
.pillar p { color: var(--c-ink-soft); font-size: var(--t-sm); }

.pillar__tags {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.pillar__tags li {
  font-size: var(--t-xs);
  font-weight: 550;
  padding: 0.28rem 0.6rem;
  border-radius: var(--r-pill);
  background: var(--c-surface-2);
  color: var(--c-ink-soft);
  white-space: nowrap;
}

/* ==========================================================================
   STATS / MILESTONES
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
@media (max-width: 60rem) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 24rem) { .stats { grid-template-columns: 1fr; } }

.stat {
  background: var(--c-dark-sub);
  border: 1px solid var(--c-dark-line);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-4);
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  color: var(--c-sun);
  letter-spacing: -0.03em;
  /* Reserves height so the count-up animation causes zero layout shift. */
  display: block;
  font-variant-numeric: tabular-nums;
}
.stat__unit { font-size: 0.5em; margin-left: 0.1em; }

.stat__label {
  display: block;
  margin-top: var(--s-3);
  font-size: var(--t-sm);
  font-weight: 600;
  color: #fff;
}
.stat__note {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--t-xs);
  color: var(--c-dark-faint);
  line-height: 1.4;
}

.stats__asof {
  margin-top: var(--s-5);
  font-size: var(--t-xs);
  color: var(--c-dark-faint);
  text-align: center;
}

/* ==========================================================================
   CARD GRID (shared by cleanups, press, follow, support)
   ========================================================================== */

.grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 19rem), 1fr));
}
/* Press reads as a list, not a gallery: one column of wide cards, so a
   single entry looks deliberate and twenty still look tidy. */
.grid--press { grid-template-columns: 1fr; max-width: 54rem; }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--d-base) var(--e-out),
              box-shadow var(--d-base) var(--e-out),
              border-color var(--d-base) var(--e-soft);
}
.card:has(a:hover), .card:has(a:focus-visible) {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: color-mix(in srgb, var(--c-sky) 45%, var(--c-line));
}

/* Whole card is clickable, but only the real <a> is in the tab order. */
.card__link::after { content: ""; position: absolute; inset: 0; }

.card__media {
  aspect-ratio: 16 / 10;
  background: var(--c-surface-2);
  position: relative;
  overflow: hidden;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }

/* Labelled placeholder for imagery we do not have yet. Replace the <img>
   inside .card__media and this disappears. */
.media-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.5rem;
  justify-items: center;
  padding: var(--s-4);
  text-align: center;
  background:
    repeating-linear-gradient(135deg,
      var(--c-surface-2) 0 12px,
      #e4edf5 12px 24px);
  color: var(--c-ink-faint);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.media-placeholder .icon { width: 1.6rem; height: 1.6rem; opacity: 0.7; }

.card__body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.card__body > * { margin: 0; }

.card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.75rem;
  font-size: var(--t-xs);
  color: var(--c-ink-faint);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.card__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }

.card__title { font-size: var(--t-lg); }
.card__title a { color: inherit; text-decoration: none; }
.card__title a:hover { text-decoration: underline; }

.card__text { font-size: var(--t-sm); color: var(--c-ink-soft); }

.card__foot {
  margin-top: auto;
  padding-top: var(--s-2);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--t-sm);
  font-weight: 650;
  color: var(--c-sky-ink);
}
.card__foot .icon { width: 0.95em; height: 0.95em; }

/* Facts strip on a cleanup card. */
.card__facts {
  list-style: none;
  margin: 0;
  padding: var(--s-3) 0 0;
  border-top: 1px dashed var(--c-line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-5);
}
.card__facts div { font-size: var(--t-xs); }
.card__facts dt { color: var(--c-ink-faint); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.card__facts dd { margin: 0.1rem 0 0; font-family: var(--font-display); font-weight: 700; font-size: var(--t-sm); color: var(--c-ink); }

/* Outlet badge on a press card. */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.6rem;
  border-radius: var(--r-pill);
  background: var(--c-charcoal);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge--tv { background: var(--c-orange-ink); }
.badge--soft { background: var(--c-surface-2); color: var(--c-ink-soft); }

/* ==========================================================================
   FOLLOW / SOCIAL
   ========================================================================== */

.socials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: var(--s-4);
}

.social {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background: var(--c-surface);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--c-ink);
  min-height: 4.5rem;
  transition: transform var(--d-base) var(--e-out),
              box-shadow var(--d-base) var(--e-out),
              border-color var(--d-base) var(--e-soft);
}
.social:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--c-charcoal);
  color: var(--c-ink);
}
.social__icon {
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--c-surface-2);
  color: var(--c-charcoal);
  flex: none;
}
.social__icon .icon { width: 1.35rem; height: 1.35rem; }
.social__name { font-family: var(--font-display); font-weight: 700; display: block; }
.social__handle { font-size: var(--t-xs); color: var(--c-ink-faint); }

/* ==========================================================================
   CONTACT / PRESS BAND
   ========================================================================== */

.contact-band {
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 140% at 88% 10%, rgba(67, 167, 215, 0.35) 0%, transparent 55%),
    radial-gradient(110% 130% at 6% 92%, rgba(44, 175, 93, 0.28) 0%, transparent 55%),
    var(--c-dark-sub);
  border: 1px solid var(--c-dark-line);
  padding: clamp(var(--s-6), 5vw, var(--s-8));
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: var(--s-7);
  align-items: center;
}
@media (max-width: 56rem) { .contact-band { grid-template-columns: 1fr; gap: var(--s-6); } }

.contact-band__email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.75rem;   /* 44px tap target */
  padding-block: 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.6vw, 1.6rem);
  font-weight: 700;
  color: var(--c-sun);
  text-decoration: none;
  word-break: break-word;
  border-bottom: 2px solid transparent;
}
.contact-band__email:hover { color: var(--c-sun); border-bottom-color: var(--c-sun); }
.contact-band__email .icon { width: 1.1em; height: 1.1em; flex: none; }

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.contact-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: var(--t-sm);
  color: var(--c-dark-text);
}
.contact-list .icon { width: 1.1rem; height: 1.1rem; color: var(--c-grass); flex: none; margin-top: 0.2rem; }

/* ==========================================================================
   SUGGEST A CLEANUP
   The interface is built; submission is not live yet, and the UI says so
   rather than pretending a message was sent.
   ========================================================================== */

.suggest {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(var(--s-6), 5vw, var(--s-8));
  align-items: start;
}
@media (max-width: 58rem) { .suggest { grid-template-columns: 1fr; } }

.suggest__panel {
  background: var(--c-surface);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: clamp(var(--s-5), 4vw, var(--s-7));
  box-shadow: var(--sh-sm);
}

.notice {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  padding: var(--s-4);
  margin-bottom: var(--s-5);
  border-radius: var(--r-md);
  background: #fff8d6;
  border: 1.5px solid #e8d67a;
  color: #4a3d00;
  font-size: var(--t-sm);
}
.notice .icon { width: 1.25rem; height: 1.25rem; flex: none; margin-top: 0.1rem; }
.notice strong { display: block; margin-bottom: 0.15rem; }

.field { margin-bottom: var(--s-4); }
.field label {
  display: block;
  font-size: var(--t-sm);
  font-weight: 650;
  margin-bottom: 0.35rem;
  color: var(--c-ink);
}
.field .hint {
  display: block;
  font-size: var(--t-xs);
  font-weight: 400;
  color: var(--c-ink-faint);
  margin-top: 0.15rem;
}
.field input,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.9rem;
  font: inherit;
  font-size: var(--t-sm);
  color: var(--c-ink);
  background: var(--c-surface-2);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
}
.field textarea { min-height: 6.5rem; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8a95a1; }
.field input:disabled, .field textarea:disabled {
  cursor: not-allowed;
  background: #f1f5f8;
  color: var(--c-ink-faint);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 34rem) { .field-row { grid-template-columns: 1fr; gap: 0; } }

/* ==========================================================================
   SUPPORT
   ========================================================================== */

.support-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  gap: var(--s-4);
  margin-top: var(--s-6);
}
.support {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: var(--s-5);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  border: 1.5px solid var(--c-line);
  text-decoration: none;
  color: var(--c-ink);
  min-height: 5rem;
  transition: transform var(--d-base) var(--e-out),
              border-color var(--d-base) var(--e-soft),
              box-shadow var(--d-base) var(--e-out);
}
.support:hover {
  transform: translateY(-3px);
  border-color: var(--c-grass-ink);
  box-shadow: var(--sh-md);
  color: var(--c-ink);
}
.support__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-lg);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.support__name .icon { width: 0.85em; height: 0.85em; color: var(--c-ink-faint); }
.support__note { font-size: var(--t-sm); color: var(--c-ink-soft); }

/* Free ways to help, listed first because they matter more than money. */
.help-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-3);
}
.help-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: var(--t-base);
}
.help-list .icon { width: 1.2rem; height: 1.2rem; color: var(--c-grass-ink); flex: none; margin-top: 0.28rem; }

/* ==========================================================================
   STORY
   ========================================================================== */

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(var(--s-6), 5vw, var(--s-8));
  align-items: start;
}
@media (max-width: 58rem) { .story { grid-template-columns: 1fr; } }

.story__body p { font-size: var(--t-lg); color: var(--c-ink-soft); }
.story__body p:first-of-type { color: var(--c-ink); }

.story__body .pull {
  margin: var(--s-6) 0;
  padding: var(--s-5) var(--s-5) var(--s-5) var(--s-6);
  border-left: 4px solid var(--c-grass);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--c-surface-2);
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 600;
  line-height: 1.35;
  color: var(--c-ink);
}

.story__aside {
  position: sticky;
  top: calc(var(--header-h) + var(--s-5));
  background: var(--c-surface);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: var(--s-5);
}
@media (max-width: 58rem) { .story__aside { position: static; } }

.factlist { list-style: none; margin: 0; padding: 0; }
.factlist li {
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--c-line);
  display: grid;
  gap: 0.15rem;
}
.factlist li:last-child { border-bottom: 0; padding-bottom: 0; }
.factlist dt, .factlist .k {
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--c-ink-faint);
}
.factlist dd, .factlist .v {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: var(--t-base);
  color: var(--c-ink);
}
.factlist a { color: var(--c-sky-ink); }

/* ==========================================================================
   SUN MOTIF — the secondary brand mark.
   assets/img/sun-mark.png is a straight crop of the sunglasses sun from the
   original artwork. It is not a redraw, and it is the same image used for
   the favicon and touch icon.
   ========================================================================== */

/* The motif deliberately hangs past the section edge, so the section clips. */
.section--motif { overflow: hidden; }

.sun-motif {
  position: absolute;
  top: -3rem;
  right: clamp(-3rem, -2vw, 1rem);
  width: clamp(9rem, 18vw, 16rem);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.13;
  pointer-events: none;
  filter: saturate(1.15);
  animation: sun-turn 140s linear infinite;
}
.sun-motif img { width: 100%; height: 100%; border-radius: 50%; }

@keyframes sun-turn { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .sun-motif { animation: none; } }

/* ==========================================================================
   MISC
   ========================================================================== */

.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon--fill { fill: currentColor; stroke: none; }

.divider-note {
  text-align: center;
  font-size: var(--t-sm);
  color: var(--c-ink-faint);
  margin-top: var(--s-6);
}

.empty-state {
  grid-column: 1 / -1;
  padding: var(--s-7) var(--s-5);
  text-align: center;
  border: 2px dashed var(--c-line);
  border-radius: var(--r-xl);
  color: var(--c-ink-faint);
}
.empty-state h3 { color: var(--c-ink); margin-bottom: var(--s-2); }

/* ---- Press card: horizontal on anything wider than a phone -------------- */
@media (min-width: 40rem) {
  .grid--press .card {
    flex-direction: row;
    align-items: stretch;
  }
  .grid--press .card__media {
    flex: none;
    width: 15rem;
    aspect-ratio: auto;
  }
}

/* ==========================================================================
   REAL PHOTOGRAPHY
   Photos of Dusty, as opposed to the drawing. Every one of these is a real
   supplied photograph — nothing here is generated.
   ========================================================================== */

/* ---- Hero: the real Dusty, overlapping his daughter's drawing ----------- */
.hero__real {
  position: absolute;
  left: -1.25rem;
  /* Sits over the lower-left of the drawing, clear of the artwork credit
     line that follows it. */
  bottom: 3.75rem;
  z-index: 3;
  margin: 0;
  width: clamp(6rem, 9vw, 8.5rem);
  text-align: center;
}
.hero__real img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 50%;
  /* Same double ring as the header logo mark, so the drawing and the
     photograph read as two halves of one identity. */
  box-shadow: 0 0 0 4px var(--c-white), 0 0 0 6px var(--c-charcoal), var(--sh-md);
}
.hero__real figcaption {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--c-charcoal);
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--r-pill);
  padding: 0.15rem 0.55rem;
  display: inline-block;
}
@media (max-width: 30rem) {
  .hero__real { left: -0.5rem; bottom: 3rem; width: 5.5rem; }
  .hero__real figcaption { font-size: 0.6875rem; }
}

/* ---- Story: the tall walking shot --------------------------------------- */
.story__photo {
  margin: 0 0 var(--s-5);
  border-radius: var(--r-organic);
  overflow: hidden;
  background: var(--c-surface-2);
}
.story__photo img {
  width: 100%;
  /* The original is very tall (900x2020). This frames Dusty from head to knee
     rather than letting the shot run the whole height of the column. Adjust
     the ratio and object-position here -- never crop the source file. */
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 6%;
}
.story__photo figcaption {
  padding: var(--s-3) var(--s-4);
  font-size: var(--t-xs);
  color: var(--c-ink-faint);
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
}

/* ---- Cleanups: photo beside the explanation ----------------------------- */
.mission-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(var(--s-5), 4vw, var(--s-8));
  align-items: center;
  margin-bottom: var(--s-7);
}
@media (max-width: 58rem) {
  .mission-split { grid-template-columns: 1fr; }
}

.mission-split__photo {
  margin: 0;
  border-radius: var(--r-organic-alt);
  overflow: hidden;
  background: var(--c-surface-2);
  box-shadow: var(--sh-md);
}
.mission-split__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.mission-split__photo figcaption {
  padding: var(--s-3) var(--s-4);
  font-size: var(--t-xs);
  color: var(--c-ink-faint);
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
}

.mission-split__body h3 { margin-bottom: var(--s-4); }
.mission-split__body p { color: var(--c-ink-soft); }
.mission-split__body .help-list { margin-top: var(--s-5); }
.mission-split__body .help-list li { font-size: var(--t-sm); }

/* Quiet inline note used where a card list is legitimately empty. */
.empty-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: var(--s-4) var(--s-5);
  border-left: 3px solid var(--c-line);
  font-size: var(--t-sm);
  color: var(--c-ink-faint);
  max-width: 44rem;
}

/* The email route people can actually use while the form is switched off. */
.suggest__alt {
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px dashed var(--c-line);
}
.suggest__alt > p {
  font-size: var(--t-sm);
  font-weight: 650;
  color: var(--c-ink);
  margin-bottom: var(--s-3);
}
/* Scoped to beat the ".suggest__alt > p" rule above it. */
.suggest__alt > p.suggest__alt-hint {
  margin-top: var(--s-3);
  font-size: var(--t-xs);
  font-weight: 400;
  color: var(--c-ink-faint);
}
