  /* tighter hero — short lede only */
  .page-hero .lede { max-width: 52ch; }

  /* Founder split */
  .founder {
    display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center;
  }
  .founder-photo {
    aspect-ratio: 4/5; border: 3px solid var(--ink); border-radius: 24px;
    background-size: cover; background-position: center;
    box-shadow: 8px 8px 0 var(--ink);
    transform: rotate(-1.5deg);
    background-color: var(--soft-yellow);
    position: relative;
  }
  .founder-photo .tape {
    position: absolute; top: -14px; left: 36px;
    width: 110px; height: 22px;
    background: rgba(255, 210, 63, 0.85);
    border: 2px dashed rgba(26,20,16,0.35);
    transform: rotate(-4deg);
  }
  .founder-photo .caption {
    position: absolute; bottom: 16px; left: 16px; right: 16px;
    font-family: 'Caveat', cursive; font-weight: 700;
    font-size: 22px; color: var(--ink);
    background: var(--paper); padding: 6px 14px;
    border: 2px solid var(--ink); border-radius: 8px;
    transform: rotate(1.5deg); display: inline-block;
    width: fit-content;
  }
  .founder p { font-size: 17px; }
  .founder p + p { margin-top: 14px; }
  .founder .signature {
    font-family: 'Caveat', cursive; font-weight: 700;
    font-size: 28px; color: var(--red); margin-top: 24px;
    display: inline-block; transform: rotate(-2deg);
  }

  /* Charity shop band */
  .shop-band { background: var(--soft-blue); border-bottom: 3px solid var(--ink); }
  .shop-band .band-inner {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
    padding: 90px 0;
  }
  .shop-photo {
    position: relative; overflow: hidden;
    aspect-ratio: 5/4; border: 3px solid var(--ink); border-radius: 24px;
    background-size: cover; background-position: center;
    box-shadow: 8px 8px 0 var(--ink);
    background-color: var(--paper);
    transform: rotate(1.5deg);
    background-image:
      linear-gradient(135deg, transparent 47%, rgba(26,20,16,0.06) 50%, transparent 53%),
      linear-gradient(45deg, transparent 47%, rgba(26,20,16,0.06) 50%, transparent 53%);
    background-size: 60px 60px;
  }
  .shop-photo::after {
    content: ''; position: absolute; inset: 0;
    /* placeholder note */
  }
  .shop-band .eyebrow {
    font-family: 'Caveat', cursive; font-weight: 700;
    font-size: 28px; color: var(--blue-dark);
    display: inline-block; transform: rotate(-2deg);
  }
  .shop-band h2 { margin-top: 8px; }
  .shop-band p { font-size: 17px; max-width: 48ch; }
  .shop-band p + p { margin-top: 14px; }
  .shop-tags {
    display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px;
  }
  .shop-tag {
    padding: 6px 14px;
    background: var(--paper); border: 2.5px solid var(--ink);
    border-radius: 999px;
    font: 800 12px/1 'Nunito', sans-serif;
    text-transform: uppercase; letter-spacing: 0.06em;
  }

  /* How we work feature */
  .feature {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center;
  }
  .feature-img {
    aspect-ratio: 4/5; border: 3px solid var(--ink); border-radius: 24px;
    background-size: cover; background-position: center;
    box-shadow: 8px 8px 0 var(--ink);
    transform: rotate(1.5deg);
  }
  .feature-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 16px; }
  .feature-list li {
    display: flex; gap: 16px; align-items: flex-start; font-size: 16px;
  }
  .feature-list .num {
    flex: 0 0 36px; height: 36px; border-radius: 50%;
    background: var(--yellow); border: 3px solid var(--ink);
    display: grid; place-items: center;
    font-family: 'Caprasimo', serif; font-size: 14px;
  }
  .feature-list li:nth-child(2) .num { background: var(--orange); }
  .feature-list li:nth-child(3) .num { background: var(--green); color: var(--paper); }

  /* Numbers */
  .impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
  .impact-item {
    background: var(--paper); border: 3px solid var(--ink); border-radius: 22px;
    padding: 32px 24px; box-shadow: 6px 6px 0 var(--ink);
    text-align: center;
  }
  .impact-item:nth-child(1) { background: var(--soft-red); }
  .impact-item:nth-child(2) { background: var(--soft-yellow); }
  .impact-item:nth-child(3) { background: var(--soft-green); }
  .impact-n { font-family: 'Caprasimo', serif; font-size: 64px; line-height: 1; }
  .impact-item:nth-child(1) .impact-n { color: var(--red); }
  .impact-item:nth-child(2) .impact-n { color: var(--orange); }
  .impact-item:nth-child(3) .impact-n { color: var(--green-dark); }
  .impact-label {
    font-size: 13px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.06em; margin-top: 12px;
    color: rgba(26,20,16,0.7);
  }

  @media (max-width: 980px) {
    .founder, .feature { grid-template-columns: 1fr; gap: 40px; }
    .shop-band .band-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
    .impact-grid { grid-template-columns: 1fr; }
  }
