/* ═══════════════════════════════════════════════════════════════
   09 · INTRO  (Who we are · right after hero)
   Editorial intro · big stats · brand pillars
   ═══════════════════════════════════════════════════════════════ */

.intro {
  padding: 120px 0 100px;
  position: relative;
  background: var(--paper);
}
.intro::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.intro__head .eyebrow { margin-bottom: 22px; }

.intro__title {
  font-family: 'DM Sans', Georgia, serif;
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--navy-800);
  margin: 0;
}
.intro__title em {
  font-style: italic;
  color: var(--gold-600);
  font-weight: 300;
}

.intro__body p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.intro__body p strong {
  color: var(--navy-800);
  font-weight: 600;
}

.intro__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-800);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gold-500);
  transition: gap 0.25s var(--ease), color 0.25s;
}
.intro__cta:hover { gap: 14px; color: var(--amber-500); }

/* ─── Big stats row ─── */
.intro__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}
.intro__stat {
  padding: 0 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.intro__stat:last-child { border-right: 0; }

.intro__stat__num {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 400;
  color: var(--navy-800);
  line-height: 1;
  letter-spacing: -0.02em;
}
.intro__stat__num__plus {
  color: var(--gold-500);
  font-weight: 300;
}
.intro__stat__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 14px;
}
