.page-about {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-sand);
  overflow-x: hidden;
}

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

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

.page-about h1,
.page-about h2,
.page-about h3 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.2;
}

.page-about .section-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.page-about .about-section__head {
  margin-bottom: var(--space-xl);
}

.page-about .about-section__intro {
  max-width: 42rem;
  line-height: 1.9;
  margin-top: var(--space-md);
}

.page-about .about-hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-lg) 0 var(--space-xl);
  background: linear-gradient(130deg, var(--color-navy) 0%, var(--color-indigo) 100%);
  color: var(--color-white);
}

.page-about .about-hero::after {
  content: "01";
  position: absolute;
  right: -0.1em;
  top: .4em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 24vw, 20rem);
  line-height: 1;
  color: rgba(255,255,255,.05);
  pointer-events: none;
  user-select: none;
}

.page-about .about-hero h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: .02em;
  margin: var(--space-sm) 0 var(--space-md);
}

.page-about .about-hero__lead {
  max-width: 40rem;
  font-size: 1rem;
  line-height: 2;
  color: rgba(255,255,255,.85);
  margin-bottom: var(--space-lg);
}

.page-about .about-hero__grid {
  display: grid;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.page-about .about-hero__main {
  max-width: 48rem;
}

.page-about .about-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-md);
  max-width: 42rem;
}

.page-about .about-anchors a {
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: .25rem;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}

.page-about .about-anchors a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.page-about .about-hero__facts {
  display: grid;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
  align-self: end;
}

.page-about .about-hero__fact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
}

.page-about .about-hero__fact dt {
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
}

.page-about .about-hero__fact dd {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--color-gold);
  margin: 0;
  white-space: nowrap;
}

.page-about .about-section--timeline {
  position: relative;
  padding: var(--space-2xl) 0;
  background: linear-gradient(160deg, var(--color-indigo) 0%, var(--color-navy) 100%);
  color: var(--color-white);
}

.page-about .about-section--timeline::before {
  content: "02";
  position: absolute;
  left: -0.08em;
  top: .2em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 20vw, 16rem);
  line-height: 1;
  color: rgba(255,255,255,.04);
  pointer-events: none;
  user-select: none;
}

.page-about .about-timeline__figure {
  margin: 0 0 var(--space-xl);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.page-about .about-timeline__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-about .about-timeline {
  position: relative;
  max-width: 52rem;
  padding-left: 3.5rem;
}

.page-about .about-timeline__line-svg {
  position: absolute;
  left: .625rem;
  top: .625rem;
  bottom: .625rem;
  width: 2px;
}

.page-about .about-timeline__item {
  position: relative;
  margin-bottom: var(--space-xl);
}

.page-about .about-timeline__item:last-child {
  margin-bottom: 0;
}

.page-about .about-timeline__year {
  position: absolute;
  left: -3.5rem;
  top: 0;
  width: 2.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--color-gold);
  text-align: right;
}

.page-about .about-timeline__card {
  padding: var(--space-md);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}

.page-about .about-timeline__item:hover .about-timeline__card {
  background: rgba(255,255,255,.16);
  transform: translateX(.375rem);
}

.page-about .about-timeline__tag {
  display: inline-block;
  margin-bottom: var(--space-sm);
  padding: .25rem .625rem;
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .14em;
  color: var(--color-gold);
  border: 1px solid rgba(245,183,0,.4);
  border-radius: 999px;
}

.page-about .about-timeline__card h3 {
  font-size: 1.2rem;
  margin: 0 0 var(--space-sm);
  letter-spacing: .03em;
}

.page-about .about-timeline__card p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.85;
  color: rgba(255,255,255,.82);
}

.page-about .about-section--content {
  position: relative;
  padding: var(--space-2xl) 0;
  background: var(--color-sand);
}

.page-about .about-section--content::before {
  content: "03";
  position: absolute;
  right: -0.08em;
  top: .2em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 20vw, 16rem);
  line-height: 1;
  color: rgba(10,42,94,.06);
  pointer-events: none;
  user-select: none;
}

.page-about .about-content__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.page-about .about-content__text > p {
  max-width: 42rem;
  line-height: 1.95;
  margin-bottom: var(--space-lg);
}

.page-about .about-content__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
}

.page-about .about-content__list li {
  padding: .4rem 1.25rem;
  line-height: 1.75;
  border-left: 3px solid var(--color-wine);
  background: rgba(123,30,58,.06);
  border-radius: .25rem;
}

.page-about .about-content__figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.page-about .about-content__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-about .about-content__stats {
  margin-top: var(--space-xl);
}

.page-about .about-section--team {
  position: relative;
  padding: var(--space-2xl) 0;
  background: linear-gradient(140deg, var(--color-forest) 0%, var(--color-navy) 100%);
  color: var(--color-white);
}

.page-about .about-section--team::before {
  content: "04";
  position: absolute;
  left: -0.08em;
  top: .2em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 20vw, 16rem);
  line-height: 1;
  color: rgba(255,255,255,.05);
  pointer-events: none;
  user-select: none;
}

.page-about .about-team__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.page-about .about-team__figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.page-about .about-team__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-about .about-team__content > p {
  line-height: 1.95;
  color: rgba(255,255,255,.82);
}

.page-about .about-team__roles {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.page-about .about-team__role {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 var(--space-md);
  padding: var(--space-md);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
}

.page-about .about-team__role-num {
  grid-row: span 2;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-gold);
}

.page-about .about-team__role h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: .05em;
}

.page-about .about-team__role p {
  margin: .375rem 0 0;
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(255,255,255,.75);
}

.page-about .about-section--credentials {
  position: relative;
  padding: var(--space-2xl) 0;
  background: var(--color-sand);
}

.page-about .about-section--credentials::before {
  content: "05";
  position: absolute;
  right: -0.08em;
  top: .2em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 20vw, 16rem);
  line-height: 1;
  color: rgba(10,42,94,.06);
  pointer-events: none;
  user-select: none;
}

.page-about .about-credentials {
  display: grid;
  gap: var(--space-md);
}

.page-about .about-credentials__item {
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid rgba(10,42,94,.1);
  border-top: 3px solid var(--color-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.page-about .about-credentials__item:hover {
  transform: translateY(-.375rem);
  box-shadow: var(--shadow-strong);
}

.page-about .about-credentials__code {
  display: inline-block;
  margin-bottom: var(--space-md);
  padding: .375rem .875rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--color-gold);
  background: rgba(245,183,0,.12);
  border-radius: 999px;
}

.page-about .about-credentials__item h3 {
  font-size: 1.1rem;
  margin: 0 0 var(--space-sm);
  color: var(--color-navy);
}

.page-about .about-credentials__item p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.85;
  color: var(--color-ink);
}

.page-about .about-section--nav {
  padding: var(--space-xl) 0;
  background: var(--color-wine);
}

.page-about .about-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  align-items: center;
}

.page-about .about-section--nav .btn {
  color: var(--color-white);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
}

@media (min-width: 768px) {
  .page-about .about-hero {
    padding: var(--space-xl) 0 var(--space-2xl);
  }

  .page-about .about-hero__grid {
    grid-template-columns: 1.6fr 1fr;
    gap: var(--space-xl);
  }

  .page-about .about-timeline {
    padding-left: 5rem;
  }

  .page-about .about-timeline__year {
    left: -5rem;
    width: 3.75rem;
    font-size: 1.5rem;
  }

  .page-about .about-timeline__line-svg {
    left: .625rem;
  }

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

  .page-about .about-team__grid {
    grid-template-columns: .9fr 1.1fr;
  }

  .page-about .about-credentials {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-about .about-timeline__card {
    padding: var(--space-lg);
  }
}
