.page-about {
  --about-accent-weak: rgba(255, 107, 53, 0.14);
  --about-gold-weak: rgba(255, 215, 0, 0.16);
  --about-rail-w: 96px;
  background: var(--c-bg);
  color: var(--c-body);
  overflow-x: hidden;
}

.page-about figure {
  margin: 0;
  max-width: 100%;
}

.page-about .section-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.page-about h1,
.page-about h2 {
  font-family: var(--font-head);
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.page-about h3 {
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 0.03em;
  margin: 0 0 8px;
  color: var(--c-body);
}

.page-about p {
  line-height: 1.7;
}

.page-about figcaption {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  border-left: 2px solid var(--c-accent);
  padding-left: 12px;
}

.page-about .about-hero {
  position: relative;
  padding: 56px 20px 72px;
  background:
    linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, transparent 42%),
    linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-light) 100%);
  overflow: hidden;
}

.page-about .about-hero::after {
  content: '';
  position: absolute;
  right: -70px;
  bottom: 24px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 107, 53, 0.22);
  transform: rotate(18deg);
  pointer-events: none;
}

.page-about .about-hero-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.page-about .about-hero-rail {
  display: none;
}

.page-about .about-hero-vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  writing-mode: vertical-rl;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--c-muted);
  text-transform: uppercase;
  border-left: 1px solid var(--c-bg-mid);
  padding-left: 12px;
  height: 160px;
}

.page-about .about-hero-vertical::before {
  content: '';
  width: 1px;
  height: 72px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, transparent, var(--c-accent));
}

.page-about .about-hero-main {
  min-width: 0;
}

.page-about .about-hero-main .breadcrumb {
  margin-bottom: 22px;
}

.page-about .about-hero-main h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5.2vw, 64px);
  color: var(--c-body);
}

.page-about .about-hero-desc {
  margin: 0 0 28px;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--c-gold);
  max-width: 560px;
  line-height: 1.5;
}

.page-about .about-hero-grid {
  display: grid;
  gap: 32px;
  margin-top: 20px;
}

.page-about .about-hero-copy p {
  margin: 0 0 16px;
  color: var(--c-muted);
  font-size: 15px;
}

.page-about .about-hero-copy p:first-child {
  color: var(--c-body);
  font-size: 16px;
}

.page-about .about-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.page-about .about-hero-tags .tag {
  border: 1px solid var(--c-bg-mid);
  background: var(--c-bg-light);
  color: var(--c-body);
}

.page-about .about-hero-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--c-bg-mid);
}

.page-about .about-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.72) 0%, transparent 55%);
  pointer-events: none;
}

.page-about .about-hero-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  transition: transform var(--dur) var(--ease);
}

.page-about .about-hero-img img:hover {
  transform: scale(1.04);
}

.page-about .about-timeline-section {
  position: relative;
  background: var(--c-bg);
  padding: 64px 20px;
}

.page-about .about-timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-accent);
  clip-path: polygon(0 0, 100% 0, calc(100% - 120px) 100%, 0 100%);
  opacity: 0.9;
}

.page-about .about-timeline-section::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 10%;
  width: 46px;
  height: 4px;
  background: var(--c-gold);
  transform: skewX(-20deg);
}

.page-about .about-timeline-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-about .about-section-head {
  max-width: 520px;
  margin-bottom: 40px;
}

.page-about .about-section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--c-body);
}

.page-about .about-section-desc {
  color: var(--c-muted);
  margin: 0;
  font-size: 14px;
}

.page-about .about-timeline-grid {
  display: grid;
  gap: 36px;
}

.page-about .about-timeline-copy {
  min-width: 0;
}

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

.page-about .about-timeline-list::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, var(--c-accent) 0%, var(--c-bg-mid) 100%);
}

.page-about .about-timeline-item {
  position: relative;
  padding: 0 0 40px 44px;
}

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

.page-about .about-timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 3px solid var(--c-accent);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

.page-about .about-timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-accent);
}

.page-about .about-timeline-year {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--c-gold) 40%, var(--c-gold-deep) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-about .about-timeline-box {
  background: transparent;
  border-left: 1px solid transparent;
  padding-left: 0;
  transition: border-color 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.page-about .about-timeline-item:hover .about-timeline-box {
  border-left-color: var(--c-gold);
  padding-left: 12px;
}

.page-about .about-timeline-box p {
  margin: 0;
  color: var(--c-muted);
  font-size: 14px;
}

.page-about .about-timeline-link {
  margin-top: 28px;
}

.page-about .about-timeline-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 2 / 3;
  max-width: 340px;
  background: var(--c-bg-light);
}

.page-about .about-timeline-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  transition: transform var(--dur) var(--ease);
}

.page-about .about-timeline-img img:hover {
  transform: scale(1.03);
}

.page-about .about-figures {
  position: relative;
  padding: 64px 20px;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 215, 0, 0.05) 100%),
    var(--c-bg-light);
}

.page-about .about-figures::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-gold);
  clip-path: polygon(0 0, 12% 100%, 100% 100%, 100% 0);
  opacity: 0.7;
}

.page-about .about-figures-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-about .about-figures-head {
  margin-bottom: 36px;
}

.page-about .about-figures-head h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--c-body);
}

.page-about .about-figures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-about .about-figure-card {
  position: relative;
  background: var(--c-bg);
  padding: 22px 16px 18px;
  border-left: 4px solid var(--c-accent);
  min-height: 116px;
  overflow: hidden;
  transition: background 0.3s var(--ease);
}

.page-about .about-figure-card:hover {
  background: #16304f;
}

.page-about .about-figure-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 215, 0, 0.25) 50%);
}

.page-about .about-figure-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  color: var(--c-accent);
  line-height: 1;
  letter-spacing: 0.02em;
}

.page-about .about-figure-card:nth-child(odd) .about-figure-num {
  color: var(--c-gold);
}

.page-about .about-figure-label {
  display: block;
  margin-top: 10px;
  color: var(--c-body);
  font-size: 13px;
  line-height: 1.35;
}

.page-about .about-figure-hint {
  display: block;
  margin-top: 8px;
  color: var(--c-muted);
  font-size: 12px;
  line-height: 1.45;
  max-height: none;
  opacity: 1;
  transition: color 0.3s var(--ease);
}

.page-about .about-figures-note {
  margin: 28px 0 0;
  color: var(--c-muted);
  font-size: 14px;
  max-width: 720px;
  border-left: 2px solid var(--c-gold);
  padding-left: 16px;
}

.page-about .about-promise {
  position: relative;
  background: var(--c-bg);
  padding: 64px 20px;
}

.page-about .about-promise-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.page-about .about-promise-copy h2 {
  margin: 0 0 32px;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--c-body);
}

.page-about .about-promise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.page-about .about-promise-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  background: var(--c-bg-light);
  border: 1px solid var(--c-bg-mid);
  padding: 20px 18px;
  position: relative;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-about .about-promise-item:hover,
.page-about .about-promise-item:focus-within {
  border-color: var(--c-accent);
  transform: translateX(6px);
}

.page-about .about-promise-num {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--c-accent);
  background: var(--about-accent-weak);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-about .about-promise-body p {
  margin: 0;
  color: var(--c-muted);
  font-size: 14px;
}

.page-about .about-promise-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-about .about-promise-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--c-bg-light);
  border: 1px solid var(--c-bg-mid);
}

.page-about .about-promise-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  transition: transform var(--dur) var(--ease);
}

.page-about .about-promise-img img:hover {
  transform: scale(1.04);
}

@media (min-width: 768px) {
  .page-about .about-hero {
    padding: 72px 32px 96px;
  }

  .page-about .about-hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
  }

  .page-about .about-figures-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .page-about .about-figure-card {
    min-height: 128px;
    padding: 26px 20px;
  }

  .page-about .about-promise-container {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 48px;
  }

  .page-about .about-promise-img {
    position: sticky;
    top: 96px;
  }
}

@media (min-width: 1024px) {
  .page-about .about-hero-container {
    grid-template-columns: var(--about-rail-w) 1fr;
    gap: 40px;
  }

  .page-about .about-hero-rail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .page-about .about-hero-vertical {
    display: flex;
  }

  .page-about .about-timeline-grid {
    grid-template-columns: 1.4fr 0.8fr;
    gap: 64px;
    align-items: start;
  }

  .page-about .about-timeline-fig {
    margin-left: auto;
  }

  .page-about .about-timeline-img {
    max-width: none;
    width: 100%;
  }

  .page-about .about-figure-hint {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease);
  }

  .page-about .about-figure-card:hover .about-figure-hint,
  .page-about .about-figure-card:focus-within .about-figure-hint {
    max-height: 72px;
    opacity: 1;
  }
}
