/* =============================================================
   podcast.css  —  Building a Clear Authentic Brand
   Clear Authentic Brands (clearauthenticbrands.com)

   Loaded ONLY on /podcast, /podcast/episodes and /podcast/{slug}.

   Preserves the podcast's original design exactly: Montserrat + Lora,
   the ink/forest/cream/sage palette. Every custom property is namespaced
   --pod-* so it cannot overwrite the live site's tokens (the live site
   defines --bg-dark: #0b0f17; the podcast's is #292728). The button
   family is renamed .pod-btn so it can never affect the site header's
   .btn / .btn--bone CTA.
   ============================================================= */

:root {
  /* Brand palette */
  --pod-ink:       #292728;
  --pod-ink-soft:  #3a3838;
  --pod-forest:    #404a32;
  --pod-forest-lt: #4f5e3e;
  --pod-cream:     #f1f1ec;
  --pod-warm:      #e8e4dc;
  --pod-sage:      #97a08b;
  --pod-sage-lt:   #c8cec1;
  --pod-header-bg: #2a2829;

  /* Semantic */
  --pod-text-primary:   var(--pod-ink);
  --pod-text-secondary: var(--pod-ink-soft);
  --pod-text-muted:     #5a5757;
  --pod-bg-page:        var(--pod-cream);
  --pod-bg-dark:        var(--pod-ink);
  --pod-bg-accent:      var(--pod-forest);
  --pod-border:         rgba(41, 39, 40, 0.1);
  --pod-border-dark:    rgba(200, 206, 193, 0.12);

  /* Typography */
  --pod-font-display: 'Montserrat', sans-serif;
  --pod-font-body:    'Lora', serif;

  /* Type scale */
  --pod-text-xs:   11px;
  --pod-text-sm:   13px;
  --pod-text-base: 16px;
  --pod-text-md:   17px;
  --pod-text-lg:   19px;
  --pod-text-xl:   clamp(22px, 3vw, 28px);
  --pod-text-2xl:  clamp(28px, 4vw, 38px);
  --pod-text-3xl:  clamp(34px, 5vw, 52px);

  /* Spacing */
  --pod-space-xs:  8px;
  --pod-space-sm:  16px;
  --pod-space-md:  28px;
  --pod-space-lg:  48px;
  --pod-space-xl:  72px;

  /* Layout */
  --pod-wrap-max:     1080px;
  --pod-wrap-narrow:  720px;
  --pod-wrap-pad:     28px;

  /* Header */
  --pod-header-h: 70px;

  /* Radius */
  --pod-radius-sm: 3px;
  --pod-radius-md: 6px;
  --pod-radius-lg: 10px;

  /* Transitions */
  --pod-ease: 0.15s ease;
  --pod-header-h: 70px;
}

/* ── Shared components (ported) ─────────────────────────────── */
/* =============================================================
   components.css
   Clear Authentic Brands — Shared UI Components
   Buttons, cards, badges, forms, breadcrumb, answer boxes,
   pullquotes, takeaways. Used sitewide.
   ============================================================= */

/* ── BUTTONS ────────────────────────────────────────────────── */
.pod-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pod-font-display);
  font-weight: 700;
  font-size: var(--pod-text-sm);
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--pod-radius-sm);
  padding: 13px 24px;
  transition: background var(--pod-ease), color var(--pod-ease), border-color var(--pod-ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.pod-btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

.pod-btn--primary {
  background: var(--pod-forest);
  color: var(--pod-cream);
  border-color: var(--pod-forest);
}
.pod-btn--primary:hover { background: var(--pod-forest-lt); border-color: var(--pod-forest-lt); }

.pod-btn--secondary {
  background: var(--pod-cream);
  color: var(--pod-ink);
  border-color: var(--pod-cream);
}
.pod-btn--secondary:hover { background: var(--pod-sage-lt); border-color: var(--pod-sage-lt); }

.pod-btn--outline {
  background: transparent;
  color: var(--pod-sage-lt);
  border-color: rgba(200,206,193,0.35);
}
.pod-btn--outline:hover { border-color: var(--pod-sage-lt); color: var(--pod-cream); }

.pod-btn--outline-dark {
  background: transparent;
  color: var(--pod-forest);
  border-color: var(--pod-forest);
}
.pod-btn--outline-dark:hover { background: var(--pod-forest); color: var(--pod-cream); }

.pod-btn--sm { padding: 9px 16px; font-size: var(--pod-text-xs); }
.pod-btn--lg { padding: 16px 32px; font-size: var(--pod-text-base); }

/* ── TOPIC BADGE / TAG ──────────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: var(--pod-font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--pod-radius-sm);
}
.badge--forest { color: var(--pod-forest); background: rgba(64,74,50,0.1); }
.badge--sage   { color: var(--pod-sage-lt); background: rgba(151,160,139,0.15); }
.badge--ink    { color: var(--pod-cream); background: var(--pod-ink); }

/* Category level badges (podcast) */
.badge--strong  { color: var(--pod-forest); background: rgba(64,74,50,0.12); }
.badge--cracks  { color: #8a6a20; background: rgba(199,154,75,0.12); }
.badge--costing { color: #8a3020; background: rgba(178,92,79,0.12); }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--pod-border);
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pod-font-display);
  font-size: 12px;
  color: var(--pod-sage);
}
.breadcrumb a { color: var(--pod-sage); text-decoration: none; }
.breadcrumb a:hover { color: var(--pod-forest); }
.breadcrumb-sep { color: var(--pod-sage-lt); }

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-head { margin-bottom: var(--pod-space-lg); }
.section-head.is-centered { text-align: center; }
.section-head h2 { margin-bottom: 12px; }
.section-head p {
  max-width: 58ch;
  font-size: var(--pod-text-md);
  color: var(--pod-text-muted);
}
.section-head.is-centered p { margin: 0 auto; }

/* ── ANSWER BOX (podcast / GEO) ─────────────────────────────── */
.answer-box {
  background: var(--pod-bg-dark);
  border-radius: var(--pod-radius-md);
  padding: 24px 26px;
  margin-bottom: 32px;
  border-left: 4px solid var(--pod-forest);
}
.answer-box__label {
  font-family: var(--pod-font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pod-sage);
  margin-bottom: 10px;
}
.answer-box p,
.answer-box p:last-child {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-md);
  line-height: 1.7;
  color: var(--pod-cream);
  margin: 0;
}

/* ── PULLQUOTE ───────────────────────────────────────────────── */
.pullquote {
  border-left: 3px solid var(--pod-forest);
  padding: 4px 0 4px 24px;
  margin: 28px 0;
}
.pullquote p {
  font-family: var(--pod-font-body);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: var(--pod-ink);
  margin: 0;
}
.pullquote cite {
  display: block;
  font-family: var(--pod-font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--pod-sage);
  margin-top: 8px;
}

/* ── TAKEAWAYS BOX ──────────────────────────────────────────── */
.takeaways-box {
  background: rgba(64,74,50,0.07);
  border: 1px solid rgba(64,74,50,0.15);
  border-radius: var(--pod-radius-md);
  padding: 26px 28px;
  margin: 32px 0;
}
.takeaways-box__label {
  font-family: var(--pod-font-display);
  font-size: var(--pod-text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pod-forest);
  margin-bottom: 14px;
}
.takeaways-box ul { margin: 0; }
.takeaways-box li {
  font-family: var(--pod-font-body);
  font-size: 15.5px;
  color: var(--pod-ink);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid rgba(64,74,50,0.1);
  line-height: 1.65;
}
.takeaways-box li:last-child { border-bottom: none; }
.takeaways-box li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--pod-forest);
  font-weight: 700;
}

/* ── FLAG CARDS (episode red flags) ────────────────────────── */
.flags-grid { display: grid; gap: 12px; margin-top: 16px; }
.flag-card {
  background: var(--pod-cream);
  border: 1px solid var(--pod-border);
  border-radius: var(--pod-radius-sm);
  padding: 16px 18px;
}
.flag-card--red   { border-left: 3px solid #b25c4f; }
.flag-card--amber { border-left: 3px solid #c79a4b; }
.flag-card__number { font-family: var(--pod-font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pod-sage); margin-bottom: 4px; }
.flag-card__title  { font-family: var(--pod-font-display); font-weight: 700; font-size: 14.5px; color: var(--pod-ink); margin-bottom: 6px; }
.flag-card__desc   { font-family: var(--pod-font-body); font-size: 14.5px; color: #4a4848; line-height: 1.6; }
.flag-severity {
  display: inline-block;
  font-family: var(--pod-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  margin-top: 8px;
}
.flag-severity--dealbreaker { background: rgba(178,92,79,0.1); color: #8a3020; }
.flag-severity--dig-deeper  { background: rgba(199,154,75,0.1); color: #8a6a20; }

/* ── SIDEBAR CTA ────────────────────────────────────────────── */
.sidebar-cta {
  background: var(--pod-bg-dark);
  border-radius: var(--pod-radius-md);
  padding: 24px 20px;
}
.sidebar-cta p {
  font-family: var(--pod-font-body);
  font-size: 14.5px;
  color: var(--pod-sage-lt);
  line-height: 1.6;
  margin-bottom: 16px;
}
.sidebar-cta .pod-btn { display: block; text-align: center; }

/* ── PROSE (long-form content) ──────────────────────────────── */
.prose h2 {
  font-size: 21px;
  color: var(--pod-ink);
  margin: 44px 0 14px;
  line-height: 1.25;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; color: var(--pod-ink); margin: 28px 0 10px; }
.prose p  { font-size: var(--pod-text-md); color: var(--pod-text-secondary); margin-bottom: 18px; }
.prose a  { color: var(--pod-forest); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--pod-forest-lt); }
.prose ul,
.prose ol { margin: 0 0 20px; padding-left: 0; list-style: none; }
.prose li {
  font-family: var(--pod-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--pod-text-secondary);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid var(--pod-border);
}
.prose li:last-child { border-bottom: none; }
.prose li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--pod-forest);
  font-weight: 700;
}
.prose ol { counter-reset: prose-list; }
.prose ol li { counter-increment: prose-list; }
.prose ol li::before {
  content: counter(prose-list);
  font-family: var(--pod-font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--pod-forest);
}

/* ── TRANSCRIPT TOGGLE ──────────────────────────────────────── */
.transcript-section {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 2px solid var(--pod-border);
}
.transcript-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.transcript-header h2 { margin: 0; }
.transcript-toggle {
  font-family: var(--pod-font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--pod-forest);
  background: none;
  border: 1.5px solid var(--pod-forest);
  border-radius: var(--pod-radius-sm);
  padding: 7px 14px;
  cursor: pointer;
  transition: all var(--pod-ease);
}
.transcript-toggle:hover { background: var(--pod-forest); color: var(--pod-cream); }
.transcript-body { display: none; }
.transcript-body.is-open { display: block; }
.transcript-body p {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-base);
  line-height: 1.8;
  color: #4a4848;
  margin-bottom: 20px;
}

/* ── FORMS ───────────────────────────────────────────────────── */
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--pod-font-display);
  font-size: var(--pod-text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pod-text-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-base);
  color: var(--pod-ink);
  background: #fff;
  border: 1.5px solid rgba(41,39,40,0.2);
  border-radius: var(--pod-radius-sm);
  padding: 11px 14px;
  transition: border-color var(--pod-ease);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--pod-forest);
}

/* =============================================================
   RESOURCES PAGE
   ============================================================= */

.resources-hero {
  background: var(--pod-bg-dark);
  padding: 72px 0 64px;
  text-align: center;
}
.resources-hero h1 {
  color: var(--pod-cream);
  font-size: clamp(28px, 4vw, 46px);
  max-width: 18ch;
  margin: 0 auto 20px;
  line-height: 1.1;
}
.resources-hero__desc {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-md);
  color: var(--pod-sage-lt);
  max-width: 54ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* Resource rows */
.resource-row { padding: 72px 0; }
.resource-row__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.resource-row--reversed .resource-row__inner {
  direction: rtl;
}
.resource-row--reversed .resource-row__inner > * {
  direction: ltr;
}
.resource-row__content { display: flex; flex-direction: column; gap: 16px; }
.resource-row__content h2 {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--pod-ink);
  line-height: 1.15;
}
.resource-row__content h3 {
  font-family: var(--pod-font-body);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  color: var(--pod-forest);
  line-height: 1.5;
}
.resource-row__content p {
  font-size: var(--pod-text-base);
  color: var(--pod-text-secondary);
  line-height: 1.75;
  margin: 0;
}
.resource-row__content .pod-btn { align-self: flex-start; margin-top: 8px; }
.resource-row__image {
  border-radius: var(--pod-radius-md);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(41,39,40,0.12);
  background: var(--pod-warm);
}
.resource-row__image img { width: 100%; height: auto; display: block; }

/* Divider */
.resource-divider { padding: 0; }
.resource-divider hr {
  border: none;
  border-top: 1px solid var(--pod-border);
  margin: 0;
}

/* Podcast section */
.resources-podcast {
  background: var(--pod-bg-dark);
  padding: 72px 0;
}
.resources-podcast__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}
.resources-podcast__content h2 {
  color: var(--pod-cream);
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
  line-height: 1.15;
}
.resources-podcast__lede {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-md);
  color: var(--pod-sage-lt);
  line-height: 1.7;
  margin-bottom: 28px !important;
}
.resources-podcast__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.resources-podcast__list li {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-base);
  color: var(--pod-sage-lt);
  line-height: 1.65;
  padding: 14px 0 14px 0;
  border-bottom: 1px solid rgba(200,206,193,0.1);
  list-style: none;
}
.resources-podcast__list li:first-child { border-top: 1px solid rgba(200,206,193,0.1); }
.resources-podcast__list li::before { display: none; }
.resources-podcast__list strong {
  display: block;
  font-family: var(--pod-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pod-sage);
  margin-bottom: 4px;
}
.resources-podcast__links { display: flex; flex-wrap: wrap; gap: 10px; }
.pod-btn--outline-cream {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pod-font-display);
  font-weight: 700;
  font-size: var(--pod-text-sm);
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--pod-radius-sm);
  padding: 13px 24px;
  transition: background var(--pod-ease), color var(--pod-ease), border-color var(--pod-ease);
  background: transparent;
  color: var(--pod-sage-lt);
  border: 1.5px solid rgba(200,206,193,0.3);
}
.pod-btn--outline-cream:hover { border-color: var(--pod-sage-lt); color: var(--pod-cream); }
.resources-podcast__cover {
  border-radius: var(--pod-radius-md);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.resources-podcast__cover img { width: 100%; height: auto; display: block; }

/* Bottom CTA */
.resources-cta {
  padding: 80px 0;
  background: var(--pod-warm);
}
.resources-cta__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.resources-cta__inner h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--pod-ink);
  margin-bottom: 14px;
}
.resources-cta__inner p {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-md);
  color: var(--pod-text-muted);
  line-height: 1.7;
  margin-bottom: 32px !important;
}
.resources-cta__inner .pod-btn { margin: 0 auto; }

/* Resources responsive */
@media (max-width: 860px) {
  .resource-row__inner,
  .resource-row--reversed .resource-row__inner {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }
  .resource-row--reversed .resource-row__inner > * { direction: ltr; }
  /* Only reverse stacking when image is in the right column on desktop */
  .resource-row--img-right .resource-row__image { order: -1; }
  .resource-row--img-right .resource-row__content { order: 0; }
  .resource-row__image { max-width: 480px; }
  .resources-podcast__inner { grid-template-columns: 1fr; gap: 40px; }
  .resources-podcast__cover { max-width: 280px; order: -1; }
}
@media (max-width: 480px) {
  .resource-row { padding: 48px 0; }
  .resources-podcast { padding: 48px 0; }
  .resources-cta { padding: 56px 0; }
}

/* =============================================================
   MY STORY / ABOUT PAGE
   ============================================================= */

/* Hero */
.about-hero {
  background: var(--pod-bg-dark);
  padding: 72px 0 64px;
}
.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-hero__text .eyebrow { color: var(--pod-sage); }
.about-hero__text h1 {
  color: var(--pod-cream);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-hero__text p {
  font-family: var(--pod-font-body);
  font-style: italic;
  font-size: var(--pod-text-md);
  color: var(--pod-sage-lt);
  line-height: 1.7;
  margin: 0;
}
.about-hero__image {
  border-radius: var(--pod-radius-md);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.about-hero__image img { width: 100%; height: auto; display: block; }

/* Story body */
.about-story { padding: 72px 0 80px; }

.story-block {
  padding-bottom: 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--pod-border);
}
.story-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.story-block p {
  font-family: var(--pod-font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--pod-text-secondary);
  margin-bottom: 20px;
}
.story-block p:last-child { margin-bottom: 0; }

/* Chapter marker */
.story-chapter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.story-chapter__year {
  font-family: var(--pod-font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--pod-cream);
  background: var(--pod-forest);
  padding: 5px 12px;
  border-radius: var(--pod-radius-sm);
}
.story-chapter__label {
  font-family: var(--pod-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pod-sage);
}

/* Inline traits list */
.story-traits {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0;
  padding-left: 0;
}
.story-traits span {
  font-family: var(--pod-font-body);
  font-style: italic;
  font-size: 17px;
  color: var(--pod-ink);
  line-height: 1.6;
  padding: 10px 0 10px 20px;
  border-left: 3px solid var(--pod-forest);
  margin-bottom: 8px;
  display: block;
}

/* Pullquote */
.story-pullquote {
  border-left: 3px solid var(--pod-forest);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
}
.story-pullquote p {
  font-family: var(--pod-font-body);
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: var(--pod-ink);
  margin: 0 !important;
}

/* Outcomes grid */
.story-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.story-outcome {
  background: rgba(64,74,50,0.07);
  border: 1px solid rgba(64,74,50,0.12);
  border-radius: var(--pod-radius-sm);
  padding: 16px 18px;
}
.story-outcome span {
  font-family: var(--pod-font-body);
  font-size: 15px;
  color: var(--pod-ink);
  line-height: 1.6;
}

/* Pillars list */
.story-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 28px 0;
}
.story-pillar {
  font-family: var(--pod-font-body);
  font-size: 16px;
  color: var(--pod-text-secondary);
  line-height: 1.65;
  padding: 14px 0 14px 22px;
  border-bottom: 1px solid var(--pod-border);
  position: relative;
}
.story-pillar:first-child { border-top: 1px solid var(--pod-border); }
.story-pillar::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--pod-forest);
  font-weight: 700;
}

/* Bottom CTA */
.about-cta {
  background: var(--pod-bg-dark);
  padding: 72px 0;
}
.about-cta__inner { max-width: 600px; }
.about-cta__inner h2 {
  color: var(--pod-cream);
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 14px;
  line-height: 1.2;
}
.about-cta__inner p {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-md);
  color: var(--pod-sage-lt);
  line-height: 1.7;
  margin-bottom: 28px !important;
}
.about-cta__links { display: flex; flex-wrap: wrap; gap: 12px; }

/* About responsive */
@media (max-width: 860px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-hero__image { order: -1; }
  .story-outcomes { grid-template-columns: 1fr; }
  .about-story { padding: 48px 0 56px; }
}
@media (max-width: 480px) {
  .about-cta__links { flex-direction: column; }
  .about-cta__links .pod-btn { text-align: center; justify-content: center; }
}

/* =============================================================
   BRAND CLARITY PAGE
   ============================================================= */

/* Hero */
.bc-hero {
  background: var(--pod-bg-dark);
  padding: 80px 0 72px;
  text-align: center;
}
.bc-hero h1 {
  color: var(--pod-cream);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  margin-bottom: 16px;
}
.bc-hero__sub {
  font-family: var(--pod-font-body);
  font-style: italic;
  font-size: var(--pod-text-lg);
  color: var(--pod-sage-lt);
  margin-bottom: 36px !important;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.bc-hero .pod-btn { margin: 0 auto; }

/* Framework */
.bc-framework { padding: 80px 0; background: var(--pod-warm); }
.bc-framework__head { text-align: center; margin-bottom: 56px; }
.bc-framework__head h2 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 10px; }
.bc-framework__sub {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-md);
  color: var(--pod-text-muted);
  margin: 0 !important;
}
.bc-framework__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--pod-border);
  border: 1px solid var(--pod-border);
  border-radius: var(--pod-radius-md);
  overflow: hidden;
}
.bc-framework__item {
  background: var(--pod-cream);
  padding: 36px 32px;
}
.bc-framework__num {
  font-family: var(--pod-font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--pod-sage-lt);
  line-height: 1;
  margin-bottom: 14px;
}
.bc-framework__item h3 {
  font-size: 20px;
  color: var(--pod-ink);
  margin-bottom: 12px;
}
.bc-framework__item p {
  font-family: var(--pod-font-body);
  font-size: 15.5px;
  color: var(--pod-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Workshop section */
.bc-workshop { padding: 80px 0; }
.bc-workshop__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}
.bc-workshop__content h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 8px; }
.bc-workshop__content > p {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-md);
  color: var(--pod-text-muted);
  margin-bottom: 36px !important;
}
.bc-why-list { display: flex; flex-direction: column; gap: 28px; }
.bc-why-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: start;
}
.bc-why-item__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pod-forest);
  color: var(--pod-cream);
  font-family: var(--pod-font-display);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.bc-why-item strong {
  display: block;
  font-family: var(--pod-font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--pod-ink);
  margin-bottom: 6px;
}
.bc-why-item p {
  font-family: var(--pod-font-body);
  font-size: 15.5px;
  color: var(--pod-text-secondary);
  line-height: 1.7;
  margin: 0;
}
.bc-workshop__image {
  border-radius: var(--pod-radius-md);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(41,39,40,0.12);
  position: sticky;
  top: calc(var(--pod-header-h) + 24px);
}
.bc-workshop__image img { width: 100%; height: auto; display: block; }

/* Process section */
.bc-process { padding: 80px 0; background: var(--pod-bg-dark); }
.bc-process h2 {
  color: var(--pod-cream);
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 36px;
}
.bc-not-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.bc-not-item {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-md);
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid rgba(200,206,193,0.08);
  position: relative;
  color: var(--pod-sage-lt);
}
.bc-not-item:first-child { border-top: 1px solid rgba(200,206,193,0.08); }
.bc-not-item--no::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: rgba(178,92,79,0.7);
  font-size: 13px;
  font-weight: 700;
  top: 16px;
}
.bc-process__conversation {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,206,193,0.1);
  border-radius: var(--pod-radius-md);
  padding: 36px;
}
.bc-process__lead {
  font-family: var(--pod-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--pod-cream);
  margin-bottom: 24px !important;
}
.bc-process__steps p,
.bc-process__choice p {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-md);
  color: var(--pod-sage-lt);
  line-height: 1.75;
  margin-bottom: 18px !important;
}
.bc-process__choice {
  border-top: 1px solid rgba(200,206,193,0.1);
  margin-top: 24px;
  padding-top: 24px;
}
.bc-process__choice p { color: var(--pod-cream); }
.bc-process__choice p:last-child { margin-bottom: 0 !important; }

/* Testimonial */
.bc-testimonial { padding: 72px 0; background: var(--pod-cream); }
.bc-quote {
  background: var(--pod-bg-dark);
  border-radius: var(--pod-radius-md);
  padding: 40px 44px;
  position: relative;
  border-left: 4px solid var(--pod-forest);
}
.bc-quote::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 36px;
  font-family: var(--pod-font-body);
  font-size: 80px;
  line-height: 1;
  color: var(--pod-forest);
  opacity: 0.4;
}
.bc-quote p {
  font-family: var(--pod-font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--pod-sage-lt);
  margin-bottom: 20px !important;
  position: relative;
}
.bc-quote cite {
  font-family: var(--pod-font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--pod-sage);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* Brand Profile section */
.bc-profile { padding: 80px 0; background: var(--pod-warm); }
.bc-profile__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.bc-profile__content h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 10px; }
.bc-profile__content > p {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-md);
  color: var(--pod-text-muted);
  margin-bottom: 28px !important;
}
.bc-profile__list { margin: 0; padding: 0; list-style: none; }
.bc-profile__list li {
  font-family: var(--pod-font-body);
  font-size: 15.5px;
  color: var(--pod-ink);
  line-height: 1.6;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--pod-border);
  position: relative;
}
.bc-profile__list li:first-child { border-top: 1px solid var(--pod-border); }
.bc-profile__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--pod-forest);
  font-weight: 700;
}
.bc-profile__outcomes {
  background: var(--pod-bg-dark);
  border-radius: var(--pod-radius-md);
  padding: 36px;
  position: sticky;
  top: calc(var(--pod-header-h) + 24px);
}
.bc-profile__outcomes-label {
  font-family: var(--pod-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pod-sage);
  margin-bottom: 20px;
}
.bc-outcome-list { margin-bottom: 28px; }
.bc-outcome {
  font-family: var(--pod-font-body);
  font-size: 16px;
  color: var(--pod-cream);
  line-height: 1.6;
  padding: 12px 0;
  border-bottom: 1px solid rgba(200,206,193,0.08);
}
.bc-outcome:first-child { border-top: 1px solid rgba(200,206,193,0.08); }
.bc-profile__closer {
  font-family: var(--pod-font-body);
  font-size: 14.5px;
  color: var(--pod-sage-lt);
  line-height: 1.7;
  margin: 0 !important;
}

/* Investment */
.bc-investment { padding: 80px 0; }
.bc-investment h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 28px; }
.bc-investment__card {
  background: var(--pod-bg-dark);
  border-radius: var(--pod-radius-md);
  padding: 44px 48px;
  max-width: 640px;
}
.bc-investment__price {
  font-family: var(--pod-font-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--pod-cream);
  line-height: 1;
  margin-bottom: 16px;
}
.bc-investment__guarantee {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-md);
  color: var(--pod-sage-lt);
  line-height: 1.7;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(200,206,193,0.1);
}
.bc-investment__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bc-investment__detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bc-investment__detail strong {
  font-family: var(--pod-font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--pod-cream);
}
.bc-investment__detail span {
  font-family: var(--pod-font-body);
  font-size: 14px;
  color: var(--pod-sage);
}

/* Closing CTA */
.bc-cta { background: var(--pod-forest); padding: 80px 0; text-align: center; }
.bc-cta__inner { max-width: 560px; margin: 0 auto; }
.bc-cta__inner h2 {
  color: var(--pod-cream);
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 14px;
}
.bc-cta__inner p {
  font-family: var(--pod-font-body);
  font-style: italic;
  font-size: var(--pod-text-md);
  color: var(--pod-sage-lt);
  margin-bottom: 32px !important;
}
.bc-cta .pod-btn--primary {
  background: var(--pod-cream);
  color: var(--pod-forest);
  border-color: var(--pod-cream);
}
.bc-cta .pod-btn--primary:hover {
  background: var(--pod-sage-lt);
  border-color: var(--pod-sage-lt);
}

/* Brand clarity responsive */
@media (max-width: 960px) {
  .bc-workshop__inner { grid-template-columns: 1fr; gap: 40px; }
  .bc-workshop__image { position: static; order: -1; max-width: 480px; }
  .bc-profile__inner { grid-template-columns: 1fr; gap: 40px; }
  .bc-profile__outcomes { position: static; }
  .bc-framework__grid { grid-template-columns: 1fr; gap: 1px; }
}
@media (max-width: 640px) {
  .bc-investment__card { padding: 28px 24px; }
  .bc-investment__price { font-size: 44px; }
  .bc-investment__details { grid-template-columns: 1fr; gap: 16px; }
  .bc-process__conversation { padding: 24px 20px; }
  .bc-quote { padding: 28px 24px; }
  .bc-quote::before { left: 20px; top: 12px; font-size: 60px; }
}

/* =============================================================
   HOME PAGE
   ============================================================= */

/* Hero */
.home-hero {
  background: var(--pod-bg-dark);
  padding: 96px 0 88px;
}
.home-hero__inner { max-width: 720px; }
.home-hero h1 {
  color: var(--pod-cream);
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.home-hero__sub {
  font-family: var(--pod-font-body);
  font-style: italic;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--pod-sage-lt);
  line-height: 1.65;
  margin-bottom: 36px !important;
  max-width: 52ch;
}

/* Problem section */
.home-problem {
  padding: 80px 0;
  background: var(--pod-bg-dark);
}
.home-problem__head {
  margin-bottom: 48px;
}
.home-problem__intro {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-md);
  color: var(--pod-sage-lt);
  line-height: 1.7;
  margin: 8px 0 0 !important;
  max-width: 58ch;
}
/* The signature element — pain lines in large Lora italic */
.home-problem__lines {
  display: flex;
  flex-direction: column;
  margin-bottom: 56px;
}
.home-problem__line {
  font-family: var(--pod-font-body);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--pod-cream);
  line-height: 1.4;
  padding: 20px 0;
  border-bottom: 1px solid rgba(200,206,193,0.12);
  padding-left: 24px;
  position: relative;
}
.home-problem__line:first-child { border-top: 1px solid rgba(200,206,193,0.12); }
.home-problem__line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: var(--pod-forest);
  border-radius: 2px;
}
.home-problem__reframe {
  background: var(--pod-cream);
  border-radius: var(--pod-radius-md);
  padding: 32px 36px;
  border-left: 4px solid var(--pod-forest);
}
.home-problem__reframe p {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-md);
  color: var(--pod-ink);
  line-height: 1.75;
  margin: 0 !important;
}

/* System section */
.home-system {
  background: var(--pod-bg-dark);
  padding: 80px 0;
}
.home-system__head {
  margin-bottom: 52px;
  max-width: 56ch;
}
.home-system__head h2 {
  color: var(--pod-cream);
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.25;
}
.home-system__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.home-system__step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,206,193,0.1);
  border-radius: var(--pod-radius-md);
  padding: 24px 22px;
}
.home-system__step-label {
  font-family: var(--pod-font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--pod-cream);
  margin-bottom: 10px;
}
.home-system__step p {
  font-family: var(--pod-font-body);
  font-size: 14px;
  color: var(--pod-sage-lt);
  line-height: 1.65;
  margin: 0 !important;
}
.home-system__connector {
  width: 32px;
  height: 2px;
  background: var(--pod-forest);
  margin-top: 36px;
  flex-shrink: 0;
  position: relative;
}
.home-system__connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 0;
  height: 0;
  border-left: 6px solid var(--pod-forest);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* How it works */
.home-how {
  background: var(--pod-warm);
  padding: 80px 0;
}
.home-how > .wrap > .eyebrow { display: block; margin-bottom: 16px; }
.home-how > .wrap > h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--pod-ink);
  margin-bottom: 48px;
  max-width: 20ch;
  line-height: 1.15;
}
.home-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--pod-border);
  border: 1px solid var(--pod-border);
  border-radius: var(--pod-radius-md);
  overflow: hidden;
}
.home-how__step {
  background: var(--pod-cream);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home-how__num {
  font-family: var(--pod-font-display);
  font-weight: 800;
  font-size: 52px;
  color: var(--pod-forest);
  line-height: 1;
}
.home-how__step p {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-base);
  color: var(--pod-text-secondary);
  line-height: 1.7;
  margin: 0 !important;
}

/* Outcomes */
.home-outcomes {
  background: var(--pod-forest);
  padding: 80px 0;
}
.home-outcomes__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
.home-outcomes__label h2 {
  color: var(--pod-cream);
  font-size: clamp(22px, 2.8vw, 32px);
  margin-top: 10px;
}
.home-outcomes__list { display: flex; flex-direction: column; }
.home-outcome {
  font-family: var(--pod-font-body);
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--pod-cream);
  line-height: 1.5;
  padding: 18px 0;
  border-bottom: 1px solid rgba(200,206,193,0.2);
}
.home-outcome:first-child { border-top: 1px solid rgba(200,206,193,0.2); }

/* Bottom CTA */
.home-cta {
  background: var(--pod-bg-dark);
  padding: 96px 0;
}
.home-cta__inner {
  max-width: 600px;
}
.home-cta__inner h2 {
  color: var(--pod-cream);
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 16px;
  line-height: 1.15;
}
.home-cta__inner p {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-md);
  color: var(--pod-sage-lt);
  line-height: 1.75;
  margin-bottom: 36px !important;
}

/* Home responsive */
@media (max-width: 960px) {
  .home-system__steps {
    grid-template-columns: 1fr;
    gap: 2px;
    background: var(--pod-border);
    border: 1px solid var(--pod-border);
    border-radius: var(--pod-radius-md);
    overflow: hidden;
  }
  .home-system__step {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(200,206,193,0.08);
  }
  .home-system__connector { display: none; }
  .home-outcomes__inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 760px) {
  .home-how__steps { grid-template-columns: 1fr; }
  .home-hero { padding: 64px 0; }
  .home-cta { padding: 64px 0; }
}

/* =============================================================
   CONTACT PAGE
   ============================================================= */

.contact-hero {
  background: var(--pod-bg-dark);
  padding: 80px 0 72px;
}
.contact-hero__inner { max-width: 640px; }
.contact-hero h1 {
  color: var(--pod-cream);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.contact-hero__sub {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-md);
  color: var(--pod-sage-lt);
  line-height: 1.75;
  margin: 0 !important;
}

/* Two-card grid */
.contact-body { padding: 64px 0; background: var(--pod-warm); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Card base */
.contact-card {
  border-radius: var(--pod-radius-md);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card__label {
  font-family: var(--pod-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-card h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
}
.contact-card > p {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-base);
  line-height: 1.7;
  margin: 0 !important;
}

/* Primary card — dark */
.contact-card--primary {
  background: var(--pod-bg-dark);
}
.contact-card--primary .contact-card__label { color: var(--pod-sage); }
.contact-card--primary h2 { color: var(--pod-cream); }
.contact-card--primary > p { color: var(--pod-sage-lt); }
.contact-card__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 4px 0;
}
.contact-card__list li {
  font-family: var(--pod-font-body);
  font-size: 15px;
  color: var(--pod-sage-lt);
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid rgba(200,206,193,0.08);
  position: relative;
  line-height: 1.5;
}
.contact-card__list li:first-child { border-top: 1px solid rgba(200,206,193,0.08); }
.contact-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pod-forest);
  font-weight: 700;
  font-size: 13px;
}
.contact-card__list li:last-child { border-bottom: none; }
.contact-card--primary .pod-btn { align-self: flex-start; margin-top: 8px; }
.contact-card__email {
  font-family: var(--pod-display);
  font-size: 13px;
  color: var(--pod-sage);
  margin-top: 4px;
}
.contact-card__email a {
  color: var(--pod-sage-lt);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-card__email a:hover { color: var(--pod-cream); }

/* Form card — cream */
.contact-card--form {
  background: var(--pod-cream);
  border: 1px solid var(--pod-border);
}
.contact-card--form .contact-card__label { color: var(--pod-forest); }
.contact-card--form h2 { color: var(--pod-ink); }
.contact-card--form > p { color: var(--pod-text-muted); }

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form__error {
  background: rgba(178,92,79,0.08);
  border: 1px solid rgba(178,92,79,0.2);
  border-radius: var(--pod-radius-sm);
  padding: 12px 14px;
  font-family: var(--pod-font-body);
  font-size: 14px;
  color: #8a3020;
  line-height: 1.5;
}

/* Success state */
.contact-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(64,74,50,0.08);
  border: 1px solid rgba(64,74,50,0.15);
  border-radius: var(--pod-radius-md);
  padding: 20px;
  margin-top: 8px;
}
.contact-success svg { color: var(--pod-forest); flex-shrink: 0; margin-top: 2px; }
.contact-success strong {
  display: block;
  font-family: var(--pod-font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--pod-ink);
  margin-bottom: 4px;
}
.contact-success p {
  font-family: var(--pod-font-body);
  font-size: 14.5px;
  color: var(--pod-text-secondary);
  margin: 0 !important;
  line-height: 1.5;
}

/* What to expect */
.contact-expect {
  padding: 72px 0;
  background: var(--pod-cream);
  border-top: 1px solid var(--pod-border);
}
.contact-expect__inner { max-width: 860px; }
.contact-expect h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  margin-bottom: 40px;
  color: var(--pod-ink);
}
.contact-expect__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.contact-expect__item { display: flex; flex-direction: column; gap: 14px; }
.contact-expect__num {
  font-family: var(--pod-font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--pod-cream);
  background: var(--pod-forest);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-expect__item p {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-base);
  color: var(--pod-text-secondary);
  line-height: 1.7;
  margin: 0 !important;
}

/* Contact responsive */
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-expect__items { grid-template-columns: 1fr; gap: 24px; }
  .contact-card { padding: 28px 24px; }
}

/* Formstack embed normalization */
.contact-formstack { margin-top: 8px; }
.contact-formstack .fsForm { background: transparent !important; padding: 0 !important; border: none !important; }
.contact-formstack .fsLabel { font-family: var(--pod-font-display) !important; font-size: 11px !important; font-weight: 700 !important; letter-spacing: 0.06em !important; text-transform: uppercase !important; color: var(--pod-text-muted) !important; }
.contact-formstack .fsField,
.contact-formstack input[type="text"],
.contact-formstack input[type="email"],
.contact-formstack textarea { font-family: var(--pod-font-body) !important; font-size: var(--pod-text-base) !important; color: var(--pod-ink) !important; background: #fff !important; border: 1.5px solid rgba(41,39,40,0.2) !important; border-radius: var(--pod-radius-sm) !important; padding: 11px 14px !important; width: 100% !important; box-shadow: none !important; }
.contact-formstack input:focus,
.contact-formstack textarea:focus { border-color: var(--pod-forest) !important; outline: none !important; }
.contact-formstack .fsSubmitButton { font-family: var(--pod-font-display) !important; font-weight: 700 !important; font-size: var(--pod-text-sm) !important; background: var(--pod-forest) !important; color: var(--pod-cream) !important; border: none !important; border-radius: var(--pod-radius-sm) !important; padding: 13px 24px !important; cursor: pointer !important; width: 100% !important; transition: background var(--pod-ease) !important; }
.contact-formstack .fsSubmitButton:hover { background: var(--pod-forest-lt) !important; }

/* Assessment card (used in resources page) */
.resource-assessment-card {
  background: var(--pod-bg-dark);
  border-radius: var(--pod-radius-md);
  padding: 28px 26px;
  height: 100%;
}
.resource-assessment-card__label {
  font-family: var(--pod-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pod-sage);
  margin-bottom: 18px;
}
.resource-assessment-card__item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(200,206,193,0.08);
  font-family: var(--pod-font-body);
  font-size: 14.5px;
  color: var(--pod-sage-lt);
  line-height: 1.5;
}
.resource-assessment-card__item:first-of-type { border-top: 1px solid rgba(200,206,193,0.08); }
.resource-assessment-card__tag {
  font-family: var(--pod-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pod-cream);
  background: var(--pod-forest);
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.resource-assessment-card__footer {
  font-family: var(--pod-font-display);
  font-size: 12px;
  color: var(--pod-sage);
  margin-top: 16px;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── Podcast components (ported) ────────────────────────────── */
/* =============================================================
   podcast.css
   Clear Authentic Brands — Podcast & Episode Pages
   Loaded only on /podcast and /podcast/* routes.
   ============================================================= */

/* ── PODCAST HERO ───────────────────────────────────────────── */
.podcast-hero {
  background: var(--pod-bg-dark);
  padding: 72px 0 60px;
}
.podcast-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}
.podcast-hero__title {
  font-family: var(--pod-font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.08;
  color: var(--pod-cream);
  margin-bottom: 18px;
}
.podcast-hero__title em {
  font-style: italic;
  font-family: var(--pod-font-body);
  font-weight: 400;
  color: var(--pod-sage);
}
.podcast-hero__desc {
  font-family: var(--pod-font-body);
  font-size: var(--pod-text-md);
  line-height: 1.7;
  color: var(--pod-sage-lt);
  max-width: 52ch;
  margin-bottom: 32px;
}
.listen-links { display: flex; flex-wrap: wrap; gap: 10px; }
.listen-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--pod-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--pod-ink);
  background: var(--pod-sage-lt);
  padding: 10px 16px;
  border-radius: var(--pod-radius-sm);
  text-decoration: none;
  transition: background var(--pod-ease);
}
.listen-link:hover { background: var(--pod-sage); }
.listen-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.podcast-hero__cover {
  width: 220px;
  height: 220px;
  border-radius: var(--pod-radius-md);
  background: var(--pod-forest);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.podcast-hero__cover img { width: 100%; height: 100%; object-fit: cover; }
.podcast-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pod-font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pod-sage);
  text-align: center;
  padding: 20px;
  line-height: 1.5;
}

/* ── TOPIC FILTERS ──────────────────────────────────────────── */
.filters-bar {
  background: var(--pod-cream);
  border-bottom: 1px solid var(--pod-border);
  padding: 18px 0;
  position: sticky;
  top: var(--pod-header-h);
  z-index: 100;
}
.filters-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.filters-inner::-webkit-scrollbar { display: none; }
.filter-label {
  font-family: var(--pod-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pod-sage);
  white-space: nowrap;
  margin-right: 4px;
  flex-shrink: 0;
}
.filter-btn {
  font-family: var(--pod-font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--pod-ink);
  background: transparent;
  border: 1.5px solid var(--pod-border);
  border-radius: 20px;
  padding: 6px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--pod-ease);
  flex-shrink: 0;
}
.filter-btn:hover { border-color: var(--pod-forest); color: var(--pod-forest); }
.filter-btn.is-active { background: var(--pod-forest); border-color: var(--pod-forest); color: var(--pod-cream); }

/* ── EPISODE LIST ───────────────────────────────────────────── */
.episodes-section { padding: 48px 0 80px; }
.section-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.section-row-label {
  font-family: var(--pod-font-display);
  font-size: var(--pod-text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pod-sage);
}

/* Episode card */
.ep-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 22px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--pod-border);
  text-decoration: none;
  color: inherit;
  position: relative;
}
.ep-card::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--pod-forest);
  opacity: 0;
  transition: opacity var(--pod-ease);
}
.ep-card:hover::before { opacity: 1; }
.ep-card:first-child { border-top: 1px solid var(--pod-border); }

.ep-num {
  font-family: var(--pod-font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--pod-sage-lt);
  line-height: 1;
  padding-top: 4px;
}
.ep-body { min-width: 0; }
.ep-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
.ep-date, .ep-duration {
  font-family: var(--pod-font-display);
  font-size: 11.5px;
  color: var(--pod-sage);
}
.ep-title {
  font-family: var(--pod-font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--pod-ink);
  line-height: 1.3;
  margin-bottom: 7px;
  transition: color var(--pod-ease);
}
.ep-card:hover .ep-title { color: var(--pod-forest); }
.ep-desc {
  font-family: var(--pod-font-body);
  font-size: 14px;
  color: var(--pod-text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ep-play {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pod-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
  transition: background var(--pod-ease);
}
.ep-card:hover .ep-play { background: var(--pod-forest); }
.ep-play svg { width: 17px; height: 17px; fill: var(--pod-cream); margin-left: 2px; }

/* Featured episode */
.ep-card--featured {
  background: var(--pod-bg-dark);
  padding: 30px 26px;
  border-radius: var(--pod-radius-md);
  border: none;
  margin-bottom: 6px;
}
.ep-card--featured::before { display: none; }
.ep-card--featured .ep-num { color: var(--pod-sage); }
.ep-card--featured .ep-title { color: var(--pod-cream); font-size: 20px; }
.ep-card--featured .ep-desc { color: var(--pod-sage-lt); -webkit-line-clamp: 3; }
.ep-card--featured .ep-date,
.ep-card--featured .ep-duration { color: var(--pod-sage); }
.ep-card--featured .ep-play { background: var(--pod-forest); }
.ep-card--featured:hover .ep-play { background: var(--pod-forest-lt); }

/* Subscribe band */
.subscribe-band { background: var(--pod-forest); padding: 52px 0; }
.subscribe-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.subscribe-band h2 {
  font-family: var(--pod-font-display);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--pod-cream);
  margin-bottom: 6px;
}
.subscribe-band p { font-family: var(--pod-font-body); font-size: 16px; color: var(--pod-sage-lt); }
.subscribe-links { display: flex; flex-direction: column; gap: 10px; }

/* ── EPISODE PAGE ───────────────────────────────────────────── */
.ep-header { background: var(--pod-bg-dark); padding: 56px 0 48px; }
.ep-header h1 { color: var(--pod-cream); }
.ep-header__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.ep-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.ep-number, .ep-date-dur {
  font-family: var(--pod-font-display);
  font-size: 12px;
  color: var(--pod-sage);
}
.ep-lede {
  font-family: var(--pod-font-body);
  font-style: italic;
  font-size: var(--pod-text-md);
  line-height: 1.7;
  color: var(--pod-sage-lt);
  margin-bottom: 28px;
  max-width: 54ch;
}
.ep-listen-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Player card */
.player-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--pod-border-dark);
  border-radius: var(--pod-radius-md);
  padding: 24px;
}
.player-embed {
  width: 100%;
  border-radius: var(--pod-radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.06);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-embed iframe { width: 100%; border: none; display: block; }
.player-embed-placeholder {
  font-family: var(--pod-font-display);
  font-size: 12px;
  color: var(--pod-sage);
  text-align: center;
  padding: 20px;
}
.share-row { display: flex; gap: 8px; }
.share-btn {
  font-family: var(--pod-font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--pod-sage);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--pod-border-dark);
  border-radius: var(--pod-radius-sm);
  padding: 7px 12px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all var(--pod-ease);
}
.share-btn:hover { background: rgba(255,255,255,0.1); color: var(--pod-cream); }

/* Episode content layout */
.ep-content-wrap {
  display: grid;
  grid-template-columns: 1fr 264px;
  gap: 64px;
  padding: 52px 0 80px;
  align-items: start;
}

/* Q&A section */
.qa-section { margin-top: 48px; }
.qa-item { padding: 24px 0; border-top: 1px solid var(--pod-border); }
.qa-item:last-child { border-bottom: 1px solid var(--pod-border); }
.qa-q {
  font-family: var(--pod-font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--pod-ink);
  line-height: 1.3;
  margin: 0 0 14px !important;
}
.qa-a { font-size: 16.5px; line-height: 1.72; color: var(--pod-text-secondary); }
.qa-a p  { font-size: 16.5px; margin-bottom: 14px; }
.qa-a ul { margin-bottom: 14px; }

/* Sidebar */
.ep-sidebar { position: sticky; top: calc(var(--pod-header-h) + 16px); }
.sidebar-section { margin-bottom: 30px; }
.sidebar-label {
  font-family: var(--pod-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pod-sage);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--pod-border);
}
.toc-list li { padding: 0; border: none; margin-bottom: 4px; }
.toc-list li::before { display: none; }
.toc-list a {
  font-family: var(--pod-font-display);
  font-size: 12.5px;
  color: var(--pod-text-muted);
  text-decoration: none;
  display: block;
  padding: 5px 0 5px 12px;
  border-left: 2px solid transparent;
  transition: all var(--pod-ease);
  line-height: 1.4;
}
.toc-list a:hover { color: var(--pod-forest); border-left-color: var(--pod-forest); }
.related-ep { display: block; text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--pod-border); }
.related-ep:first-of-type { border-top: 1px solid var(--pod-border); }
.related-ep__num { font-family: var(--pod-font-display); font-size: 11px; font-weight: 700; color: var(--pod-sage); margin-bottom: 3px; }
.related-ep__title { font-family: var(--pod-font-display); font-size: 13px; font-weight: 600; color: var(--pod-ink); line-height: 1.35; transition: color var(--pod-ease); }
.related-ep:hover .related-ep__title { color: var(--pod-forest); }

/* ── PODCAST RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .podcast-hero__inner { grid-template-columns: 1fr; }
  .podcast-hero__cover { width: 160px; height: 160px; order: -1; }
  .ep-header__inner { grid-template-columns: 1fr; }
  .player-card { display: none; }
  .ep-content-wrap { grid-template-columns: 1fr; gap: 0; }
  .ep-sidebar { position: static; margin-top: 48px; padding-top: 40px; border-top: 2px solid var(--pod-border); }
  .subscribe-band__inner { grid-template-columns: 1fr; gap: 24px; }
  .subscribe-links { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .ep-card { grid-template-columns: 40px 1fr auto; gap: 14px; }
  .ep-listen-row { flex-direction: column; align-items: flex-start; }
  .ep-play { width: 40px; height: 40px; }
  .podcast-hero__cover { width: 120px; height: 120px; }
}


/* ── Additions for the live build ──────────────────────────────── */

/* Archive header */
.archive-head { padding: 44px 0 8px; }
.archive-head h1 {
  font-family: var(--pod-font-display); font-weight: 800;
  font-size: var(--pod-text-2xl); color: var(--pod-ink); margin: 0 0 10px;
}
.archive-lede {
  font-family: var(--pod-font-body); font-size: var(--pod-text-md);
  color: var(--pod-text-secondary); max-width: 60ch; margin: 0;
}
.archive-empty {
  font-family: var(--pod-font-body); color: var(--pod-text-secondary); padding: 40px 0;
}
.section-row-count {
  font-family: var(--pod-font-display); font-size: var(--pod-text-xs);
  font-weight: 600; color: var(--pod-text-muted); letter-spacing: .06em;
  text-transform: uppercase; margin-left: 12px;
}

/* Pagination */
.pager {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 44px; flex-wrap: wrap;
}
.pager-list {
  display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap;
}
.pager-num, .pager-btn {
  font-family: var(--pod-font-display); font-size: var(--pod-text-sm); font-weight: 600;
  color: var(--pod-ink); text-decoration: none; border: 1px solid var(--pod-border);
  border-radius: 6px; padding: 8px 13px; display: inline-block; transition: .14s;
}
.pager-num:hover, .pager-btn:hover { border-color: var(--pod-forest); color: var(--pod-forest); }
.pager-num.is-current { background: var(--pod-forest); border-color: var(--pod-forest); color: #fff; }
.pager-btn.is-disabled { opacity: .35; }

/* Previous / next episode */
.ep-pager { border-top: 1px solid var(--pod-border); margin-top: 56px; padding: 32px 0 8px; }
.ep-pager__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ep-pager__link {
  display: flex; flex-direction: column; gap: 5px; text-decoration: none;
  border: 1px solid var(--pod-border); border-radius: 10px; padding: 16px 18px;
  transition: .14s;
}
.ep-pager__link:hover { border-color: var(--pod-forest); background: rgba(64,74,50,.04); }
.ep-pager__link--next { text-align: right; }
.ep-pager__dir {
  font-family: var(--pod-font-display); font-size: var(--pod-text-xs); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--pod-sage);
}
.ep-pager__title {
  font-family: var(--pod-font-display); font-size: var(--pod-text-sm);
  font-weight: 600; color: var(--pod-ink); line-height: 1.4;
}

/* Latest-episodes strip on the hub */
.pod-latest { background: var(--pod-cream); padding: 56px 0 64px; }
.pod-latest__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 26px; flex-wrap: wrap;
}
.pod-latest__head h2 {
  font-family: var(--pod-font-display); font-weight: 800;
  font-size: var(--pod-text-xl); color: var(--pod-ink); margin: 0;
}
.pod-latest__all {
  font-family: var(--pod-font-display); font-size: var(--pod-text-sm); font-weight: 700;
  color: var(--pod-forest); text-decoration: none; letter-spacing: .02em;
}
.pod-latest__all:hover { text-decoration: underline; }

/* Closing action of the Latest Episodes strip: after scrolling the six
   cards the next step is right there, no scrolling back to the header. */
.pod-latest__more { text-align: center; margin-top: 34px; }

@media (max-width: 700px) {
  .ep-pager__inner { grid-template-columns: 1fr; }
  .ep-pager__link--next { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  .ep-card, .pager-num, .pager-btn, .ep-pager__link { transition: none; }
}

/* ── Light-page header fix ─────────────────────────────────────────
   The site header is position:fixed, and its dark backdrop
   (.site-header::before) is opacity:0 until .scrolled. Every other page
   on the site opens with a dark hero, so the white nav text reads fine.
   The episode and archive pages open on a LIGHT background, so before
   any scroll the nav was invisible and the fixed header covered the
   breadcrumb.

   These pages set $page['body_class'] = 'pod-doc'. That lets us give the
   header its solid state from the first paint, and push the first
   element clear of it. The hub (dark hero) is untouched. */
body.pod-doc .site-header::before { opacity: 1; }
body.pod-doc .site-header        { padding-block: 0.8rem; }

body.pod-doc .breadcrumb {
  padding-top: calc(var(--pod-header-h) + 14px);
}

@media (max-width: 700px) {
  body.pod-doc .breadcrumb { padding-top: calc(var(--pod-header-h) + 6px); }
}
