
  /* ── MID-CLAIM WRONG LINK ── */
  .mc-wrong-link {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(200,135,58,0.07);
    border-left: 2px solid var(--amber);
    flex-wrap: wrap;
  }
  .mc-wrong-link span {
    font-size: 13px;
    color: var(--body);
    font-weight: 300;
  }
  .mc-wrong-link button {
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--amber);
    cursor: pointer;
    padding: 0;
    border-bottom: 1px solid rgba(200,135,58,0.3);
    padding-bottom: 1px;
    transition: color .2s, border-color .2s;
  }
  .mc-wrong-link button:hover { color: var(--ink); border-color: rgba(0,0,0,0.3); }


  .wrong-hero {
    background: var(--green);
    padding: 80px 10vw 90px;
  }
  .wrong-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5.2vw, 70px);
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
    line-height: 1.05;
    letter-spacing: -1.5px;
  }
  .wrong-hero h1 em { font-style: italic; color: rgba(255,255,255,.5); }
  .wrong-hero p {
    font-size: 15px;
    color: rgba(255,255,255,.55);
    font-weight: 300;
    max-width: 520px;
    line-height: 1.8;
  }
  .wrong-hero-calm {
    margin-top: 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    max-width: 480px;
    line-height: 1.75;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 18px;
  }

  .wrong-wrap {
    padding: 72px 10vw 96px;
    max-width: 1200px;
  }

  .wrong-intro {
    max-width: 680px;
    margin-bottom: 72px;
  }
  .wrong-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.25;
    letter-spacing: -.4px;
    margin-bottom: 20px;
  }
  .wrong-intro h2 em { font-style: italic; color: var(--green-a); }
  .wrong-intro p {
    font-size: 15px;
    color: var(--body);
    line-height: 1.9;
    font-weight: 300;
  }

  /* Situation cards */
  .wrong-sections {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .wrong-situation {
    background: var(--white);
    border: none;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  .wrong-situation:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }

  .wrong-sit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 36px;
    cursor: pointer;
    gap: 24px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    transition: background .2s;
  }
  .wrong-sit-header:hover { background: none; }
  .wrong-situation.open .wrong-sit-header { background: none; }

  .wrong-sit-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
  }
  .wrong-sit-num {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--muted);
    flex-shrink: 0;
    margin-top: 4px;
    min-width: 28px;
  }
  .wrong-sit-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(17px, 1.8vw, 21px);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.5;
    transition: color .2s;
  }
  .wrong-sit-header:hover .wrong-sit-title { color: var(--green-a); }
  .wrong-situation.open .wrong-sit-title { color: var(--green-a); }

  .wrong-sit-toggle {
    flex-shrink: 0;
    font-size: 20px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1;
    margin-top: 4px;
    transition: color .2s;
    background: none;
  }
  .wrong-situation.open .wrong-sit-toggle {
    color: var(--ink);
    transform: none;
  }

  .wrong-sit-body {
    display: none;
    padding: 0 36px 36px 88px;
    animation: fadeUp .25s ease both;
  }
  .wrong-situation.open .wrong-sit-body { display: block; }

  .wrong-sit-body p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 16px;
    max-width: 640px;
  }
  .wrong-sit-body p:last-of-type { margin-bottom: 0; }

  .wrong-what-box {
    background: var(--cream);
    border-left: 2px solid var(--border);
    padding: 20px 24px;
    margin: 20px 0;
    max-width: 640px;
  }
  .wrong-what-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
    display: block;
  }
  .wrong-what-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .wrong-what-list li {
    font-size: 13px;
    color: var(--body);
    padding-left: 16px;
    position: relative;
    font-weight: 300;
    line-height: 1.6;
  }
  .wrong-what-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--green-a);
  }

  .wrong-note {
    margin-top: 16px;
    padding: 16px 20px;
    background: var(--cream);
    border-left: 2px solid var(--border);
    font-size: 13px;
    color: var(--body);
    line-height: 1.75;
    font-weight: 300;
    max-width: 640px;
  }
  .wrong-note strong { color: var(--ink); font-weight: 500; }

  .wrong-sit-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
    cursor: pointer;
    border-bottom: 1.5px solid rgba(0,0,0,.2);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
  }
  .wrong-sit-link:hover { color: var(--green); border-color: var(--green); }

  /* Escalation box */
  .wrong-escalation {
    margin-top: 72px;
    background: #0e1712;
    padding: 56px 10vw;
  }
  .wrong-esc-inner {
    max-width: 860px;
    margin: 0 auto;
  }
  .wrong-esc-h {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 400;
    color: white;
    line-height: 1.2;
    letter-spacing: -.3px;
    margin-bottom: 16px;
  }
  .wrong-esc-h em { font-style: italic; color: rgba(255,255,255,.4); }
  .wrong-esc-p {
    font-size: 14px;
    color: rgba(255,255,255,.45);
    line-height: 1.85;
    font-weight: 300;
    max-width: 560px;
    margin-bottom: 40px;
  }
  .wrong-esc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }
  .wrong-esc-card {
    background: rgba(255,255,255,.04);
    padding: 28px 30px;
  }
  .wrong-esc-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.25);
    margin-bottom: 12px;
    display: block;
  }
  .wrong-esc-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .wrong-esc-card p {
    font-size: 13px;
    color: rgba(255,255,255,.4);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 0;
  }
  .wrong-esc-card strong { color: rgba(255,255,255,.7); font-weight: 500; }

  @media (max-width: 900px) {
    .wrong-wrap { padding: 56px 6vw 72px; }
    .wrong-sit-body { padding: 0 20px 28px 20px; }
    .wrong-sit-header { padding: 24px 20px; }
    .wrong-sit-left { gap: 14px; }
    .wrong-esc-grid { grid-template-columns: 1fr; }
    .wrong-escalation { padding: 48px 6vw; }
  }
