

    
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }

    
    :root {
      
      --red-100: rgb(255, 200, 191);
      --red:     rgb(208,  59,  35);   
      --red-600: rgb(174,  40,  19);   
      --red-800: rgb(106,  15,   0);   
      --red-900: rgb( 72,  10,   0);   

      --dark:    #1a1a1a;
      --body-bg: #f2f1ef;             
      --white:   #ffffff;
      --gray-50: #f9f9f9;
      --gray-100:#f2f1ef;
      --gray-200:#e8e6e3;
      --gray-400:#767676;
      --gray-600:#444444;
      --gray-800:#333333;
      --border:  #e2e0dc;

      --font-heading: margin-mvb, Anton, 'Arial Black', sans-serif;
      --font-body:    Verdana, Arial, sans-serif;

      --radius-sm: 4px;
      --radius:    6px;
      --max-w:     1200px;
      --nav-h:     68px;
    }

    
    body {
      font-family: var(--font-body);
      color: var(--dark);
      background: var(--body-bg);
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
    }

    
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 32px;
    }

    
    section { padding: 64px 0; }

    
    .section-label {
      display: block;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 10px;
    }

    
    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .01em;
      line-height: 1.05;
      color: var(--dark);
    }
    .section-title--white { color: var(--white); }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 32px;
      gap: 16px;
    }
    .section-head a.view-all {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--red);
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .section-head a.view-all:hover { text-decoration: underline; }

    
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 12px 24px;
      border-radius: 40px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background .2s, color .2s, transform .15s;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-red   { background: var(--red);   color: var(--white); }
    .btn-red:hover { background: var(--red-600); }
    .btn-white { background: var(--white); color: var(--red); }
    .btn-white:hover { background: var(--red-100); }
    .btn-outline-white {
      background: transparent;
      border: 2px solid rgba(255,255,255,.55);
      color: var(--white);
    }
    .btn-outline-white:hover {
      background: rgba(255,255,255,.1);
      border-color: rgba(255,255,255,.85);
    }
    
    .btn-spotify { background: #1db954; color: #fff; }
    .btn-spotify:hover { background: #17a349; }
    .btn-youtube { background: #ff0000; color: #fff; }
    .btn-youtube:hover { background: #cc0000; }
    .btn-apple   { background: #b150e7; color: #fff; }
    .btn-apple:hover   { background: #943dc4; }
    .site-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 300;
      height: var(--nav-h);
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 6px rgba(0,0,0,.06);
    }
    .nav-wrap {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo img {
      height: 34px;
      display: block;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--gray-800);
      text-decoration: none;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--red); }
    .nav-links .nav-cta a {
      color: var(--white);
      background: var(--red);
      padding: 8px 20px;
      border-radius: 40px;
    }
    .nav-links .nav-cta a:hover { background: var(--red-600); }

    
    .hero {
      position: relative;
      height: 100vh;
      min-height: 580px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      margin-top: var(--nav-h);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom,
          rgba(0,0,0,.45) 0%,
          rgba(0,0,0,.3)  50%,
          rgba(0,0,0,.62) 100%),
        url('https://doorzetters-production.ams3.cdn.digitaloceanspaces.com/doorzetters-hero.jpg')
        center center / cover no-repeat;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 720px;
      padding: 0 32px;
    }
    .hero-logo {
      width: min(380px, 70vw);
      margin: 0 auto 24px;
      display: block;
    }
    .hero-tagline {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.95);
      text-shadow: 0 1px 4px rgba(0,0,0,.45);
      margin-bottom: 36px;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    
    .platforms-bar {
      background: var(--dark);
      padding: 0;
    }
    .platforms-bar .container {
      display: flex;
      align-items: stretch;
      justify-content: center;
    }
    .platform-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 18px 36px;
      text-decoration: none;
      color: rgba(255,255,255,.7);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      border-right: 1px solid rgba(255,255,255,.08);
      transition: color .2s, background .2s;
    }
    .platform-item:first-child { border-left: 1px solid rgba(255,255,255,.08); }
    .platform-item:hover {
      color: var(--white);
      background: rgba(255,255,255,.06);
    }
    .platform-item svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    
    .section-episodes {
      background: var(--body-bg);
    }
    .eps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .ep-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: box-shadow .25s, transform .2s;
    }
    .ep-card:hover {
      box-shadow: 0 8px 28px rgba(0,0,0,.1);
      transform: translateY(-3px);
    }
    .ep-thumb {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
      background: #1a1a1a;
    }
    .ep-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s;
    }
    .ep-card:hover .ep-thumb img { transform: scale(1.04); }

    
    .ep-play-btn {
      position: absolute;
      bottom: 12px; right: 12px;
      width: 42px; height: 42px;
      background: var(--red);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, transform .2s;
      text-decoration: none;
    }
    .ep-play-btn:hover {
      background: var(--red-600);
      transform: scale(1.08);
    }
    .ep-play-btn svg {
      width: 16px; height: 16px;
      fill: white;
      margin-left: 2px;
    }

    
    .ep-num {
      position: absolute;
      top: 12px; left: 12px;
      background: var(--dark);
      color: var(--white);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .08em;
      padding: 3px 8px;
      border-radius: 3px;
    }

    .ep-body {
      padding: 16px 18px 18px;
    }
    .ep-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--gray-600);
      margin-bottom: 6px;
    }
    .ep-title {
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.35;
      margin-bottom: 12px;
    }
    .ep-links {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .ep-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 5px 10px;
      border-radius: 20px;
      border: 1px solid var(--border);
      color: var(--gray-600);
      transition: background .2s, color .2s;
    }
    .ep-link:hover { background: var(--gray-100); color: var(--dark); }
    .ep-link svg { width: 12px; height: 12px; flex-shrink: 0; }
    
    .ep-link--youtube svg { fill: #ff0000; }
    .ep-link--spotify svg { fill: #1db954; }
    .ep-link--apple  svg { fill: #b150e7; }

    
    .section-about {
      background: var(--body-bg);
      border-top: 1px solid var(--border);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .about-text .section-label { margin-bottom: 12px; }
    .about-text .section-title { margin-bottom: 20px; }
    .about-text p {
      font-size: 16px;
      color: var(--gray-600);
      line-height: 1.75;
      margin-bottom: 16px;
    }
    .about-text p:last-of-type { margin-bottom: 28px; }
    .about-image img {
      width: 100%;
      border-radius: var(--radius);
      display: block;
      object-fit: cover;
      aspect-ratio: 4/3;
    }

    
    .section-hosts {
      background: var(--white);
      border-top: 1px solid var(--border);
    }
    .hosts-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }
    .host-card {
      display: flex;
      gap: 22px;
      align-items: flex-start;
      padding: 28px;
      background: var(--gray-100);
      border-radius: var(--radius);
      border: 1px solid var(--border);
    }
    .host-photo {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 3px solid var(--white);
      box-shadow: 0 2px 10px rgba(0,0,0,.1);
    }
    .host-info { flex: 1; min-width: 0; }
    .host-name {
      font-family: var(--font-heading);
      font-size: 20px;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--dark);
      margin-bottom: 2px;
    }
    .host-role {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 10px;
    }
    .host-bio {
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.7;
      margin-bottom: 14px;
    }
    .host-socials {
      display: flex;
      gap: 10px;
    }
    
    .host-social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: transparent;
      border: 1px solid var(--gray-200);
      color: var(--gray-800);
      text-decoration: none;
      transition: background .2s, color .2s, border-color .2s;
    }
    .host-social-link:hover {
      background: var(--gray-200);
      border-color: var(--gray-400);
      color: var(--dark);
    }
    .host-social-link svg {
      width: 14px; height: 14px;
      fill: currentColor;
    }

    
    .section-book {
      background: var(--red);
      color: var(--white);
    }
    .book-grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 56px;
      align-items: center;
    }
    .book-cover {
      width: 240px;
      border-radius: var(--radius);
      box-shadow: 0 24px 56px rgba(0,0,0,.40);
      display: block;
      flex-shrink: 0;
    }
    
    .book-cover-fallback {
      width: 220px;
      min-height: 310px;
      border-radius: var(--radius);
      box-shadow: 0 20px 50px rgba(0,0,0,.4);
      background: var(--red-800);
      border: 6px solid rgba(255,255,255,.15);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 28px 20px;
      gap: 10px;
      text-align: center;
    }
    .bcf-title {
      font-family: var(--font-heading);
      font-size: 38px;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1;
      letter-spacing: .02em;
    }
    .bcf-sub {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.65);
      line-height: 1.4;
    }
    .bcf-author {
      font-size: 12px;
      color: rgba(255,255,255,.8);
      line-height: 1.4;
      margin-top: 8px;
    }
    .bcf-pub {
      font-size: 9px;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(255,255,255,.4);
      margin-top: 12px;
      border-top: 1px solid rgba(255,255,255,.15);
      padding-top: 10px;
      width: 100%;
      text-align: center;
    }
    .book-text .section-label { color: rgba(255,255,255,.6); }
    .book-text .section-title {
      color: var(--white);
      margin-bottom: 16px;
    }
    .book-text p {
      font-size: 16px;
      color: rgba(255,255,255,.9);
      line-height: 1.7;
      margin-bottom: 12px;
    }
    .book-text p:last-of-type { margin-bottom: 28px; }

    
    .section-sponsors {
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .sponsors-header {
      text-align: center;
      margin-bottom: 36px;
    }
    .sponsors-grid {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 24px 48px;
    }
    .sponsor-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      padding: 20px 28px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      transition: box-shadow .2s, border-color .2s;
      min-width: 160px;
    }
    .sponsor-card:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,.08);
      border-color: var(--gray-400);
    }
    .sponsor-card img {
      height: 40px;
      max-width: 140px;
      object-fit: contain;
      display: block;
      filter: grayscale(30%);
      transition: filter .2s;
    }
    .sponsor-card:hover img { filter: none; }
    .sponsor-label {
      font-size: 13px;
      font-weight: 400;
      color: var(--gray-600);
      text-align: center;
      line-height: 1.4;
      max-width: 200px;
    }

    
    
    .section-substack {
      background: var(--dark);
      padding: 56px 0;
    }
    .substack-inner {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }
    .substack-inner .section-label { color: rgba(255,255,255,.45); }
    .substack-inner .section-title {
      color: var(--white);
      margin-bottom: 12px;
    }
    .substack-inner p {
      font-size: 16px;
      color: rgba(255,255,255,.75);
      line-height: 1.65;
      margin-bottom: 28px;
    }
    .substack-form {
      display: flex;
      gap: 10px;
      max-width: 460px;
      margin: 0 auto;
    }
    .substack-form input[type="email"] {
      flex: 1;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 40px;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 13px;
      padding: 12px 20px;
      outline: none;
      transition: border-color .2s, background .2s;
    }
    .substack-form input[type="email"]::placeholder { color: rgba(255,255,255,.35); }
    .substack-form input[type="email"]:focus {
      border-color: rgba(255,255,255,.5);
      background: rgba(255,255,255,.15);
    }
    .substack-note {
      font-size: 11px;
      color: rgba(255,255,255,.3);
      margin-top: 12px;
    }
    .substack-note a { color: rgba(255,255,255,.45); text-decoration: underline; }

    .section-contact {
      background: var(--red-800);
      color: var(--white);
      padding: 72px 0;
    }
    .contact-inner {
      max-width: 540px;
      margin: 0 auto;
      text-align: center;
    }
    .contact-inner .section-label { color: rgba(255,255,255,.5); }
    .contact-inner .section-title { color: var(--white); margin-bottom: 12px; }
    .contact-inner p {
      font-size: 16px;
      color: rgba(255,255,255,.85);
      margin-bottom: 32px;
      line-height: 1.65;
    }
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
      text-align: left;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .form-field {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .form-field label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.55);
    }
    .form-field input,
    .form-field textarea,
    .form-field select {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: var(--radius-sm);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 13px;
      padding: 11px 14px;
      outline: none;
      transition: border-color .2s, background .2s;
    }
    .form-field input::placeholder,
    .form-field textarea::placeholder {
      color: rgba(255,255,255,.3);
    }
    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      border-color: rgba(255,255,255,.55);
      background: rgba(255,255,255,.15);
    }
    .form-field textarea { resize: vertical; min-height: 100px; }
    .form-field select option { background: var(--red-800); color: var(--white); }
    .contact-form .btn {
      align-self: center;
      margin-top: 6px;
    }

    
    footer {
      background: var(--gray-100);
      border-top: 1px solid var(--border);
      padding: 44px 0 28px;
    }
    .footer-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin-bottom: 32px;
    }
    .footer-logo img { height: 32px; display: block; }
    .footer-social {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid var(--border);
      color: var(--gray-800);
      text-decoration: none;
      transition: background .2s, color .2s, border-color .2s;
    }
    .footer-social a:hover {
      background: var(--gray-200);
      border-color: var(--gray-400);
      color: var(--dark);
    }
    .footer-social svg {
      width: 16px; height: 16px;
      fill: currentColor;
    }
    .footer-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px 24px;
      margin-bottom: 32px;
    }
    .footer-nav a {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--gray-600);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-nav a:hover { color: var(--red); }
    
    .footer-sister {
      text-align: center;
      margin-bottom: 36px;
      padding-bottom: 36px;
      border-bottom: 1px solid var(--border);
    }
    .footer-sister-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gray-400);
      margin-bottom: 20px;
    }
    .sister-cards {
      display: flex;
      align-items: stretch;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .sister-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      padding: 22px 32px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      min-width: 220px;
      transition: box-shadow .2s, border-color .2s, transform .2s;
    }
    .sister-card:hover {
      box-shadow: 0 6px 20px rgba(0,0,0,.09);
      border-color: var(--gray-400);
      transform: translateY(-2px);
    }
    
    .sister-card-logo-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .sister-card-logo {
      height: 38px;
      max-width: 200px;
      object-fit: contain;
      display: block;
    }
    .sister-card-wordmark {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .02em;
      color: var(--dark);
      line-height: 1.1;
      text-align: center;
    }
    .sister-card-desc {
      font-size: 12px;
      color: var(--gray-600);
      text-align: center;
      line-height: 1.4;
    }
    .sister-card-cta {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--red);
      margin-top: 4px;
    }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 20px;
      text-align: center;
    }
    .footer-bottom p {
      font-size: 11px;
      color: var(--gray-400);
      line-height: 1.7;
    }
    .footer-bottom a {
      color: var(--gray-600);
      text-decoration: none;
    }
    .footer-bottom a:hover { color: var(--red); }

    
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 20px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
    }
    .nav-hamburger span {
      display: block;
      height: 2px;
      width: 100%;
      background: var(--dark);
      border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }
    .nav-hamburger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    
    @media (max-width: 900px) {
      .eps-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .about-image { order: -1; }
      .book-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        justify-items: center;
        text-align: center;
      }
      .book-cover { width: 180px; }
      .hosts-grid {
        grid-template-columns: 1fr;
      }
    }

    
    @media (max-width: 640px) {
      
      .container { padding: 0 16px; }

      
      section { padding: 44px 0; }

      
      .nav-hamburger { display: flex; }

      .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 6px 20px rgba(0,0,0,.1);
        flex-direction: column;
        padding: 16px 0 20px;
        gap: 0;
        list-style: none;
        z-index: 299;
      }
      .nav-links.is-open { display: flex; }
      .nav-links li { width: 100%; }
      .nav-links a {
        display: block;
        padding: 14px 24px;
        font-size: 14px;
      }
      .nav-links .nav-cta { margin-top: 8px; padding: 0 16px; }
      .nav-links .nav-cta a {
        display: block;
        text-align: center;
        padding: 12px 20px;
        border-radius: 40px;
      }

      
      .hero { min-height: 480px; }
      .hero-content { padding: 0 20px; }
      .hero-tagline { font-size: 12px; letter-spacing: .12em; }
      .hero-actions { gap: 10px; }
      .hero-actions .btn { font-size: 11px; padding: 10px 18px; }

      
      .platforms-bar .container {
        flex-wrap: wrap;
        justify-content: stretch;
      }
      .platform-item {
        flex: 1 1 50%;
        padding: 14px 12px;
        justify-content: center;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.08);
      }
      .platform-item:first-child { border-left: none; }
      .platform-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }

      
      .eps-grid { grid-template-columns: 1fr; gap: 16px; }

      
      .about-grid { gap: 24px; }
      .about-text p { font-size: 15px; }

      
      .hosts-grid { gap: 16px; }
      .host-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
      }
      .host-socials { justify-content: center; }

      
      .book-grid { gap: 28px; }
      .book-cover, .book-cover-fallback { width: 160px; min-height: 225px; }
      .book-text { text-align: center; }
      .book-text .btn { display: block; text-align: center; }

      
      .substack-form {
        flex-direction: column;
        gap: 12px;
      }
      .substack-form input[type="email"],
      .substack-form .btn { width: 100%; justify-content: center; }

      
      .form-row { grid-template-columns: 1fr; }

      
      .sister-card { min-width: 0; width: 100%; padding: 18px 20px; }
      .footer-nav { gap: 8px 16px; }

      
      .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
    }

  
@font-face { font-family: Anton; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/anton.ttf') format('truetype'); }
:root { --font-heading: Anton, 'Arial Black', sans-serif; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
[hidden] { display: none !important; }
html { scroll-padding-top: 88px; }
section[id], main[id] { scroll-margin-top: 88px; }
body { overflow-wrap: break-word; }
a { color: #ae2813; text-underline-offset: .18em; }
button, input, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #126bcc; outline-offset: 4px; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 1000; padding: 12px 20px; background: white; color: #1a1a1a; }
.skip-link:focus { top: 12px; }
.site-nav .nav-links { gap: 22px; }
.nav-logo img { width: 129px; height: 34px; object-fit: contain; }
.footer-logo img { width: 121px; height: 32px; }
.nav-hamburger { width: 44px; height: 44px; padding: 11px 8px; }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
.footer-nav { position: static; height: auto; box-shadow: none; border: 0; background: transparent; }
.hero { height: auto; min-height: min(820px, calc(100svh - 68px)); padding: 80px 0; }
.hero-bg { background-image: linear-gradient(to bottom, rgba(0,0,0,.60), rgba(0,0,0,.40) 50%, rgba(0,0,0,.7)), url('/assets/hero-1600.webp'); }
.hero-content { max-width: 840px; }
.hero-logo { width: min(380px,70vw); height: auto; }
.hero h1 { color: white; font-family: var(--font-heading); font-size: clamp(28px,4.1vw,46px); font-weight: 400; line-height: 1.2; margin: 20px auto 14px; max-width: 680px; }
.hero-intro { color: #fff; font-size: 16px; line-height: 1.7; max-width: 610px; margin: 0 auto 24px; }
.hero-tagline { margin-bottom: 12px; }
.btn-spotify { background: #087c35; }
.btn-spotify:hover { background: #056629; }
.btn-youtube { background: #d00000; }
.btn-youtube:hover { background: #a60000; }
.btn-apple { background: #8534b8; }
.btn-apple:hover { background: #6d259b; }
.btn { min-height: 44px; justify-content: center; }
.ep-link { min-height: 44px; font-size: 12px; }
.ep-title a { color: var(--dark); text-decoration: none; }
.ep-title a:hover { text-decoration: underline; }
.ep-title { font-size: 17px; }
.ep-thumb a { display: block; }
.ep-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.ep-meta { color: #595959; font-size: 12px; }
.episode-kind { display: inline-block; color: #782500; background: #ffeadf; font-size: 12px; font-weight: bold; padding: 3px 8px; border-radius: 3px; margin-bottom: 10px; }
.ep-excerpt { font-size: 14px; color: #444; margin-bottom: 14px; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; }
.center-heading { text-align: center; margin-bottom: 36px; }
.section-substack .section-label, .section-substack .substack-note, .section-substack .substack-note a { color: #c5c5c5; }
.section-substack .button-row { justify-content: center; }
.section-contact .section-label { color: #f0c8c2; }
.contact-email { display: inline-block; color: white; font-size: clamp(16px,5vw,24px); margin: 8px 0 20px; }
.section-contact .contact-note { font-size: 14px; color: #f3d7d1; margin-top: 18px; }
.footer-bottom p, .footer-sister-label { color: #595959; }
.section-label, .section-head a.view-all, .host-role { color: #ae2813; }
.book-text .section-label, .book-text p { color: #fff; }
.book-cover { width: 280px; height: auto; }
.sponsor-card .sponsor-logo-mcgregor { width: 180px; max-width: 180px; height: auto; }
.footer-bottom p a { text-decoration: underline; }
.cookie-settings { padding: 10px; border: 0; background: transparent; color: #444; text-decoration: underline; }
.cookie-banner { position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 500; max-width: 680px; margin: auto; padding: 22px; background: #fff; color: #222; border: 1px solid #aaa; border-radius: 10px; box-shadow: 0 5px 35px #0003; font-size: 14px; }
.cookie-banner h2 { font: bold 18px Verdana, sans-serif; margin-bottom: 6px; }
.cookie-banner p { margin-bottom: 14px; }
.cookie-banner .btn { border-radius: 5px; flex: 1; padding: 11px 15px; background: #fff; color: #ae2813; border: 2px solid #ae2813; }
.privacy-status { font-size: 13px; }
.page-content { padding: 128px 0 64px; min-height: 60vh; }
.reading { max-width: 820px; }
.page-content h1 { font: 400 clamp(32px,5vw,52px)/1.15 var(--font-heading); margin-bottom: 24px; }
.page-content h2 { font: 400 28px/1.3 var(--font-heading); margin: 36px 0 16px; }
.page-content h3 { font-size: 18px; margin: 20px 0 12px; }
.page-content p { margin-bottom: 20px; }
.page-content ul, .page-content ol { padding-left: 24px; margin-bottom: 24px; }
.page-content li { margin-bottom: 12px; }
.page-content .breadcrumb { font-size: 13px; margin-bottom: 24px; }
.page-content .intro { font-size: 18px; color: #444; }
.page-content .eps-grid { margin: 28px 0; }
.page-content .ep-body { padding: 22px; }
.page-content .ep-title { font: bold 18px/1.5 Verdana, sans-serif; margin: 0 0 14px; }
.page-content .ep-excerpt { margin-bottom: 14px; }
.episode-meta { color: #555; font-size: 13px; }
.video-player { position: relative; aspect-ratio: 16/9; background: #1a1a1a; border-radius: 8px; overflow: hidden; margin: 24px 0 12px; }
.video-player img { width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.video-player button { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); min-width: 180px; background: #ae2813; color: white; border: 2px solid white; border-radius: 40px; padding: 14px 22px; font-weight: bold; }
.video-player iframe { display: block; width: 100%; height: 100%; border: 0; }
.video-note, .source-note, .archive-note { color: #555; font-size: 13px; }
.chapter-list { columns: 2; column-gap: 30px; list-style: none; padding-left: 0 !important; }
.chapter-list li { break-inside: avoid; }
.chapter-list a { display: inline-block; font-size: 14px; padding: 6px 0; }
.chapter-list time { font-variant-numeric: tabular-nums; font-weight: bold; }
.episode-search { display: flex; flex-wrap: wrap; align-items: end; gap: 16px; margin: 28px 0 12px; }
.episode-search label { display: block; font-size: 14px; font-weight: bold; margin-bottom: 8px; }
.episode-search .search-field { flex: 1 1 260px; }
.episode-search input, .episode-search select { background: #fff; color: #222; border: 1px solid #767676; border-radius: 4px; padding: 12px; width: 100%; }
.profile-photo { float: right; width: 128px; height: 128px; border-radius: 50%; margin: 0 0 24px 24px; }
.page-content details { border-top: 1px solid #ccc; padding: 18px 0; }
.page-content summary { cursor: pointer; font-weight: bold; }
.source-notes { white-space: pre-line; font-size: 15px; margin-top: 18px; }
@media (min-width: 961px) {
  .hero { min-height: 860px; align-items: flex-end; padding-bottom: 48px; }
  .site-nav .nav-wrap { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); column-gap: 24px; }
  .site-nav .nav-logo { justify-self: start; }
  .site-nav .nav-links { grid-column: 2; justify-self: center; }
}
@media (max-width: 960px) {
  .site-nav .nav-hamburger { display: flex; }
  .site-nav .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid #ccc; flex-direction: column; gap: 0; padding: 12px 16px; max-height: calc(100svh - 68px); overflow-y: auto; }
  .site-nav .nav-links.is-open { display: flex; }
  .site-nav .nav-links li { width: 100%; }
  .site-nav .nav-links a { display: block; padding: 12px 16px; font-size: 14px; }
  .site-nav .nav-links .nav-cta { padding: 0; margin-top: 4px; }
}
@media (max-width: 640px) {
  .hero-bg { background-color: #101516; background-image: linear-gradient(to bottom, rgba(0,0,0,.40),rgba(0,0,0,.45) 40%,#101516 650px),url('/assets/hero-960.webp'); background-size: 100% 100%, auto 650px; background-position: center top; }
  .hero { min-height: 650px; padding: 300px 0 48px; }
  .book-cover { width: 200px; }
  .hero h1 { font-size: 31px; }
  .hero-intro { font-size: 14px; }
  .hero-logo { width: 260px; }
  .page-content { padding-top: 108px; }
  .chapter-list { columns: 1; }
  .cookie-banner { padding: 18px; bottom: 8px; left: 8px; right: 8px; }
  .cookie-banner .button-row { gap: 8px; }
  .cookie-banner .btn { min-width: 120px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}


.book-overview { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; margin: 32px 0; }
.book-overview article { padding: 28px; background: #f3f2ef; border-top: 4px solid #ae2813; border-radius: 4px; }
.book-overview h2 { margin-top: 12px; }
.book-overview h2 a { color: #222; text-decoration: none; }
.book-catalog { list-style: none; padding-left: 0 !important; }
.book-catalog li { border-bottom: 1px solid #ddd; padding: 14px 0; margin: 0; break-inside: avoid; }
.book-catalog a { display: inline-block; padding: 6px 0; font-weight: bold; }
.book-source-label { display: block; font-size: 13px; color: #595959; margin-top: 4px; }
.book-chapter .chapter-text { font-size: 18px; line-height: 1.9; }
.book-related { background: #f4f2ef; padding: 24px; border-left: 4px solid #ae2813; margin: 36px 0; }
.book-related h2 { margin-top: 0; }
.book-related ul { margin-bottom: 0; }
.book-pagination { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; border-top: 1px solid #ccc; padding-top: 24px; margin-top: 36px; }
.book-pagination a { padding: 10px 0; }
@media (min-width: 961px) { .book-catalog { columns: 2; column-gap: 36px; } }
@media (max-width: 640px) { .book-overview { grid-template-columns: 1fr; } .book-chapter .chapter-text { font-size: 17px; } }

.book-chapter { scroll-margin-top: 120px; }
.book-chapter .chapter-text h3 { font: 400 25px/1.3 var(--font-heading); margin: 32px 0 14px; }
