/* =========================================================================
   The Planters' Guild — Pillar hub styles
   Specimen-tray landing page (California Natives and future pillars).
   Loads after tokens.css + base.css. Site chrome (header/footer) lives in
   base.css; this file is the hub-specific hero band, tray, cards, and about
   block — ported from the legacy hand-coded hub, raw palette mapped to tokens.
   ========================================================================= */

/* --- Pillar hero band ------------------------------------------------------ */
.pillar-hero {
  background: var(--kraft);
  padding: 80px clamp(20px, 5vw, 56px) 64px;
}
.pillar-hero__inner { max-width: var(--container-width); margin: 0 auto; }
.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--aged-ink);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--aged-ink); }
.breadcrumb .sep { margin: 0 10px; color: rgba(42, 33, 27, 0.3); }
.pillar-hero .kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.pillar-hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--walnut);
  margin-bottom: 22px;
  max-width: 860px;
}
.pillar-hero p.lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: var(--aged-ink);
  max-width: 720px;
  margin-bottom: 36px;
}
.ph-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--aged-ink);
}
.ph-stats span { display: flex; flex-direction: column; gap: 4px; }
.ph-stats span strong {
  color: var(--walnut);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}
.ph-stats span em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aged-ink);
}

/* --- Specimen tray (the season) -------------------------------------------- */
.tray-section {
  background: var(--cream);
  padding: 64px clamp(20px, 5vw, 56px) 80px;
}
.tray-inner { max-width: var(--container-width); margin: 0 auto; }
.tray-controls {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--kraft);
  padding-bottom: 16px;
}
.tray-label {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--walnut);
}
.tray-meta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aged-ink);
  font-weight: 500;
}
.tray {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.specimen {
  border: 1px solid var(--kraft);
  background: var(--cream);
  text-decoration: none;
  color: var(--walnut);
  display: block;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}
a.specimen:hover {
  border-color: var(--forest-pine);
  transform: translateY(-2px);
  text-decoration: none;
}
.specimen-img {
  aspect-ratio: 4 / 3;
  background: var(--kraft);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--kraft);
}
.specimen-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.specimen--upcoming {
  opacity: 0.55;
  cursor: default;
}
.specimen-body { padding: 18px 20px 22px; }
.pillar-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aged-ink);
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
}
.pillar-tag.live {
  background: var(--terracotta);
  color: var(--cream);
  padding: 3px 9px;
  border-radius: 2px;
}
.pillar-tag.finale {
  background: var(--walnut);
  color: var(--cream);
  padding: 3px 9px;
  border-radius: 2px;
}
.specimen h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.25;
  color: var(--walnut);
  margin-bottom: 4px;
}
.specimen .latin {
  font-style: italic;
  font-size: 12px;
  color: var(--aged-ink);
  margin-bottom: 10px;
}
.specimen .teaser {
  font-size: 13px;
  line-height: 1.5;
  color: var(--aged-ink);
}

/* --- About-the-pillar ------------------------------------------------------ */
.about-pillar {
  background: var(--kraft);
  padding: 64px clamp(20px, 5vw, 56px);
}
.about-inner { max-width: 760px; margin: 0 auto; }
.about-pillar h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--walnut);
  margin-bottom: 18px;
}
.about-pillar p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--walnut);
  margin-bottom: 14px;
}

/* --- Responsive ------------------------------------------------------------ */
@media (max-width: 1000px) {
  .tray { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .tray { grid-template-columns: repeat(2, 1fr); }
  .pillar-hero h1 { font-size: 36px; }
}
@media (max-width: 480px) {
  .tray { grid-template-columns: 1fr; }
}
