.page-about {
  --about-red: var(--red);
  --about-gold: var(--gold);
  --about-blue: var(--deep-blue);
  --about-cream: var(--cream);
  --about-ink: var(--ink);
  --about-surface: var(--surface);
  position: relative;
  background: var(--about-cream);
  color: var(--about-ink);
  font-family: var(--font-sans);
  line-height: 1.72;
  overflow-x: hidden;
}

.page-about .page-head {
  position: relative;
  display: block;
  padding: 0;
  background: linear-gradient(128deg, var(--about-blue) 0%, var(--about-blue) 55%, var(--about-red) 55.5%, var(--about-red) 100%);
  color: var(--white);
  overflow: hidden;
}

.page-about .page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.page-about .page-head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: linear-gradient(90deg, #5B7DB1 0 20%, rgba(255, 255, 255, 0.85) 20% 40%, var(--about-red) 40% 60%, #5FA777 60% 80%, var(--about-gold) 80% 100%);
  opacity: 0.9;
  z-index: 2;
}

.page-about .page-head__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(2.5rem, 7vw, 5rem);
  padding-bottom: 3.25rem;
}

.page-about .breadcrumbs {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-family: var(--font-mono);
  padding: 0 0 1rem;
}

.page-about .breadcrumbs a {
  color: var(--about-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.5);
}

.page-about .page-head__kicker {
  color: var(--about-gold);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.page-about .page-head h1 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  line-height: 1.28;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.page-about .page-head__lead {
  max-width: 44em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.25rem;
}

.page-about .page-head__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.page-about .page-head__tags .tag {
  background: rgba(245, 240, 230, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.55);
  color: rgba(255, 255, 255, 0.92);
  padding: 0.3rem 0.8rem;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

.page-about .about-hero {
  position: relative;
  background:
    linear-gradient(102deg, transparent 0%, transparent 64%, rgba(212, 175, 55, 0.16) 64.2%, rgba(212, 175, 55, 0.16) 100%),
    var(--about-surface);
}

.page-about .about-hero__grid {
  display: grid;
  align-items: center;
  gap: 2rem;
  padding: clamp(2.5rem, 7vw, 5.5rem) 0;
}

.page-about .about-hero__media {
  margin: 0;
}

.page-about .about-hero__img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(212, 175, 55, 0.65);
  outline: 1px solid rgba(43, 45, 66, 0.16);
  outline-offset: 10px;
  box-shadow: 0 20px 46px rgba(31, 58, 95, 0.2);
  background: var(--white);
}

.page-about .about-hero__content {
  max-width: 34em;
}

.page-about .about-hero__desc {
  margin: 1rem 0 0;
  font-size: 1rem;
  color: #41506b;
}

.page-about .about-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 2rem 0 0;
}

.page-about .stat-card {
  margin: 0;
  background: var(--white);
  border-left: 4px solid var(--about-red);
  padding: 0.9rem 1rem;
  box-shadow: 0 6px 18px rgba(43, 45, 66, 0.08);
}

.page-about .stat-card__label {
  font-size: 0.82rem;
  color: #708090;
}

.page-about .stat-card__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--about-red);
  margin-top: 0.2rem;
}

.page-about .about-hero__footnote {
  margin: 1.4rem 0 0;
  font-size: 0.82rem;
  color: #8592a6;
  border-top: 1px dashed rgba(31, 58, 95, 0.2);
  padding-top: 0.9rem;
}

.page-about .timeline-section {
  background:
    linear-gradient(rgba(245, 240, 230, 0.94), rgba(245, 240, 230, 0.94)),
    repeating-linear-gradient(135deg, rgba(140, 31, 40, 0.07) 0 1px, transparent 1px 12px);
}

.page-about .timeline-section__head {
  max-width: 46em;
}

.page-about .timeline-section__intro {
  margin: 0.75rem 0 2rem;
  color: #4b5769;
}

.page-about .timeline {
  position: relative;
}

.page-about .timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--about-gold), var(--about-red) 70%, transparent);
}

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

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

.page-about .timeline__item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  background: var(--about-gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.6);
  z-index: 1;
}

.page-about .timeline__year {
  font-family: var(--font-mono);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--about-red);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.page-about .timeline__body {
  background: var(--white);
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(31, 58, 95, 0.12);
  box-shadow: 0 8px 24px rgba(31, 58, 95, 0.08);
}

.page-about .timeline__title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--about-ink);
  margin: 0 0 0.4rem;
}

.page-about .timeline__copy {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5769;
}

.page-about .timeline__meta {
  margin: 0.8rem 0 0;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  color: #8592a6;
  letter-spacing: 0.1em;
  border-top: 1px dashed rgba(31, 58, 95, 0.2);
  padding-top: 0.6rem;
}

.page-about .cert-section {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 14px),
    var(--about-blue);
  color: var(--white);
}

.page-about .cert-section .section-title,
.page-about .value-section .section-title {
  color: var(--white);
}

.page-about .cert-section__intro {
  margin: 0.75rem 0 2rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 48em;
}

.page-about .cert-grid {
  display: grid;
  gap: 1.25rem;
}

.page-about .cert-card {
  position: relative;
  min-height: 240px;
  perspective: 1000px;
  outline: none;
}

.page-about .cert-card:focus-visible {
  outline: 2px solid var(--about-gold);
  outline-offset: 2px;
}

.page-about .cert-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  transform-style: preserve-3d;
  transition: transform var(--transition);
}

.page-about .cert-card:hover .cert-card__inner,
.page-about .cert-card:focus .cert-card__inner,
.page-about .cert-card:focus-within .cert-card__inner {
  transform: rotateY(180deg);
}

.page-about .cert-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1.6rem;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: rgba(255, 255, 255, 0.07);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.page-about .cert-card__face--back {
  transform: rotateY(180deg);
  background: rgba(212, 175, 55, 0.16);
  border-color: var(--about-gold);
}

.page-about .cert-card__num {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--about-gold);
  letter-spacing: 0.12em;
  margin: 0 0 0.35rem;
}

.page-about .cert-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
  line-height: 1.35;
}

.page-about .cert-card__hint {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.page-about .cert-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.page-about .team-section {
  background: var(--about-surface);
}

.page-about .team-section__grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
  padding: clamp(2.5rem, 7vw, 5.5rem) 0;
}

.page-about .team-section__media {
  margin: 0;
}

.page-about .team-section__img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(31, 58, 95, 0.18);
  outline: 1px solid rgba(212, 175, 55, 0.5);
  outline-offset: -14px;
  box-shadow: 0 16px 36px rgba(31, 58, 95, 0.14);
}

.page-about .team-section__desc {
  color: #41506b;
  margin: 1rem 0 0;
}

.page-about .team-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(140, 31, 40, 0.16);
}

.page-about .team-list__item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(140, 31, 40, 0.14);
}

.page-about .team-list__role {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--about-red);
  margin: 0 0 0.3rem;
}

.page-about .team-list__role::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  background: var(--about-gold);
  transform: rotate(45deg);
  flex: none;
}

.page-about .team-list__desc {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5769;
}

.page-about .team-section__notes {
  font-size: 0.86rem;
  color: #77828e;
  margin: 1.4rem 0 0;
  border-left: 3px solid var(--about-gold);
  padding-left: 0.9rem;
}

.page-about .value-section {
  position: relative;
  color: var(--white);
  background-image:
    linear-gradient(120deg, rgba(31, 58, 95, 0.97), rgba(31, 58, 95, 0.88) 55%, rgba(140, 31, 40, 0.92)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 12px);
  overflow: hidden;
}

.page-about .value-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 7px;
  background: linear-gradient(90deg, #5B7DB1 0 20%, rgba(255, 255, 255, 0.8) 20% 40%, var(--about-red) 40% 60%, #5FA777 60% 80%, var(--about-gold) 80% 100%);
  opacity: 0.7;
}

.page-about .value-section__head {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

.page-about .value-section__intro {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 42em;
}

.page-about .value-section__media {
  margin: 0;
}

.page-about .value-section__img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(212, 175, 55, 0.55);
  outline: 1px solid rgba(255, 255, 255, 0.35);
  outline-offset: -10px;
}

.page-about .value-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.25rem;
}

.page-about .value-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.4);
  transition: transform var(--transition), border-color var(--transition);
}

.page-about .value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.85);
}

.page-about .value-card__num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--about-gold);
  letter-spacing: 0.12em;
  margin: 0 0 0.5rem;
}

.page-about .value-card__title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  margin: 0 0 0.45rem;
}

.page-about .value-card__text {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.84);
}

.page-about .about-cta {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: var(--about-cream);
}

.page-about .about-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.55);
  box-shadow: 0 14px 34px rgba(31, 58, 95, 0.1);
  padding: clamp(1.8rem, 4vw, 3rem);
}

.page-about .about-cta__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--about-red);
  letter-spacing: 0.18em;
  margin: 0 0 0.5rem;
}

.page-about .about-cta__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--about-ink);
  margin: 0 0 0.35rem;
}

.page-about .about-cta__desc {
  margin: 0;
  color: #4b5769;
}

.page-about .about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (min-width: 720px) {
  .page-about .about-hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .page-about .value-section__head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (min-width: 860px) {
  .page-about .timeline {
    margin-top: 3rem;
  }

  .page-about .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-about .timeline__item {
    width: 50%;
    padding: 0 3.25rem 2.75rem 0;
    text-align: right;
  }

  .page-about .timeline__item:nth-child(even) {
    margin-left: 50%;
    padding: 0 0 2.75rem 3.25rem;
    text-align: left;
  }

  .page-about .timeline__item::before {
    right: -7px;
    left: auto;
  }

  .page-about .timeline__item:nth-child(even)::before {
    left: -7px;
    right: auto;
  }
}

@media (min-width: 900px) {
  .page-about .about-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }

  .page-about .team-section__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .page-about .team-section__media {
    order: 2;
  }
}
