@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --navy:      #1A2B4A;
  --navy-dark: #0E1A30;
  --white:     #FFFFFF;
  --sl-50:     #F8FAFC;
  --sl-100:    #F1F5F9;
  --sl-200:    #E2E8F0;
  --sl-400:    #94A3B8;
  --sl-500:    #64748B;
  --sl-700:    #334155;
  --sl-900:    #0F172A;
  --radius:    10px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--sl-700);
  background: var(--white);
  padding-top: 68px;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; }
section { padding: 96px 64px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sl-400);
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(255,255,255,0.45); }

.section-title {
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  font-weight: 800;
  color: var(--sl-900);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-title-light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--sl-500);
  line-height: 1.8;
  max-width: 580px;
}
.section-sub-light { color: rgba(255,255,255,0.6); }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 68px;
  background: var(--white);
  border-bottom: 1px solid var(--sl-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--sl-900);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.nav-logo { height: 28px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--sl-500);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--sl-900);
  background: var(--sl-100);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--sl-900);
  border-radius: 2px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 7px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  line-height: 1;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: #253d6a;
  border-color: #253d6a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,43,74,0.2);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

/* ── HOMEPAGE HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(92vh - 68px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,26,48,0.90) 0%,
    rgba(14,26,48,0.45) 45%,
    rgba(14,26,48,0.10) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 64px;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 16px;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  background: var(--navy-dark);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  padding: 28px 56px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-top: 8px;
}

/* ── ABOUT SPLIT ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}
.about-text .eyebrow { margin-bottom: 12px; }
.about-text h2 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--sl-900);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.about-text p {
  font-size: 0.9375rem;
  color: var(--sl-700);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-text p:last-of-type { margin-bottom: 0; }
.about-founded {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--sl-200);
  font-size: 0.8125rem;
  color: var(--sl-500);
  line-height: 1.7;
}
.about-founded strong { color: var(--sl-900); font-weight: 600; }
.about-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* ── FEATURE CARDS (3-col) ───────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1140px;
  margin: 52px auto 0;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--sl-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 28px rgba(15,23,42,0.07);
  transform: translateY(-2px);
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sl-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--sl-500);
  line-height: 1.75;
}

/* ── SERVICE CARDS (large, 3-col) ────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 52px auto 0;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--sl-200);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: box-shadow 0.2s;
}
.svc-card:hover { box-shadow: 0 8px 28px rgba(15,23,42,0.07); }
.svc-card-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sl-400);
  margin-bottom: 6px;
}
.svc-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sl-900);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.svc-card-sub {
  font-size: 0.875rem;
  color: var(--sl-500);
  margin-bottom: 24px;
  line-height: 1.6;
}
.svc-card ul { padding: 0; }
.svc-card ul li {
  font-size: 0.875rem;
  color: var(--sl-700);
  line-height: 1.65;
  padding: 7px 0;
  border-bottom: 1px solid var(--sl-100);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.svc-card ul li:last-child { border-bottom: none; padding-bottom: 0; }
.svc-card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── SECONDARY SERVICE CARDS (compact, 3-col) ────────────── */
.svc-secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1140px;
  margin: 52px auto 0;
}
.svc-secondary-card {
  background: var(--white);
  border: 1px solid var(--sl-200);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.svc-secondary-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--sl-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.svc-secondary-card p {
  font-size: 0.875rem;
  color: var(--sl-500);
  line-height: 1.7;
}

/* ── CLIENT GRID ─────────────────────────────────────────── */
.clients-intro {
  max-width: 1140px;
  margin: 0 auto;
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--sl-200);
  border: 1px solid var(--sl-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 52px;
}
.client-item {
  background: var(--white);
  padding: 22px 20px;
  text-align: center;
  transition: background 0.15s;
}
.client-item:hover { background: var(--sl-50); }
.client-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sl-900);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.client-race {
  display: block;
  font-size: 0.75rem;
  color: var(--sl-400);
  letter-spacing: 0.02em;
}

/* ── SPEAKER CARDS ───────────────────────────────────────── */
.speaker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 52px auto 0;
}
.speaker-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--sl-100);
}
.speaker-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s;
}
.speaker-card:hover img { transform: scale(1.03); }
.speaker-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(14,26,48,0.94));
  padding: 60px 24px 24px;
  color: var(--white);
}
.speaker-label h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.speaker-label p { font-size: 0.8125rem; color: rgba(255,255,255,0.65); }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.t-carousel {
  max-width: 680px;
  margin: 52px auto 0;
  position: relative;
}
.t-card {
  display: none;
  background: var(--white);
  border: 1px solid var(--sl-200);
  border-radius: var(--radius);
  padding: 44px 40px 36px;
  animation: tFadeIn 0.35s ease;
}
.t-card.active { display: block; }
@keyframes tFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.t-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--sl-200);
  font-family: Georgia, serif;
  margin-bottom: 12px;
  display: block;
}
.t-quote {
  font-size: 1.0625rem;
  color: var(--sl-700);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--navy);
  flex-shrink: 0;
}
.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
.t-avatar-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}
.t-name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--sl-900);
}
.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.t-btn {
  background: none;
  border: 1px solid var(--sl-200);
  color: var(--sl-500);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.t-btn:hover { background: var(--sl-100); color: var(--sl-900); }
.t-dots { display: flex; gap: 6px; }
.t-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sl-200);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  padding: 0;
}
.t-dot.active { background: var(--navy); }

/* ── PAGE HERO (interior w/ photo) ──────────────────────── */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,26,48,0.88) 0%,
    rgba(14,26,48,0.35) 55%,
    rgba(14,26,48,0.1) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 64px;
  max-width: 680px;
}
.page-hero-content .eyebrow { color: rgba(255,255,255,0.45); }
.page-hero-content h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.page-hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 520px;
}

/* ── PAGE HEADER (text-only, for Services) ───────────────── */
.page-header {
  padding: 72px 64px 64px;
  border-bottom: 1px solid var(--sl-200);
}
.page-header .eyebrow { margin-bottom: 12px; }
.page-header h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--sl-900);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  max-width: 760px;
}
.page-header p {
  font-size: 1.0625rem;
  color: var(--sl-500);
  line-height: 1.8;
  max-width: 620px;
}

/* ── TEAM MEMBER GRID ────────────────────────────────────── */
.member-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1140px;
  margin: 52px auto 0;
}
.member-card {
  background: var(--white);
  border: 1px solid var(--sl-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.member-card:hover {
  box-shadow: 0 8px 28px rgba(15,23,42,0.07);
  transform: translateY(-2px);
}
.member-photo-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--sl-100);
  overflow: hidden;
  position: relative;
}
.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.member-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--sl-100);
  letter-spacing: 0.03em;
}
.member-info { padding: 18px 20px; }
.member-info h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--sl-900);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.member-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sl-400);
}

/* ── MOVING GALLERY STRIP ────────────────────────────────── */
.gallery-track {
  overflow: hidden;
  background: var(--sl-50);
}
.gallery-strip {
  display: flex;
  gap: 6px;
  width: max-content;
  animation: galleryScroll 40s linear infinite;
}
.gallery-strip:hover { animation-play-state: paused; }
@keyframes galleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.g-photo {
  height: 280px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 52px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--sl-200);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sl-900);
  cursor: pointer;
  text-align: left;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--navy); }
.faq-icon {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--sl-400);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.15s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--navy);
}
.faq-a {
  display: none;
  padding-bottom: 22px;
  font-size: 0.9375rem;
  color: var(--sl-500);
  line-height: 1.85;
}
.faq-item.open .faq-a { display: block; }

/* ── APPS CLOSED BANNER ──────────────────────────────────── */
.apps-closed {
  background: var(--sl-50);
  border-top: 1px solid var(--sl-200);
  border-bottom: 1px solid var(--sl-200);
  padding: 20px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.apps-closed-text {
  display: flex;
  align-items: center;
  gap: 14px;
}
.apps-closed-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--sl-200);
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sl-500);
  white-space: nowrap;
}
.apps-closed p {
  font-size: 0.9375rem;
  color: var(--sl-700);
  line-height: 1.5;
}
.apps-closed-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── WHY JOIN CARDS ──────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1140px;
  margin: 52px auto 0;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--sl-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover {
  box-shadow: 0 6px 24px rgba(15,23,42,0.06);
  transform: translateY(-2px);
}
.why-icon {
  width: 44px;
  height: 44px;
  background: var(--sl-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.why-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--sl-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 0.875rem;
  color: var(--sl-500);
  line-height: 1.75;
}

/* ── WHAT WE LOOK FOR ────────────────────────────────────── */
.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 880px;
  margin: 52px auto 0;
}
.look-card {
  background: var(--white);
  border: 1px solid var(--sl-200);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.look-icon {
  width: 40px;
  height: 40px;
  background: var(--sl-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.look-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--sl-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.look-card p {
  font-size: 0.875rem;
  color: var(--sl-500);
  line-height: 1.7;
}

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--navy-dark);
  padding: 96px 64px;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta-band .eyebrow { margin-bottom: 14px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── CLIENT TESTIMONIAL (pull quote) ─────────────────────── */
.pull-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1000px;
  margin: 52px auto 0;
}
.pull-quote blockquote {
  font-size: 1.125rem;
  color: var(--sl-700);
  line-height: 1.85;
  font-style: italic;
  position: relative;
  padding-left: 28px;
}
.pull-quote blockquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--navy);
  border-radius: 2px;
}
.pull-quote-attr {
  margin-top: 20px;
  padding-left: 28px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sl-500);
}
.pull-quote-photo {
  border-radius: var(--radius);
  overflow: hidden;
}
.pull-quote-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  padding: 36px 64px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-logo { height: 22px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-org-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.footer-brand p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  max-width: 240px;
  margin-bottom: 8px;
}
.footer-rso {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.55;
  max-width: 240px;
}
.footer-col h4 {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-col li { margin-bottom: 6px; }
.footer-col a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.42);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1140px;
  margin: 14px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}

/* ── WORK WITH US (services CTA) ─────────────────────────── */
.work-with-us {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.work-with-us h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--sl-900);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.work-with-us p {
  font-size: 0.9375rem;
  color: var(--sl-500);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ── SPEAKER CIRCLES ─────────────────────────────────────── */
.speaker-circle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
  max-width: 920px;
  margin: 52px auto 0;
  text-align: center;
}
.speaker-person { display: flex; flex-direction: column; align-items: center; }
.speaker-photo-circle {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sl-200);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.speaker-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.speaker-photo-circle .speaker-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
}
.speaker-person h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--sl-900);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.speaker-person p {
  font-size: 0.6875rem;
  color: var(--sl-500);
  line-height: 1.5;
  max-width: 160px;
}

/* ── SERVICE VISUAL MINI-CHARTS ──────────────────────────── */
.svc-visual {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--sl-100);
}
.svc-visual-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sl-400);
  margin-bottom: 12px;
  display: block;
}
/* Content calendar */
.cal-grid {
  display: grid;
  grid-template-columns: auto repeat(5, 1fr);
  gap: 3px;
  font-size: 0.625rem;
}
.cal-head {
  font-weight: 700;
  color: var(--sl-400);
  text-align: center;
  padding: 4px 2px;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
}
.cal-row-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--sl-400);
  display: flex;
  align-items: center;
  padding-right: 4px;
  white-space: nowrap;
}
.cal-cell {
  background: var(--sl-100);
  border-radius: 3px;
  padding: 5px 3px;
  text-align: center;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--sl-500);
  line-height: 1.2;
}
.cal-cell.navy { background: var(--navy); color: var(--white); }
.cal-cell.light { background: var(--sl-200); color: var(--sl-700); }
/* Fundraising funnel */
.funnel-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.funnel-row:last-child { margin-bottom: 0; }
.funnel-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--sl-500);
  width: 68px;
  flex-shrink: 0;
  white-space: nowrap;
}
.funnel-track {
  flex: 1;
  height: 8px;
  background: var(--sl-100);
  border-radius: 4px;
  overflow: hidden;
}
.funnel-fill {
  height: 100%;
  background: var(--navy);
  border-radius: 4px;
  opacity: 0.85;
}
.funnel-num {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--sl-900);
  width: 24px;
  text-align: right;
  flex-shrink: 0;
}
/* Field bar chart */
.field-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 52px;
}
.field-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.field-bar {
  width: 100%;
  background: var(--navy);
  border-radius: 3px 3px 0 0;
  opacity: 0.8;
  min-height: 4px;
}
.field-bar-label {
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--sl-400);
  letter-spacing: 0.04em;
}

/* ── CLEAN CLIENT TABLE ───────────────────────────────────── */
.client-table {
  max-width: 900px;
  margin: 52px auto 0;
  border: 1px solid var(--sl-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.client-table-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--sl-200);
  transition: background 0.12s;
}
.client-table-row:last-child { border-bottom: none; }
.client-table-row:hover { background: var(--sl-50); }
.client-table-row:nth-child(even) { background: var(--sl-50); }
.client-table-row:nth-child(even):hover { background: var(--sl-100); }
.client-cname {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--sl-900);
  letter-spacing: -0.01em;
}
.client-crace {
  font-size: 0.8125rem;
  color: var(--sl-500);
  white-space: nowrap;
}
.client-clevel {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.level-federal { background: #EEF2FF; color: #3730A3; }
.level-state   { background: #F0FDF4; color: #15803D; }
.level-local   { background: #FFF7ED; color: #C2410C; }

/* ── JOIN US SECTION ─────────────────────────────────────── */
.join-us-section {
  position: relative;
  padding: 88px 64px;
  text-align: center;
  overflow: hidden;
}
.join-us-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
}
.join-us-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,26,48,0.70);
}
.join-us-content {
  position: relative;
  z-index: 1;
}
.join-us-content h2 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.join-us-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 36px;
}
.join-us-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-pill {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.55);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
}
.btn-pill:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-1px);
}

/* ── RECRUITMENT REDESIGN ────────────────────────────────── */
.recr-numbered-grid {
  max-width: 1140px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--sl-200);
  border: 1px solid var(--sl-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.recr-num-item {
  background: var(--white);
  padding: 40px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: background 0.15s;
}
.recr-num-item:hover { background: var(--sl-50); }
.recr-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--sl-200);
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  width: 56px;
  margin-top: -4px;
}
.recr-num-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sl-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.recr-num-body p {
  font-size: 0.875rem;
  color: var(--sl-500);
  line-height: 1.75;
}

/* Recruitment timeline */
.recr-timeline {
  max-width: 860px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.recr-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--sl-200);
  z-index: 0;
}
.tl-step {
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}
.tl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--sl-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
}
.tl-dot.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.tl-step h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sl-900);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.tl-step p {
  font-size: 0.6875rem;
  color: var(--sl-400);
  line-height: 1.5;
}

/* What We Look For - compact icon rows */
.look-rows {
  max-width: 720px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--sl-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.look-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--sl-200);
  background: var(--white);
  transition: background 0.12s;
}
.look-row:last-child { border-bottom: none; }
.look-row:hover { background: var(--sl-50); }
.look-row-icon {
  width: 36px;
  height: 36px;
  background: var(--sl-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 1px;
}
.look-row-body h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--sl-900);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.look-row-body p {
  font-size: 0.875rem;
  color: var(--sl-500);
  line-height: 1.7;
}

/* ── PROCESS STEPS ───────────────────────────────────────── */
.process-section { padding: 96px 64px; background: var(--navy-dark); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1140px;
  margin: 60px auto 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: calc(12.5% + 26px);
  right: calc(12.5% + 26px);
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  letter-spacing: 0.02em;
}
.process-step h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
}

/* ── CLIENT LOGO STRIPS ──────────────────────────────────── */
.client-logo-rows {
  max-width: 900px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.client-logo-rows img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--sl-200);
}

/* ── SERVICES IMPACT STRIP ───────────────────────────────── */
.impact-strip {
  background: var(--sl-50);
  border-top: 1px solid var(--sl-200);
  border-bottom: 1px solid var(--sl-200);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.impact-item {
  padding: 28px 52px;
  text-align: center;
  border-right: 1px solid var(--sl-200);
}
.impact-item:last-child { border-right: none; }
.impact-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--sl-900);
  letter-spacing: -0.035em;
  line-height: 1;
}
.impact-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sl-400);
  margin-top: 8px;
}

/* ── PHOTO CTA (dark with background photo) ──────────────── */
.photo-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 64px;
}
.photo-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.photo-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,26,48,0.82);
}
.photo-cta-content {
  position: relative;
  z-index: 1;
}
.photo-cta h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.photo-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 36px;
}

/* ── RECRUITMENT CALENDAR ────────────────────────────────── */
.recr-calendar {
  max-width: 980px;
  margin: 52px auto 0;
  border: 1px solid var(--sl-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.cal-scroll { overflow-x: auto; }
.cal-inner { min-width: 630px; }
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--navy);
}
.cal-weekdays span {
  padding: 12px 6px;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.cal-month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--sl-200);
}
.cal-day {
  background: var(--white);
  min-height: 128px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cal-day.has-event { background: var(--sl-50); }
.cal-day-head {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 2px;
}
.cal-day-num {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--sl-900);
}
.cal-day-month {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--sl-400);
  text-transform: uppercase;
}
.cal-event {
  display: block;
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 5px;
  padding: 6px 7px;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.cal-event:hover { background: #253d6a; transform: translateY(-1px); }
.cal-event-urgent { background: #B91C1C; }
.cal-event-urgent:hover { background: #991B1B; }
.cal-event-name {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
}
.cal-event-time {
  display: block;
  font-size: 0.5875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-top: 1px;
}

/* Calendar event detail modal */
.cal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cal-modal.open { display: flex; }
.cal-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,26,48,0.6);
}
.cal-modal-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.cal-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--sl-400);
  cursor: pointer;
  padding: 4px;
}
.cal-modal-close:hover { color: var(--sl-900); }
.cal-modal-card .eyebrow { margin-bottom: 8px; }
.cal-modal-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sl-900);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  line-height: 1.25;
}
.cal-modal-row {
  font-size: 0.875rem;
  color: var(--sl-700);
  margin-bottom: 10px;
}
.cal-modal-gcal {
  display: block;
  text-align: center;
  margin-top: 24px;
  width: 100%;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .navbar { padding: 0 32px; }
  section { padding: 80px 32px; }
  .about-grid { gap: 48px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-secondary-grid { grid-template-columns: repeat(2, 1fr); }
  .pull-quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .member-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .apps-closed { padding: 20px 32px; }
  .cta-band { padding: 80px 32px; }
  .page-header { padding: 64px 32px 56px; }
  .page-hero-content { padding: 48px 32px; }
  .hero-content { padding: 56px 32px; }
  .process-section { padding: 80px 32px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .photo-cta { padding: 96px 32px; }
  .impact-item { padding: 24px 36px; }
  .speaker-circle-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .recr-numbered-grid { grid-template-columns: 1fr; }
  .recr-timeline { grid-template-columns: 1fr; gap: 24px; }
  .recr-timeline::before { display: none; }
  .client-table-row { grid-template-columns: 1fr; gap: 6px; }
  .recr-calendar { margin: 40px auto 0; }
  .cal-day { min-height: 116px; }
}

@media (max-width: 768px) {
  body { padding-top: 64px; }
  .navbar { height: 64px; padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--sl-200);
    padding: 12px 20px 16px;
    gap: 2px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .nav-toggle { display: flex; }
  section { padding: 64px 20px; }
  .hero-content { padding: 40px 20px; }
  .hero-content h1 { font-size: 2.25rem; }
  .stats-strip { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:last-child { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .svc-secondary-grid { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .speaker-grid { grid-template-columns: 1fr; }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .look-grid { grid-template-columns: 1fr; }
  .pull-quote-grid { grid-template-columns: 1fr; gap: 32px; }
  .pull-quote-photo { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .apps-closed { flex-direction: column; align-items: flex-start; padding: 20px; }
  .cta-band { padding: 72px 20px; }
  .page-header { padding: 56px 20px 48px; }
  .page-hero-content { padding: 40px 20px; }
  .t-card { padding: 32px 24px 28px; }
  .t-btn { display: none; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .impact-item { padding: 20px 28px; border-right: none; border-bottom: 1px solid var(--sl-200); }
  .impact-item:last-child { border-bottom: none; }
  .impact-strip { flex-direction: column; }
  .photo-cta { padding: 80px 20px; }
  .client-logo-rows { padding: 0 4px; }
  .recr-calendar { margin: 36px -20px 0; border-left: none; border-right: none; border-radius: 0; }
  .cal-inner { min-width: 560px; }
  .cal-day { min-height: 100px; padding: 6px; }
  .cal-day-num { font-size: 0.75rem; }
  .cal-event { padding: 5px 6px; }
  .cal-event-name { font-size: 0.625rem; }
  .cal-event-time { font-size: 0.5375rem; }
  .cal-modal-card { padding: 28px 22px 24px; }
}
