.page-about {
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

.page-about img {
  max-width: 100%;
  height: auto;
}

.page-about .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
  font-size: .9rem;
  margin-bottom: 2rem;
}

.page-about .breadcrumb a {
  color: var(--gold-deep);
  text-decoration: none;
}

.page-about .breadcrumb a:hover {
  color: var(--red);
  text-decoration: underline;
}

.page-about .breadcrumb__sep {
  color: var(--gold);
}

.page-about .breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.page-about .about-hero {
  position: relative;
  padding: 2rem 0 3rem;
}

.page-about .about-hero::before {
  content: "";
  position: absolute;
  top: 3rem;
  right: 0;
  width: 38%;
  height: 60%;
  background: linear-gradient(135deg, rgba(201, 160, 99, .14), rgba(30, 61, 50, .08));
  clip-path: polygon(14% 0, 100% 0, 100% 82%, 0 100%);
  pointer-events: none;
}

.page-about .about-hero__inner {
  position: relative;
  z-index: 1;
}

.page-about .about-hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.page-about .about-hero__copy {
  max-width: 46rem;
}

.page-about .about-hero__eyebrow {
  font-size: .9rem;
  letter-spacing: .14em;
  color: var(--red);
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  font-weight: 600;
}

.page-about .about-hero__copy h1 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: var(--primary);
}

.page-about .about-hero__lead {
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
  max-width: 38rem;
  color: rgba(43, 30, 22, .86);
}

.page-about .about-hero__figure {
  position: relative;
  margin: 0;
  justify-self: center;
  max-width: 340px;
  z-index: 1;
}

.page-about .about-hero__figure::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--gold-deep);
  z-index: -1;
}

.page-about .about-hero__figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--gold);
  background: var(--primary);
  transform: rotate(2deg);
  transition: transform .3s ease;
}

.page-about .about-hero__figure figcaption {
  margin-top: .75rem;
  font-size: .85rem;
  color: rgba(43, 30, 22, .7);
  text-align: center;
}

.page-about .about-manifesto {
  background: var(--primary);
  color: var(--bg);
  padding: 3.5rem 0;
}

.page-about .about-manifesto__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.page-about .about-manifesto__emblem {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-about .about-manifesto__emblem span {
  font-family: var(--font-head);
  font-size: clamp(4rem, 10vw, 6.5rem);
  line-height: 1;
  color: var(--gold);
  opacity: .9;
}

.page-about .about-manifesto__emblem p {
  writing-mode: vertical-rl;
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.4;
  color: rgba(247, 243, 232, .75);
  letter-spacing: .2em;
}

.page-about .about-manifesto__content .section__kicker {
  color: var(--gold);
}

.page-about .about-manifesto__content h2 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: .5rem 0 1.25rem;
  color: var(--bg);
}

.page-about .about-manifesto__body p {
  color: rgba(247, 243, 232, .82);
  line-height: 1.8;
  margin: 0 0 1rem;
  max-width: 44rem;
}

.page-about .about-manifesto__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.page-about .about-manifesto__actions .btn--gold {
  background: var(--gold);
  color: var(--primary);
}

.page-about .about-manifesto__actions .btn--ghost {
  border-color: rgba(247, 243, 232, .55);
  color: var(--bg);
}

.page-about .about-journey {
  padding: 0;
}

.page-about .about-journey__inner {
  display: grid;
  grid-template-columns: 1fr;
}

.page-about .about-journey__intro {
  padding: 3rem 1.25rem 2.5rem;
}

.page-about .about-journey__aside {
  background: var(--primary);
  color: var(--bg);
  padding-bottom: 2.5rem;
}

.page-about .about-journey__intro .section__kicker {
  color: var(--gold-deep);
}

.page-about .about-journey__intro h2 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  color: var(--primary);
  margin: .5rem 0 1rem;
}

.page-about .about-journey__intro p {
  line-height: 1.8;
  color: rgba(43, 30, 22, .86);
  max-width: 30rem;
  margin: 0 0 1rem;
}

.page-about .about-journey__link {
  display: inline-block;
  margin-top: .25rem;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: .15rem;
}

.page-about .about-journey__link:hover {
  color: var(--gold-deep);
}

.page-about .about-journey__aside-art {
  margin: 0;
  padding: 2rem 2rem 0;
}

.page-about .about-journey__aside-art img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid rgba(201, 160, 99, .4);
}

.page-about .about-journey__aside-art figcaption {
  margin-top: .6rem;
  font-size: .8rem;
  color: rgba(247, 243, 232, .62);
  text-align: center;
}

.page-about .about-timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 2rem 2rem 3rem 3rem;
}

.page-about .about-timeline::before {
  content: "";
  position: absolute;
  left: 3rem;
  top: 2.5rem;
  bottom: 3rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 160, 99, .18));
  transform: translateX(-50%);
}

.page-about .about-timeline__item {
  position: relative;
  padding: 0 0 2rem 2.5rem;
}

.page-about .about-timeline__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: .9rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--gold);
  box-shadow: 0 0 12px rgba(201, 160, 99, .35);
  transform: translateX(-50%);
  z-index: 1;
  transition: background .2s ease, box-shadow .2s ease;
}

.page-about .about-timeline__phase {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .12em;
  color: var(--gold);
  background: rgba(201, 160, 99, .12);
  padding: .2rem .7rem;
  border-radius: 999px;
  margin-bottom: .5rem;
}

.page-about .about-timeline__card {
  background: rgba(255, 255, 255, .07);
  border-left: 2px solid rgba(201, 160, 99, .5);
  padding: 1rem 1.1rem;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.page-about .about-timeline__card h3 {
  margin: 0 0 .25rem;
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 1.35rem;
}

.page-about .about-timeline__card p {
  margin: 0;
  font-size: .95rem;
  color: rgba(247, 243, 232, .82);
  line-height: 1.7;
}

.page-about .about-timeline__item:hover .about-timeline__card,
.page-about .about-timeline__item:focus-within .about-timeline__card {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .14);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
}

.page-about .about-timeline__item:hover::before,
.page-about .about-timeline__item:focus-within::before {
  background: var(--gold);
  box-shadow: 0 0 16px rgba(201, 160, 99, .6);
}

.page-about .about-timeline__item--current .about-timeline__card {
  border-left-color: rgba(63, 224, 197, .7);
}

.page-about .about-timeline__item--current::before {
  background: var(--neon);
  border-color: var(--bg);
  box-shadow: 0 0 12px rgba(63, 224, 197, .5);
}

.page-about .about-scale {
  padding: 4rem 0;
  background: var(--bg);
}

.page-about .about-scale__head {
  max-width: 46rem;
  margin-bottom: 2.5rem;
}

.page-about .about-scale__head .section__kicker {
  color: var(--red);
}

.page-about .about-scale__head h2 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  color: var(--primary);
  margin: .5rem 0 1rem;
}

.page-about .about-scale__head p {
  color: rgba(43, 30, 22, .8);
  line-height: 1.8;
}

.page-about .about-scale__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.page-about .about-scale__panel {
  border-bottom: 1px solid rgba(43, 30, 22, .16);
}

.page-about .about-scale__panel summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  font-weight: 600;
  color: var(--ink);
  padding: 1rem 0;
  font-size: 1.05rem;
}

.page-about .about-scale__panel summary::-webkit-details-marker {
  display: none;
}

.page-about .about-scale__panel summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold-deep);
  transition: transform .25s ease;
}

.page-about .about-scale__panel[open] summary::after {
  transform: rotate(45deg);
}

.page-about .about-scale__panel-body {
  padding: 0 0 1.5rem;
}

.page-about .about-scale__num {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 3.4rem);
  line-height: 1;
  color: var(--primary);
  margin: 0 0 .5rem;
}

.page-about .about-scale__panel-body > p:last-child {
  margin: 0;
  color: rgba(43, 30, 22, .8);
  line-height: 1.7;
  max-width: 32rem;
}

.page-about .about-scale__figure {
  margin: 0;
  border: 1px solid var(--gold);
  padding: 1rem;
  background: var(--bg-soft);
}

.page-about .about-scale__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.page-about .about-scale__figure figcaption {
  margin-top: .75rem;
  font-size: .85rem;
  color: rgba(43, 30, 22, .7);
  text-align: center;
}

.page-about .about-scale__note {
  margin: 2.5rem auto 0;
  max-width: 46rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(43, 30, 22, .14);
  text-align: center;
  color: rgba(43, 30, 22, .75);
  line-height: 1.8;
}

.page-about .about-honors {
  background: var(--ink);
  color: var(--bg);
  padding: 4rem 0;
}

.page-about .about-honors__head {
  max-width: 46rem;
  margin-bottom: 2.5rem;
}

.page-about .about-honors__head .section__kicker {
  color: var(--gold);
}

.page-about .about-honors__head h2 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  margin: .5rem 0 1rem;
}

.page-about .about-honors__head p {
  color: rgba(247, 243, 232, .7);
  line-height: 1.8;
}

.page-about .about-honors__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.page-about .about-honors__cert {
  background: rgba(201, 160, 99, .08);
  border: 1px solid var(--gold);
  text-align: center;
  padding: 2.25rem 1.5rem;
  position: relative;
}

.page-about .about-honors__cert::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 160, 99, .35);
  pointer-events: none;
}

.page-about .about-honors__label {
  font-size: .85rem;
  letter-spacing: .16em;
  color: rgba(247, 243, 232, .65);
  margin: 0 0 1rem;
}

.page-about .about-honors__icp {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--gold);
  margin: 0 0 .75rem;
}

.page-about .about-honors__meta {
  margin: 0;
  color: rgba(247, 243, 232, .72);
  line-height: 1.8;
  font-size: .9rem;
}

.page-about .about-honors__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(201, 160, 99, .32);
}

.page-about .about-honors__list li {
  padding: 1.4rem 0 1.4rem 1.25rem;
  border-bottom: 1px solid rgba(201, 160, 99, .16);
  border-left: 3px solid var(--gold-deep);
}

.page-about .about-honors__list h3 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--bg);
  margin: 0 0 .5rem;
}

.page-about .about-honors__list p {
  color: rgba(247, 243, 232, .68);
  line-height: 1.7;
}

.page-about .about-honors__footnote {
  margin: 2.75rem 0 0;
  color: rgba(247, 243, 232, .7);
  font-size: .85rem;
  line-height: 1.8;
  text-align: center;
}

.page-about .about-honors__footnote a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 160, 99, .4);
}

.page-about .about-cta {
  background: var(--bg-soft);
  padding: 3rem 0;
  text-align: center;
}

.page-about .about-cta p {
  margin: 0 0 1.25rem;
  color: rgba(43, 30, 22, .82);
  line-height: 1.8;
}

.page-about .about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

.page-about .about-cta .btn {
  min-width: 8.5rem;
}

.page-about .about-cta .btn--ghost {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

@media (min-width: 720px) {
  .page-about .about-hero__layout {
    grid-template-columns: 1.6fr .8fr;
    align-items: center;
  }

  .page-about .about-hero__figure {
    justify-self: end;
    max-width: 360px;
  }

  .page-about .about-hero__figure img {
    transform: rotate(4deg);
  }

  .page-about .about-journey__aside-art img {
    height: 340px;
  }
}

@media (min-width: 800px) {
  .page-about .about-manifesto {
    padding: 5rem 0;
  }

  .page-about .about-manifesto__grid {
    grid-template-columns: minmax(180px, .55fr) 1.45fr;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .page-about .about-scale {
    padding: 5rem 0;
  }

  .page-about .about-scale__body {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 3rem;
    align-items: start;
  }

  .page-about .about-scale__figure {
    margin-top: 1rem;
  }

  .page-about .about-honors {
    padding: 5rem 0;
  }

  .page-about .about-honors__layout {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 3.5rem;
  }
}

@media (min-width: 960px) {
  .page-about .about-journey__inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }

  .page-about .about-journey__intro {
    order: 2;
    padding: 4rem 2.5rem 3rem;
  }

  .page-about .about-journey__aside {
    order: 1;
    padding-bottom: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-about *,
  .page-about *::before,
  .page-about *::after {
    transition: none !important;
    animation: none !important;
  }
}
