/* ==========================================================================
   The Monarch Project of Lake Forest — monarchproject.net
   Hand-written CSS. No framework, no build step.
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */

:root {
  /* Ground */
  --paper:        #FDFBF7;   /* lightest section ground */
  --paper-warm:   #F7F5F0;   /* alternating section ground */
  --card:         #FFFFFF;

  /* Ink */
  --green:        #2D5016;   /* headings, the project's voice */
  --green-deep:   #1A2E0D;   /* footer */
  --body:         #4A4A40;   /* running text */
  --muted:        #6B6B60;   /* secondary text */
  --sage:         #8B9E7C;   /* labels, captions */

  /* Accent */
  --amber:        #D4760A;
  --amber-deep:   #B8650A;

  /* Lines */
  --line:         #E8E4D9;
  --line-warm:    #E8DFC9;
  --line-deep:    #D4C9A8;

  /* Type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --gutter: 1.5rem;
  --measure: 68ch;
  --radius: 0.5rem;
  --radius-lg: 1rem;

  /* Depth */
  --shadow-sm: 0 1px 2px rgba(45, 80, 22, .06);
  --shadow:    0 4px 16px rgba(45, 80, 22, .08);
  --shadow-lg: 0 12px 40px rgba(45, 80, 22, .16);
}

/* --- Reset ---------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--green); margin: 0; line-height: 1.15; font-weight: 600; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
a { color: var(--amber); text-decoration-thickness: 1px; text-underline-offset: 2px; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 3px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- Butterfly cursor ------------------------------------------------------ */

body.has-monarch-cursor,
body.has-monarch-cursor * {
  cursor: url("./images/monarch-cursor-64-clean_9496721d.png") 32 32, auto;
}
body.has-monarch-cursor a,
body.has-monarch-cursor button,
body.has-monarch-cursor [role="button"],
body.has-monarch-cursor summary,
body.has-monarch-cursor label[for] {
  cursor: url("./images/monarch-cursor-64-clean_9496721d.png") 32 32, pointer;
}

/* --- Layout --------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  z-index: 2;
  padding-block: 5rem;
  background: var(--paper);
}
.section--warm { background: var(--paper-warm); }
.section--tint { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%); }

@media (min-width: 768px) {
  .section { padding-block: 7rem; }
}

.section-head {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-head h2 {
  font-size: clamp(1.875rem, 1.4rem + 2vw, 2.5rem);
  margin-bottom: 1rem;
}
.section-head .lede {
  font-size: 1.125rem;
  color: var(--body);
  margin-bottom: 0;
}

.eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

/* --- Scroll reveal -------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* --- Decorative layers ---------------------------------------------------- */

/* Parallax milkweed drifting behind everything */
.parallax-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.parallax-layer span {
  position: absolute;
  will-change: transform;
  line-height: 1;
}

/* Monarchs that occasionally cross the page */
.flyer {
  position: fixed;
  width: 44px;
  height: 44px;
  z-index: 3;
  pointer-events: none;
  will-change: transform;
}

/* --- Header --------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.is-stuck {
  background: rgba(253, 251, 247, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.brand {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color .3s ease;
}
.is-stuck .brand { color: var(--green); }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--amber); }
.is-stuck .nav-links a { color: var(--body); }
.is-stuck .nav-links a:hover { color: var(--amber); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: none;
  border: 0;
  color: #fff;
  transition: color .3s ease;
}
.is-stuck .nav-toggle { color: var(--green); }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
}

.nav-drawer {
  display: none;
  padding: 0.5rem 0 1.25rem;
  border-top: 1px solid var(--line);
  background: rgba(253, 251, 247, .97);
  backdrop-filter: blur(10px);
}
.nav-drawer.is-open { display: block; }
.nav-drawer a {
  display: block;
  padding: 0.6rem var(--gutter);
  color: var(--body);
  font-weight: 500;
  text-decoration: none;
}
.nav-drawer a:hover { color: var(--amber); }
@media (min-width: 768px) {
  .nav-drawer, .nav-drawer.is-open { display: none; }
}

/* --- Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 5rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 1.2rem + 4.6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero__lede {
  font-size: clamp(1.125rem, 1rem + 0.8vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .9);
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .hero__actions { flex-direction: row; }
}

/* --- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  transition: background-color .2s ease, transform .1s ease, border-color .2s ease;
}
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--amber); color: #fff; }
.btn--primary:hover { background: var(--amber-deep); }
.btn--ghost {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(4px);
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .25); }

/* --- The count ------------------------------------------------------------ */

.count-stage {
  position: relative;
  max-width: 28rem;
  margin: 0 auto 3rem;
  min-height: 17rem;
  display: grid;
  place-items: center;
}

.count-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  transition: transform .2s ease;
}
.count-trigger:hover { transform: scale(1.05); }
.count-trigger:active { transform: scale(.95); }

.count-trigger img,
.count-figure img {
  width: 9rem;
  height: 9rem;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(45, 80, 22, .22));
  animation: flutter 1.5s ease-in-out infinite alternate;
}
@media (min-width: 768px) {
  .count-trigger img, .count-figure img { width: 11rem; height: 11rem; }
}

@keyframes flutter {
  from { transform: scaleX(1) rotate(-1.5deg); }
  to   { transform: scaleX(.92) rotate(1.5deg); }
}

.count-trigger__label {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--green);
}
@media (min-width: 768px) {
  .count-trigger__label { font-size: 1.25rem; }
}

.count-running {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.count-running__number {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 2rem + 6vw, 4.5rem);
  font-weight: 700;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.count-running__caption { color: var(--muted); font-weight: 500; margin: 0; }

.count-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0;
  background: none;
  border: 0;
  font: inherit;
  animation: rise .8s ease-out;
}
.count-figure__headline {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 1.875rem);
  font-weight: 700;
  color: var(--green);
  margin: 0;
}
.count-figure__again { font-size: 0.9375rem; font-style: italic; color: var(--sage); margin: 0; }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* Butterflies released by the burst */
.burst-monarch {
  position: fixed;
  width: 64px;
  height: 64px;
  z-index: 90;
  pointer-events: none;
}

.count-summary { text-align: center; max-width: 32rem; margin-inline: auto; }

.total-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.9375rem;
  color: var(--sage);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}
.total-pill strong {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green);
}

.season-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--muted);
}
.season-list b { font-weight: 600; color: var(--green); }

.waystation-note {
  font-size: 0.8125rem;
  color: var(--sage);
  margin: 1rem 0 0;
}

/* Seasonal greeting */
.seasonal {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  max-width: 40rem;
  margin: 2.5rem auto 0;
  padding: 1rem 1.25rem;
  border: 1px solid;
  border-radius: var(--radius-lg);
}
.seasonal__icon { font-size: 1.5rem; line-height: 1.4; flex-shrink: 0; }
.seasonal__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: .7;
  margin: 0 0 0.25rem;
}
.seasonal__message { margin: 0; }

.seasonal[data-season="winter"] { background: #FAFAF9; border-color: #E7E5E4; color: #1C1917; }
.seasonal[data-season="spring"] { background: #F0FDF4; border-color: #BBF7D0; color: #14532D; }
.seasonal[data-season="arrival"]{ background: #F7FEE7; border-color: #D9F99D; color: #365314; }
.seasonal[data-season="peak"]   { background: #FFFBEB; border-color: #FDE68A; color: #78350F; }
.seasonal[data-season="migration"] { background: #FFF7ED; border-color: #FED7AA; color: #7C2D12; }
.seasonal[data-season="late"]   { background: #FEFCE8; border-color: #FEF08A; color: #713F12; }

/* --- Narrative ------------------------------------------------------------ */

.prose {
  max-width: var(--measure);
  margin-inline: auto;
}
.prose h3 {
  font-size: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  margin-bottom: 1.25rem;
}
.prose h3:not(:first-child) { margin-top: 2.5rem; }
.prose .beat {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--green);
  font-style: italic;
}

.source-note {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--sage);
}

/* Figures */
figure { margin: 0; }
.figure-caption,
figcaption {
  font-size: 0.875rem;
  color: var(--sage);
  margin-top: 0.625rem;
  line-height: 1.5;
}

.feature-figure {
  margin: 3rem auto 0;
  max-width: 56rem;
}
.feature-figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.feature-figure figcaption { text-align: center; }

/* A row of supporting photos beneath a passage */
.figure-row {
  display: grid;
  gap: 1.25rem;
  margin: 2.5rem auto 0;
  max-width: 56rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .figure-row--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .figure-row--3 { grid-template-columns: repeat(3, 1fr); } }
.figure-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* Side-by-side text and portrait image */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  max-width: 60rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .split--narrow-media { grid-template-columns: 3fr 2fr; }
}
.split img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* --- Galleries ------------------------------------------------------------ */

.grid-gallery {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
}
.grid-gallery figure {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.grid-gallery figure:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.grid-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.grid-gallery figcaption { padding: 0.75rem 0.875rem 0.875rem; margin: 0; }

/* --- Video ---------------------------------------------------------------- */

.video-block {
  max-width: 22rem;
  margin-inline: auto;
}
.video-block video {
  width: 100%;
  /* Both clips are 9:16 portrait. Declaring it reserves the space
     before metadata loads, so the page does not jump. */
  aspect-ratio: 9 / 16;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #000;
}
.video-block figcaption { text-align: center; }

.video-pair {
  display: grid;
  gap: 3rem;
  justify-items: center;
}
@media (min-width: 900px) {
  .video-pair { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

/* --- Life cycle stages ---------------------------------------------------- */

.stages {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}
.stage {
  background: var(--card);
  border: 1px solid var(--line-warm);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.stage__icon { font-size: 2rem; line-height: 1; margin-bottom: 0.75rem; }
.stage__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--green);
  margin: 0 0 0.25rem;
}
.stage__duration {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.stage p { font-size: 0.9375rem; margin: 0; }

/* --- Migration map -------------------------------------------------------- */

.migration {
  background: var(--card);
  border: 1px solid var(--line-warm);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem 2rem;
  max-width: 40rem;
  margin-inline: auto;
  box-shadow: var(--shadow-sm);
}
.migration__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.migration svg { width: 100%; height: auto; }
.migration__path {
  fill: none;
  stroke: var(--amber);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
}
.migration__path.is-drawn {
  transition: stroke-dashoffset 3s cubic-bezier(.4,0,.2,1);
  stroke-dashoffset: 0;
}
.migration text { font-family: var(--sans); font-size: 13px; fill: var(--body); }
.migration__key {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
.migration__key span { display: inline-flex; align-items: center; gap: 0.4rem; }
.migration__key i {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  display: inline-block;
}

/* --- Contact -------------------------------------------------------------- */

.contact-card {
  max-width: 34rem;
  margin-inline: auto;
  text-align: center;
}
.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 1.0625rem;
}
.contact-lines a { font-weight: 600; }

/* --- Footer --------------------------------------------------------------- */

.site-footer {
  position: relative;
  z-index: 2;
  background: var(--green-deep);
  color: rgba(255, 255, 255, .75);
  padding-block: 3rem;
  text-align: center;
  font-size: 0.9375rem;
}
.site-footer h2 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.site-footer p { margin: 0 0 0.5rem; }
.site-footer .fine {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, .5);
  max-width: 44rem;
  margin: 1.5rem auto 0;
}

/* --- Hidden monarchs (easter egg) ----------------------------------------- */

.hidden-monarch {
  position: absolute;
  z-index: 60;
  padding: 0;
  background: none;
  border: 0;
  line-height: 0;
  opacity: .25;
  transition: opacity .5s ease, transform .5s ease;
}
.hidden-monarch:hover { opacity: .9; transform: scale(1.25); }

.spotter {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  border: 1px solid #FED7AA;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.spotter__title { font-size: 0.75rem; font-weight: 600; color: var(--green); margin: 0; }
.spotter__progress { font-size: 0.6875rem; color: #4D7C0F; margin: 0; }
.spotter[data-complete="true"] { background: #FFF7ED; border-color: #FDBA74; }

.fact-dialog {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: 24rem;
  width: calc(100% - 2rem);
}
.fact-dialog::backdrop { background: rgba(0, 0, 0, .45); backdrop-filter: blur(4px); }
.fact-dialog__inner {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: rise .3s ease-out;
}
.fact-dialog h3 { font-size: 1.125rem; font-weight: 700; margin: 0.75rem 0 0.25rem; }
.fact-dialog__tally { font-size: 0.75rem; font-weight: 600; color: var(--amber); margin: 0 0 0.75rem; }
.fact-dialog__fact { font-size: 0.9375rem; color: #3F6212; margin: 0 0 1rem; }
.fact-dialog__source { font-size: 0.75rem; font-style: italic; color: var(--sage); margin: 0 0 1.25rem; }
.fact-dialog button {
  padding: 0.5rem 1.125rem;
  background: var(--green);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.9375rem;
}
.fact-dialog button:hover { background: var(--green-deep); }

/* --- Motion preferences --------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .parallax-layer, .flyer { display: none; }
  .migration__path { stroke-dashoffset: 0; }
}

/* --- Late additions ------------------------------------------------------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--card);
  color: var(--green);
  font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* A single line of narration set apart from the running text */
.pull-note {
  max-width: 46rem;
  margin: 2.5rem auto 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--sage);
}

.stages-heading,
.migration + .stages-heading {
  text-align: center;
  font-size: clamp(1.375rem, 1.2rem + 0.8vw, 1.625rem);
  margin-bottom: 1.75rem;
}

.stages-note {
  text-align: center;
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--sage);
  margin: 1.25rem 0 0;
}

.video-block h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.video-block__lede {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* Habitat photos carry their description in alt text, not a caption */
.figure-row figure:has(img:only-child) img { aspect-ratio: 3 / 2; }
