.about {
  display: grid;
  grid-template-columns: 1fr 1fr 56px;
  grid-template-rows: auto minmax(0, 1fr) auto;
  column-gap: clamp(40px, 5vw, 80px);
  row-gap: 32px;
  height: 100vh;
  padding: var(--gap);
  overflow: hidden;
}

/* === HEADER === */
.about__header {
  grid-column: 1;
  grid-row: 1;
  padding-top: 4px;
}
.about__title {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* === LEFT: PICTURE PLACEHOLDER === */
.about__picture {
  grid-column: 1;
  grid-row: 2;
  min-height: 0;
  height: 100%;
}
.about__picture-stage {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about__picture-label {
  font-size: 28px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.about__picture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === RIGHT: SCROLLABLE TEXT === */
.about__text-wrap {
  grid-column: 2;
  grid-row: 2;
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  padding-top: 20px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 4%, #000 94%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 4%, #000 94%, transparent 100%);
}
.about__text-wrap::-webkit-scrollbar { display: none; }

.about__text {
  max-width: 800px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  padding-bottom: 80px;
}
.about__text p {
  margin: 0 0 18px 0;
  letter-spacing: 0.005em;
}
.about__text h2 {
  margin: 40px 0 14px 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.about__text a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink-mute);
  transition: border-color 200ms ease;
}
.about__text a:hover {
  border-color: var(--ink);
}

/* === MASTHEAD === */
.about .masthead {
  grid-column: 3;
  grid-row: 1 / span 2;
}
.about .footnav {
  grid-column: 1 / span 3;
  grid-row: 3;
}