/* Reserve enough vertical room below the about section that the
   anchor-scroll target (#about) can actually reach the top of the
   viewport. Without this, on tall viewports the document ends shortly
   after #about and the browser silently clamps scrollY to maxScroll —
   leaving "Also Featured" or the thoughts panel visible at viewport
   top with #about peeking from the bottom. min-height: 100vh on the
   section gives the browser the runway it needs; the extra space
   sits inside #about, below the polaroids, before the footer. */
#about { min-height: 100vh; }

.about-intro { font-family: var(--font-body); font-style: italic; font-size: 1rem; line-height: 1.6; color: var(--color-text-secondary); margin-bottom: 1.5rem; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 4rem; padding: 1rem 0 2rem; }
.about-block { padding: 1.5rem; border: 1px solid var(--color-border); border-radius: 4px; background: var(--color-bg-elevated); transition: all var(--transition-base); }
.about-block:not(.polaroid):hover { border-color: var(--color-red); box-shadow: 0 0 20px var(--color-red-glow); }
.about-block__label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-red-bright); margin-bottom: 0.6rem; }
.about-block__title { font-family: var(--font-title); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.4rem; letter-spacing: -0.005em; }
.about-block__text { font-family: var(--font-body); font-size: 0.88rem; font-weight: 400; line-height: 1.75; color: var(--color-text-secondary); }
.about-block__link { display: inline-block; margin-top: 0.6rem; font-family: var(--font-mono); font-size: 0.65rem; color: var(--color-red-bright); transition: color var(--transition-fast); }
.about-block__link:hover { color: var(--color-text); }

/* ---------- Polaroid variant ----------
   Cream frame, thicker bottom margin (caption zone), small static tilt
   via the --tilt CSS var on each instance. Stacked photo+caption inside.
   Hover lifts and straightens. GSAP owns the entrance transform (drop
   in from above) then releases via clearProps so this CSS hover takes
   back over — see js/about-polaroids.js. */
.about-block.polaroid {
  background: #f4ead4;
  border: none;
  border-radius: 2px;
  padding: 14px 14px 22px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.35),
    0 10px 28px rgba(0, 0, 0, 0.55);
  transform: rotate(var(--tilt, 0deg));
  transform-origin: 50% 60%;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s ease;
  cursor: default;
}
.about-block.polaroid:hover {
  transform: rotate(0) translateY(-6px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 18px 36px rgba(0, 0, 0, 0.65);
}

.polaroid__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #1a1a1a;
  margin-bottom: 14px;
}

.polaroid__caption { padding: 0 4px; }

/* Caption text re-tinted for the cream background so it doesn't blow out
   the original dark-theme palette. Title gets the handwritten Gloria
   Hallelujah face (already loaded in the global font stack) so it reads
   as scrawled-on-the-photo, not typeset. */
.about-block.polaroid .about-block__label {
  color: #a64020;
  font-size: 0.6rem;
}
.about-block.polaroid .about-block__title {
  font-family: 'Gloria Hallelujah', cursive;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #1f1410;
  margin-bottom: 0.55rem;
}
.about-block.polaroid .about-block__text {
  color: #4a3a32;
  font-size: 0.82rem;
  line-height: 1.65;
}
.about-block.polaroid .about-block__link {
  color: #a01818;
}
.about-block.polaroid .about-block__link:hover {
  color: #1f1410;
}

@media (max-width: 768px) {
  .about-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-block.polaroid { max-width: 360px; margin: 0 auto; }
}
