@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0d1b2e;
  --navy-mid: #162540;
  --charcoal: #3a3f52;
  --blue: #3a7dbf;
  --blue-light: #5a9dd4;
  --blue-bright: #4a8fcb;
  --blue-pale: #e8f2fb;
  --cream: #f5f7fa;
  --white: #ffffff;
  --gray-light: #e8ecf2;
  --gray-mid: #7a869a;
  --text: #1a2035;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV: White background so logo is fully visible ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  padding: 0 2.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 0 var(--gray-light), 0 4px 20px rgba(13,27,46,0.06);
  overflow: visible;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 6px 0;
}
.nav-logo img {
  height: 54px;
  width: auto;
  display: block;
  max-width: 290px;
  object-fit: contain;
}


.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--blue-bright) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); transition: var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Diagonal split background */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(160deg, #162540 0%, #0d1b2e 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  border-left: 1px solid rgba(74,143,203,0.15);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(58,125,191,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(58,125,191,0.08) 0%, transparent 45%);
  z-index: 1;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(58,125,191,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,125,191,0.06) 1px, transparent 1px);
  background-size: 55px 55px;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

.hero-left {}
.hero-right {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--blue-light);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--blue-light); }

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  max-width: 460px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
}
.stat {}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--blue-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ── HERO GRAPHIC ── */
.hero-graphic {
  position: relative;
  width: 100%;
  max-width: 680px;
}

.hero-graphic svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 80px rgba(58,125,191,0.4));
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: 4px;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,125,191,0.35); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: 4px;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--blue-light); color: var(--blue-light); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-navy:hover { background: var(--charcoal); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--blue);
  padding: 0.85rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
  transition: var(--transition);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* ── TICKER ── */
.searches-ticker { overflow: hidden; padding: 1.4rem 0; border-top: 1px solid rgba(58,125,191,0.2); border-bottom: 1px solid rgba(58,125,191,0.2); }
.ticker-inner { display: flex; gap: 3rem; animation: ticker 32s linear infinite; white-space: nowrap; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.42); flex-shrink: 0; }
.ticker-item span { color: var(--blue-light); margin-right: 0.5rem; }

/* ── SECTIONS ── */
.section { padding: 6rem 2.5rem; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 6rem 2.5rem; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark .section { color: var(--white); }

.section-eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem;
}
.section-eyebrow::before { content: ''; display: inline-block; width: 26px; height: 1px; background: var(--blue); }
.section-dark .section-eyebrow { color: var(--blue-light); }
.section-dark .section-eyebrow::before { background: var(--blue-light); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 400; line-height: 1.15; margin-bottom: 1.5rem; color: inherit;
}
.section-title em { font-style: italic; color: var(--blue); }
.section-dark .section-title em { color: var(--blue-light); }

.section-lead { font-size: 1rem; color: var(--gray-mid); max-width: 560px; font-weight: 300; line-height: 1.85; }
.section-dark .section-lead { color: rgba(255,255,255,0.52); }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-light);
  margin-top: 3.5rem;
  background: var(--gray-light);
  gap: 1px;
}
.service-card { background: var(--white); padding: 2.25rem; transition: var(--transition); }
.service-card:hover { background: var(--blue-pale); }
.service-icon {
  width: 40px; height: 40px;
  border: 1.5px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--blue); font-size: 1rem; border-radius: 4px;
}
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--navy); }
.service-card p { font-size: 0.87rem; color: var(--gray-mid); line-height: 1.72; }

/* ── SPECIALTIES ── */
.specialties-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 4rem; }
.specialty-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.specialty-list li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.88rem; color: rgba(255,255,255,0.78); }
.specialty-list li::before { content: ''; width: 5px; height: 5px; background: var(--blue-light); flex-shrink: 0; border-radius: 50%; }

/* ── CTA BAND ── */
.cta-band { background: var(--blue); padding: 4.5rem 2.5rem; text-align: center; }
.cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.78); margin-bottom: 2rem; font-size: 1rem; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card { text-align: center; }
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--white);
  border: 2px solid rgba(58,125,191,0.25);
}
.team-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.team-card p { font-size: 0.8rem; color: var(--gray-mid); }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); padding: 10rem 2.5rem 5rem; position: relative; overflow: hidden; }.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 75% 50%, rgba(58,125,191,0.12) 0%, transparent 60%); }
.page-hero-content { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 300; color: var(--white); line-height: 1.1; }
.page-hero p { color: rgba(255,255,255,0.52); font-size: 1rem; margin-top: 1rem; max-width: 480px; font-weight: 300; }

/* ── CONTENT ── */
.content-area { max-width: 1200px; margin: 0 auto; padding: 5rem 2.5rem; }
.prose h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 500; color: var(--navy); margin: 2.5rem 0 1rem; }
.prose h3 { font-size: 0.85rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.08em; margin: 2rem 0 0.75rem; }
.prose p { margin-bottom: 1.25rem; color: #3a4060; font-size: 0.96rem; }
.prose ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: 0.5rem; color: #3a4060; font-size: 0.96rem; }
.prose strong { color: var(--navy); font-weight: 600; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); }
.form-field input, .form-field textarea, .form-field select {
  padding: 0.8rem 1rem; border: 1px solid var(--gray-light); background: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.94rem; color: var(--navy);
  outline: none; border-radius: 4px; transition: border-color var(--transition);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(58,125,191,0.1); }
.form-field textarea { resize: vertical; min-height: 120px; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 36px; height: 36px; border: 1.5px solid var(--blue); display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; margin-top: 2px; border-radius: 4px; }
.contact-detail h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 0.25rem; }
.contact-detail p { font-size: 0.94rem; color: var(--navy); margin: 0; }

/* ── REFERRAL ── */
.referral-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.referral-step { background: var(--white); border: 1px solid var(--gray-light); padding: 2.5rem; border-radius: 4px; position: relative; box-shadow: 0 2px 12px rgba(13,27,46,0.04); }
.step-number { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 700; color: rgba(58,125,191,0.08); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
.referral-step h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--navy); margin-bottom: 0.7rem; }
.referral-step p { font-size: 0.88rem; color: var(--gray-mid); }

/* ── TOOLS ── */
.tools-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; color: var(--navy); margin: 2.5rem 0 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--gray-light); }
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 0.85rem; margin-bottom: 0.85rem; }
.tool-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 1.1rem; background: var(--white); border: 1px solid var(--gray-light); text-decoration: none; color: var(--navy); font-size: 0.86rem; font-weight: 500; transition: var(--transition); border-radius: 4px; box-shadow: 0 1px 4px rgba(13,27,46,0.04); }
.tool-link:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }
.tool-link::before { content: '↓'; color: var(--blue); font-size: 1rem; flex-shrink: 0; }

/* ── CLIENTS ── */
.clients-note { background: var(--navy); color: rgba(255,255,255,0.75); padding: 2.75rem 3rem; border-left: 3px solid var(--blue); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; line-height: 1.75; border-radius: 0 4px 4px 0; }

/* ── NAICS ── */
.naics-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.naics-tag { background: var(--blue-pale); border: 1px solid rgba(58,125,191,0.25); padding: 0.4rem 0.9rem; font-size: 0.78rem; font-weight: 600; color: var(--navy); border-radius: 4px; }

/* ── DIVIDER ── */
.gold-divider { width: 44px; height: 2px; background: var(--blue); margin: 1.5rem 0 2rem; border-radius: 2px; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 4rem 2.5rem 2rem; border-top: 1px solid rgba(58,125,191,0.12); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { margin-bottom: 1.25rem; }
.footer-logo img { height: 60px; width: auto; max-width: 280px; display: block; }
.footer-tagline { font-size: 0.83rem; line-height: 1.75; color: rgba(255,255,255,0.36); max-width: 280px; }
.footer-col h4 { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { color: rgba(255,255,255,0.42); text-decoration: none; font-size: 0.86rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom { padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.77rem; color: rgba(255,255,255,0.2); }
.footer-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.28); }
.footer-badge-dot { width: 5px; height: 5px; background: var(--blue); border-radius: 50%; }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   RESPONSIVE — Full Mobile Overhaul
   ════════════════════════════════════════ */

/* ── Tablet: 1100px and below ── */
@media (max-width: 1100px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    gap: 0;
    border-top: 1px solid var(--gray-light);
    box-shadow: 0 8px 24px rgba(13,27,46,0.12);
    z-index: 999;
  }
  .nav-links.open li { border-bottom: 1px solid var(--gray-light); }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a {
    display: block;
    padding: 1rem 0;
    font-size: 0.95rem;
    color: var(--charcoal);
  }
  .nav-links.open .nav-cta {
    display: inline-block !important;
    margin-top: 1rem;
    text-align: center;
    padding: 0.75rem 1.5rem !important;
  }

  /* Hero */
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { display: none; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }

  /* Grids */
  .specialties-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .referral-steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .specialty-list { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile: 768px and below ── */
@media (max-width: 768px) {
  /* Global spacing */
  .section { padding: 4rem 1.25rem; }
  .section-full { padding: 4rem 1.25rem; }
  .content-area { padding: 3rem 1.25rem; }

  /* Nav */
  nav { padding: 0 1.25rem; height: 68px; }
  .nav-logo img { height: 36px; }
  .nav-links.open { top: 68px; padding: 0 1.25rem; }

  /* Hero */
  .hero { min-height: auto; padding-top: 68px; }
  .hero-content { padding: 3rem 1.25rem 2rem; grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-eyebrow { font-size: 0.65rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions a { width: 100%; text-align: center; }
  .hero-stats { gap: 1.25rem; }
  .stat-num { font-size: 1.8rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.75rem; }

  /* Specialties */
  .specialties-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .specialty-list { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .specialty-list li { font-size: 0.85rem; }

  /* Section titles */
  .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .page-hero { padding: 8rem 1.25rem 3.5rem; }
  .page-hero h1 { font-size: clamp(2rem, 7vw, 3rem); }

  /* Referral */
  .referral-steps { grid-template-columns: 1fr; gap: 1rem; }
  .referral-step { padding: 1.75rem; }

  /* Tools */
  .tools-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* CTA band */
  .cta-band { padding: 3rem 1.25rem; }
  .cta-band h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-logo img { height: 40px; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding-top: 1.25rem; }

  /* Federal page NAICS tags */
  .naics-grid { gap: 0.4rem; }
  .naics-tag { font-size: 0.75rem; padding: 0.35rem 0.7rem; }

  /* Clients note */
  .clients-note { padding: 1.75rem 2rem; font-size: 1.1rem; }

  /* Prose */
  .prose h2 { font-size: 1.6rem; }

  /* Federal page two-col */
  div[style*="grid-template-columns: 1fr 1fr"] {
    display: block !important;
  }
  div[style*="grid-template-columns: 1fr 1fr"] > div {
    margin-bottom: 1.5rem;
  }
}

/* ── Small mobile: 480px and below ── */
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .specialty-list { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 0.75rem; }
  .stat { text-align: left; }
  .stat-num { font-size: 1.6rem; }
  .hero-eyebrow { flex-wrap: wrap; }
  .service-card h3 { font-size: 1.1rem; }
}
