/*
 * ARC About Us (Gutenberg) — page-scoped CSS
 * Loaded only on the `about-us-gb` page via wp_enqueue_style guarded by is_page('about-us-gb').
 * Ported from the Phase 2 prototype (/home/ARCWP/arc-about-us-prototype-server.html) with:
 *   - :root      -> .page-about-us            (token block scoped to page body class)
 *   - .arc-about -> .page-about-us            (wrapper class swap)
 *   - Every standalone selector additionally prefixed with .page-about-us to prevent
 *     cross-cascade collisions with parent theme / RealHomes / Elementor / plugin CSS.
 *   - .chrome-placeholder rule removed (prototype-only artifact).
 */

.page-about-us {
  /* Brand tokens from ARC-DESIGN-SYSTEM.md v0.1 */
  --brand-blue: #263D8A;
  --brand-blue-dark: #1B2A66;
  --brand-blue-ink: #0F1A44;
  --brand-yellow: #F2DB0D;
  --brand-yellow-hover: #E6CF00;

  /* Proposed neutrals (Phase 4 candidates) */
  --text: #0B1220;
  --text-muted: #52607A;
  --text-subtle: #8591A8;
  --on-blue: #FFFFFF;
  --on-blue-muted: rgba(255, 255, 255, 0.78);
  --surface: #FFFFFF;
  --surface-tint: #F6F8FC;
  --surface-warm: #FBFAF5;
  --divider: #E4E8F1;
  --divider-strong: #C9D0DE;

  /* Typography */
  --font-display: 'DM Serif Display', 'DM Serif Text', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale (4px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(15, 26, 68, 0.04), 0 8px 24px rgba(15, 26, 68, 0.06);
  --shadow-card-hover: 0 4px 8px rgba(15, 26, 68, 0.06), 0 16px 40px rgba(15, 26, 68, 0.10);
  --shadow-elev: 0 20px 60px rgba(15, 26, 68, 0.15);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --dur-fast: 150ms;
  --dur: 220ms;
  --dur-slow: 400ms;

  /* Container */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* ---------- Reset ---------- */
.page-about-us *, .page-about-us *::before, .page-about-us *::after { box-sizing: border-box; }
.page-about-us * { margin: 0; }
.page-about-us {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.page-about-us img { max-width: 100%; height: auto; display: block; }
.page-about-us a { text-decoration: none; }
.page-about-us button { font: inherit; cursor: pointer; border: 0; background: transparent; }

/* ---------- Container ---------- */
.page-about-us .container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Typography utilities ---------- */
.page-about-us .eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.page-about-us .eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.page-about-us .eyebrow.on-dark { color: var(--brand-yellow); }


.page-about-us .section h1,
.page-about-us .section h2,
.page-about-us .section h3,
.page-about-us .hero h1,
.page-about-us .hero h2,
.page-about-us .hero h3,
.page-about-us .stats h1,
.page-about-us .stats h2,
.page-about-us .stats h3 {
  font-family: var(--font-display);
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.08;
}
.page-about-us .section h2 em,
.page-about-us .section h1 em,
.page-about-us .hero h2 em,
.page-about-us .hero h1 em {
  font-family: 'DM Serif Text', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--brand-blue);
  position: relative;
  white-space: nowrap;
}
.page-about-us .h2-accent-underline em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.08em;
  height: 0.12em;
  background: var(--brand-yellow);
  opacity: 0.9;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.page-about-us .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: 999px;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.page-about-us .btn:focus-visible {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 3px;
}
.page-about-us .btn .arrow {
  display: inline-block;
  transition: transform var(--dur) var(--ease);
}
.page-about-us .btn:hover .arrow { transform: translateX(3px); }

.page-about-us .btn--primary {
  background: var(--brand-yellow);
  color: var(--brand-blue-ink);
}
.page-about-us .btn--primary:hover { background: var(--brand-yellow-hover); transform: translateY(-1px); }
.page-about-us .btn--primary:active { transform: translateY(0); }

.page-about-us .btn--ghost-on-blue {
  background: var(--brand-blue);
  color: var(--on-blue);
}
.page-about-us .btn--ghost-on-blue:hover { background: var(--brand-blue-dark); transform: translateY(-1px); }

.page-about-us .btn--ghost-on-blue {
  background: transparent;
  color: var(--on-blue);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.page-about-us .btn-ghost:hover { border-color: var(--brand-yellow); color: var(--brand-yellow); }

.page-about-us .btn--ghost-on-light {
  background: transparent;
  color: var(--brand-blue);
  border: 1px solid var(--divider-strong);
}
.page-about-us .btn--ghost-on-light:hover { border-color: var(--brand-blue); background: var(--surface-tint); }

/* ---------- HERO ---------- */
.page-about-us .hero {
  background: var(--brand-blue);
  color: var(--on-blue);
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 10vw, 120px);
  padding-bottom: clamp(120px, 14vw, 180px);
}
.page-about-us .hero::before {
  /* Subtle architectural grid texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  pointer-events: none;
}
.page-about-us .hero::after {
  /* Soft radial glow top-right */
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(242, 219, 13, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-about-us .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.page-about-us .hero-copy { max-width: 640px; }
.page-about-us .hero-copy .eyebrow { margin-bottom: var(--space-8); }
.page-about-us .hero h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  font-weight: 400;
  color: var(--on-blue);
  margin-bottom: var(--space-6);
}
.page-about-us .hero h1 em {
  color: var(--brand-yellow);
  font-weight: 400;
}
.page-about-us .hero-sub {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--on-blue-muted);
  max-width: 56ch;
  margin-bottom: var(--space-10);
}
.page-about-us .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.page-about-us .hero-media {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elev);
  transform: translateY(10px);
}
.page-about-us .hero-media img,
.page-about-us .hero-media-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-about-us .hero-media::after {
  /* Soft vignette */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(38, 61, 138, 0.35) 100%);
  pointer-events: none;
}
.page-about-us .hero-media-badge {
  position: absolute;
  left: -12px;
  bottom: 32px;
  background: var(--brand-yellow);
  color: var(--brand-blue-ink);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: 'DM Serif Text', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ---------- STAT STRIP ---------- */
.page-about-us .stats {
  margin-top: clamp(-100px, -10vw, -80px);
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-20);
}
.page-about-us .stats-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elev);
  padding: clamp(24px, 3.5vw, 48px) clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.page-about-us .stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: var(--space-6);
  border-right: 1px solid var(--divider);
}
.page-about-us .stat:last-child { border-right: 0; padding-right: 0; }
.page-about-us .stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
}
.page-about-us .stat-num small {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
  margin-left: 4px;
  vertical-align: middle;
}
.page-about-us .stat-label {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- Section base ---------- */
.page-about-us .section {
  padding-top: clamp(64px, 10vw, 120px);
  padding-bottom: clamp(64px, 10vw, 120px);
}
.page-about-us .section-tint { background: var(--surface-tint); }
.page-about-us .section-warm { background: var(--surface-warm); }
.page-about-us .section-dark { background: var(--brand-blue); color: var(--on-blue); }

.page-about-us .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: clamp(40px, 6vw, 72px);
  align-items: end;
}
.page-about-us .section-head-left { display: flex; flex-direction: column; gap: var(--space-4); }
.page-about-us .section-head h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 400;
  max-width: 14ch;
}
.page-about-us .section-head-right {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 56ch;
  padding-bottom: 6px;
}

/* ---------- EXPERTISE ---------- */
.page-about-us .expertise { background: var(--surface); }
.page-about-us .expertise-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  max-width: 62ch;
  margin-bottom: var(--space-12);
}
.page-about-us .expertise-intro strong { font-weight: 600; color: var(--brand-blue); }

.page-about-us .type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.page-about-us .type-card {
  background: var(--surface);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-height: 180px;
  position: relative;
  color: var(--text);
  transition: background var(--dur) var(--ease);
}
.page-about-us .type-card:hover { background: var(--surface-tint); }
.page-about-us .type-card:hover .type-card-arrow { transform: translate(3px, -3px); color: var(--brand-blue); }
.page-about-us .type-card:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: -2px; background: var(--surface-tint); }
.page-about-us .type-card-num {
  font-family: 'DM Serif Text', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-subtle);
}
.page-about-us .type-card-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  color: var(--text);
  margin-top: auto;
}
.page-about-us .type-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}
.page-about-us .type-card-arrow {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  color: var(--text-subtle);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}

/* ---------- APPROACH ---------- */
.page-about-us .approach { background: var(--surface-tint); }
.page-about-us .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  counter-reset: step;
}
.page-about-us .process-step {
  position: relative;
  padding: var(--space-10) var(--space-8);
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.page-about-us .process-step:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.page-about-us .process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: 'DM Serif Text', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  color: var(--brand-yellow);
  display: block;
  margin-bottom: var(--space-6);
}
.page-about-us .process-step h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: var(--space-3);
}
.page-about-us .process-step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.page-about-us .approach-credentials {
  margin-top: var(--space-16);
  padding: var(--space-10) var(--space-10);
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: var(--space-10);
  align-items: center;
}
.page-about-us .approach-credentials h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}
.page-about-us .credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
}
.page-about-us .credentials-list li {
  padding: 8px 14px;
  background: var(--surface-tint);
  border: 1px solid var(--divider);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* ---------- TERRITORY ---------- */
.page-about-us .territory {
  background: var(--brand-blue);
  color: var(--on-blue);
  position: relative;
  overflow: hidden;
}
.page-about-us .territory::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.page-about-us .territory .container { position: relative; z-index: 1; }
.page-about-us .territory .section-head h2 { color: var(--on-blue); }
.page-about-us .territory .section-head h2 em { color: var(--brand-yellow); }
.page-about-us .territory .section-head-right { color: var(--on-blue-muted); }

.page-about-us .markets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.page-about-us .market {
  background: rgba(255, 255, 255, 0.03);
  padding: var(--space-8) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  transition: background var(--dur) var(--ease);
  color: var(--on-blue);
}
.page-about-us .market:hover { background: rgba(255, 255, 255, 0.08); }
.page-about-us .market:hover .market-arrow { transform: translate(3px, -3px); color: var(--brand-yellow); }
.page-about-us .market:focus-visible { outline: 2px solid var(--brand-yellow); outline-offset: -2px; background: rgba(255,255,255,0.08); }
.page-about-us .market-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
}
.page-about-us .market-arrow {
  color: var(--on-blue-muted);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
  flex-shrink: 0;
}

/* ---------- LEADERSHIP ---------- */
.page-about-us .leadership { background: var(--surface-warm); }
.page-about-us .leaders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
}
.page-about-us .leader {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.page-about-us .leader:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.page-about-us .leader-photo {
  background: var(--surface-tint);
  position: relative;
  aspect-ratio: 4 / 5;
}
.page-about-us .leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.page-about-us .leader-body {
  padding: var(--space-8) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.page-about-us .leader-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  color: var(--text);
}
.page-about-us .leader-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
}
.page-about-us .leader-bio {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-top: var(--space-2);
}
.page-about-us .leader-meta {
  margin-top: auto;
  padding-top: var(--space-5);
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
.page-about-us .leader-years {
  font-family: 'DM Serif Text', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-subtle);
}
.page-about-us .leader-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur) var(--ease);
}
.page-about-us .leader-link:hover { color: var(--brand-blue-dark); }
.page-about-us .leader-link:hover .arrow { transform: translateX(3px); }
.page-about-us .leader-link .arrow { transition: transform var(--dur) var(--ease); }

.page-about-us .leaders-footer {
  text-align: center;
  margin-top: var(--space-12);
  padding-top: var(--space-10);
  border-top: 1px solid var(--divider);
}
.page-about-us .leaders-footer-copy {
  font-family: 'DM Serif Text', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0 auto var(--space-6);
}

/* ---------- PROOF ---------- */
.page-about-us .proof { background: var(--surface); }
.page-about-us .proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.page-about-us .proof-quote {
  position: relative;
  padding: var(--space-10) var(--space-10);
  padding-left: var(--space-12);
}
.page-about-us .proof-quote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -8px;
  font-family: 'DM Serif Text', Georgia, serif;
  font-size: 140px;
  line-height: 1;
  color: var(--brand-yellow);
}
.page-about-us .proof-quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--space-6);
}
.page-about-us .proof-quote-attr {
  display: flex;
  gap: var(--space-3);
  align-items: baseline;
}
.page-about-us .proof-quote-name {
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
}
.page-about-us .proof-quote-co {
  font-size: 16px;
  color: var(--text-muted);
}

.page-about-us .proof-side {
  padding: var(--space-10);
  background: var(--surface-tint);
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
}
.page-about-us .proof-side-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: var(--space-4);
}
.page-about-us .proof-side h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: var(--space-6);
}
.page-about-us .proof-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.page-about-us .proof-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.page-about-us .proof-links a:hover {
  border-color: var(--brand-blue);
  background: var(--surface-warm);
}
.page-about-us .proof-links a:hover .arrow { transform: translateX(3px); }
.page-about-us .proof-links .arrow { color: var(--brand-blue); transition: transform var(--dur) var(--ease); }

/* ---------- CTA ---------- */
.page-about-us .cta {
  background: var(--brand-blue);
  color: var(--on-blue);
  position: relative;
  overflow: hidden;
}
.page-about-us .cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(242, 219, 13, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
  pointer-events: none;
}
.page-about-us .cta .container { position: relative; z-index: 1; }
.page-about-us .cta-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.page-about-us .cta h2 {
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 400;
  color: var(--on-blue);
  margin-bottom: var(--space-6);
}
.page-about-us .cta h2 em {
  font-style: italic;
  color: var(--brand-yellow);
}
.page-about-us .cta-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--on-blue-muted);
  margin-bottom: var(--space-10);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.page-about-us .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
.page-about-us .cta-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--on-blue);
  transition: color var(--dur) var(--ease);
}
.page-about-us .cta-phone:hover { color: var(--brand-yellow); }
.page-about-us .cta-phone-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-blue-muted);
  margin-bottom: var(--space-3);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .page-about-us .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  .page-about-us .hero-media { aspect-ratio: 3 / 2; max-width: 640px; }

  .page-about-us .stats-card { grid-template-columns: repeat(2, 1fr); row-gap: var(--space-8); }
  .page-about-us .stat:nth-child(2) { border-right: 0; padding-right: 0; }
  .page-about-us .stat:nth-child(1), .page-about-us .stat:nth-child(2) { padding-bottom: var(--space-8); border-bottom: 1px solid var(--divider); }

  .page-about-us .section-head {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .page-about-us .type-grid { grid-template-columns: repeat(2, 1fr); }

  .page-about-us .process-grid { grid-template-columns: 1fr; gap: var(--space-6); }

  .page-about-us .approach-credentials {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding: var(--space-8);
  }

  .page-about-us .markets { grid-template-columns: repeat(2, 1fr); }

  .page-about-us .leaders-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .page-about-us .leader { grid-template-columns: 180px 1fr; }

  .page-about-us .proof-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .page-about-us .proof-quote { padding-left: var(--space-10); }
  .page-about-us .proof-quote::before { font-size: 100px; }
}

@media (max-width: 640px) {
  .page-about-us .stats-card {
    grid-template-columns: 1fr;
    padding: var(--space-6);
  }
  .page-about-us .stat {
    border-right: 0 !important;
    padding: 0 !important;
    padding-bottom: var(--space-6) !important;
    border-bottom: 1px solid var(--divider);
  }
  .page-about-us .stat:last-child { border-bottom: 0; padding-bottom: 0 !important; }

  .page-about-us .type-grid { grid-template-columns: 1fr; }

  .page-about-us .markets { grid-template-columns: 1fr; }

  .page-about-us .leader {
    grid-template-columns: 1fr;
  }
  .page-about-us .leader-photo { aspect-ratio: 5 / 3; }

  .page-about-us .hero-ctas { flex-direction: column; align-items: stretch; }
  .page-about-us .hero-ctas .btn { justify-content: center; }
  .page-about-us .cta-actions { flex-direction: column; }
  .page-about-us .cta-actions .btn { width: 100%; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-about-us *, .page-about-us *::before, .page-about-us *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .page-about-us .btn:hover, .page-about-us .leader:hover, .page-about-us .process-step:hover { transform: none !important; }
  .page-about-us .btn:hover .arrow, .page-about-us .leader-link:hover .arrow, .page-about-us .proof-links a:hover .arrow { transform: none !important; }
}

/* ==========================================================================
   Cascade-override block — wins against parent-theme rules regardless of
   enqueue order. Required because RealHomes Ultra parent stylesheets
   (parent-default-css, parent-custom-css, child-default-css,
   child-custom-css) all load AFTER this file's enqueue, and several of
   their rules target the same elements we style here. !important is used
   surgically — only on the specific properties that lose the cascade.
   ========================================================================== */

/* A. Wrapper neutralization — zero out padding/margin on every host wrapper
   from <body> down to the section elements, so our full-bleed sections start
   flush under the global header with no parent-theme container constraints. */
.page-about-us .rh-page-container,
.page-about-us .rh-page-container.container-fluid,
.page-about-us .container-fluid,
.page-about-us .rh-page-head-bottom,
.page-about-us .main-content,
.page-about-us .rh-main,
.page-about-us .entry-content-wrapper,
.page-about-us .entry-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    width: auto !important;
}

.page-about-us .rh-page-head,
.page-about-us .entry-thumbnail-wrapper {
    display: none !important;
}

/* B. Display typography — force DM Serif Display to win on every display-typed
   element, defeating any parent-theme h1/h2/h3/h4 font-family rules.
   Scoped to .section and specific content classes to exclude footer elements
   (Elementor footer uses different classes and should use global footer font stack). */
.page-about-us .section h1,
.page-about-us .section h2,
.page-about-us .section h3,
.page-about-us .section h4,
.page-about-us .hero h1,
.page-about-us .hero h2,
.page-about-us .stats h1,
.page-about-us .stats h2,
.page-about-us .stat-num,
.page-about-us .stat-num small,
.page-about-us .type-card-name,
.page-about-us .market-name,
.page-about-us .leader-name,
.page-about-us .process-step h3,
.page-about-us .proof-quote-text,
.page-about-us .cta-phone,
.page-about-us .leaders-footer-copy,
.page-about-us .hero-media-badge {
    font-family: 'DM Serif Display', 'DM Serif Text', Georgia, 'Times New Roman', serif !important;
}

/* C. Italic accent words — preserve DM Serif Text italic on <em> inside headings.
   Scoped to .section/.hero/.stats to exclude footer elements. */
.page-about-us .section h1 em,
.page-about-us .section h2 em,
.page-about-us .hero h1 em,
.page-about-us .hero h2 em {
    font-family: 'DM Serif Text', Georgia, serif !important;
}

/* D. Line-height — restore tight display line-height on all heading levels.
   Scoped to .section/.hero/.stats to exclude footer elements. */
.page-about-us .section h1,
.page-about-us .section h2,
.page-about-us .section h3,
.page-about-us .section h4,
.page-about-us .hero h1,
.page-about-us .hero h2,
.page-about-us .stats h1,
.page-about-us .stats h2 {
    line-height: 1.08 !important;
}

/* E. Secondary display elements — italic display-text classes that should
   render in DM Serif Text italic (numerals, decorative accents). */
.page-about-us .type-card-num,
.page-about-us .process-step::before,
.page-about-us .leader-years,
.page-about-us .proof-quote::before {
    font-family: 'DM Serif Text', Georgia, serif !important;
}

/* F. Body typography — explicitly assert Plus Jakarta Sans on body-typed
   elements as a defensive measure, in case parent-theme rules also override.
   Scoped to .section/.hero/.stats and specific content classes to exclude footer. */
.page-about-us .section p,
.page-about-us .hero p,
.page-about-us .stats p,
.page-about-us .eyebrow,
.page-about-us .btn,
.page-about-us .stat-label,
.page-about-us .type-card-desc,
.page-about-us .leader-bio,
.page-about-us .leader-title,
.page-about-us .credentials-list,
.page-about-us .hero-sub,
.page-about-us .section-head-right,
.page-about-us .cta-sub,
.page-about-us .cta-phone-label {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}
