[data-reveal],
[data-about-hero],
[data-hoverlift] {
  transform: translateY(var(--reveal-y, 0px))
    translateY(var(--about-parallax-y, 0px)) translateY(var(--hoverlift-y, 0px));
  opacity: var(--reveal-opacity, 1);
}

/* ABOUT PAGE ROOT */
.about-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 24px 160px;
}

/* PAGE TITLE */
.about-title {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

/* INTRO TEXT */
.about-intro {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.85;
  margin-top: 6px;
}

/* THIN DIVIDER */
.about-divider {
  width: 100%;
  max-width: 980px;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 84px auto;
}

/* HERO */
.about-hero {
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: 72px;
  align-items: center;
}

.about-hero-right {
  display: flex;
  justify-content: flex-end;
}

.about-hero-right img {
  width: min(440px, 100%);
  height: auto;
  border-radius: 18px;
  opacity: 0.95;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
}

.about-body {
  max-width: 520px;
  line-height: 1.7;
  opacity: 0.88;
  margin-top: 14px;
}

/* IDENTITY SPLIT */
.about-identity {
  /* keep the split but make it feel clearly left vs right */
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1px minmax(260px, 1fr);
  gap: 56px;
  align-items: start;
}

/* Make the columns sit on the outer sides of the split */
.about-identity > .identity-col:first-child {
  justify-self: start;
}

.about-identity > .identity-col:last-child {
  justify-self: end;
}

/* Subtle right-side emphasis for Part coder (block-level, not text-align) */
.about-identity > .identity-col:last-child {
  padding-left: 32px;
}

.identity-col h3 {
  font-size: 26px;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

/* Force identity column order */
.about-identity > .identity-col:first-child {
  order: 1; /* Part artist (left) */
}

.about-identity > .identity-center {
  order: 2; /* Divider (center) */
}

.about-identity > .identity-col:last-child {
  order: 3; /* Part coder (right) */
}

.identity-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0.88;
}

.identity-col li {
  position: relative;
  padding-left: 14px;
  margin: 8px 0;
}

.identity-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
}

/* Center divider (light, inspired — not a pie) */
.identity-center {
  width: 1px;
  height: 200px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  position: relative;
  margin: 0 auto;
}

/* small soft fade top/bottom */
.identity-center::before {
  content: "";
  position: absolute;
  inset: -24px 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.06) 18%,
    rgba(0, 0, 0, 0.06) 82%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.55;
}

/* Optional tiny labels (only if you add them in HTML) */
.identity-center .label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 650;
  letter-spacing: -0.01em;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(0, 0, 0, 0.7);
}

.identity-center .label.artist {
  left: -64px;
}

.identity-center .label.coder {
  right: -64px;
}

/* FOOTER DIVIDER */
.about-footer-divider {
  width: 100%;
  max-width: 980px;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 120px auto 32px;
}

/* FOOTER */
.site-footer {
  padding-bottom: 48px;
  font-size: 14px;
  opacity: 0.75;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-inner span:nth-child(1) {
  text-align: left;
}

.footer-inner span:nth-child(2) {
  text-align: center;
}

.footer-inner span:nth-child(3) {
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 920px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-right {
    justify-content: flex-start;
  }

  .about-identity {
    max-width: 520px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-identity > * {
    order: initial;
    justify-self: start;
  }

  .about-identity > .identity-col:last-child {
    padding-left: 0;
  }

  .identity-center {
    width: 100%;
    height: 1px;
    max-width: 360px;
    margin: 8px 0 10px;
  }

  .identity-center::before {
    inset: 0 -24px;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(0, 0, 0, 0.06) 18%,
      rgba(0, 0, 0, 0.06) 82%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .about-divider {
    margin: 56px auto;
  }
}

@media (max-width: 600px) {
  .about-page {
    padding: 92px 16px 120px;
  }

  .about-intro {
    font-size: 16px;
  }

  .about-divider {
    margin: 56px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
    padding: 0 16px;
  }

  .footer-inner span {
    text-align: center !important;
  }

  .about-hero {
    gap: 26px;
  }

  .identity-col h3 {
    font-size: 22px;
  }

  .identity-col li {
    margin: 7px 0;
  }
}
