/* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

    body {
      font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
      background: #fafaf8;
      color: #1e1e1e;
      line-height: 1.72;
      font-size: 17px;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: #8b1a6b; text-decoration: none; }
    a:hover { text-decoration: underline; }

    /* ===== VARIABLES ===== */
    :root {
      --magenta: #8b1a6b;
      --dark: #0d1b2a;
      --text: #1e1e1e;
      --text-light: #555;
      --bg: #fafaf8;
      --card-bg: #ffffff;
      --border: #e8e4df;
      --header-h: 54px;
      --max-w: 1120px;
      --content-w: 680px;
      --sidebar-w: 340px;
    }

    /* ===== HEADER ===== */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--header-h);
      background: var(--dark);
      border-bottom: 3px solid var(--magenta);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      z-index: 1000;
    }

    .brand {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .brand-name {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.05rem;
      color: #fff;
      letter-spacing: 0.02em;
    }

    .brand-sub {
      font-size: 0.6rem;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .header-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 18px;
      background: var(--magenta);
      color: #fff;
      font-size: 0.78rem;
      font-weight: 700;
      border-radius: 4px;
      text-decoration: none;
      letter-spacing: 0.01em;
      transition: background 0.2s;
      white-space: nowrap;
    }

    .header-cta:hover {
      background: #a12280;
      text-decoration: none;
    }

    .header-cta svg {
      width: 14px;
      height: 14px;
      fill: #fff;
      flex-shrink: 0;
    }

    /* ===== CREDENTIAL BANNER ===== */
    .credential-banner {
      background: linear-gradient(135deg, #f7f3f0 0%, #f0ebe6 100%);
      border-bottom: 1px solid var(--border);
      margin-top: var(--header-h);
    }

    .credential-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .credential-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      flex-shrink: 0;
    }

    .credential-text h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 2px;
    }

    .credential-text p {
      font-size: 0.78rem;
      color: var(--text-light);
      line-height: 1.5;
      font-weight: 600;
    }

    /* ===== LAYOUT WRAPPER ===== */
    .page-wrap {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1fr var(--sidebar-w);
      gap: 40px;
      align-items: start;
    }

    .main-col {
      min-width: 0;
    }

    /* ===== TITLE CONTAINER ===== */
    .title-container {
      padding: 36px 0 28px;
    }

    .eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--magenta);
      margin-bottom: 10px;
    }

    .title-container h1 {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 2.1rem;
      line-height: 1.22;
      color: var(--text);
      margin-bottom: 16px;
    }

    .title-container h1 .accent {
      color: var(--magenta);
    }

    .deck {
      font-size: 1.08rem;
      color: var(--text-light);
      line-height: 1.65;
      max-width: 640px;
    }

    /* ===== HERO / RECIPE SECTION ===== */
    .hero-section {
      margin-bottom: 32px;
    }

    .hero-link {
      display: block;
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
      transition: box-shadow 0.3s;
    }

    .hero-link:hover {
      box-shadow: 0 6px 28px rgba(0,0,0,0.18);
      text-decoration: none;
    }

    .hero-link img {
      width: 100%;
      display: block;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }

    .hero-link:hover .hero-overlay {
      background: rgba(0,0,0,0.06);
    }

    .play-btn {
      width: 68px;
      height: 68px;
      background: rgba(139, 26, 107, 0.88);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    }

    .play-btn svg {
      width: 26px;
      height: 26px;
      fill: #fff;
      margin-left: 3px;
    }

    /* ===== QUIZ BUTTONS ===== */
    .quiz-section {
      margin: 24px 0 12px;
    }

    .quiz-label {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
    }

    .quiz-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .quiz-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      background: #fff;
      border: 2px solid var(--border);
      border-radius: 8px;
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }

    .quiz-btn:hover {
      border-color: var(--magenta);
      color: var(--magenta);
      background: #fdf5fb;
      text-decoration: none;
    }

    .quiz-btn .bari-tag {
      font-size: 0.6rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      background: #f0e6ed;
      color: var(--magenta);
      padding: 2px 6px;
      border-radius: 3px;
    }

    .hero-micro {
      font-size: 0.78rem;
      color: var(--text-light);
      margin-top: 12px;
      line-height: 1.5;
    }

    /* ===== ARTICLE CONTENT ===== */
    .article-content p {
      margin-bottom: 22px;
      max-width: 640px;
    }

    .article-content strong {
      color: var(--text);
      font-weight: 700;
    }

    .article-content .anchor-line {
      font-weight: 700;
      color: var(--text);
      font-style: italic;
    }

    .inline-img {
      margin: 28px 0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }

    .inline-img img {
      width: 100%;
    }

    /* ===== STAT ROW ===== */
    .stat-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin: 36px 0;
    }

    .stat-item {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-top: 3px solid var(--magenta);
      border-radius: 6px;
      padding: 18px 14px;
      text-align: center;
    }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--magenta);
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--text-light);
      line-height: 1.4;
    }

    /* ===== BIO CARD ===== */
    .bio-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 28px;
      margin: 36px 0;
      display: flex;
      gap: 22px;
      align-items: flex-start;
      box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    }

    .bio-avatar {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--border);
      flex-shrink: 0;
    }

    .bio-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 3px;
    }

    .bio-info .bio-creds {
      font-size: 0.76rem;
      font-weight: 600;
      color: var(--magenta);
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .bio-info .bio-text {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.65;
      margin-bottom: 0;
      max-width: none;
    }

    /* ===== NOISE BOX (checklist) ===== */
    .noise-box {
      background: #fdf5fb;
      border: 1px solid #f0dcea;
      border-left: 4px solid var(--magenta);
      border-radius: 0 10px 10px 0;
      padding: 26px 28px;
      margin: 36px 0;
    }

    .noise-box h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 16px;
    }

    .noise-box ul {
      list-style: none;
    }

    .noise-box li {
      padding: 8px 0;
      font-size: 0.94rem;
      color: var(--text);
      line-height: 1.6;
      display: flex;
      align-items: baseline;
      gap: 10px;
    }

    .noise-box li::before {
      content: '✦';
      color: var(--magenta);
      font-size: 0.8rem;
      flex-shrink: 0;
    }

    /* ===== CALLOUT BOX (sabotage angle) ===== */
    .callout-box {
      background: var(--card-bg);
      border: 2px solid var(--magenta);
      border-radius: 10px;
      padding: 28px;
      margin: 36px 0;
      position: relative;
    }

    .callout-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--magenta), #c44da5);
      border-radius: 8px 8px 0 0;
    }

    .callout-box h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--magenta);
      margin-bottom: 14px;
    }

    .callout-box p {
      font-size: 0.94rem;
      line-height: 1.7;
      color: var(--text);
      max-width: none !important;
    }

    /* ===== PULLQUOTE ===== */
    .pullquote {
      border-left: 4px solid var(--magenta);
      padding: 24px 28px;
      margin: 40px 0;
      background: linear-gradient(135deg, #fdf5fb 0%, #faf7f5 100%);
      border-radius: 0 10px 10px 0;
    }

    .pullquote p {
      font-style: italic;
      font-size: 1.05rem;
      line-height: 1.7;
      color: #333;
      margin-bottom: 12px !important;
      max-width: none !important;
    }

    .pullquote .pq-attr {
      font-style: normal;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--magenta);
      line-height: 1.5;
    }

    /* ===== DISCOVERY BOX ===== */
    .discovery-box {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 28px;
      margin: 36px 0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    }

    .discovery-box h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 18px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }

    .discovery-box ul {
      list-style: none;
    }

    .discovery-box li {
      padding: 10px 0;
      font-size: 0.92rem;
      color: var(--text);
      line-height: 1.65;
      display: flex;
      align-items: baseline;
      gap: 10px;
      border-bottom: 1px solid #f5f2ef;
    }

    .discovery-box li:last-child {
      border-bottom: none;
    }

    .discovery-box li::before {
      content: '✦';
      color: var(--magenta);
      font-size: 0.8rem;
      flex-shrink: 0;
    }

    /* ===== CTA MAIN ===== */
    .cta-main {
      text-align: center;
      margin: 44px 0;
    }

    .cta-btn {
      display: inline-block;
      padding: 16px 40px;
      background: var(--magenta);
      color: #fff;
      font-family: 'Source Sans 3', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      border-radius: 8px;
      text-decoration: none;
      letter-spacing: 0.01em;
      box-shadow: 0 4px 16px rgba(139,26,107,0.3);
      transition: all 0.25s;
    }

    .cta-btn:hover {
      background: #a12280;
      box-shadow: 0 6px 24px rgba(139,26,107,0.4);
      transform: translateY(-1px);
      text-decoration: none;
    }

    .cta-sub {
      font-size: 0.78rem;
      color: var(--text-light);
      margin-top: 10px;
    }

    /* ===== SIDEBAR ===== */
    .sidebar-col {
      position: sticky;
      top: calc(var(--header-h) + 20px);
    }

    .sidebar-widget {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 22px;
      margin-bottom: 20px;
      box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    }

    .sidebar-widget h5 {
      font-family: 'Playfair Display', serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
    }

    .sidebar-widget p {
      font-size: 0.82rem;
      color: var(--text-light);
      line-height: 1.55;
      margin-bottom: 14px;
    }

    .sidebar-quiz-btns {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .sidebar-quiz-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      background: #fafaf8;
      border: 1px solid var(--border);
      border-radius: 6px;
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.84rem;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }

    .sidebar-quiz-btn:hover {
      border-color: var(--magenta);
      color: var(--magenta);
      background: #fdf5fb;
      text-decoration: none;
    }

    /* Trust Chips */
    .trust-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .chip {
      display: inline-block;
      padding: 4px 10px;
      background: #f7f3f0;
      border: 1px solid #ece6e0;
      border-radius: 20px;
      font-size: 0.68rem;
      font-weight: 600;
      color: var(--text-light);
      white-space: nowrap;
    }

    /* News Widget */
    .news-item {
      display: flex;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px solid #f5f2ef;
      text-decoration: none;
      transition: opacity 0.2s;
    }

    .news-item:last-child { border-bottom: none; }
    .news-item:hover { opacity: 0.85; text-decoration: none; }

    .news-thumb {
      width: 72px;
      height: 54px;
      border-radius: 5px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .news-text {
      flex: 1;
      min-width: 0;
    }

    .news-tag {
      font-size: 0.6rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--magenta);
      margin-bottom: 3px;
    }

    .news-headline {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* ===== MOBILE STICKY CTA ===== */
    .sticky-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--dark);
      border-top: 2px solid var(--magenta);
      padding: 10px 16px;
      z-index: 999;
      text-align: center;
      transform: translateY(100%);
      transition: transform 0.35s ease;
    }

    .sticky-cta.visible {
      transform: translateY(0);
    }

    .sticky-cta a {
      display: block;
      padding: 13px 20px;
      background: var(--magenta);
      color: #fff;
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.92rem;
      font-weight: 700;
      border-radius: 6px;
      text-decoration: none;
      letter-spacing: 0.01em;
    }

    .sticky-cta a:hover {
      text-decoration: none;
    }

    /* ===== FOOTER ===== */
    .site-footer {
      background: var(--dark);
      padding: 36px 24px;
      text-align: center;
      margin-top: 60px;
    }

    .footer-links {
      margin-bottom: 18px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.55);
      font-size: 0.78rem;
      font-weight: 600;
      text-decoration: none;
      margin: 0 12px;
    }

    .footer-links a:hover {
      color: rgba(255,255,255,0.85);
      text-decoration: underline;
    }

    .footer-links span {
      color: rgba(255,255,255,0.2);
    }

    .footer-disclaimer {
      font-size: 0.7rem;
      color: rgba(255,255,255,0.4);
      line-height: 1.7;
      max-width: 680px;
      margin: 0 auto 16px;
    }

    .footer-copy {
      font-size: 0.68rem;
      color: rgba(255,255,255,0.3);
      font-weight: 600;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 960px) {
      .page-wrap {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .sidebar-col {
        position: static;
        margin-top: 40px;
      }
    }

    @media (max-width: 768px) {
      body { font-size: 16px; }

      .site-header { padding: 0 16px; }

      .brand-name { font-size: 0.92rem; }

      .header-cta {
        padding: 6px 12px;
        font-size: 0.7rem;
      }

      .credential-inner {
        padding: 14px 16px;
        gap: 14px;
      }

      .credential-avatar { width: 56px; height: 56px; }

      .page-wrap { padding: 0 16px; }

      .title-container { padding: 28px 0 20px; }

      .title-container h1 { font-size: 1.6rem; }

      .deck { font-size: 0.98rem; }

      .stat-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }

      .bio-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
      }

      .bio-avatar { width: 90px; height: 90px; }

      .noise-box, .callout-box, .discovery-box, .pullquote {
        padding: 20px;
      }

      .cta-btn {
        padding: 14px 28px;
        font-size: 0.96rem;
        width: 100%;
      }

      .sticky-cta {
        display: block;
      }
    }

    @media (max-width: 480px) {
      .title-container h1 { font-size: 1.35rem; }

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

      .stat-num { font-size: 1.3rem; }

      .quiz-btns {
        flex-direction: column;
      }

      .quiz-btn {
        justify-content: center;
        width: 100%;
      }

      .play-btn {
        width: 56px;
        height: 56px;
      }

      .play-btn svg {
        width: 22px;
        height: 22px;
      }
    }

/* ===== SIDEBAR UTILITY ELEMENTS ===== */
.sidebar-arrow {
  color: var(--magenta);
  font-size: 0.7rem;
}

.sidebar-quiz-btn .bari-tag {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #f0e6ed;
  color: var(--magenta);
  padding: 2px 6px;
  border-radius: 3px;
}
