/* About: bounded columns and intrinsic image proportions at every viewport. */
.about-section {
  display: grid;
  grid-template-columns: minmax(0, 24rem) minmax(0, 30rem);
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(3rem, 5vw, 4.5rem) 6%;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  background-image: radial-gradient(#14141420 .65px, transparent .65px);
  background-size: 5px 5px;
  color: var(--ink);
}

.about-visual {
  position: relative;
  width: 100%;
  max-width: 24rem;
  min-width: 0;
  justify-self: center;
}

.about-photo {
  display: block;
  position: relative;
  width: 100%;
  min-width: 0;
  height: auto;
  margin: 0;
  padding: .5rem .5rem 0;
  border: 3px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 8px 9px 0 var(--lime);
  transform: rotate(-3deg);
  transition: transform .25s, box-shadow .25s;
  isolation: isolate;
  touch-action: pan-y pinch-zoom;
}

.about-photo::before {
  content: '';
  position: absolute;
  top: -.8rem;
  left: 32%;
  width: 36%;
  height: 1.6rem;
  border: 1px solid var(--ink);
  background: var(--purple);
  transform: rotate(6deg);
  z-index: 2;
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid var(--paper);
  filter: none;
}

.about-photo > span {
  display: block;
  padding: .85rem .25rem;
  font: 600 clamp(.875rem, 1.4vw, 1.125rem)/1.25 var(--heading);
  text-align: center;
}

.about-photo:hover {
  transform: rotate(-1deg) translateY(-3px);
  box-shadow: 9px 11px 0 var(--pink);
}

.about-photo.flipped { transform: rotate(2deg); }
.about-photo .photo-status {
  position: absolute; inset: auto .75rem 4rem; z-index: 3;
  padding: .65rem; background: var(--ink); color: var(--lime);
  border: 1px solid var(--lime); font: 750 .875rem/1.4 var(--body);
  pointer-events: none; overflow-wrap: anywhere;
}
.photo-status[hidden] { display: none; }
.photo-controls { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,7rem),1fr)); gap: .75rem; margin-top: 1.2rem; }
.photo-controls button {
  flex: 1; min-width: 0; min-height: 44px; padding: .65rem;
  border: 2px solid var(--ink); background: var(--paper); color: var(--ink);
  font: 750 .875rem/1.3 var(--body);
}
.photo-controls button:hover { background: var(--lime); }

.photo-counter {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  padding: .35rem .5rem;
  border: 1px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  background: var(--lime);
  color: var(--ink);
  font: 800 .75rem/1.2 var(--body);
}

.about-sticker {
  position: absolute;
  right: -1.5rem;
  bottom: 6rem;
  width: clamp(4.5rem, 8vw, 6.5rem);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  transform: rotate(12deg);
  pointer-events: none;
}

.about-copy { width: 100%; min-width: 0; max-width: 30rem; }
.about-copy .eyebrow { margin-bottom: 1.1rem; font-size: .75rem; line-height: 1.5; }
.about-copy h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); line-height: 1.12; letter-spacing: -.025em; }
.about-copy h2 span {
  display: inline-block;
  max-width: 100%;
  margin: .4rem 0 0;
  padding: .1rem .45rem .35rem;
  background: var(--lime);
  transform: rotate(-2deg);
  white-space: normal;
}
.about-copy p { margin: 1.4rem 0; font-size: 1rem; line-height: 1.6; }
.artist-quote { display: block; margin: 0 0 1.4rem; padding: .65rem 0 .65rem 1rem; border-left: 3px solid var(--purple); font-size: 1rem; line-height: 1.55; }
.artist-quote small { display: block; margin-top: .65rem; font-size: .75rem; font-weight: 800; letter-spacing: .04em; }
.artist-quote:hover { border-color: var(--ink); }
.about-copy .button { min-height: 3rem; padding: .75rem 1.1rem; font-size: .875rem; }

@media (max-width: 760px) {
  .about-section { grid-template-columns: minmax(0, 30rem); gap: 2.5rem; padding: 3rem 7%; }
  .about-visual { width: min(88%, 19rem); }
  .about-photo > span { font-size: 1rem; }
  .about-sticker { width: 5rem; right: -1.1rem; bottom: 6rem; }
  .about-copy h2 { font-size: clamp(1.85rem, 7vw, 2.6rem); }
  .about-copy .eyebrow { margin-bottom: .85rem; }
  .about-copy p { margin: 1.2rem 0; }
  .artist-quote { margin-bottom: 1.2rem; }
}
