/* ==========================================================================
   ABOUT PAGE
   Loaded after styles.css + services.css. Reuses the interior-page scaffolding
   (tokens, containers, sections, .sr reveals, final CTA) and only adds what is
   specific to this page.
   ========================================================================== */

/* ---------- HERO ---------- */
.about-hero {
  position: relative;
  padding: calc(clamp(40px, 4.4vw, 46px) + clamp(56px, 10vh, 104px)) 0
    clamp(48px, 8vh, 84px);
  margin-top: calc(-1 * (clamp(40px, 4.4vw, 46px) + clamp(32px, 4.8vh, 56px)));
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4%;
  width: min(900px, 130%);
  aspect-ratio: 1.5;
  transform: translateX(-56%);
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(255, 255, 255, 0) 72%
  );
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
}

.about-hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.about-hero-title .line {
  display: block;
  font-size: clamp(34px, 6vw, 76px);
}

.about-hero-copy {
  max-width: 52ch;
  margin: clamp(18px, 3vh, 28px) 0 0;
  font-size: clamp(15px, 1.5vw, 17.5px);
  line-height: 1.58;
  color: var(--body-text);
  opacity: 0.82;
}

/* ---------- 01 STORY ---------- */
.story {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.4vh, 22px);
}

.story p {
  margin: 0;
  font-size: clamp(14.5px, 1.4vw, 16.5px);
  line-height: 1.72;
  color: var(--body-text);
  opacity: 0.78;
  max-width: 68ch;
}

.story-lead {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2.1vw, 24px) !important;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.4 !important;
  color: #fff !important;
  opacity: 1 !important;
}

.story-close {
  margin-top: clamp(8px, 1.4vh, 14px) !important;
  padding-left: clamp(16px, 2vw, 22px);
  border-left: 1px solid var(--hairline-strong);
  color: #fff !important;
  opacity: 0.92 !important;
}

/* ---------- 02 WHAT WE DO ---------- */
.do-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
}

.do-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: clamp(12px, 2vw, 24px);
  align-items: baseline;
  padding: clamp(18px, 2.6vh, 26px) clamp(8px, 1.4vw, 16px);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.35s ease, padding-left 0.4s var(--ease);
}

.do-row:hover {
  background: var(--surface-hover);
  padding-left: clamp(16px, 2.2vw, 26px);
}

.do-num {
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 0.3s ease;
}

.do-row:hover .do-num {
  color: #fff;
}

.do-text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px clamp(14px, 2.4vw, 28px);
}

.do-text h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(16.5px, 1.75vw, 20px);
  letter-spacing: -0.02em;
  color: #fff;
  flex: 0 0 auto;
  min-width: 180px;
}

.do-text p {
  margin: 0;
  font-size: clamp(13.5px, 1.25vw, 15px);
  line-height: 1.55;
  color: var(--body-text);
  opacity: 0.66;
  transition: opacity 0.3s ease;
}

.do-row:hover .do-text p {
  opacity: 0.9;
}

.do-more {
  margin-top: clamp(22px, 3vh, 32px);
}

/* ---------- 03 WHO WE SERVE ---------- */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.serve-card {
  background: #000;
  padding: clamp(24px, 3.4vh, 36px) clamp(20px, 2.4vw, 30px);
  transition: background 0.4s ease;
}

.serve-card:hover {
  background: rgba(255, 255, 255, 0.035);
}

.serve-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(16px, 1.65vw, 19px);
  letter-spacing: -0.022em;
  line-height: 1.3;
  color: #fff;
}

.serve-card p {
  margin: 0;
  font-size: clamp(13.5px, 1.25vw, 15px);
  line-height: 1.58;
  color: var(--body-text);
  opacity: 0.68;
}

/* ---------- 04 TEAM ---------- */
.team-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(16px, 2.4vw, 26px);
  align-items: stretch;
}

.founder-card,
.team-card {
  border: 1px solid var(--hairline);
  border-radius: 24px;
  background: var(--surface);
  padding: clamp(26px, 3.6vh, 38px);
}

.founder-card {
  display: flex;
  gap: clamp(18px, 2.4vw, 26px);
  align-items: flex-start;
}

.founder-monogram {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #ffffff 0%, #d9d9de 60%, #b6b6be 100%);
  color: #0a0a0c;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.founder-body h3 {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(19px, 2vw, 23px);
  letter-spacing: -0.025em;
  color: #fff;
}

.founder-role {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.founder-copy {
  margin: 0;
  font-size: clamp(13.5px, 1.3vw, 15px);
  line-height: 1.62;
  color: var(--body-text);
  opacity: 0.72;
}

.team-count {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.team-count-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}

.team-count-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.team-copy {
  margin: 0 0 20px;
  font-size: clamp(13.5px, 1.3vw, 15px);
  line-height: 1.62;
  color: var(--body-text);
  opacity: 0.72;
}

.team-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.team-disciplines li {
  padding: 7px 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: clamp(11.5px, 1.1vw, 12.5px);
  font-weight: 500;
  color: #c4c2c3;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.28s ease, color 0.28s ease, background 0.28s ease;
}

.team-disciplines li:hover {
  border-color: var(--hairline-strong);
  background: var(--surface-hover);
  color: #fff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .team-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .about-hero {
    padding-top: calc(48px + clamp(44px, 8vh, 84px));
    margin-top: calc(-1 * (48px + clamp(28px, 4vh, 44px)));
  }

  .do-row {
    grid-template-columns: 38px 1fr;
    align-items: start;
  }

  .do-text {
    flex-direction: column;
    gap: 6px;
  }

  .do-text h3 {
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .serve-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    flex-direction: column;
    gap: 18px;
  }

  .founder-monogram {
    width: 58px;
    height: 58px;
    font-size: 19px;
  }
}
