:root {
  color-scheme: dark;
  --black: #050505;
  --white: #f5f3ee;
  --muted: rgba(245, 243, 238, 0.56);
  --gold: #c9a45d;
  --edge: clamp(1.15rem, 2.3vw, 2.7rem);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 18rem;
  min-height: 100%;
  margin: 0;
  background: var(--black);
}

body {
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

.page-transition {
  position: fixed;
  z-index: 200;
  inset: 0;
  background: var(--black);
  pointer-events: none;
  animation: page-arrival 700ms ease forwards;
  transition: opacity 650ms ease;
}

.page-transition.is-leaving {
  opacity: 1;
  visibility: visible;
  animation: none;
}

.about-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.5rem;
  padding: 0 var(--edge);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), transparent);
}

.about-brand {
  font-family: "Eurostile Extended", "Eurostile Ext", "Microgramma D Extended", "Arial Black", Arial, sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.015em;
}

.about-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.05rem, 2.25vw, 3.2rem);
}

.about-nav a,
.about-nav span {
  position: relative;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-nav span {
  color: var(--white);
}

.about-nav span::after,
.about-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.about-nav span::after,
.about-nav a:hover::after,
.about-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.about-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 34% 50%, rgba(255, 255, 255, 0.045), transparent 30%),
    var(--black);
}

.about-stage {
  display: grid;
  grid-template-columns: minmax(13rem, 0.78fr) minmax(18rem, 1.18fr);
  align-items: center;
  gap: clamp(2.8rem, 7vw, 7.5rem);
  width: min(78%, 69rem);
  min-height: 100svh;
  margin: 0 auto;
  padding: 7.5rem 0 4rem;
}

.about-portrait {
  position: relative;
  width: min(100%, 20rem);
  justify-self: end;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    #151515;
  aspect-ratio: 4 / 5;
}

.about-portrait::before {
  position: absolute;
  top: 22%;
  left: 50%;
  width: 28%;
  border-radius: 50%;
  background: rgba(245, 243, 238, 0.12);
  content: "";
  aspect-ratio: 1;
  transform: translateX(-50%);
}

.about-portrait::after {
  position: absolute;
  right: 16%;
  bottom: -9%;
  left: 16%;
  border-radius: 48% 48% 0 0;
  background: rgba(245, 243, 238, 0.095);
  content: "";
  aspect-ratio: 1 / 0.92;
}

.about-portrait span {
  position: absolute;
  z-index: 1;
  right: 0.75rem;
  bottom: 0.65rem;
  color: rgba(245, 243, 238, 0.5);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-copy {
  max-width: 33rem;
}

.about-identity {
  width: fit-content;
  max-width: 100%;
}

.about-eyebrow {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-copy h1 {
  margin: 0;
  color: var(--gold);
  font-family: "Eurostile Extended", "Eurostile Ext", "Microgramma D Extended", "Arial Black", Arial, sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.about-signature {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: clamp(0.56rem, 0.72vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.about-role {
  margin: 1.4rem 0 2.2rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-bio {
  max-width: 44ch;
  margin: 0;
  color: rgba(245, 243, 238, 0.82);
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

.about-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease;
}

.about-cta:hover,
.about-cta:focus-visible {
  background: var(--gold);
  color: var(--black);
}

:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.35rem;
}

@keyframes page-arrival {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 700px) {
  .about-header {
    min-height: 5.4rem;
  }

  .about-brand {
    font-size: 0.8rem;
  }

  .about-nav {
    gap: 0.8rem;
  }

  .about-nav a,
  .about-nav span {
    font-size: 0.52rem;
    letter-spacing: 0.05em;
  }

  .about-stage {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    width: min(82%, 27rem);
    padding: 7rem 0 3.5rem;
  }

  .about-portrait {
    width: min(66vw, 15rem);
    justify-self: start;
  }

  .about-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
  }

  .about-role {
    margin-bottom: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-transition {
    animation-duration: 1ms;
    transition-duration: 1ms;
  }
}
