/* ─────────────────────────────────────────────
   speaking.css — page-specific overrides
   Loaded AFTER styles.css. Scoped to speaking.html.
   ───────────────────────────────────────────── */

/* ── Keynote index: tighten meta, label takeaways ── */

.keynote-index .keynote__meta-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* Label the takeaways block so it reads as a sub-element, not a continuation */
.keynote-index .keynote__outcomes-label {
  display: block;
  font-family: var(--ff-mono);
  font-size: var(--fs-eyebrow, 0.72rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--stone);
  margin: 0 0 0.75rem;
}

/* Per-keynote CTA — text-link, mono, with arrow */
.keynote-index .keynote__cta {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--oxblood);
  text-decoration: none;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--oxblood);
  transition: gap 0.3s ease, color 0.2s ease;
}
.keynote-index .keynote__cta:hover {
  gap: 0.85rem;
  color: var(--oxblood-deep);
}
.keynote-index .keynote__cta-arrow {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transform: translateY(1px);
}

/* Slightly tighten outcomes vs. title for cleaner hierarchy */
.keynote-index .keynote__desc {
  margin-bottom: 1.5rem;
}

/* ── Audience grid: balance 5-card row ── */
/* On wide screens, last two cards center to avoid lonely orphan */
@media (min-width: 980px) {
  .audience-section .audience-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .audience-section .audience-grid > .audience-card {
    grid-column: span 2;
  }
  .audience-section .audience-grid > .audience-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .audience-section .audience-grid > .audience-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

/* ── Delivery section: eyebrow + inline inquire link ── */
.delivery-section .delivery-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1.5rem 2.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--whisper);
}

.delivery-section .delivery-foot__cta {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--oxblood);
  text-decoration: none;
  border-bottom: 1px solid var(--oxblood);
  padding-bottom: 0.2rem;
  transition: opacity 0.2s ease;
}
.delivery-section .delivery-foot__cta:hover {
  opacity: 0.75;
}

/* Small note alignment on the right (desktop) */
@media (min-width: 800px) {
  .delivery-section .delivery-foot {
    justify-content: space-between;
  }
}

/* Audience section · the labels ("Executive Teams" etc.) were
   oxblood on dark — too low-contrast to read. Switch to bone with
   tighter tracking so they read clearly while staying editorial. */
.audience-section .audience-card__label {
  color: var(--bone, #eae3d4);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ================================================================
   2026-07 client copy revisions — additive rules only.
   ================================================================ */

/* Hero closer line beneath the lead */
.hero__closer {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--stone);
  margin: 1.25rem 0 0;
}
.hero__closer em {
  color: var(--oxblood);
  font-style: italic;
}

/* Keynote card — extra prose paragraph beneath the desc line */
.keynote-index .keynote__prose {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--stone);
  margin: 0.65rem 0 1.5rem;
}

/* Keynote desc — bold intro line reads stronger */
.keynote-index .keynote__desc strong {
  font-weight: 500;
  color: var(--ink);
}

/* Framework section spacing on speaking page (same as home) */
.speaking-page .framework-section {
  padding-block: clamp(4rem, 7vw, 6rem);
}
