/* ============================================
   DISRUPTION GROUP · Careers · Design Tokens
   ============================================ */
:root {
  /* Palette */
  --navy-950: #050d1c;
  --navy-900: #0a1a2f;
  --navy-800: #0f2340;
  --navy-700: #142b4d;
  --navy-600: #1c3a68;
  --red-600: #e63946;
  --red-500: #ef4c58;
  --red-700: #c62d3a;
  --ink-50: #f7f9fc;
  --ink-100: #eef2f8;
  --ink-200: #d6dded;
  --ink-300: #a9b5cc;
  --ink-400: #6f7d97;
  --ink-500: #4a5772;

  /* Typography */
  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: clamp(22px, 2.4vw, 30px);
  --text-2xl: clamp(28px, 3.4vw, 44px);
  --text-3xl: clamp(36px, 5vw, 64px);
  --text-hero: clamp(48px, 8vw, 110px);

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-8: 48px;
  --sp-10: 64px;
  --sp-12: 96px;
  --sp-16: 128px;

  --radius: 4px;
  --radius-lg: 8px;

  --container: 1240px;
}

/* ============================================
   BASE
   ============================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink-100);
  background: var(--navy-950);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--navy-950);
  color: var(--ink-300);
  font-size: var(--text-xs);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--sp-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-5);
}
.topbar__social { display: flex; gap: var(--sp-4); }
.topbar__social a { color: var(--ink-300); transition: color .2s; }
.topbar__social a:hover { color: var(--red-500); }
.topbar__meta { display: flex; align-items: center; gap: var(--sp-5); }
.topbar__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--ink-200);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
}
.topbar__cta {
  color: var(--ink-100);
  font-weight: 500;
  transition: color .2s;
}
.topbar__cta:hover { color: var(--red-500); }

.pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-600);
  box-shadow: 0 0 0 0 rgba(230,57,70,.5);
  animation: pulse 2s infinite;
}
.pulse--red { background: var(--red-500); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(230,57,70,.5); }
  70% { box-shadow: 0 0 0 8px rgba(230,57,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  color: var(--navy-900);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
.header--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.brand__mark svg { display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .02em;
  color: var(--navy-900);
}
.brand__sub {
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--ink-500);
  font-weight: 600;
  margin-top: 2px;
}
.footer .brand__name, .footer .brand__sub { color: var(--ink-100); }
.footer .brand__sub { color: var(--ink-300); }

.nav {
  display: flex;
  gap: var(--sp-6);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: .08em;
}
.nav a {
  color: var(--navy-800);
  transition: color .2s;
  position: relative;
}
.nav a:hover { color: var(--red-600); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red-600);
  transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }

.hamburger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  gap: 4px;
  flex-direction: column;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  transition: transform .2s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: var(--sp-4) var(--sp-5);
  gap: var(--sp-4);
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.06);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .05em;
}
.mobile-nav a { color: var(--navy-900); }
.mobile-nav.is-open { display: flex; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: .06em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s, box-shadow .2s;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--red-600);
  color: #fff;
  box-shadow: 0 8px 24px rgba(230,57,70,.25);
}
.btn--primary:hover { background: var(--red-700); box-shadow: 0 10px 30px rgba(230,57,70,.35); }

.btn--outline {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn--outline:hover { background: var(--navy-900); color: #fff; }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn--lg { padding: 18px 32px; font-size: var(--text-base); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,13,28,.96) 0%, rgba(5,13,28,.78) 45%, rgba(5,13,28,.4) 100%),
    linear-gradient(180deg, rgba(5,13,28,.45), rgba(5,13,28,.75));
}
.hero__hex {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: min(380px, 40vw);
  opacity: .8;
  animation: rot 40s linear infinite;
}
@keyframes rot { to { transform: rotate(360deg); } }

.hero__inner {
  padding: var(--sp-16) var(--sp-5);
  max-width: 1000px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--ink-100);
  margin-bottom: var(--sp-6);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(6px);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-hero);
  line-height: .95;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
}
.hero__accent { color: var(--red-500); }
.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--ink-100);
  max-width: 620px;
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-4);
  font-style: italic;
  opacity: .9;
}
.hero__kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: .12em;
  color: var(--ink-300);
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}
.hero__lede {
  font-size: var(--text-lg);
  color: var(--ink-200);
  max-width: 620px;
  margin-bottom: var(--sp-8);
  line-height: 1.55;
}
.hero__ctas {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.15);
  max-width: 620px;
}
.hero__stats > div { display: flex; flex-direction: column; }
.hero__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  color: #fff;
  line-height: 1;
}
.hero__stat-label {
  font-size: var(--text-xs);
  letter-spacing: .12em;
  color: var(--ink-300);
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: clamp(64px, 10vw, 128px) 0;
  position: relative;
}
.section--dark { background: var(--navy-900); }
.section--darker { background: var(--navy-950); }
.section--red {
  background: var(--red-600);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.12), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,.15), transparent 50%);
  color: #fff;
}

.section__head { max-width: 780px; margin-bottom: var(--sp-10); }
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-3xl);
  line-height: 1.05;
  letter-spacing: -.015em;
  color: #fff;
  margin-bottom: var(--sp-4);
}
.section__lede {
  font-size: var(--text-lg);
  color: var(--ink-300);
  max-width: 620px;
  line-height: 1.55;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--red-500);
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--red-500);
  transform: translateY(-50%);
}
.eyebrow--light { color: #fff; }
.eyebrow--light::before { background: #fff; }

/* ============================================
   ABOUT
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}
.about__left p {
  color: var(--ink-200);
  margin-bottom: var(--sp-4);
  font-size: var(--text-lg);
  line-height: 1.6;
}
.about__meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.about__meta li {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: .1em;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  color: var(--ink-200);
  text-transform: uppercase;
}
.about__right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.pillar {
  padding: var(--sp-6);
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.06);
  border-left: 3px solid var(--red-600);
  border-radius: var(--radius);
  transition: transform .2s, border-color .2s;
}
.pillar:hover { transform: translateX(4px); border-left-color: var(--red-500); }
.pillar__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  letter-spacing: .1em;
  color: var(--red-500);
  margin-bottom: var(--sp-2);
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: #fff;
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.pillar p { color: var(--ink-300); line-height: 1.55; }

/* ============================================
   OFFER GRID
   ============================================ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.offer-card {
  padding: var(--sp-6);
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  transition: transform .25s ease, border-color .25s;
  display: flex;
  flex-direction: column;
}
.offer-card:hover { transform: translateY(-4px); border-color: rgba(230,57,70,.4); }
.offer-card--wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border-left: 3px solid var(--red-600);
}
.offer-card__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230,57,70,.12);
  color: var(--red-500);
  border-radius: var(--radius);
  margin-bottom: var(--sp-4);
}
.offer-card__icon svg { width: 22px; height: 22px; }
.offer-card__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--red-500);
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.offer-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: #fff;
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}
.offer-card p { color: var(--ink-300); line-height: 1.6; }

/* ============================================
   STATS BAR
   ============================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  text-align: center;
}
.stats > div { padding: var(--sp-4); }
.stats__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  color: #fff;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stats__label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: .06em;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================
   JOURNEY
   ============================================ */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  position: relative;
}
.journey__step {
  padding: var(--sp-6);
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  position: relative;
}
.journey__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-2xl);
  color: var(--red-500);
  line-height: 1;
  margin-bottom: var(--sp-4);
  opacity: .9;
}
.journey__step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: #fff;
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}
.journey__step p { color: var(--ink-300); font-size: var(--text-sm); line-height: 1.55; }

/* ============================================
   BROKERAGE
   ============================================ */
.brokerage {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}
.brokerage__left p {
  color: var(--ink-200);
  margin-bottom: var(--sp-4);
  font-size: var(--text-lg);
  line-height: 1.6;
}
.brokerage__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.08);
}
.brokerage__meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.brokerage__meta span {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--ink-400);
  text-transform: uppercase;
  font-weight: 700;
}
.brokerage__meta strong {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: #fff;
  font-weight: 700;
}
.brokerage__right {
  position: relative;
}
.brokerage__quote {
  padding: var(--sp-8);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border-left: 3px solid var(--red-600);
  border-radius: var(--radius-lg);
  position: relative;
}
.brokerage__quote::before {
  content: '“';
  position: absolute;
  top: 4px;
  left: 22px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 100px;
  color: var(--red-600);
  opacity: .28;
  line-height: 1;
}
.brokerage__quote p {
  position: relative;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xl);
  line-height: 1.35;
  margin-bottom: var(--sp-4);
  letter-spacing: -.01em;
}
.brokerage__quote cite {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: .14em;
  color: var(--red-500);
  text-transform: uppercase;
}

/* ============================================
   OFFICES
   ============================================ */
.offices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.office {
  padding: var(--sp-8);
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .25s ease;
}
.office:hover { border-color: rgba(230,57,70,.4); transform: translateY(-4px); }
.office__flag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .2em;
  color: #fff;
  background: var(--red-600);
  padding: 6px 12px;
  border-radius: var(--radius);
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
}
.office h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: #fff;
  margin-bottom: var(--sp-2);
  line-height: 1.1;
}
.office__addr {
  color: var(--ink-300);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-5);
  letter-spacing: .02em;
}
.office ul {
  list-style: none;
  margin-bottom: var(--sp-6);
}
.office ul li {
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--ink-200);
  padding-left: 26px;
  position: relative;
  font-size: var(--text-sm);
}
.office ul li:last-child { border-bottom: 0; }
.office ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--red-500);
  transform: translateY(-50%);
}
.office__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: .08em;
  color: var(--red-500);
  text-transform: uppercase;
  transition: gap .2s, color .2s;
}
.office__cta:hover { gap: 14px; color: var(--red-500); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .testimonials { grid-template-columns: 1fr; } }

.quote {
  padding: var(--sp-6);
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.quote:hover { border-color: rgba(230,57,70,.35); }
.quote::before {
  content: '“';
  position: absolute;
  top: 8px;
  left: 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 80px;
  color: var(--red-600);
  opacity: .3;
  line-height: 1;
  pointer-events: none;
}
.quote p {
  position: relative;
  color: var(--ink-100);
  font-size: var(--text-base);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
  font-style: italic;
  flex: 1;
}

/* Byline with monogram avatar */
.quote__byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,.06);
}
.avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border: 1px solid rgba(230,57,70,.4);
  text-transform: uppercase;
}
.quote__person {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.quote__person strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: .01em;
}
.quote__person span {
  font-size: 12px;
  color: var(--ink-300);
  letter-spacing: .02em;
}

/* Featured card (Shawn) */
.quote--featured {
  margin-bottom: var(--sp-6);
  padding: var(--sp-7) var(--sp-8);
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border: 1px solid rgba(230,57,70,.35);
  border-left: 4px solid var(--red-500);
  position: relative;
  overflow: hidden;
}
.quote--featured::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 220px; height: 220px;
  background: radial-gradient(circle at top right, rgba(230,57,70,.12), transparent 70%);
  pointer-events: none;
}
.quote--featured p {
  font-size: var(--text-lg);
  color: #fff;
  font-style: normal;
  line-height: 1.55;
}
.quote--featured .avatar {
  width: 56px;
  height: 56px;
  font-size: 18px;
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  border-color: rgba(255,255,255,.2);
}
.quote--featured .quote__person strong { font-size: 17px; }
.quote--featured .quote__person span { font-size: 13px; color: var(--ink-100); }
.quote__flag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red-500);
  padding: 4px 10px;
  border: 1px solid rgba(230,57,70,.4);
  border-radius: 999px;
  margin-bottom: var(--sp-4);
}

.section__lede {
  max-width: 720px;
  color: var(--ink-200);
  font-size: var(--text-base);
  line-height: 1.6;
  margin-top: var(--sp-3);
}

/* ============================================
   FAQ
   ============================================ */
.faq { max-width: 900px; }
.faq details {
  padding: var(--sp-5) 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.faq details[open] { border-bottom-color: rgba(230,57,70,.3); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: var(--sp-3);
  transition: color .2s;
}
.faq summary:hover { color: var(--red-500); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 28px;
  font-weight: 400;
  color: var(--red-500);
  transition: transform .2s;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding-top: var(--sp-4);
  color: var(--ink-300);
  line-height: 1.65;
  max-width: 780px;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: clamp(80px, 12vw, 160px) 0;
  background:
    radial-gradient(ellipse at top, rgba(230,57,70,.3), transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
.cta__inner { max-width: 780px; margin: 0 auto; }
.cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-3xl);
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--sp-5);
  letter-spacing: -.02em;
}
.cta p {
  font-size: var(--text-lg);
  color: var(--ink-200);
  margin-bottom: var(--sp-8);
}
.cta__ctas {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #030812;
  color: var(--ink-300);
  padding: var(--sp-12) 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
}
.footer__blurb {
  margin-top: var(--sp-5);
  color: var(--ink-400);
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 340px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.footer__cols h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: .18em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer__cols a {
  display: block;
  padding: 6px 0;
  color: var(--ink-300);
  font-size: var(--text-sm);
  transition: color .2s;
}
.footer__cols a:hover { color: var(--red-500); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--sp-5) 0;
  font-size: var(--text-xs);
  color: var(--ink-500);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .nav { display: none; }
  .nav__cta { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 80vh; }
  .hero__inner { padding: var(--sp-10) var(--sp-5); }
  .hero__stats { flex-wrap: wrap; gap: var(--sp-5); }

  .about { grid-template-columns: 1fr; gap: var(--sp-8); }
  .brokerage { grid-template-columns: 1fr; gap: var(--sp-8); }
  .brokerage__meta { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .offices { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__cols { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
}

@media (max-width: 560px) {
  .topbar__inner { flex-direction: column; gap: var(--sp-3); padding: 10px var(--sp-4); }
  .topbar__meta { gap: var(--sp-4); }
  .container { padding: 0 var(--sp-4); }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .hero__stats { flex-direction: column; gap: var(--sp-4); }
  .hero__stats > div { flex-direction: row; align-items: baseline; gap: var(--sp-3); }
  .hero__stat-label { margin-top: 0; }
  .journey { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cta__ctas { flex-direction: column; align-items: stretch; }
  .cta__ctas .btn { width: 100%; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { flex-direction: column; }
}
