.about-page {
  --about-white: rgba(255, 255, 255, 0.94);
  --about-muted: rgba(255, 255, 255, 0.62);
  --about-line: rgba(255, 255, 255, 0.1);
  overflow-x: clip;
}
.about-story {
  position: relative;
  width: 100%;
  padding: 50px 0;
  color: var(--about-white);
}
.about-story::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(90%, 1200px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--about-line),
    transparent
  );
  transform: translateX(-50%);
}
.about-story,
.about-story * {
  cursor: default;
}
.about-story-container {
  width: min(90%, 1200px);
  margin-inline: auto;
}
.about-story-lead {
  display: grid;
  align-items: start;
  gap: clamp(55px, 7vw, 95px);
}
.about-story-image-left .about-story-lead {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}
.about-story-image-right .about-story-lead {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}
.about-story-continuation {
  width: 100%;
  margin-top: 40px;
}
.about-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 0;
  perspective: 1400px;
}
.about-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow:
    -35px 38px 80px rgba(0, 0, 0, 0.48),
    8px -8px 35px rgba(255, 255, 255, 0.05);
  transform: perspective(1400px) rotateY(6deg) rotateX(1deg) rotateZ(-1.5deg);
  transform-origin: right center;
  backface-visibility: hidden;
  transition:
    transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1),
    border-color 0.55s ease,
    box-shadow 0.55s ease;
}
.about-photo-frame::before,
.about-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-photo-frame::before {
  z-index: 1;
  background:
    radial-gradient(
      ellipse at 50% 33%,
      rgba(255, 214, 142, 0.19),
      rgba(212, 175, 55, 0.07) 31%,
      transparent 58%
    ),
    radial-gradient(
      ellipse at 50% 44%,
      transparent 40%,
      rgba(7, 4, 17, 0.12) 72%,
      rgba(7, 4, 17, 0.38) 100%
    ),
    linear-gradient(
      90deg,
      rgba(7, 4, 17, 0.28),
      transparent 34%,
      transparent 66%,
      rgba(7, 4, 17, 0.21)
    );
  box-shadow: inset 0 0 72px rgba(7, 4, 17, 0.34);
}

.about-photo-frame::after {
  z-index: 2;
  background:
    linear-gradient(
      0deg,
      rgba(7, 4, 17, 1) 0%,
      rgba(7, 4, 17, 0.98) 10%,
      rgba(7, 4, 17, 0.86) 23%,
      rgba(7, 4, 17, 0.56) 38%,
      rgba(7, 4, 17, 0.22) 53%,
      rgba(7, 4, 17, 0.06) 64%,
      transparent 74%
    ),
    linear-gradient(
      90deg,
      rgba(7, 4, 17, 0.24),
      transparent 38%,
      rgba(7, 4, 17, 0.14)
    );
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  backface-visibility: hidden;
  filter: saturate(0.5) sepia(0.2) contrast(1.25) brightness(0.8);
  transition:
    transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 0.55s ease;
}
.about-visual-landscape .about-photo-frame {
  aspect-ratio: 4 / 3;
}
.about-photo-caption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 4;
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  margin: 0;
  opacity: 0.72;
  pointer-events: none;
  transform: translateY(0);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.about-photo-number {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font:
    500 0.78rem Oswald,
    sans-serif;
  line-height: 1;
  letter-spacing: 2px;
  transition:
    color 0.4s ease,
    text-shadow 0.4s ease;
}
.about-photo-number::after {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.15));
}
.about-photo-text {
  min-width: 0;
  color: rgba(255, 255, 255, 0.76);
  font:
    200 0.66rem/1.45 Oswald,
    sans-serif;
  letter-spacing: 2.4px;
}
.about-story-image-right .about-photo-frame {
  box-shadow:
    35px 38px 80px rgba(0, 0, 0, 0.48),
    -8px -8px 35px rgba(255, 255, 255, 0.05);
  transform: perspective(1400px) rotateY(-6deg) rotateX(1deg) rotateZ(1.5deg);
  transform-origin: left center;
}
.about-copy {
  position: relative;
  min-width: 0;
  isolation: isolate;
}
.about-copy::before {
  content: attr(data-year);
  position: absolute;
  top: 40px;
  right: -25px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.018);
  font:
    600 clamp(8rem, 13vw, 13rem)/1 Oswald,
    sans-serif;
  letter-spacing: -6px;
  pointer-events: none;
}
.about-story-image-right .about-copy::before {
  right: auto;
  left: -25px;
}
.about-section-label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.5);
  font:
    300 0.7rem Oswald,
    sans-serif;
  letter-spacing: 5px;
}
.about-title {
  color: var(--about-white);
  font: 450 clamp(3rem, 4.7vw, 5rem)/0.95 Oswald;
  letter-spacing: 1px;
}
.about-title span {
  display: block;
  margin-top: 5px;
  color: var(--gold);
}
.about-opening {
  max-width: 650px;
  margin: 10px 0 0;
  color: var(--about-white);
  font:
    300 clamp(1.1rem, 1.6vw, 1.35rem)/1.7 Oswald,
    sans-serif;
  letter-spacing: 1px;
}
.about-divider {
  width: 100%;
  height: 1px;
  margin: 12px 0;
  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0.7),
    rgba(255, 255, 255, 0.08),
    transparent
  );
}
.about-text p {
  margin: 0 0 17px;
  color: var(--about-muted);
  font:
    250 1rem/1.8 Oswald,
    sans-serif;
  letter-spacing: 0.6px;
}
.about-text p:last-child {
  margin-bottom: 0;
}
.about-emphasis {
  color: var(--about-white) !important;
  font-size: 1.08rem !important;
  font-weight: 400 !important;
  letter-spacing: 1.2px !important;
}
.about-quote {
  position: relative;
  margin: 35px 0 0;
  padding: 23px 25px 23px 54px;
  border-left: 1px solid var(--gold);
  color: rgba(255, 255, 255, 0.82);
  font:
    300 1rem/1.75 Oswald,
    sans-serif;
  letter-spacing: 0.8px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.055), transparent);
}
.about-quote > span {
  position: absolute;
  top: 5px;
  left: 17px;
  color: rgba(212, 175, 55, 0.65);
  font:
    500 3.2rem Georgia,
    serif;
}
.about-quote-short {
  max-width: 650px;
}
.about-text-after-quote {
  margin-top: 27px;
}
.about-closing {
  margin: 35px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.42);
  color: var(--about-white);
  font:
    400 clamp(1.05rem, 1.5vw, 1.25rem)/1.65 Oswald,
    sans-serif;
  letter-spacing: 1.2px;
}
@media (min-width: 769px) {
  .about-photo-frame:hover img {
    filter: saturate(0.58) sepia(0.17) contrast(1.27) brightness(0.86);
    transform: scale(1.05);
  }

  .about-photo-frame:hover .about-photo-caption {
    opacity: 1;
    transform: translateY(-2px);
  }

  .about-photo-frame:hover .about-photo-number {
    color: var(--gold);
    text-shadow: 0 0 14px rgba(212, 175, 55, 0.35);
  }
}
@media (max-width: 992px) {
  .about-story {
    padding: 40px 0;
  }
  .about-story-lead {
    gap: 50px;
  }
  .about-story-image-left .about-story-lead {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  }
  .about-story-image-right .about-story-lead {
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  }
  .about-title {
    font-size: clamp(3.2rem, 6vw, 4.8rem);
  }
  .about-text p {
    font-size: 0.92rem;
  }
}
@media (max-width: 768px) {
  .about-story {
    padding: 20px 0;
  }

  .about-story-container {
    width: min(90%, 620px);
  }

  .about-story-lead,
  .about-story-image-left .about-story-lead,
  .about-story-image-right .about-story-lead {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .about-copy {
    display: contents;
    text-align: center;
  }

  .about-copy::before {
    display: none;
  }

  .about-section-label {
    order: 1;
    width: 100%;
    margin-bottom: 14px;
    text-align: center;
  }

  .about-title {
    order: 2;
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .about-photo-frame,
  .about-story-image-left .about-photo-frame,
  .about-story-image-right .about-photo-frame {
    order: 3;
    width: 90%;
    margin: 34px auto 30px;
  }
  .about-photo-caption {
    right: 16px;
    bottom: 14px;
    left: 16px;
    gap: 9px;
    opacity: 0.9;
  }
  .about-photo-number {
    gap: 7px;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
  }
  .about-photo-number::after {
    width: 17px;
  }
  .about-photo-text {
    font-size: 0.58rem;
    line-height: 1.4;
    letter-spacing: 1.6px;
  }
  .about-visual-landscape {
    width: 90%;
  }

  .about-photo-frame,
  .about-story-image-right .about-photo-frame {
    transform: none;
    transform-origin: center;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
    transition: none;
  }

  .about-photo-frame img {
    transform: none;
  }

  .about-divider {
    order: 4;
    width: 100%;
    margin: 0 auto 30px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(212, 175, 55, 0.65),
      transparent
    );
  }

  .about-opening {
    order: 5;
    width: 100%;
    margin: 0 auto 24px;
    text-align: center;
  }

  .about-copy > .about-text {
    order: 6;
    width: 100%;
    text-align: left;
  }

  .about-story-continuation {
    text-align: left;
    margin-top: 20px;
  }

  .about-quote {
    text-align: left;
    margin-top: 20px;
  }

  .about-closing {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-story-container {
    width: 90%;
  }

  .about-photo-frame {
    border-radius: 19px;
  }

  .about-title {
    font-size: 2.6rem;
  }

  .about-opening {
    font-size: 1rem;
  }

  .about-text p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .about-story-continuation {
    margin-top: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-photo-frame,
  .about-photo-frame img {
    transition: none;
  }
}

@media (any-hover: none) and (any-pointer: coarse) {
  .about-visual {
    perspective: none;
  }

  .about-photo-frame,
  .about-story-image-right .about-photo-frame {
    transform: none;
    transform-origin: center;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
    transition: none;
  }

  .about-photo-frame img {
    transform: none;
  }
}

.about-story {
  scroll-margin-top: 24px;
}
.about-chapter-nav {
  --story-progress: 0;
  position: fixed;
  top: 50%;
  right: clamp(12px, 1.5vw, 28px);
  z-index: 80;
  width: 52px;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 14px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(7, 4, 17, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(-50%);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
}
.about-chapter-nav:hover {
  border-color: rgba(221, 184, 44, 0.35);
}
.about-chapter-track {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 50%;
  z-index: 0;
  width: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}
.about-chapter-progress {
  display: block;
  width: 100%;
  height: calc(var(--story-progress) * 100%);
  background: var(--gold);
  box-shadow: 0 0 10px rgba(221, 184, 44, 0.65);
  transition: height 0.15s linear;
}
.about-chapter-link {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--about-muted);
  font-family: Oswald;
  text-decoration: none;
  background: rgba(7, 4, 17, 0.96);
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.about-chapter-number {
  font-size: 0.65rem;
  line-height: 1;
  letter-spacing: 1px;
  pointer-events: none;
}
.about-chapter-name {
  position: absolute;
  top: 50%;
  right: calc(100% + 14px);
  width: max-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--about-white);
  font-size: 0.8rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 2px;
  white-space: nowrap;
  background: rgba(7, 4, 17, 0.94);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.about-chapter-link:hover,
.about-chapter-link:focus-visible {
  color: var(--about-white);
  border-color: rgba(221, 184, 44, 0.55);
  transform: scale(1.08);
}
.about-chapter-link:hover .about-chapter-name,
.about-chapter-link:focus-visible .about-chapter-name {
  opacity: 1;
  transform: translate(0, -50%);
}
.about-chapter-link.is-active {
  color: #070411;
  border-color: var(--gold);
  background: var(--gold);
  box-shadow:
    0 0 14px rgba(221, 184, 44, 0.35),
    0 0 30px rgba(221, 184, 44, 0.12);
}
.about-chapter-link:focus-visible {
  outline: 2px solid var(--about-white);
  outline-offset: 4px;
}
.about-chapter-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 900px) {
  .about-story {
    scroll-margin-top: 76px;
  }
  .about-chapter-nav {
    top: max(12px, env(safe-area-inset-top));
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(calc(100% - 32px), 390px);
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 12px;
    border-color: rgba(221, 184, 44, 0.3);
    border-radius: 999px;
    background: rgba(7, 4, 17, 0.9);
    box-shadow:
      0 14px 40px rgba(0, 0, 0, 0.3),
      0 0 24px rgba(221, 184, 44, 0.06);
    transform: translateX(-50%);
    transform-origin: top center;
    transition:
      width 0.4s ease,
      padding 0.4s ease,
      opacity 0.4s ease,
      transform 0.4s ease,
      background 0.4s ease,
      border-color 0.4s ease,
      box-shadow 0.4s ease;
  }
  .about-chapter-track {
    top: 50%;
    right: 29px;
    left: 29px;
    width: auto;
    height: 1px;
    transform: none;
    transition:
      right 0.4s ease,
      left 0.4s ease,
      opacity 0.4s ease;
  }
  .about-chapter-progress {
    width: calc(var(--story-progress) * 100%);
    height: 100%;
    transition: width 0.15s linear;
  }
  .about-chapter-link {
    transition:
      width 0.4s ease,
      height 0.4s ease,
      color 0.3s ease,
      border-color 0.3s ease,
      background 0.3s ease,
      box-shadow 0.3s ease,
      transform 0.3s ease;
  }
  .about-chapter-name {
    display: none;
  }
  .about-chapter-nav.is-compact {
    width: min(calc(100% - 70px), 220px);
    gap: 4px;
    padding: 5px 9px;
    border-color: rgba(255, 255, 255, 0.07);
    background: rgba(7, 4, 17, 0.38);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.14);
    opacity: 0.55;
    transform: translateX(-50%) scale(0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .about-chapter-nav.is-compact:hover,
  .about-chapter-nav.is-compact:focus-within {
    opacity: 0.9;
  }
  .about-chapter-nav.is-compact .about-chapter-link {
    width: 28px;
    height: 28px;
  }
  .about-chapter-nav.is-compact .about-chapter-number {
    font-size: 0.58rem;
  }
  .about-chapter-nav.is-compact .about-chapter-track {
    right: 23px;
    bottom: 5px;
    left: 23px;
    opacity: 0.65;
  }
  .about-chapter-nav.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, calc(-100% - 30px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-chapter-nav,
  .about-chapter-progress,
  .about-chapter-link,
  .about-chapter-name {
    transition: none;
  }
}
