.page-about {
  --about-red: #D40000;
  --about-red-dark: #990000;
  --about-gold: #C9A063;
  --about-gold-light: #E5C886;
  --about-paper: #F4EFE6;
  --about-ink: #1A1B1C;
  --about-ink-soft: #232527;
  --about-white: #FFFFFF;
  --about-graphite: #333333;
  --about-steel: #6B6B6B;
  overflow-x: hidden;
}

.page-about .about-hero {
  position: relative;
  background: var(--about-ink);
  background-image:
    radial-gradient(rgba(212, 0, 0, 0.22) 0%, transparent 70%),
    linear-gradient(135deg, rgba(201, 160, 99, 0.06) 0%, transparent 40%);
  padding: 3rem 0 2.5rem;
  overflow: hidden;
}

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

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

.page-about .tif-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--about-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.page-about .tif-breadcrumb a {
  color: var(--about-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-about .tif-breadcrumb a:hover {
  color: var(--about-gold-light);
}

.page-about .about-hero-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.75rem;
  background: rgba(35, 37, 39, 0.62);
  border: 1px solid rgba(201, 160, 99, 0.4);
  margin-bottom: 1.5rem;
}

.page-about .about-hero-frame::before,
.page-about .about-hero-frame::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--about-gold);
  border-style: solid;
  pointer-events: none;
}

.page-about .about-hero-frame::before {
  top: -1px;
  left: -1px;
  border-width: 3px 0 0 3px;
}

.page-about .about-hero-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 3px 3px 0;
}

.page-about .about-hero-content {
  flex: 1;
}

.page-about .about-kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--about-gold);
  margin-bottom: 0.75rem;
}

.page-about .about-title {
  display: inline-block;
  position: relative;
  padding-left: 1.1rem;
  font-family: var(--font-head);
  font-size: 2.5rem;
  line-height: 1.12;
  color: var(--about-white);
  margin: 0 0 1rem;
}

.page-about .about-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.14em;
  width: 0.5rem;
  height: 0.9em;
  background: var(--about-red);
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
}

.page-about .about-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.82);
  margin: 0;
  max-width: 36rem;
}

.page-about .about-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.page-about .about-stat {
  flex: 1 1 calc(33.333% - 0.55rem);
  min-width: 6.5rem;
  padding: 0.875rem 0.625rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-align: left;
}

.page-about .about-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  line-height: 1.1;
  color: var(--about-white);
}

.page-about .about-stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--about-gold);
}

.page-about .about-chapter-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.page-about .about-chapter-nav::-webkit-scrollbar {
  display: none;
}

.page-about .about-chapter-nav a {
  flex: 1 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--about-white);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.page-about .about-chapter-nav a span {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--about-gold);
}

.page-about .about-chapter-nav a:hover,
.page-about .about-chapter-nav a[aria-current="true"],
.page-about .about-chapter-nav a.is-active {
  border-color: var(--about-gold);
  color: var(--about-gold-light);
  background: rgba(201, 160, 99, 0.08);
}

.page-about .about-story,
.page-about .about-milestones,
.page-about .about-team,
.page-about .about-trust {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}

.page-about .tif-section-head {
  position: relative;
  margin-bottom: 2.5rem;
}

.page-about .about-bg-index {
  display: block;
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(201, 160, 99, 0.3);
  margin-bottom: 0.75rem;
  user-select: none;
  pointer-events: none;
}

.page-about .about-bg-index--pale {
  color: rgba(244, 239, 230, 0.14);
}

.page-about .about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.page-about .about-story-copy p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--about-graphite);
  margin: 0 0 1.25rem;
}

.page-about .about-story-copy p:last-of-type {
  margin-bottom: 0;
}

.page-about .about-story-mark {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.75rem;
  padding: 0.875rem 1rem;
  background: rgba(26, 27, 28, 0.05);
  border-left: 3px solid var(--about-red);
}

.page-about .about-story-mark img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-about .about-story-mark div {
  display: flex;
  flex-direction: column;
}

.page-about .about-story-mark strong {
  font-family: var(--font-head);
  font-size: 1.125rem;
  color: var(--about-ink);
}

.page-about .about-story-mark span {
  font-size: 0.8125rem;
  color: var(--about-steel);
  letter-spacing: 0.06em;
}

.page-about .about-story-figure {
  margin: 0;
}

.page-about .about-story-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(201, 160, 99, 0.4);
}

.page-about .about-story-figure figcaption,
.page-about .about-team-figure figcaption {
  margin-top: 0.625rem;
  padding-left: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--about-steel);
  border-left: 2px solid var(--about-gold);
}

.page-about .about-timeline {
  position: relative;
  padding-left: 44px;
  margin-top: 1rem;
}

.page-about .about-timeline::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--about-red) 0%, var(--about-gold) 100%);
}

.page-about .about-timeline-item {
  position: relative;
  margin-bottom: 1.75rem;
}

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

.page-about .about-timeline-marker {
  position: absolute;
  left: -37px;
  top: 6px;
  width: 14px;
  height: 14px;
}

.page-about .about-timeline-dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--about-red);
  box-shadow: 0 0 0 3px rgba(212, 0, 0, 0.25), 0 0 0 6px rgba(201, 160, 99, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about .about-timeline-item:hover .about-timeline-dot {
  transform: scale(1.18);
  box-shadow: 0 0 0 5px rgba(212, 0, 0, 0.3), 0 0 0 9px rgba(201, 160, 99, 0.28);
}

.page-about .about-timeline-card {
  padding: 1.125rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--about-gold);
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-about .about-timeline-item:hover .about-timeline-card {
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(3px);
}

.page-about .about-timeline-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  margin-bottom: 0.625rem;
  background: var(--about-red);
  color: var(--about-white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-about .about-timeline-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-head);
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--about-white);
}

.page-about .about-timeline-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(244, 239, 230, 0.74);
}

.page-about .about-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.page-about .about-role-card {
  position: relative;
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 160, 99, 0.32);
  border-left: 4px solid var(--about-red);
}

.page-about .about-role-card h3 {
  margin: 0 0 0.375rem;
  font-family: var(--font-head);
  font-size: 1.125rem;
  color: var(--about-ink);
}

.page-about .about-role-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--about-graphite);
}

.page-about .about-team-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}

.page-about .about-stat-card {
  position: relative;
  padding: 1.375rem 0.875rem 1.5rem;
  background: var(--about-ink);
  color: var(--about-white);
  text-align: center;
  overflow: hidden;
}

.page-about .about-stat-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 22px 22px;
  border-color: transparent transparent var(--about-red) transparent;
}

.page-about .about-stat-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  line-height: 1.1;
  color: var(--about-white);
}

.page-about .about-stat-card span {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--about-gold);
}

.page-about .about-team-figure {
  margin: 2rem 0 0;
}

.page-about .about-team-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(201, 160, 99, 0.4);
}

.page-about .about-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

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

.page-about .about-trust-score {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 160, 99, 0.35);
  flex-wrap: wrap;
}

.page-about .about-trust-score > strong {
  font-family: var(--font-head);
  font-size: 4.5rem;
  line-height: 0.9;
  color: var(--about-red);
}

.page-about .about-trust-score-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: rgba(244, 239, 230, 0.82);
}

.page-about .about-star {
  color: var(--about-gold);
  letter-spacing: 0.18em;
  font-size: 0.9375rem;
}

.page-about .about-trust-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.78);
}

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

.page-about .about-trust-item {
  position: relative;
  padding: 1.375rem 1.25rem 1.375rem 4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  min-height: 7.5rem;
}

.page-about .about-trust-item-index {
  position: absolute;
  left: 1.125rem;
  top: 1.25rem;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--about-gold);
  opacity: 0.85;
}

.page-about .about-trust-item h3 {
  margin: 0 0 0.375rem;
  font-family: var(--font-head);
  font-size: 1.125rem;
  color: var(--about-white);
}

.page-about .about-trust-item p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.72);
}

.page-about .about-trust-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
  margin-top: 3rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 0, 0, 0.18) 0%, transparent 45%, rgba(201, 160, 99, 0.16) 100%);
  border-left: 4px solid var(--about-red);
}

.page-about .about-trust-note {
  flex: 1 1 100%;
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--about-white);
}

@media (min-width: 48rem) {
  .page-about .about-hero {
    padding: 4.5rem 0 3.5rem;
  }

  .page-about .about-hero-frame {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem;
  }

  .page-about .about-hero-stats {
    flex: 0 0 16.5rem;
  }

  .page-about .about-stat {
    flex: 1 1 100%;
    padding: 1rem 1rem;
  }

  .page-about .about-stat strong {
    font-size: 2.2rem;
  }

  .page-about .about-title {
    font-size: 3.5rem;
  }

  .page-about .about-lead {
    font-size: 1.0625rem;
  }

  .page-about .about-story,
  .page-about .about-milestones,
  .page-about .about-team,
  .page-about .about-trust {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .page-about .about-bg-index {
    font-size: 5rem;
  }

  .page-about .about-story-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.75rem;
    align-items: center;
  }

  .page-about .about-story-copy p {
    font-size: 1rem;
  }

  .page-about .about-timeline-card {
    padding: 1.375rem 1.5rem;
  }

  .page-about .about-team-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }

  .page-about .about-team-stats {
    gap: 1rem;
  }

  .page-about .about-stat-card {
    padding: 1.75rem 1rem 1.875rem;
  }

  .page-about .about-stat-card strong {
    font-size: 2.4rem;
  }

  .page-about .about-team-figure {
    margin-top: 2.5rem;
  }

  .page-about .about-trust-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.5rem;
  }

  .page-about .about-trust-score {
    padding: 2rem;
    flex-wrap: nowrap;
  }

  .page-about .about-trust-score > strong {
    font-size: 5.5rem;
  }

  .page-about .about-trust-cta {
    flex-wrap: nowrap;
    padding: 1.75rem 2rem;
  }

  .page-about .about-trust-note {
    flex: 1;
    margin: 0;
  }

  .page-about .about-trust-cta .tif-btn + .tif-btn {
    margin-left: 0.25rem;
  }
}

@media (min-width: 64rem) {
  .page-about .about-title {
    font-size: 4rem;
  }

  .page-about .about-hero-stats {
    flex-basis: 18rem;
  }

  .page-about .about-timeline {
    padding-left: 64px;
  }

  .page-about .about-timeline::before {
    left: 21px;
  }

  .page-about .about-timeline-marker {
    left: -57px;
  }

  .page-about .about-trust-items {
    gap: 1.125rem;
  }
}
