/* ============================================
   GET TO KNOW ME subpage — the personal room
   ============================================ */

.about-room {
  max-width: 1180px;
}

.about-room h1 {
  font-family: var(--font-hand);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 400;
  font-synthesis: none;
  transform: rotate(-1deg);
  margin-bottom: 1.8rem;
}

.about-spread {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 2.5rem 3.2rem;
  align-items: start;
  margin-bottom: var(--space-xl);
}

.overshare {
  max-width: 58ch;
  margin: 0;
}

.overshare-hi {
  font-family: var(--font-hand);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 400;
  font-synthesis: none;
  color: var(--rust);
  transform: rotate(-1deg);
  margin: 0 0 0.35rem;
}

.overshare-welcome {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}

.overshare p {
  margin: 0 0 1.15rem;
  font-size: 1.08rem;
  line-height: 1.62;
  color: var(--ink);
}

.overshare p:last-child {
  margin-bottom: 0;
}

.film-reel {
  position: sticky;
  top: 5.4rem;
  width: 230px;
  justify-self: end;
  transform: rotate(1.4deg);
}

.film-can {
  position: relative;
  width: 110%;
  margin: 0 0 -34px;
  z-index: 2;
}

.film-can img {
  width: 100%;
  height: auto;
  display: none;
  filter: drop-shadow(0 8px 12px rgba(58, 46, 34, 0.22));
}

.film-can-art {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 12px rgba(58, 46, 34, 0.22));
}

.film-can:not(.is-missing) img {
  display: block;
}

.film-can:not(.is-missing) .film-can-art {
  display: none;
}

.film-strip {
  --film: #1c1814;
  --sprocket: #f3f1ec;
  position: relative;
  width: 168px;
  margin: 0 auto;
  padding: 14px 22px 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18px),
    var(--film);
  box-shadow: 0 16px 22px rgba(58, 46, 34, 0.2);
}

.film-strip::before,
.film-strip::after {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 8px;
  background: repeating-linear-gradient(
    to bottom,
    var(--sprocket) 0 7px,
    var(--sprocket) 7px,
    var(--film) 8px 18px
  );
  border-radius: 1px;
  pointer-events: none;
  z-index: 2;
}

.film-strip::before { left: 5px; }
.film-strip::after { right: 5px; }

.film-frame {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  background: #cbb89a;
  overflow: hidden;
}

.film-frame:last-of-type {
  margin-bottom: 6px;
}

.film-frame .photo {
  width: 100%;
  height: 108px;
  object-fit: cover;
  display: block;
}

.film-frame.is-missing .photo {
  display: none;
}

.film-frame.is-missing::after {
  content: 'drop a photo here';
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  padding: 0.4rem;
  font-family: var(--font-hand);
  font-size: 0.95rem;
  color: rgba(243, 241, 236, 0.55);
  text-align: center;
  background: linear-gradient(160deg, #5a4a3a, #3a2e22);
}

.film-tab {
  position: relative;
  z-index: 1;
  margin: 4px 0 2px;
  padding: 10px 0 8px;
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: #f3eadc;
  text-align: center;
  letter-spacing: 0.04em;
}

.site-header .take-me-home {
  margin: 0;
  font-size: 1.64rem;
}

.take-me-home a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.take-me-home a:hover,
.take-me-home a:focus-visible {
  color: var(--rust);
}

.photo-needed {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(58, 46, 34, 0.45);
  text-align: center;
  padding-top: 2.4rem;
}

@media (max-width: 860px) {
  .about-spread {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .film-reel {
    position: static;
    justify-self: center;
    transform: rotate(0.8deg);
  }

  .overshare {
    margin-bottom: 0;
  }
}
