/* =========================================================================
   Jobs-to-be-Done — jtbd2026 theme stylesheet
   Brand tokens ported from style-guide/tokens.css + marketing/theme.css.
   Light backgrounds, single orange accent, warm greys, Inter + Source Serif Pro.
   Component classes are prefixed .jtbd- to avoid plugin collisions.
   ========================================================================= */


:root {
  /* Orange (brand) */
  --orange-50:  hsl(33, 100%, 97%);
  --orange-100: hsl(34, 100%, 92%);
  --orange-200: hsl(33, 97%, 82%);
  --orange-300: hsl(31, 95%, 71%);
  --orange-400: hsl(28, 93%, 61%);
  --orange-500: hsl(25, 90%, 52%);
  --orange-600: hsl(22, 90%, 44%);
  --orange-700: hsl(19, 88%, 36%);
  --orange-800: hsl(16, 82%, 28%);
  --orange-900: hsl(14, 78%, 20%);

  /* Warm grey */
  --grey-50:  hsl(40, 20%, 98%);
  --grey-100: hsl(40, 16%, 95%);
  --grey-200: hsl(38, 14%, 89%);
  --grey-300: hsl(36, 10%, 78%);
  --grey-400: hsl(34, 8%, 64%);
  --grey-500: hsl(32, 6%, 49%);
  --grey-600: hsl(30, 8%, 38%);
  --grey-700: hsl(28, 10%, 28%);
  --grey-800: hsl(24, 14%, 18%);
  --grey-900: hsl(20, 18%, 11%);

  /* Forces */
  --push-100: hsl(0, 90%, 95%);   --push-500: hsl(4, 78%, 52%);    --push-700: hsl(2, 72%, 36%);
  --pull-100: hsl(145, 70%, 94%); --pull-500: hsl(152, 60%, 40%);  --pull-700: hsl(154, 62%, 28%);
  --anxiety-100: hsl(46, 95%, 94%); --anxiety-500: hsl(38, 85%, 48%); --anxiety-700: hsl(32, 80%, 34%);
  --habit-100: hsl(228, 70%, 95%); --habit-500: hsl(232, 55%, 52%); --habit-700: hsl(234, 52%, 38%);

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --serif: 'Source Serif Pro', Georgia, serif;

  --shadow-sm: 0 1px 2px 0 hsla(20, 18%, 11%, 0.05);
  --shadow-md: 0 4px 6px -1px hsla(20, 18%, 11%, 0.07), 0 2px 4px -2px hsla(20, 18%, 11%, 0.05);
  --shadow-lg: 0 10px 15px -3px hsla(20, 18%, 11%, 0.08), 0 4px 6px -4px hsla(20, 18%, 11%, 0.05);
  --shadow-xl: 0 20px 25px -5px hsla(20, 18%, 11%, 0.1), 0 8px 10px -6px hsla(20, 18%, 11%, 0.05);

  --container: 1200px;
  --narrow: 760px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--grey-800);
  background: var(--grey-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-600); text-decoration: none; }
a:hover { color: var(--orange-700); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.narrow { max-width: var(--narrow); margin: 0 auto; padding: 0 32px; }
@media (max-width: 600px){ .container, .narrow { padding: 0 20px; } }

.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--orange-600); margin: 0 0 16px;
}
.h1 { font-size: clamp(34px, 6vw, 60px); font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; color: var(--grey-900); margin: 0 0 20px; }
.h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; color: var(--grey-900); margin: 0 0 16px; }
.h3 { font-size: 22px; font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; color: var(--grey-900); margin: 0 0 12px; }
.lede { font-size: clamp(18px, 2vw, 21px); line-height: 1.5; color: var(--grey-600); margin: 0 0 28px; max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 10px;
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  border: 2px solid transparent; cursor: pointer; line-height: 1;
  transition: transform .12s ease, background-color .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--orange-500); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--orange-600); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: #fff; color: var(--grey-800); border-color: var(--grey-200); }
.btn-secondary:hover { background: var(--grey-50); border-color: var(--grey-300); color: var(--grey-900); }
.btn-ghost { background: transparent; color: var(--grey-700); }
.btn-ghost:hover { color: var(--grey-900); }
.btn-outline { background: #fff; color: var(--orange-700); border-color: var(--orange-500); }
.btn-outline:hover { background: var(--orange-50); border-color: var(--orange-600); color: var(--orange-700); }
.btn-lg { padding: 18px 34px; font-size: 18px; border-radius: 12px; }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; background: #fff; border: 1px solid var(--grey-200);
  border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--grey-700);
  box-shadow: var(--shadow-sm);
}
.pill-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--orange-500); }
.cat-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 9px; border-radius: 6px;
}
.cat-tag.radio   { background: var(--habit-100); color: var(--habit-700); }
.cat-tag.news    { background: var(--orange-50); color: var(--orange-700); }
.cat-tag.events  { background: var(--pull-100); color: var(--pull-700); }
.cat-tag.resources { background: var(--grey-100); color: var(--grey-700); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: hsla(40, 20%, 98%, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--grey-200);
}
.site-header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: 17px; font-weight: 800; color: var(--grey-900); letter-spacing: -0.02em; white-space: nowrap; }
.brand-sub { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange-600); margin-top: 3px; white-space: nowrap; }
.main-nav, .main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav li { list-style: none; margin: 0; padding: 0; }
.main-nav li::marker { content: none; }
.main-nav a {
  display: inline-block;
  padding: 8px 14px; border-radius: 8px; font-size: 15px; font-weight: 500;
  color: var(--grey-700); transition: background .15s ease, color .15s ease;
}
.main-nav .current-menu-item > a, .main-nav .current_page_item > a { background: var(--grey-100); color: var(--grey-900); }
.main-nav a:hover, .main-nav a.is-active { background: var(--grey-100); color: var(--grey-900); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--grey-200);
  background: #fff; border-radius: 10px; cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--grey-800); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
@media (max-width: 860px){
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--grey-50); border-bottom: 1px solid var(--grey-200);
    padding: 8px 20px 16px; box-shadow: var(--shadow-lg);
    display: none;
  }
  .site-header.nav-open .main-nav { display: block; }
  .main-nav, .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { display: block; padding: 12px 8px; border-radius: 8px; font-size: 16px; }
  .site-header.nav-open .nav-toggle span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }
}

/* ---------- Hero (home) ---------- */
.hero {
  padding: 72px 0 64px;
  background:
    radial-gradient(900px 500px at 85% 8%, var(--orange-50), transparent 60%),
    radial-gradient(700px 400px at 2% 92%, hsla(152, 60%, 40%, 0.06), transparent 60%),
    var(--grey-50);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 940px){ .hero-grid { grid-template-columns: 1fr; gap: 36px; } }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-cta .btn { padding: 16px 28px; font-size: 16px; }
/* Keep the two CTAs on one row on desktop (hero is two-column at >=941px). */
@media (min-width: 941px) {
  .hero-cta { flex-wrap: nowrap; }
  .hero-cta .btn { white-space: nowrap; }
}
.hero-meta { display: flex; gap: 16px; margin-top: 24px; color: var(--grey-500); font-size: 13px; flex-wrap: wrap; }
.hero-meta span { white-space: nowrap; }
.hero-meta strong { color: var(--grey-800); font-weight: 700; }
@media (min-width: 941px) { .hero-meta { flex-wrap: nowrap; } }

/* Featured episode card on hero right */
.feature-card {
  background: #fff; border: 1px solid var(--grey-200); border-radius: 20px;
  box-shadow: var(--shadow-xl); overflow: hidden; text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--orange-200); }
.feature-head {
  padding: 38px 24px 0;
  background: radial-gradient(130% 120% at 50% 0%, var(--orange-50), #fff 72%);
  display: flex; justify-content: center;
}
.feature-avatar { width: 120px; height: 120px; flex-shrink: 0; }
.feature-avatar .guest-initials { font-size: 40px; }
.feature-card:hover .feature-avatar { box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--orange-300), var(--shadow-lg); }
.feature-card-body { padding: 18px 28px 30px; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.feature-name { font-size: 22px; font-weight: 800; color: var(--grey-900); letter-spacing: -0.02em; line-height: 1.15; }
.feature-card-body .guest-role { font-size: 14px; color: var(--grey-500); }
.feature-card-body .h3 { margin: 14px 0 0; font-size: 19px; line-height: 1.3; }
.feature-card-body .h3 a { color: inherit; }
.feature-listen {
  margin-top: 18px; padding-top: 16px; width: 100%;
  border-top: 1px solid var(--grey-100);
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 15px; font-weight: 600; color: var(--orange-600);
}
.feature-listen:hover { color: var(--orange-700); }
.feature-listen span { display: inline-block; transition: transform .15s ease; }
.feature-card:hover .feature-listen span { transform: translateX(3px); }
.feature-card-body .h3 a:hover { color: var(--orange-700); }
.feature-card-body .btn svg { vertical-align: middle; }

/* ---------- Section scaffolding ---------- */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section.alt { background: #fff; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.section-head .h2 { margin: 0; }
.section-head-link { font-weight: 600; font-size: 15px; white-space: nowrap; }
@media (max-width: 600px){ .section-head { flex-direction: column; align-items: flex-start; gap: 8px; } }

/* ---------- Content card grid ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 940px){ .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .card-grid, .card-grid.cols-2 { grid-template-columns: 1fr; } }

.post-card {
  background: #fff; border: 1px solid var(--grey-200); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--orange-200); }
.post-card-media { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--grey-100), var(--grey-200)); position: relative; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; }
.post-card-media.radio { background: linear-gradient(135deg, var(--habit-700), var(--grey-900)); }
.post-card-media.news { background: linear-gradient(135deg, var(--orange-400), var(--orange-700)); }
.post-card-media.events { background: linear-gradient(135deg, var(--pull-500), var(--pull-700)); }
.post-card-media .media-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: hsla(0,0%,100%,0.9); }
.post-card-media .media-icon svg { width: 40px; height: 40px; }
.post-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card-title { font-size: 18px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; color: var(--grey-900); margin: 2px 0 0; }
.post-card-title a { color: inherit; }
.post-card-title a:hover { color: var(--orange-700); }
.post-card-excerpt { font-size: 15px; color: var(--grey-600); margin: 0; }
.post-card-meta { margin-top: auto; padding-top: 8px; font-size: 13px; color: var(--grey-500); display: flex; gap: 12px; align-items: center; }

/* ---------- Podcast guest cards ---------- */
.guest-card { text-align: center; }
.guest-top { display: flex; justify-content: center; padding: 30px 20px 4px; }
.guest-avatar {
  width: 108px; height: 108px; border-radius: 999px; overflow: hidden;
  background: var(--grey-100); position: relative;
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--grey-200), var(--shadow-md);
  transition: box-shadow .15s ease;
}
.guest-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.guest-avatar.is-initials { display: flex; align-items: center; justify-content: center; }
.guest-initials { color: #fff; font-weight: 800; font-size: 36px; letter-spacing: -0.02em; }
/* All avatars share the same neutral ring; only the initials-avatar fill is tinted. */
.guest-avatar.is-initials.ring-habit  { background: linear-gradient(135deg, var(--habit-500), var(--habit-700)); }
.guest-avatar.is-initials.ring-orange { background: linear-gradient(135deg, var(--orange-400), var(--orange-600)); }
.guest-avatar.is-initials.ring-pull   { background: linear-gradient(135deg, var(--pull-500), var(--pull-700)); }
.guest-avatar.is-initials.ring-push   { background: linear-gradient(135deg, var(--push-500), var(--push-700)); }
.guest-card:hover .guest-avatar { box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--orange-300), var(--shadow-lg); }

.guest-body { padding: 16px 22px 22px; display: flex; flex-direction: column; align-items: center; gap: 2px; flex: 1; }
.guest-name { font-size: 17px; font-weight: 700; color: var(--grey-900); letter-spacing: -0.01em; }
.guest-role { font-size: 13px; color: var(--grey-500); }
.guest-ep { font-size: 15px; font-weight: 600; color: var(--grey-800); line-height: 1.4; margin: 13px 0 0; }
.guest-ep a { color: inherit; }
.guest-ep a:hover { color: var(--orange-700); }
.guest-foot {
  margin-top: 16px; padding-top: 14px; width: 100%;
  border-top: 1px solid var(--grey-100);
  display: flex; justify-content: center; align-items: center; gap: 10px;
  font-size: 13px; color: var(--grey-500);
}
.guest-listen { display: inline-flex; align-items: center; gap: 5px; color: var(--orange-600); font-weight: 600; }
.guest-listen svg { width: 12px; height: 12px; }

/* Compact list item (sidebar / events strip) */
.mini-list { display: flex; flex-direction: column; gap: 4px; }
.mini-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--grey-200); }
.mini-item:last-child { border-bottom: none; }
.mini-date { text-align: center; min-width: 48px; }
.mini-date .d { font-size: 20px; font-weight: 800; color: var(--grey-900); line-height: 1; }
.mini-date .m { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange-600); margin-top: 4px; }
.mini-title { font-size: 16px; font-weight: 600; color: var(--grey-900); line-height: 1.35; }
.mini-title a { color: inherit; }
.mini-meta { font-size: 13px; color: var(--grey-500); margin-top: 3px; }

/* ---------- Course funnel band ---------- */
.course-band { padding: 88px 0; background: var(--grey-900); color: var(--grey-100); position: relative; overflow: hidden; }
.course-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(1000px 500px at 82% 0%, hsla(25, 90%, 52%, 0.18), transparent 60%),
    radial-gradient(800px 400px at 0% 100%, hsla(232, 55%, 52%, 0.15), transparent 60%);
}
.course-band-grid { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
@media (max-width: 940px){ .course-band-grid { grid-template-columns: 1fr; gap: 36px; } }
.course-band .h2 { color: #fff; }
.course-band .lede { color: hsla(40,20%,98%,0.72); }
.course-band-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  background: hsla(25,90%,52%,0.16); border: 1px solid hsla(25,90%,52%,0.4);
  border-radius: 999px; font-size: 12px; font-weight: 700; color: var(--orange-300);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 22px;
}
.course-list { list-style: none; padding: 0; margin: 22px 0 0; }
.course-list li { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid hsla(40,20%,98%,0.08); color: hsla(40,20%,98%,0.88); font-size: 16px; }
.course-list li:last-child { border-bottom: none; }
.course-check { flex-shrink: 0; width: 22px; height: 22px; border-radius: 999px; background: var(--orange-500); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; }
.course-card-promo { background: hsla(40,20%,98%,0.04); border: 1px solid hsla(40,20%,98%,0.12); border-radius: 20px; padding: 32px; backdrop-filter: blur(10px); }
.course-price { font-size: 44px; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1; }
.course-price small { font-size: 15px; font-weight: 500; color: hsla(40,20%,98%,0.6); }

/* ---------- Four forces mini diagram ---------- */
.forces-diagram { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px){ .forces-diagram { grid-template-columns: 1fr; } }
.force { padding: 26px; border-radius: 16px; }
.force-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.force-dot { width: 13px; height: 13px; border-radius: 999px; }
.force-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.force-desc { font-size: 15px; color: var(--grey-800); font-weight: 500; }
.force.push { background: var(--push-100); } .force.push .force-dot { background: var(--push-500); } .force.push .force-name { color: var(--push-700); }
.force.pull { background: var(--pull-100); } .force.pull .force-dot { background: var(--pull-500); } .force.pull .force-name { color: var(--pull-700); }
.force.anxiety { background: var(--anxiety-100); } .force.anxiety .force-dot { background: var(--anxiety-500); } .force.anxiety .force-name { color: var(--anxiety-700); }
.force.habit { background: var(--habit-100); } .force.habit .force-dot { background: var(--habit-500); } .force.habit .force-name { color: var(--habit-700); }

/* ---------- Timeline visual (homepage) ---------- */
.timeline-viz {
  max-width: 920px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
}
.timeline-viz::before {
  content: ''; position: absolute; top: 9px; left: 8%; right: 8%; height: 3px;
  background: var(--grey-200); border-radius: 999px; z-index: 0;
}
.tl-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 6px; }
.tl-dot { width: 20px; height: 20px; border-radius: 999px; background: #fff; border: 3px solid var(--grey-300); box-shadow: var(--shadow-sm); }
.tl-dot.is-event { background: var(--orange-500); border-color: var(--orange-500); }
.tl-dot.is-end { background: var(--grey-900); border-color: var(--grey-900); }
.tl-label { margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--grey-700); line-height: 1.3; }
@media (max-width: 720px) {
  .timeline-viz { grid-template-columns: 1fr; max-width: 320px; gap: 0; }
  .timeline-viz::before { top: 8%; bottom: 8%; left: 9px; right: auto; width: 3px; height: auto; }
  .tl-step { flex-direction: row; gap: 14px; text-align: left; padding: 11px 0; }
  .tl-label { margin-top: 0; }
}

/* ---------- Struggling-moment outcome cards (homepage) ---------- */
.outcome-grid { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 760px){ .outcome-grid { grid-template-columns: 1fr; } }
.outcome-card { background: #fff; border: 1px solid var(--grey-200); border-radius: 16px; padding: 28px; }
.outcome-card.is-highlight { background: var(--orange-50); border-color: var(--orange-200); }
.outcome-num {
  width: 36px; height: 36px; border-radius: 999px; background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: var(--grey-700); margin-bottom: 16px;
}
.outcome-card.is-highlight .outcome-num { background: var(--orange-500); color: #fff; }
.outcome-card .h3 { font-size: 18px; margin-bottom: 8px; }
.outcome-desc { font-size: 15px; color: var(--grey-600); margin: 0; }

/* ---------- Email signup ---------- */
.signup { background: var(--orange-50); border: 1px solid var(--orange-200); border-radius: 20px; padding: 40px; text-align: center; }
.signup-form { display: flex; gap: 10px; max-width: 460px; margin: 22px auto 0; }
.signup-form input { flex: 1; padding: 14px 16px; border-radius: 10px; border: 1px solid var(--grey-300); font-size: 15px; font-family: var(--sans); }
.signup-form input:focus { outline: 2px solid var(--orange-400); border-color: var(--orange-400); }
@media (max-width: 520px){ .signup-form { flex-direction: column; } }

/* ---------- Single post layout ---------- */
.post-hero { padding: 48px 0 8px; }
.breadcrumbs { font-size: 13px; color: var(--grey-500); margin-bottom: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--grey-500); }
.breadcrumbs a:hover { color: var(--orange-600); }
.breadcrumbs .sep { color: var(--grey-300); }
.post-title { font-size: clamp(30px, 4.5vw, 46px); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; color: var(--grey-900); margin: 12px 0 16px; }
.post-byline { display: flex; align-items: center; gap: 14px; color: var(--grey-500); font-size: 14px; margin-bottom: 8px; flex-wrap: wrap; }
.avatar { width: 40px; height: 40px; border-radius: 999px; background: var(--orange-100); color: var(--orange-700); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.post-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 56px; padding: 40px 0 80px; align-items: start; }
@media (max-width: 1000px){ .post-layout { grid-template-columns: 1fr; gap: 40px; } }

/* Prose */
.prose { font-size: 18px; line-height: 1.7; color: var(--grey-700); max-width: 68ch; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; color: var(--grey-900); margin-top: 1.8em; line-height: 1.2; }
.prose h3 { font-size: 21px; font-weight: 700; color: var(--grey-900); margin-top: 1.6em; }
.prose a { color: var(--orange-700); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--orange-200); }
.prose a:hover { text-decoration-color: var(--orange-500); }
/* Buttons inside prose keep their button styling (no link underline/recolor). */
.prose a.btn { text-decoration: none; }
.prose a.btn-primary, .prose a.btn-primary:hover { color: #fff; }
.prose a.btn-secondary { color: var(--grey-800); }
.prose img { border-radius: 12px; margin: 1.6em 0; box-shadow: var(--shadow-md); }
.prose blockquote {
  border-left: 3px solid var(--orange-400); padding: 4px 0 4px 24px; margin: 1.6em 0;
  font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--grey-800); line-height: 1.45;
}
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: 0.5em; }
.prose code { background: var(--grey-100); padding: 2px 6px; border-radius: 5px; font-size: 0.9em; }

/* Audio player block (radio) */
.audio-block { background: var(--grey-900); border-radius: 16px; padding: 26px; color: #fff; display: flex; align-items: center; gap: 20px; margin: 8px 0 28px; }
.audio-block .play { width: 56px; height: 56px; border-radius: 999px; background: var(--orange-500); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.audio-block .play svg { width: 22px; height: 22px; color: #fff; margin-left: 3px; }
.audio-block-info .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange-300); font-weight: 700; }
.audio-block-info .title { font-size: 17px; font-weight: 700; margin-top: 4px; }
.audio-waveform { flex: 1; height: 36px; background: repeating-linear-gradient(90deg, hsla(0,0%,100%,0.25) 0 2px, transparent 2px 6px); border-radius: 4px; align-self: center; }
@media (max-width: 600px){ .audio-waveform { display: none; } }

/* Event meta box */
.event-meta { background: #fff; border: 1px solid var(--grey-200); border-radius: 16px; padding: 26px; box-shadow: var(--shadow-sm); }
.event-meta-row { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--grey-100); align-items: flex-start; }
.event-meta-row:last-of-type { border-bottom: none; }
.event-meta-ico { width: 22px; color: var(--orange-600); flex-shrink: 0; }
.event-meta-row .k { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey-500); font-weight: 700; }
.event-meta-row .v { font-size: 15px; color: var(--grey-900); font-weight: 600; }
.event-status { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; }
.event-status.past { background: var(--grey-100); color: var(--grey-600); }
.event-status.upcoming { background: var(--pull-100); color: var(--pull-700); }

/* ---------- Sidebar ---------- */
.sidebar { display: flex; flex-direction: column; gap: 28px; position: sticky; top: 88px; }
.widget { background: #fff; border: 1px solid var(--grey-200); border-radius: 16px; padding: 24px; }
.widget-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey-500); margin: 0 0 16px; }
.widget.signup-widget { background: var(--orange-50); border-color: var(--orange-200); }
.widget .signup-form { flex-direction: column; margin-top: 14px; max-width: none; }

/* ---------- Archive header ---------- */
.archive-hero { padding: 56px 0 40px; background: linear-gradient(180deg, var(--orange-50), var(--grey-50)); border-bottom: 1px solid var(--grey-200); }
.archive-hero .h1 { margin-bottom: 12px; }
.archive-count { font-size: 14px; color: var(--grey-500); font-weight: 500; }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; gap: 8px; margin: 56px 0 0; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 42px; height: 42px; padding: 0 12px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; border: 1px solid var(--grey-200); background: #fff; color: var(--grey-700);
}
.pagination a:hover { border-color: var(--orange-300); color: var(--orange-700); }
.pagination .current { background: var(--orange-500); border-color: var(--orange-500); color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--grey-900); color: hsla(40,20%,98%,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-name { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.footer-blurb { font-size: 14px; line-height: 1.6; margin: 14px 0 0; max-width: 38ch; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: hsla(40,20%,98%,0.5); margin: 0 0 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: hsla(40,20%,98%,0.78); font-size: 15px; }
.footer-col a:hover { color: var(--orange-300); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid hsla(40,20%,98%,0.1); display: flex; justify-content: space-between; gap: 16px; font-size: 13px; color: hsla(40,20%,98%,0.5); flex-wrap: wrap; }

/* ---------- Related ---------- */
.related { border-top: 1px solid var(--grey-200); padding-top: 40px; margin-top: 8px; }

/* Author bio box (E-E-A-T) */
.author-box {
  display: flex; gap: 18px; align-items: flex-start;
  margin: 40px 0 8px; padding: 24px;
  background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: 16px;
}
.author-box-avatar {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 999px;
  background: var(--orange-100); color: var(--orange-700);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px;
}
.author-box-name { font-size: 16px; font-weight: 700; color: var(--grey-900); margin-bottom: 6px; }
.author-box-bio { font-size: 15px; line-height: 1.55; color: var(--grey-600); margin: 0; }
.author-box-link { display: inline-block; margin-top: 10px; font-size: 14px; font-weight: 600; }

/* Utility */
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.muted { color: var(--grey-500); }
