/* =========================================================================
   The Planters' Guild — The Pollinator Library pillar hub styles
   Loads after tokens.css + base.css. Site chrome (header/footer/search) lives
   in base.css. Distinct from the Leaf/Flower library hubs: a full-width 3-up
   plate gallery (pollinator-card) rather than the shape-card schedule grid, and
   a prose publication-cadence note (no dated schedule strip). Prose element
   selectors scoped to .wrap.
   ========================================================================= */

:root { --side-pad: clamp(20px, 5vw, 56px); }

/* --- Typographic hero ------------------------------------------------------ */
.hero-band {
  background: var(--walnut);
  color: var(--cream);
  padding: 72px 32px 64px;
  text-align: center;
  border-bottom: 1px solid var(--walnut);
}
.hero-band .eyebrow-light {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--kraft);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-band h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.hero-band .subhead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--kraft);
  max-width: 680px;
  margin: 0 auto;
}
.hero-band .subhead em { font-style: normal; color: var(--cream); }

/* --- Illustration band ----------------------------------------------------- */
.hero-illustration {
  width: 100%;
  display: block;
  border-bottom: 1px solid var(--kraft);
  background: var(--cream);
}
.hero-illustration img { width: 100%; height: auto; display: block; }

/* --- Body wrap + prose ----------------------------------------------------- */
.wrap {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 56px var(--side-pad) 96px;
}
.wrap h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  margin: 56px 0 14px;
  color: var(--forest-pine);
}
.wrap h2.first { margin-top: 24px; }
.wrap .section-intro {
  font-size: 17px;
  color: var(--aged-ink);
  margin-bottom: 28px;
  max-width: 720px;
}
.wrap p { margin: 0 0 18px; color: var(--walnut); }
.wrap p em { font-style: italic; }
.wrap strong { color: var(--walnut); font-weight: 600; }

/* --- Publication cadence note ---------------------------------------------- */
.schedule-strip {
  background: var(--kraft);
  border-radius: 3px;
  padding: 22px 26px;
  margin: 40px 0 16px;
  border-left: 4px solid var(--forest-pine);
}
.schedule-strip-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-pine);
  font-weight: 600;
  margin-bottom: 10px;
}
.schedule-strip-body {
  font-size: 14px;
  color: var(--aged-ink);
  margin: 0;
  line-height: 1.55;
}

/* --- Pollinator plate grid ------------------------------------------------- */
.pollinator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 16px 0 8px;
}
.pollinator-card {
  background: var(--cream);
  border: 1px solid var(--kraft);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pollinator-card__plate {
  aspect-ratio: 4 / 5;
  background: var(--cream);
  border-bottom: 1px solid var(--kraft);
  overflow: hidden;
}
.pollinator-card__plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pollinator-card__meta { padding: 20px 22px 22px; }
.pollinator-card__num {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 10px;
}
.pollinator-card__common {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--walnut);
  line-height: 1.2;
  margin-bottom: 4px;
}
.pollinator-card__latin {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--aged-ink);
  margin-bottom: 12px;
}
.pollinator-card__latin em { font-style: italic; }
.pollinator-card__frame {
  font-size: 14px;
  color: var(--aged-ink);
  line-height: 1.55;
  margin: 0;
}

/* --- Related --------------------------------------------------------------- */
.related { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--kraft); }
.related-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 16px;
}
.related-card {
  background: var(--cream);
  border: 1px solid var(--kraft);
  padding: 18px 22px;
  margin-bottom: 12px;
  border-radius: 3px;
}
.related-card h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--walnut);
  margin-bottom: 4px;
  font-weight: 600;
}
.related-card .pillar {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 6px;
}
.related-card p { font-size: 14px; color: var(--aged-ink); margin: 0; }

/* --- Responsive ------------------------------------------------------------ */
@media (max-width: 980px) { .pollinator-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .pollinator-grid { grid-template-columns: 1fr; } }
