html {
  overflow-x: visible;
}

.about-page {
  --profile-accent: #ffb24d;
  --profile-cream: #f1ece4;
  --profile-ink: #f8f5ef;
  --profile-muted: rgb(248 245 239 / 0.65);
  --profile-line: rgb(255 255 255 / 0.16);
  --profile-shell: 1280px;
  --theme-accent: var(--profile-accent);
  --theme-glow: rgb(255 178 77 / 0.22);
  background: #050505;
  color: var(--profile-ink);
  overflow-x: visible;
}

.about-page main {
  animation: none;
  overflow: visible;
  transform: none;
}

.about-page .about-reveal__scene {
  position: -webkit-sticky;
  position: sticky;
}

.about-page ::selection {
  background: var(--profile-accent);
  color: #080705;
}

.about-page :focus-visible {
  outline: 2px solid var(--profile-accent);
  outline-offset: 4px;
}

.about-page .about-backdrop::after {
  background:
    linear-gradient(180deg, rgb(4 4 4 / 0.08), rgb(4 4 4 / 0.3) 78%, rgb(5 5 5 / 0.72)),
    linear-gradient(90deg, rgb(5 5 5 / 0.44), rgb(5 5 5 / 0.1) 48%, rgb(5 5 5 / 0.32));
}

.about-page .about-backdrop img {
  filter: blur(var(--about-page-bg-blur)) saturate(1.18) contrast(1.04) brightness(1.08);
}

.about-page .about-backdrop::before {
  opacity: 0.14;
}

.profile-shell {
  margin-inline: auto;
  max-width: var(--profile-shell);
  width: min(calc(100% - 2 * var(--page-pad)), var(--profile-shell));
}

.profile-eyebrow {
  align-items: center;
  color: var(--profile-accent);
  display: flex;
  font-size: 0.72rem;
  font-weight: 850;
  gap: 0.7rem;
  letter-spacing: 0.15em;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
}

.profile-eyebrow::before {
  background: currentColor;
  content: "";
  height: 2px;
  width: 2.25rem;
}

.profile-hero {
  background:
    radial-gradient(circle at 78% 28%, rgb(255 178 77 / 0.09), transparent 27rem),
    linear-gradient(180deg, rgb(5 5 5 / 0.2), #050505 92%);
  min-height: 100svh;
  padding: clamp(7.5rem, 11vw, 11rem) 0 clamp(6rem, 9vw, 9rem);
  position: relative;
}

.profile-rail {
  border-bottom: 1px solid var(--profile-line);
  color: rgb(255 255 255 / 0.48);
  display: grid;
  font-size: 0.67rem;
  font-weight: 800;
  grid-template-columns: 1fr auto 1fr;
  letter-spacing: 0.13em;
  padding-bottom: 0.85rem;
  text-transform: uppercase;
}

.profile-rail span:nth-child(2) {
  text-align: center;
}

.profile-rail span:last-child {
  text-align: right;
}

.profile-hero__layout {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5.5vw, 6.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(310px, 420px);
  padding-block: clamp(3.25rem, 7vw, 7.5rem);
}

.profile-hero__copy {
  max-width: 790px;
}

.profile-hero h1 {
  font-family: "Arial Black", Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(3.7rem, 7.1vw, 7.7rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.91;
  margin: 0;
  max-width: 10ch;
  text-wrap: balance;
}

.profile-lede {
  color: rgb(248 245 239 / 0.76);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1.58;
  margin: clamp(1.6rem, 3vw, 2.5rem) 0 0;
  max-width: 59ch;
}

.profile-text-link {
  align-items: center;
  border-bottom: 1px solid rgb(255 255 255 / 0.34);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 850;
  gap: 1.2rem;
  letter-spacing: 0.1em;
  margin-top: 2rem;
  padding-bottom: 0.55rem;
  text-transform: uppercase;
  transition: border-color 180ms var(--ease), color 180ms var(--ease);
}

.profile-text-link span {
  color: var(--profile-accent);
  font-size: 1rem;
  transition: transform 220ms var(--ease);
}

.profile-text-link:hover,
.profile-text-link:focus-visible {
  border-color: var(--profile-accent);
  color: var(--profile-accent);
}

.profile-text-link:hover span,
.profile-text-link:focus-visible span {
  transform: translate(0.2rem, 0.2rem);
}

.profile-portrait {
  justify-self: end;
  margin: 0;
  max-width: 420px;
  width: 100%;
}

.profile-portrait__frame {
  aspect-ratio: 4 / 5;
  background: #0b0d0e;
  border: 1px solid rgb(255 255 255 / 0.24);
  overflow: hidden;
  position: relative;
}

.profile-portrait__frame::after {
  background:
    linear-gradient(180deg, transparent 54%, rgb(0 0 0 / 0.5)),
    linear-gradient(90deg, rgb(255 178 77 / 0.08), transparent 44%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.profile-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: 54% 48%;
  width: 100%;
}

.profile-portrait__corner {
  border-right: 2px solid var(--profile-accent);
  border-top: 2px solid var(--profile-accent);
  height: 3.5rem;
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  width: 3.5rem;
  z-index: 1;
}

.profile-portrait figcaption {
  align-items: baseline;
  border-bottom: 1px solid var(--profile-line);
  color: rgb(255 255 255 / 0.5);
  display: flex;
  font-size: 0.72rem;
  font-weight: 650;
  justify-content: space-between;
  letter-spacing: 0.05em;
  padding: 0.85rem 0;
}

.profile-portrait figcaption span {
  color: var(--profile-accent);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.profile-metrics {
  border-block: 1px solid var(--profile-line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.profile-metrics > div {
  min-width: 0;
  padding: 1.35rem clamp(0.9rem, 2vw, 1.75rem);
}

.profile-metrics > div:first-child {
  padding-left: 0;
}

.profile-metrics > div + div {
  border-left: 1px solid var(--profile-line);
}

.profile-metrics dt {
  color: rgb(255 255 255 / 0.44);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.profile-metrics dd {
  align-items: baseline;
  color: rgb(255 255 255 / 0.7);
  display: flex;
  font-size: 0.83rem;
  font-weight: 650;
  gap: 0.55rem;
  margin: 0;
}

.profile-metrics strong {
  color: #fff;
  font-family: "Arial Black", Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3.4rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.profile-credit {
  color: rgb(255 255 255 / 0.44);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  margin: 1rem 0 0;
  text-align: right;
  text-transform: uppercase;
}

.profile-credit span {
  color: rgb(255 255 255 / 0.7);
  margin-left: 0.6rem;
}

.profile-story {
  background: var(--profile-cream);
  color: #11100e;
  padding: clamp(6.5rem, 10vw, 10.5rem) 0;
  position: relative;
}

.profile-story__heading {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
}

.profile-story .profile-eyebrow {
  align-self: start;
  color: #b76600;
}

.profile-story h2,
.profile-work h2,
.profile-process h2,
.profile-closing h2 {
  font-family: "Arial Black", Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.94;
  margin: 0;
}

.profile-story h2 {
  font-size: clamp(3.4rem, 7vw, 7.2rem);
}

.profile-story__copy {
  border-top: 1px solid rgb(17 16 14 / 0.28);
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  margin-top: clamp(3rem, 6vw, 5.5rem);
  padding-top: clamp(1.5rem, 3vw, 2.6rem);
}

.profile-story__lead {
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0;
  max-width: 28ch;
  text-wrap: balance;
}

.profile-story__copy > div {
  align-self: end;
  color: rgb(17 16 14 / 0.72);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.68;
  max-width: 56ch;
}

.profile-story__copy > div p {
  margin-bottom: 1.1rem;
}

.profile-story__copy > div p:last-child {
  margin-bottom: 0;
}

.profile-values {
  border-top: 1px solid rgb(17 16 14 / 0.28);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: clamp(4rem, 8vw, 7rem) 0 0;
  padding: 0;
}

.profile-layer-media {
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(3rem, 6vw, 6rem);
}

.profile-layer-media figure {
  aspect-ratio: 16 / 9;
  background: #0b0b0b;
  border: 1px solid rgb(17 16 14 / 0.22);
  margin: 0;
  overflow: hidden;
}

.profile-layer-media img,
.profile-layer-media video {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.profile-values li {
  padding: 1.4rem clamp(1rem, 2.4vw, 2rem) 0;
}

.profile-values li:first-child {
  padding-left: 0;
}

.profile-values li + li {
  border-left: 1px solid rgb(17 16 14 / 0.2);
}

.profile-values span {
  color: #b76600;
  display: block;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  margin-bottom: 2.7rem;
}

.profile-values strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.profile-values p {
  color: rgb(17 16 14 / 0.64);
  font-size: 0.93rem;
  line-height: 1.58;
  margin: 0;
  max-width: 34ch;
}

.profile-work {
  background: #070707;
  padding: clamp(6.5rem, 10vw, 10.5rem) 0 clamp(7.5rem, 12vw, 12rem);
}

.profile-section-heading {
  align-items: end;
  display: grid;
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
}

.profile-work h2 {
  font-size: clamp(3.4rem, 6.4vw, 6.5rem);
}

.profile-section-heading > p {
  color: var(--profile-muted);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.65;
  margin: 0 0 0.25rem;
  max-width: 48ch;
}

.profile-projects {
  display: grid;
  gap: clamp(2rem, 4vw, 4.5rem) clamp(1rem, 2vw, 1.6rem);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-top: clamp(3.5rem, 7vw, 7rem);
}

.profile-project {
  display: block;
  min-width: 0;
}

.profile-project--home {
  grid-column: 1 / span 7;
}

.profile-project--life {
  grid-column: 8 / span 5;
}

.profile-project--celebrity {
  grid-column: 3 / span 8;
}

.profile-project figure {
  margin: 0;
}

.profile-project__media {
  aspect-ratio: 16 / 10;
  background: #111;
  border: 1px solid var(--profile-line);
  overflow: hidden;
  position: relative;
}

.profile-project__media::after {
  background: linear-gradient(180deg, transparent 55%, rgb(0 0 0 / 0.22));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.profile-project img {
  filter: saturate(0.88) contrast(1.04) brightness(0.88);
  height: 100%;
  object-fit: cover;
  transition: filter 550ms var(--slow), transform 700ms var(--slow);
  width: 100%;
}

.profile-project--home img {
  object-position: center 52%;
}

.profile-project--life img {
  object-position: center 48%;
}

.profile-project--celebrity img {
  object-position: center 42%;
}

.profile-project figcaption {
  border-top: 2px solid var(--profile-accent);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.6fr);
  padding-top: 1rem;
}

.profile-project figcaption > span {
  color: var(--profile-accent);
  font-size: 0.66rem;
  font-weight: 850;
  grid-column: 1 / -1;
  letter-spacing: 0.13em;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.profile-project h3 {
  font-family: "Arial Black", Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.profile-project figcaption p {
  color: rgb(255 255 255 / 0.55);
  font-size: 0.86rem;
  line-height: 1.48;
  margin: 0;
}

.profile-project:hover img,
.profile-project:focus-visible img {
  filter: saturate(1.03) contrast(1.03) brightness(0.98);
  transform: scale(1.025);
}

.profile-process {
  background:
    radial-gradient(circle at 12% 16%, rgb(255 178 77 / 0.08), transparent 24rem),
    #0b0a09;
  border-top: 1px solid var(--profile-line);
  padding: clamp(6.5rem, 10vw, 10.5rem) 0;
}

.profile-process__layout {
  align-items: start;
  display: grid;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.profile-process__intro {
  position: sticky;
  top: 7.5rem;
}

.profile-process h2 {
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  max-width: 11ch;
}

.profile-process__intro > p:last-child {
  color: var(--profile-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 1.5rem 0 0;
  max-width: 50ch;
}

.profile-process__steps {
  border-top: 1px solid var(--profile-line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.profile-process__steps li {
  border-bottom: 1px solid var(--profile-line);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  padding: clamp(1.8rem, 3.5vw, 3.1rem) 0;
}

.profile-process__steps li > span {
  color: var(--profile-accent);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  padding-top: 0.45rem;
  text-transform: uppercase;
}

.profile-process__steps h3 {
  font-family: "Arial Black", Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.75rem, 3.4vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0 0 0.75rem;
}

.profile-process__steps p {
  color: var(--profile-muted);
  font-size: 0.98rem;
  line-height: 1.58;
  margin: 0;
  max-width: 48ch;
}

.profile-closing {
  align-items: center;
  background:
    linear-gradient(90deg, rgb(5 5 5 / 0.93), rgb(5 5 5 / 0.58) 62%, rgb(5 5 5 / 0.82)),
    transparent;
  display: flex;
  min-height: 82svh;
  padding: clamp(7rem, 12vw, 12rem) 0;
  position: relative;
}

.profile-closing::before {
  background: linear-gradient(90deg, var(--profile-accent), transparent);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  width: min(46vw, 680px);
}

.profile-closing h2 {
  font-size: clamp(3.7rem, 7.5vw, 8rem);
  max-width: 11ch;
}

.profile-closing .profile-shell > p:not(.profile-eyebrow) {
  color: var(--profile-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  margin: 1.8rem 0 0;
  max-width: 58ch;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.3rem;
}

.profile-actions .button.primary {
  box-shadow: none;
}

.profile-actions .button.secondary {
  background: rgb(0 0 0 / 0.45);
}

.profile-motion [data-profile-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms var(--ease), transform 800ms var(--slow);
}

.profile-motion [data-profile-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .profile-hero__layout {
    gap: 3rem;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  }

  .profile-project figcaption {
    grid-template-columns: 1fr;
  }

  .profile-project figcaption p {
    margin-top: 0.6rem;
  }
}

@media (max-width: 820px) {
  .profile-hero__layout,
  .profile-story__heading,
  .profile-story__copy,
  .profile-section-heading,
  .profile-process__layout {
    grid-template-columns: 1fr;
  }

  .profile-hero h1 {
    max-width: 11ch;
  }

  .profile-portrait {
    justify-self: start;
    max-width: 440px;
  }

  .profile-story__heading,
  .profile-story__copy,
  .profile-section-heading {
    gap: 1.5rem;
  }

  .profile-values {
    grid-template-columns: 1fr;
  }

  .profile-layer-media {
    grid-template-columns: 1fr;
  }

  .profile-values li {
    border-bottom: 1px solid rgb(17 16 14 / 0.2);
    display: grid;
    gap: 0.6rem 1.2rem;
    grid-template-columns: 3rem minmax(0, 1fr);
    padding: 1.3rem 0;
  }

  .profile-values li + li {
    border-left: 0;
  }

  .profile-values span {
    grid-row: span 2;
    margin: 0;
  }

  .profile-project--home,
  .profile-project--life,
  .profile-project--celebrity {
    grid-column: 1 / -1;
  }

  .profile-project--celebrity {
    width: 100%;
  }

  .profile-process__intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .profile-shell {
    width: calc(100% - 2rem);
  }

  .profile-hero {
    padding-bottom: 5.5rem;
    padding-top: 7.5rem;
  }

  .profile-rail {
    gap: 0.45rem;
    grid-template-columns: 1fr auto;
  }

  .profile-rail span:nth-child(2) {
    text-align: right;
  }

  .profile-rail span:last-child {
    display: none;
  }

  .profile-hero__layout {
    padding-block: 3rem;
  }

  .profile-hero h1 {
    font-size: clamp(3.25rem, 15.5vw, 4.8rem);
    letter-spacing: -0.07em;
    line-height: 0.93;
  }

  .profile-lede {
    font-size: 1.02rem;
  }

  .profile-portrait {
    max-width: 100%;
  }

  .profile-portrait figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .profile-metrics {
    grid-template-columns: 1fr;
  }

  .profile-metrics > div,
  .profile-metrics > div:first-child {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 1rem 0;
  }

  .profile-metrics > div + div {
    border-left: 0;
    border-top: 1px solid var(--profile-line);
  }

  .profile-metrics dt {
    margin: 0;
  }

  .profile-metrics dd {
    justify-content: flex-end;
  }

  .profile-metrics strong {
    font-size: 1.85rem;
  }

  .profile-credit {
    line-height: 1.5;
    text-align: left;
  }

  .profile-credit span {
    display: block;
    margin-left: 0;
  }

  .profile-story,
  .profile-work,
  .profile-process {
    padding-block: 5.5rem;
  }

  .profile-story h2,
  .profile-work h2,
  .profile-process h2 {
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  .profile-story__lead {
    font-size: 1.65rem;
  }

  .profile-values {
    margin-top: 3.8rem;
  }

  .profile-projects {
    gap: 3rem;
    margin-top: 3.5rem;
  }

  .profile-project__media {
    aspect-ratio: 16 / 9;
  }

  .profile-process__steps li {
    gap: 0.6rem;
    grid-template-columns: 1fr;
  }

  .profile-process__steps h3 {
    font-size: 2rem;
  }

  .profile-closing {
    min-height: auto;
    padding-block: 7rem;
  }

  .profile-closing h2 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .profile-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .profile-actions .button {
    justify-content: center;
    width: 100%;
  }
}

@media (max-height: 680px) and (min-width: 821px) {
  .profile-process__intro {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .about-page .about-reveal {
    height: 100svh;
    --about-hint-opacity: 0 !important;
    --about-logo-blur: 0px !important;
    --about-logo-color: 1 !important;
    --about-logo-opacity: 1 !important;
    --about-logo-scale: 1 !important;
    --about-logo-white: 0.48 !important;
  }

  .about-page .about-reveal__logo-stage,
  .profile-project img,
  .profile-text-link span,
  .button {
    transition: none;
  }

  .profile-motion [data-profile-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
