/* ─────────────────────────────────────────────────────────────────────────────
   Coming Soon — /coming-soon.php

   Restraint is the point. One lead item carries the page; two cards support it;
   everything else is a hairline list. Only the four ratified text tokens
   (--text / --text2 / --muted / --faint) and the canonical breakpoints
   (400 / 640 / 900) are used. No new greys, no new button styles.
   ───────────────────────────────────────────────────────────────────────────── */

/* ── Masthead ─────────────────────────────────────────────────────────────── */
/* .section already owns the horizontal gutter (clamp(24px,7vw,48px)) and the
   1100px max-width — only the vertical rhythm is adjusted here. Never re-declare
   the side padding: nesting two padded elements double-pads the gutter. */
.cs-top { padding-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.cs-eyebrow {
  margin: 0 0 14px; font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.cs-title {
  margin: 0 0 18px; font-size: clamp(2rem, 5.5vw, 3.25rem); line-height: 1.08;
  font-weight: 700; letter-spacing: -0.03em; color: var(--text); text-wrap: balance;
  max-width: 16ch;
}
.cs-intro {
  margin: 0; max-width: 58ch; font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.65; color: var(--text2);
}

/* ── Shared bits ──────────────────────────────────────────────────────────── */
.cs-band {
  margin: 0 0 clamp(20px, 3vw, 28px); font-size: .8rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; color: var(--muted);
}
.cs-hook {
  margin: 0 0 10px; font-size: .82rem; font-weight: 600; line-height: 1.4;
  color: var(--blue); letter-spacing: .01em;
}
.cs-kind { font-weight: 600; }
.cs-kind.is-guide { color: var(--blue); }
.cs-kind.is-plant { color: var(--green); }
.cs-dot { margin: 0 8px; color: var(--faint); }

/* ── Lead ─────────────────────────────────────────────────────────────────── */
.cs-lead-section { padding-top: 0; }
/* Single editorial column. The hero art is 2.35:1, so setting it beside a tall
   text column always leaves dead space above and below it — stacking avoids that
   and gives the lead a clear focal point. */
.cs-lead { max-width: 820px; }
.cs-lead-art {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
  background: var(--bg2); line-height: 0; margin-bottom: clamp(24px, 3.5vw, 36px);
}
.cs-lead-art img { width: 100%; height: auto; display: block; }

.cs-lead-when {
  margin: 0 0 14px; display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--text);
  border: 1px solid var(--border2); border-radius: 999px; padding: 5px 13px;
}
.cs-lead-title {
  margin: 0 0 16px; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.2;
  font-weight: 650; letter-spacing: -0.02em; color: var(--text); text-wrap: balance;
}
.cs-lead-teaser { margin: 0 0 20px; font-size: 1rem; line-height: 1.7; color: var(--text2); }
.cs-lead-meta   { margin: 0; font-size: .82rem; color: var(--faint); }

/* ── The supporting pair ──────────────────────────────────────────────────── */
.cs-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2.5vw, 24px); }

/* Follows the ratified Accent Card System: one --accent per card drives the tint,
   the top hairline and the date. Blue = guides/science, green = plants — the same
   semantic map used site-wide. Without this the cards read as flat black boxes. */
.cs-card {
  --accent: var(--accent-blue);
  position: relative; display: flex; flex-direction: column; min-width: 0;
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  padding: clamp(22px, 2.6vw, 30px);
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(var(--accent), .10), transparent 58%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
}
.cs-card.a-green { --accent: var(--accent-green); }
.cs-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, rgba(var(--accent), .85), rgba(var(--accent), 0));
}

/* The date is the card's colour and its anchor — deliberately the loudest thing on it. */
.cs-card-when {
  margin: 0 0 14px; font-size: clamp(1.25rem, 2.4vw, 1.6rem); line-height: 1.1;
  font-weight: 700; letter-spacing: -0.02em; color: rgb(var(--accent));
}
/* One colour per card: the date owns it, so the hook steps back to grey here. */
.cs-card .cs-hook { color: var(--muted); }
.cs-card-title {
  margin: 0 0 12px; font-size: clamp(1.05rem, 1.8vw, 1.2rem); line-height: 1.3;
  font-weight: 650; letter-spacing: -0.01em; color: var(--text); text-wrap: balance;
}
.cs-card-teaser { margin: 0 0 16px; font-size: .9rem; line-height: 1.65; color: var(--text2); }
.cs-card-meta   { margin: auto 0 0; font-size: .78rem; color: var(--faint); }

/* ── The list — deliberately plain ────────────────────────────────────────── */
.cs-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--border); }
.cs-list-row {
  display: grid; grid-template-columns: 8px minmax(0, 1fr) auto;
  align-items: baseline; gap: 14px;
  padding: 16px 2px; border-bottom: 1px solid var(--border);
}
.cs-list-kind {
  width: 7px; height: 7px; border-radius: 50%; display: inline-block;
  transform: translateY(-1px);
}
.cs-list-kind.is-guide { background: var(--blue); }
.cs-list-kind.is-plant { background: var(--green); }
.cs-list-title { font-size: .98rem; line-height: 1.45; color: var(--text); min-width: 0; }
.cs-list-when {
  font-size: .78rem; color: var(--faint); white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.cs-list-key {
  margin: 18px 0 0; font-size: .76rem; color: var(--faint);
  display: flex; align-items: center; gap: 7px;
}
.cs-list-key .cs-list-kind:not(:first-child) { margin-left: 14px; }

/* ── Empty state ──────────────────────────────────────────────────────────── */
.cs-empty { max-width: 54ch; }
.cs-empty h2 { font-size: 1.3rem; color: var(--text); margin: 0 0 12px; letter-spacing: -0.01em; }
.cs-empty p  { color: var(--text2); margin: 0 0 24px; line-height: 1.7; }

/* ── Subscribe ────────────────────────────────────────────────────────────── */
.cs-sub-note {
  margin: 16px auto 0; max-width: 54ch; text-align: center;
  font-size: .82rem; line-height: 1.6; color: var(--faint);
}

/* ── Responsive — canonical breakpoints only ──────────────────────────────── */
@media (max-width: 900px) {
  .cs-lead-title { font-size: clamp(1.4rem, 4vw, 1.7rem); }
}
@media (max-width: 640px) {
  .cs-pair { grid-template-columns: minmax(0, 1fr); }
  .cs-title { max-width: none; }
  .cs-list-row { grid-template-columns: 8px minmax(0, 1fr); row-gap: 4px; padding: 14px 2px; }
  .cs-list-when { grid-column: 2; }
}
@media (max-width: 400px) {
  .cs-list-key { flex-wrap: wrap; row-gap: 6px; }
}
