.about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(150px, 18vw, 220px) 0 clamp(66px, 8vw, 104px);
  border-bottom: 1px solid var(--line);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(55% 64% at 10% 4%, var(--accent-soft), transparent 72%),
    radial-gradient(40% 45% at 88% 8%, var(--cyan-soft), transparent 74%);
}

.about-hero .container { position: relative; }

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: end;
}

.about-hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 7.6vw, 104px);
  font-weight: 650;
  letter-spacing: -.05em;
  line-height: .96;
}

.about-hero h1 em {
  display: block;
  color: var(--accent-ink);
  font-family: var(--serif);
  font-weight: 400;
}

.about-intro {
  padding: 8px 0 5px clamp(24px, 3vw, 42px);
  border-left: 1px solid var(--line-2);
}

.about-intro p {
  max-width: 39ch;
  color: var(--fg-2);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.68;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line);
}

.about-fact {
  min-width: 0;
  padding: clamp(30px, 4vw, 52px) var(--pad);
  border-right: 1px solid var(--line);
}

.about-fact:nth-child(2n) { border-right: 0; }
.about-fact:nth-child(n + 3) { border-top: 1px solid var(--line); }

.about-fact dt {
  color: var(--fg);
  font-family: var(--mono);
  font-size: clamp(31px, 4.5vw, 52px);
  font-weight: 500;
  letter-spacing: -.04em;
}

.about-fact dd {
  max-width: 24ch;
  margin: 9px 0 0;
  color: var(--fg-3);
  font-size: 14px;
  line-height: 1.5;
}

.about-section {
  padding: clamp(70px, 10vw, 126px) 0;
  border-bottom: 1px solid var(--line);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr);
  gap: clamp(48px, 9vw, 132px);
  align-items: start;
}

.about-split h2 {
  max-width: 10ch;
  font-size: clamp(38px, 5.4vw, 70px);
  line-height: 1;
  letter-spacing: -.045em;
}

.about-copy {
  max-width: 760px;
  color: var(--fg-2);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.72;
}

.about-copy > * + * { margin-top: 1.15em; }
.about-copy strong { color: var(--fg); font-weight: 600; }
.about-copy a { color: var(--accent-ink); text-underline-offset: 3px; }

.about-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.about-link {
  min-height: 172px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  background: var(--bg-1);
  color: inherit;
  text-decoration: none;
  transition: transform .35s var(--ease-out), border-color .25s var(--ease);
}

.about-link:hover { transform: translateY(-3px); border-color: var(--line-3); }

.about-link span {
  display: block;
  color: var(--accent-ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-link h3 {
  margin-top: 30px;
  font-size: 20px;
  letter-spacing: -.02em;
}

.about-link p {
  margin-top: 9px;
  color: var(--fg-3);
  font-size: 13.5px;
  line-height: 1.55;
}

.about-editorial {
  background:
    radial-gradient(80% 100% at 100% 0%, var(--accent-soft), transparent 68%),
    var(--bg-1);
}

.about-note {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 2px solid var(--accent);
  background: var(--bg-2);
  color: var(--fg-2);
  font-size: 14px;
  line-height: 1.65;
}

.about-offices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.about-office {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  background: var(--bg-1);
}

.about-office h3 {
  color: var(--accent-ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-office address {
  margin-top: 15px;
  color: var(--fg-2);
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

@media (min-width: 780px) {
  .about-facts { grid-template-columns: repeat(4, 1fr); }
  .about-fact,
  .about-fact:nth-child(2n) { border-right: 1px solid var(--line); }
  .about-fact:last-child { border-right: 0; }
  .about-fact:nth-child(n + 3) { border-top: 0; }
}

@media (max-width: 860px) {
  .about-hero-grid,
  .about-split { grid-template-columns: 1fr; }
  .about-hero-grid { gap: 38px; }
  .about-intro { max-width: 580px; padding: 24px 0 0; border-top: 1px solid var(--line-2); border-left: 0; }
  .about-split { gap: 32px; }
  .about-split h2 { max-width: 13ch; }
  .about-links,
  .about-offices { grid-template-columns: 1fr; }
  .about-link { min-height: 0; }
  .about-link h3 { margin-top: 22px; }
}

@media (max-width: 620px) {
  .about-hero { padding: 132px 0 58px; }
  .about-hero h1 { font-size: clamp(47px, 14vw, 67px); }
  .about-fact { padding: 27px var(--pad); }
  .about-fact dt { font-size: 34px; }
  .about-section { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .about-link { transition: none; }
}
