
   /* Container sized to feel like a stack, not a long column */
    #hero .ps-polaroid-column{
      position: relative;
      width: min(540px, 100%);
      height: min(560px, 66vh);
      margin-inline: auto;
      /* important so you can click the visible parts cleanly */
      pointer-events: auto;
    }

    #hero .ps-polaroid{
      position: absolute;
      margin: 0;
      opacity: 0;
      transform-origin: center;
      background: #fff;
      border: 14px solid #f7f7f7;
      border-bottom-width: 56px;
      border-radius: 14px;
      box-shadow: 0 14px 30px rgba(0,0,0,.22);
      overflow: hidden;
      user-select: none;
      cursor: pointer;
    }

    #hero .ps-polaroid:focus-visible{
      outline: 3px solid rgba(42,120,166,.65);
      outline-offset: 6px;
    }

    #hero .ps-polaroid img{
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      background: #e9eef2;
    }

    #hero .ps-polaroid figcaption{
      position: absolute;
      left: 0;
      right: 0;
      bottom: 10px;
      padding: 0 14px;
      color: #061E25;
      font: 700 0.98rem/1.1 var(--heading-font, system-ui, -apple-system, Segoe UI, Roboto, sans-serif);
      letter-spacing: .2px;
      text-align: center;
      opacity: .92;
    }

    #hero .ps-polaroid--jim{
      box-shadow: 0 18px 40px rgba(0,0,0,.28);
    }

    @media (prefers-reduced-motion: reduce){
      #hero .ps-polaroid{
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
    }

    /* Show more of Jim’s face (crop favors the top) */
#hero .ps-polaroid--jim img{
  object-position: 50% 15%; /* try 0%–25% until it’s perfect */
}

/* Jim: show more of the top of his head (crop favors the top more) */
#hero .ps-polaroid--jim img{
  object-position: 50% 5%;
}

/* ✅ Polaroid card: reserve a real label area inside the card */
#hero .ps-polaroid{
  position: absolute;
  margin: 0;
  opacity: 0;
  transform-origin: center;

  background: #fff;
  border: 14px solid #f7f7f7;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  overflow: hidden;
  user-select: none;
  cursor: pointer;

  /* ✅ This is the important part */
  display: flex;
  flex-direction: column;
}

/* Photo area */
#hero .ps-polaroid img{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e9eef2;
}

/* ✅ Caption now sits BELOW the image in the white “label” area */
#hero .ps-polaroid figcaption{
  position: static;            /* <- no absolute */
  margin: 0;

  min-height: 56px;            /* label area height */
  padding: 10px 14px 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #061E25;
  font: 800 0.98rem/1.1 var(--heading-font, system-ui, -apple-system, Segoe UI, Roboto, sans-serif);
  letter-spacing: .2px;
  text-align: center;

  pointer-events: none;
  opacity: .92;
}

