:root {
  --bg: #0f1115;
  --panel: #171a21;
  --panel-soft: #20242d;
  --text: #f6f2ea;
  --muted: #c9c1b6;
  --accent: #ff7300;
  --accent-dark: #c45500;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top left, rgba(255, 115, 0, 0.16), transparent 34%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 17, 21, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--text); }

.hero, .section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 84px 24px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

h3 { font-size: 1.35rem; }

.hero-text, .section-heading p, .split p, .contact p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid var(--line);
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #15100b;
}

.button.primary:hover { background: #ff8b2a; }

.button.secondary {
  background: transparent;
  color: var(--text);
}

.button.secondary:hover { border-color: var(--accent); }

.hero-card, .episode-card, .contact-card, .link-grid a {
  background: linear-gradient(180deg, var(--panel), var(--panel-soft));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 32px;
}

.show-logo {
  display: block;
  width: min(260px, 100%);
  margin: 0 auto 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stats div {
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
}

.stats strong, .stats span { display: block; }
.stats strong { font-size: 1.5rem; }
.stats span { color: var(--muted); font-size: 0.82rem; }

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.episode-grid, .link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.episode-card {
  padding: 26px;
}

.tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.episode-card p { color: var(--muted); }
.episode-card a { color: var(--accent); font-weight: 800; text-decoration: none; }

.split, .contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
}

.highlight {
  background: linear-gradient(135deg, rgba(255, 115, 0, 0.17), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px;
}

.link-grid a {
  padding: 22px;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
}

.link-grid a:hover { border-color: var(--accent); }

.contact-card {
  padding: 28px;
}

.contact-card a { color: var(--accent); }

.footer {
  border-top: 1px solid var(--line);
  padding: 26px 24px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 800px) {
  .hero, .split, .contact, .episode-grid, .link-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero, .section { padding: 56px 20px; }
  .highlight { padding: 34px 24px; }
}


.about-section {
  align-items: center;
}

.about-image-wrap {
  display: flex;
  justify-content: center;
}

.headshot {
  width: min(100%, 340px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}


.top-photo {
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px 24px 0;
}

.top-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

@media (max-width: 800px) {
  .top-photo {
    padding: 24px 20px 0;
  }

  .top-photo img {
    border-radius: 20px;
  }
}


.hero-show-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
}


.link-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.platform-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex: 0 0 auto;
}

.platform-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}


.testimonials {
  padding-top: 52px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-soft));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.quote {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.quote-author {
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.quote-title {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 4px 0 0;
}

.featured-testimonial {
  border-color: rgba(255, 115, 0, 0.4);
}

.quote-title a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
}

.quote-title a:hover {
  text-decoration: underline;
}


a.testimonial-link {
  color: inherit;
}

.testimonial-with-photo {
  text-align: center;
}

.testimonial-photo {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 18px;
  border: 3px solid rgba(255, 115, 0, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}


.quote-author a {
  color: var(--accent);
  text-decoration: none;
}

.quote-author a:hover {
  text-decoration: underline;
}

.newsletter-card {
  background: linear-gradient(135deg, rgba(255, 115, 0, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.newsletter-card p {
  color: var(--muted);
}

.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter-form label {
  color: var(--text);
  font-weight: 800;
  font-size: 0.95rem;
}

.newsletter-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font: inherit;
}

.newsletter-form input::placeholder {
  color: var(--muted);
}

.newsletter-form input:focus {
  outline: 2px solid rgba(255, 115, 0, 0.45);
  border-color: var(--accent);
}

.newsletter-form button {
  margin-top: 8px;
  cursor: pointer;
}

.form-note {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 4px 0 0;
}

@media (max-width: 800px) {
  .newsletter-card {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
}
