.page-about {
  --about-gold-line: rgba(212, 160, 23, 0.55);
  --about-orange-line: rgba(255, 107, 53, 0.7);
  --about-glass-border: rgba(255, 255, 255, 0.24);
  --about-cream-soft: rgba(245, 240, 230, 0.08);
  --about-glow: rgba(212, 160, 23, 0.22);
  background:
    radial-gradient(circle at 85% 12%, rgba(212, 160, 23, 0.12), transparent 32%),
    radial-gradient(circle at 8% 68%, rgba(255, 107, 53, 0.08), transparent 26%),
    var(--blue-900);
  color: var(--cream);
  overflow-x: hidden;
}

.page-about__hero {
  position: relative;
  padding: 72px 0 16px;
  margin-top: 0;
}

.page-about__hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}

.page-about__hero-art svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.page-about__hero-art path,
.page-about__hero-art line {
  animation: about-line-drift 9s ease-in-out infinite alternate;
}

.page-about__hero-art path:nth-of-type(2),
.page-about__hero-art line:nth-of-type(2),
.page-about__hero-art line:nth-of-type(4) {
  animation-duration: 12s;
  animation-direction: alternate-reverse;
}

@keyframes about-line-drift {
  0% {
    transform: translateX(-8px);
    opacity: 0.35;
  }
  100% {
    transform: translateX(12px);
    opacity: 0.9;
  }
}

.page-about__hero-inner {
  position: relative;
  z-index: 2;
  padding: 28px 20px 44px;
}

.page-about__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--about-gold-line);
  border-radius: 999px;
  background: rgba(10, 31, 61, 0.6);
}

.page-about__hero h1 {
  max-width: 9em;
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 7vw, 56px);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(10, 31, 61, 0.5);
}

.page-about__hero-lead {
  max-width: 640px;
  margin: 0 0 34px;
  font-family: var(--font-body);
  font-size: clamp(15px, 2.6vw, 18px);
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.88);
}

.page-about__hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.page-about__hero-stat {
  flex: 1 1 160px;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--about-cream-soft);
  border: 1px solid rgba(245, 240, 230, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-about__hero-stat dt {
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.page-about__hero-stat dd {
  margin: 0;
  font-family: var(--font-numeric);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--cream);
}

.page-about__toc {
  position: sticky;
  top: 64px;
  z-index: 20;
  margin-top: 4px;
  padding: 10px 0;
  background: rgba(10, 31, 61, 0.72);
  border-top: 1px solid rgba(212, 160, 23, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.page-about__toc-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-left: 20px;
  padding-right: 20px;
}

.page-about__toc-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
  white-space: nowrap;
}

.page-about__toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-about__toc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: rgba(245, 240, 230, 0.8);
  text-decoration: none;
  border: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.page-about__toc-link:hover,
.page-about__toc-link:focus {
  color: #ffffff;
  border-color: rgba(212, 160, 23, 0.45);
  background: rgba(212, 160, 23, 0.14);
}

.page-about__toc-num {
  font-family: var(--font-numeric);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.page-about__section {
  padding: 72px 20px 56px;
}

.page-about__section-label {
  display: inline-block;
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-about__section-head {
  margin-bottom: 40px;
}

.page-about__section-head h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 5vw, 38px);
  line-height: 1.15;
  color: #ffffff;
}

.page-about__section-desc {
  max-width: 720px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.74);
}

.page-about__origin {
  position: relative;
}

.page-about__origin::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.5), rgba(255, 107, 53, 0.4), transparent);
}

.page-about__origin-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  padding-top: 28px;
}

.page-about__origin-media {
  position: relative;
  margin: 0;
}

.page-about__origin-media::before,
.page-about__origin-media::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
}

.page-about__origin-media::before {
  top: -10px;
  left: -10px;
  border-width: 2px 0 0 2px;
}

.page-about__origin-media::after {
  bottom: -10px;
  right: -10px;
  border-width: 0 2px 2px 0;
}

.page-about__origin-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--site-radius);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.page-about__media-caption {
  margin-top: 14px;
  font-family: var(--font-numeric);
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
  text-align: right;
}

.page-about__origin-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.18;
  color: #ffffff;
}

.page-about__origin-copy p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.86);
}

.page-about__origin-features {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid var(--gold);
}

.page-about__origin-features li {
  position: relative;
  padding: 9px 0 9px 18px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245, 240, 230, 0.82);
}

.page-about__origin-features li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px var(--about-orange-line);
}

.page-about__origin-cta {
  margin-top: 26px;
}

.page-about__milestone {
  position: relative;
  background:
    linear-gradient(180deg, transparent, rgba(255, 107, 53, 0.04), transparent),
    radial-gradient(circle at 80% 30%, rgba(212, 160, 23, 0.1), transparent 40%);
}

.page-about__milestone-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

.page-about__timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-about__timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 7px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(212, 160, 23, 0.2),
    var(--gold),
    var(--orange),
    rgba(60, 179, 113, 0.6),
    rgba(212, 160, 23, 0.2)
  );
  opacity: 0.8;
}

.page-about__timeline-item {
  position: relative;
  padding: 0 0 40px 34px;
}

.page-about__timeline-item:last-child {
  padding-bottom: 0;
}

.page-about__timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--blue-900);
  box-shadow:
    0 0 0 2px rgba(212, 160, 23, 0.55),
    0 0 24px var(--about-glow);
  z-index: 2;
}

.page-about__timeline-item::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: rotate(-8deg) translateX(4px);
}

.page-about__timeline-year {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-numeric);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.page-about__timeline-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 19px;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.page-about__timeline-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.76);
  max-width: 480px;
}

.page-about__milestone-art {
  margin: 0;
}

.page-about__milestone-art img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--site-radius);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  transform: rotate(0deg);
}

.page-about__mission {
  position: relative;
  background:
    linear-gradient(90deg, transparent 98%, rgba(255, 107, 53, 0.12) 98%, rgba(255, 107, 53, 0.04) 100%),
    radial-gradient(circle at 12% 20%, rgba(60, 179, 113, 0.08), transparent 36%);
}

.page-about__mission-grid {
  display: grid;
  gap: 22px;
}

.page-about__glass-card {
  padding: 26px 24px;
  border-radius: var(--site-radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--about-glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.page-about__glass-card h3 {
  margin: 10px 0 12px;
  font-family: var(--font-heading);
  font-size: 20px;
  color: #ffffff;
}

.page-about__glass-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.84);
}

.page-about__glass-tag {
  display: inline-block;
  margin-bottom: 4px;
  font-family: var(--font-numeric);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212, 160, 23, 0.4);
  padding-bottom: 4px;
}

.page-about__text-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.page-about__text-link:hover,
.page-about__text-link:focus {
  color: var(--orange);
}

.page-about__mission-figure {
  margin: 0;
}

.page-about__mission-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--site-radius);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

.page-about__mission-figure figcaption {
  margin-top: 10px;
  font-family: var(--font-numeric);
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
}

.page-about__glass-card--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background:
    linear-gradient(135deg, rgba(212, 160, 23, 0.18), rgba(255, 107, 53, 0.12)),
    rgba(255, 255, 255, 0.08);
}

.page-about__trustbar {
  margin-top: 48px;
  padding: 26px 24px;
  border-radius: var(--site-radius);
  background: var(--cream);
  color: var(--brown);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.page-about__trustbar-tag {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--blue-900);
}

.page-about__trustbar p {
  margin: 0;
  font-family: var(--font-numeric);
  font-size: 14px;
  line-height: 1.8;
  color: var(--brown);
}

.page-about__glass-card--cta .btn {
  margin-top: 4px;
}

@media (min-width: 768px) {
  .page-about__hero {
    padding: 104px 0 28px;
  }

  .page-about__hero-inner {
    padding: 40px 28px 64px;
  }

  .page-about__hero h1 {
    max-width: 11em;
  }

  .page-about__hero-lead {
    max-width: 700px;
  }

  .page-about__hero-stats {
    max-width: 920px;
  }

  .page-about__toc-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-about__section {
    padding: 100px 28px 80px;
  }

  .page-about__origin-grid {
    grid-template-columns: 1fr 1fr;
    gap: 52px;
  }

  .page-about__milestone-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 52px;
  }

  .page-about__timeline-item {
    padding-bottom: 48px;
  }

  .page-about__mission-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .page-about__glass-card--wide {
    grid-column: 1 / -1;
  }

  .page-about__mission-figure {
    align-self: stretch;
  }

  .page-about__mission-figure img {
    height: 100%;
  }

  .page-about__trustbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 32px 40px;
  }
}

@media (min-width: 1100px) {
  .page-about__hero-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .page-about__hero h1 {
    font-size: 58px;
  }

  .page-about__hero-stats {
    max-width: 900px;
  }

  .page-about__section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-about__origin-grid {
    gap: 80px;
  }

  .page-about__origin-media {
    margin-left: 10px;
  }

  .page-about__milestone-grid {
    gap: 72px;
  }

  .page-about__mission-grid {
    grid-template-columns: 1fr 1fr 0.86fr;
  }

  .page-about__glass-card--wide {
    grid-column: 1 / -1;
  }

  .page-about__mission-figure {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
  }

  .page-about__glass-card--cta {
    grid-column: 2 / -1;
  }
}
