
  /* ── HOW TO USE CLAIMTALK ── */
  .how-hero {
    background: var(--green);
    padding: 80px 10vw 90px;
  }
  .how-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 66px);
    font-weight: 400;
    color: white;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
  }
  .how-hero h1 em { font-style: italic; color: rgba(255,255,255,.45); }
  .how-hero p {
    font-size: 15px;
    color: rgba(255,255,255,.5);
    font-weight: 300;
    max-width: 500px;
    line-height: 1.8;
  }

  .how-page-wrap {
    padding: 72px 10vw 96px;
  }

  /* Situation entry points */
  .how-situations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-bottom: 72px;
  }
  .how-situation-card {
    background: var(--cream);
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .how-situation-card.dark {
    background: #0e1712;
  }
  .how-sit-num {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
  }
  .how-situation-card.dark .how-sit-num { color: rgba(255,255,255,.25); }
  .how-sit-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.3;
    letter-spacing: -.2px;
  }
  .how-situation-card.dark .how-sit-heading { color: white; }
  .how-sit-body {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    flex: 1;
  }
  .how-situation-card.dark .how-sit-body { color: rgba(255,255,255,.4); }
  .how-sit-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
  }
  .how-sit-link {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green-a);
    text-align: left;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap .2s;
  }
  .how-sit-link:hover { gap: 12px; }
  .how-situation-card.dark .how-sit-link { color: #e8c97a; }

  /* What's on the site */
  .how-map-section {
    margin-bottom: 72px;
  }
  .how-map-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -.4px;
    margin-bottom: 8px;
  }
  .how-map-title em { font-style: italic; color: var(--green-a); }
  .how-map-sub {
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.7;
  }
  .how-map-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
  .how-map-card {
    background: white;
    border: 1px solid var(--border);
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
  }
  .how-map-card:hover {
    border-color: var(--green-a);
    background: rgba(30,122,80,.03);
  }
  .how-map-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
  }
  .how-map-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
  }
  .how-map-card-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    flex: 1;
  }
  .how-map-card-cta {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-a);
    margin-top: 4px;
  }

  /* Independence note */
  .how-independence {
    background: #f0ede5;
    padding: 44px 48px;
    max-width: 760px;
  }
  .how-independence h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: -.2px;
  }
  .how-independence p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 0;
  }

  @media (max-width: 900px) {
    .how-situations { grid-template-columns: 1fr; }
    .how-map-grid { grid-template-columns: 1fr 1fr; }
    .how-page-wrap { padding: 48px 6vw 72px; }
    .how-situation-card { padding: 32px 28px; }
    .how-independence { padding: 32px 28px; }
  }
  @media (max-width: 600px) {
    .how-map-grid { grid-template-columns: 1fr; }
  }
