/* ══════════════════════════════════════════════════════════
   AMERICAL PATROL — PREMIUM SLATE
   Mobile-first. Polished at 375px before scaling up.
   Tokens map 1:1 to design-tokens.css.
   Brand fonts loaded locally from fonts/ (variable axes preserved).
   ══════════════════════════════════════════════════════════ */

@font-face {
  font-family: "Sora"; font-display: swap;
  src: url("/assets/fonts/Sora_wght_.ttf") format("truetype-variations"),
       url("/assets/fonts/Sora_wght_.ttf") format("truetype");
  font-weight: 100 900; font-style: normal;
}
@font-face {
  font-family: "DM Sans"; font-display: swap;
  src: url("/assets/fonts/DMSans_opsz_wght_.ttf") format("truetype-variations"),
       url("/assets/fonts/DMSans_opsz_wght_.ttf") format("truetype");
  font-weight: 100 1000; font-style: normal;
}
@font-face {
  font-family: "DM Sans"; font-display: swap;
  src: url("/assets/fonts/DMSans-Italic_opsz_wght_.ttf") format("truetype-variations"),
       url("/assets/fonts/DMSans-Italic_opsz_wght_.ttf") format("truetype");
  font-weight: 100 1000; font-style: italic;
}
@font-face {
  font-family: "Inter"; font-display: swap;
  src: url("/assets/fonts/Inter.ttf") format("truetype-variations"),
       url("/assets/fonts/Inter.ttf") format("truetype");
  font-weight: 100 900; font-style: normal;
}

:root {
  /* — slate scale — */
  --slate-950: #0c1018;
  --slate-900: #111827;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white:     #ffffff;

  /* — gold accents — */
  --gold-600: #ca8a04;
  --gold-500: #d4a843;
  --gold-400: #e2bf65;

  /* — type — */
  --font-display: 'Sora', system-ui, -apple-system, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-accent:  'Inter', system-ui, -apple-system, sans-serif;

  /* — radii — */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* — elevation — */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-gold: 0 4px 20px rgba(212,168,67,0.30);

  /* — layout — */
  --max-w: 1320px;
  --gutter: 24px;

  /* — focus ring — */
  --ring: 0 0 0 3px rgba(212,168,67,0.45);
}
@media (min-width: 768px)  { :root { --gutter: 40px; } }
@media (min-width: 1024px) { :root { --gutter: 48px; } }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
#services, #industries { scroll-margin-top: 96px; }
body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* leave room for sticky mobile call bar */
  padding-bottom: 0;
}
@media (max-width: 767px) { body { padding-bottom: 64px; } }

img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ── focus rings on every interactive element ── */
a:focus-visible, button:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}

/* ── reveal animation ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
/* No-JS / no-scripting safety net: reveal animations depend on JS adding .visible.
   Without this, a JS-blocked or headless render leaves all .reveal content invisible. */
@media (scripting: none) { .reveal { opacity: 1 !important; transform: none !important; } }

/* — shared — */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-500); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--gold-500); flex-shrink: 0; }
.eyebrow.center { justify-content: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -1.2px;
  line-height: 1.08;
}

.section-sub {
  font-size: 16px;
  color: var(--slate-600);
  line-height: 1.7;
  max-width: 56ch;
}

/* ════════════════════════════════════
   NAV — sticky frosted glass
   ════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(15,23,42,0.06);
  transition: box-shadow .35s ease;
}
.nav.scrolled { box-shadow: 0 1px 30px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 64px;
  padding: 0 var(--gutter);
  display: flex; align-items: center; gap: 16px;
}
.nav-logo {
  height: 36px; width: auto;
}
.nav-links { display: none; flex: 1; gap: 2px; margin-left: 32px; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 500;
  color: var(--slate-700);
  padding: 8px 14px; border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--slate-900); background: var(--slate-50); }
.nav-links a[aria-current="page"] { color: var(--slate-900); font-weight: 600; }
.nav-links a[aria-current="page"]::after {
  content: ""; display: block;
  width: 16px; height: 2px; border-radius: 2px;
  background: var(--gold-500);
  margin: 4px auto 0;
}
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: none; align-items: center; gap: 8px;
  font-family: var(--font-accent); font-size: 13px; font-weight: 600;
  color: var(--slate-800);
  font-variant-numeric: tabular-nums; letter-spacing: 0.01em;
}
.nav-phone svg { color: var(--gold-500); flex-shrink: 0; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--slate-900); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  padding: 10px 18px; border-radius: var(--r-sm);
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.nav-cta:hover { background: var(--slate-800); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.18); }
.nav-cta:active { transform: translateY(0); box-shadow: 0 1px 3px rgba(0,0,0,0.12); transition-duration: .08s; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  color: var(--slate-800);
  border-radius: var(--r-sm);
}
.nav-toggle:hover { background: var(--slate-50); }

@media (min-width: 900px) {
  .nav-inner { height: 76px; }
  .nav-logo { height: 44px; }
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}
@media (min-width: 1100px) {
  .nav-phone { display: inline-flex; }
}

/* mobile menu sheet */
.nav-sheet {
  position: fixed; inset: 64px 0 0 0; z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px var(--gutter);
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .25s, opacity .25s;
}
.nav-sheet.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-sheet a {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--slate-900);
  padding: 14px 4px;
  border-bottom: 1px solid var(--slate-100);
}
.nav-sheet a:last-child { border-bottom: 0; }
.nav-sheet .sheet-call {
  margin-top: 16px;
  background: var(--slate-900); color: var(--white);
  text-align: center; border-radius: var(--r-sm);
  border-bottom: 0;
}
@media (min-width: 900px) { .nav-sheet { display: none; } }


/* ════════════════════════════════════
   1. HERO — cinematic split
   ════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--slate-950);
  padding-top: 64px; /* nav offset */
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}
.hero-content {
  padding: 56px var(--gutter) 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-500); margin-bottom: 24px;
  opacity: 0; animation: fadeUp .8s ease .25s forwards;
}
.hero-eyebrow::before { content: ""; width: 36px; height: 1.5px; background: var(--gold-500); }
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 8vw, 64px);
  line-height: 1.02; letter-spacing: -1.6px;
  color: var(--white);
  margin-bottom: 24px;
  text-wrap: balance;
  opacity: 0; animation: fadeUp .8s ease .4s forwards;
}
.hero h1 .thin { font-weight: 300; color: var(--slate-400); display: block; }
.hero-sub {
  font-size: 16px; line-height: 1.7;
  color: var(--slate-300);
  max-width: 46ch;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp .8s ease .55s forwards;
}
.hero-actions {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp .8s ease .7s forwards;
}
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold-500); color: var(--slate-950);
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  padding: 16px 28px; border-radius: var(--r-sm);
  letter-spacing: 0.03em; text-transform: uppercase;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,168,67,0.40); }
.btn-gold:active { transform: translateY(0); box-shadow: var(--shadow-gold); transition-duration: .08s; }
.btn-outline-w {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: transparent; color: var(--white);
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  padding: 15px 28px; border-radius: var(--r-sm);
  letter-spacing: 0.03em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background .25s, border-color .25s;
}
.btn-outline-w:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.32); }
@media (min-width: 480px) { .hero-actions { flex-direction: row; flex-wrap: wrap; } }

.hero-creds {
  display: flex; flex-wrap: wrap; gap: 8px;
  opacity: 0; animation: fadeUp .8s ease .85s forwards;
}
.cred-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 7px 14px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-size: 11.5px; font-weight: 600;
  color: var(--slate-200); letter-spacing: 0.02em;
}
.cred-pill svg { color: var(--gold-500); flex-shrink: 0; }

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--slate-900);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0; animation: scaleIn 1.2s cubic-bezier(.16,1,.3,1) .35s forwards;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top,    var(--slate-950) 0%, transparent 35%),
    linear-gradient(to bottom, var(--slate-950) 0%, transparent 25%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero { min-height: 100vh; padding-top: 76px; }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 76px);
  }
  .hero-content {
    padding: 64px 56px 64px var(--gutter);
    padding-left: max(var(--gutter), calc((100vw - var(--max-w)) / 2 + var(--gutter)));
  }
  .hero-photo { aspect-ratio: auto; height: auto; }
  .hero-photo::after {
    background:
      linear-gradient(to right, var(--slate-950) 0%, transparent 28%),
      linear-gradient(to bottom, var(--slate-950) 0%, transparent 18%);
  }
  .hero h1 { font-size: clamp(44px, 4.4vw, 64px); letter-spacing: -2.4px; }
  .hero-sub { font-size: 17.5px; max-width: 44ch; margin-bottom: 40px; }
}


/* ════════════════════════════════════
   2. TRUST STRIP — floating overlap
   ════════════════════════════════════ */
.trust-strip {
  position: relative; z-index: 20;
  margin-top: -32px;
  padding: 0 var(--gutter);
}
.trust-card {
  max-width: 1100px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  min-width: 0;
}
.trust-ic {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--slate-50); border: 1px solid var(--slate-200);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-500);
}
.trust-ic svg { width: 20px; height: 20px; }
.trust-text {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  color: var(--slate-900);
  line-height: 1.2;
  min-width: 0;
  white-space: nowrap;
}
.trust-text span {
  display: block;
  font-size: 11px; font-weight: 500;
  color: var(--slate-500);
  letter-spacing: 0.02em;
  margin-top: 3px;
  white-space: normal;
}
.trust-logo {
  height: 34px; width: auto;
  object-fit: contain; object-position: left center;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .trust-logo { height: 38px; } }
.trust-divider { display: none; }

@media (min-width: 768px) {
  .trust-strip { margin-top: -40px; padding: 0 var(--gutter); }
  .trust-card {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 24px;
    padding: 24px 36px;
  }
  .trust-divider {
    display: block;
    width: 1px; height: 40px;
    background: var(--slate-200);
  }
}
@media (min-width: 1024px) {
  .trust-card { padding: 28px 48px; }
  .trust-ic { width: 44px; height: 44px; }
  .trust-text { font-size: 14px; }
}


/* ════════════════════════════════════
   3. SERVICES — editorial alternating rows
   ════════════════════════════════════ */
.services {
  background: var(--white);
  padding: 80px 0 56px;
}
.services-header {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gutter) 48px;
}
.services-header h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 6vw, 48px);
  letter-spacing: -1.4px; line-height: 1.06;
  color: var(--slate-900);
  margin-bottom: 16px;
  text-wrap: balance;
}
.services-header p {
  font-size: 16.5px; color: var(--slate-600); line-height: 1.7;
  max-width: 56ch;
}

.svc-row {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--slate-100);
}
.svc-row:last-child { border-bottom: 1px solid var(--slate-100); }
.svc-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--slate-100);
}
.svc-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s cubic-bezier(.16,1,.3,1);
}
.svc-row:hover .svc-photo img { transform: scale(1.05); }
.svc-text {
  padding: 36px var(--gutter) 48px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.svc-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 72px);
  font-weight: 800;
  color: var(--slate-100);
  letter-spacing: -2.5px; line-height: 0.9;
  margin-bottom: 16px;
}
.svc-text h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4.2vw, 30px);
  font-weight: 800; letter-spacing: -0.7px; line-height: 1.15;
  color: var(--slate-900);
  margin-bottom: 14px;
}
.svc-text p {
  font-size: 16px; color: var(--slate-700); line-height: 1.75;
}
.svc-features { list-style: none; padding: 0; margin: 18px 0 24px; }
.svc-features li {
  font-size: 14.5px; color: var(--slate-700); font-weight: 500;
  padding: 5px 0;
  display: flex; align-items: flex-start; gap: 12px;
  line-height: 1.55;
}
.svc-features li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-500); flex-shrink: 0;
  margin-top: 9px;
}
.svc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--slate-900); letter-spacing: 0.02em;
  text-transform: uppercase;
  align-self: flex-start;
  padding: 6px 0;
  border-bottom: 1.5px solid var(--slate-900);
  transition: color .25s, gap .25s, border-color .25s;
}
.svc-cta:hover { color: var(--gold-600); border-color: var(--gold-500); gap: 14px; }
.svc-cta svg { transition: transform .25s; }
.svc-cta:hover svg { transform: translateX(3px); }

@media (min-width: 900px) {
  .services { padding: 120px 0 80px; }
  .services-header { padding: 0 var(--gutter) 72px; }
  .svc-row {
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
  }
  .svc-row.reverse .svc-photo { order: 2; }
  .svc-row.reverse .svc-text  { order: 1; }
  .svc-photo { aspect-ratio: auto; height: 100%; }
  .svc-text { padding: 64px clamp(32px, 5vw, 80px); }
}


/* ════════════════════════════════════
   4. WHY — slate-50 bullets
   ════════════════════════════════════ */
.why {
  background: var(--slate-50);
  padding: 80px var(--gutter);
}
.why-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
.why-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 5.5vw, 42px);
  letter-spacing: -1.2px; line-height: 1.08;
  color: var(--slate-900);
  text-wrap: balance;
}
.why-list { display: grid; grid-template-columns: 1fr; gap: 0; }
.why-item {
  padding: 24px 0;
  border-top: 1px solid var(--slate-200);
}
.why-item:last-child { border-bottom: 1px solid var(--slate-200); }
.why-item h3 {
  display: flex; align-items: flex-start; gap: 14px;
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.2px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.why-item h3::before {
  content: ""; flex-shrink: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-500);
  margin-top: 10px;
}
.why-item p {
  font-size: 15px; color: var(--slate-600); line-height: 1.7;
  padding-left: 22px;
}

@media (min-width: 768px) {
  .why { padding: 100px var(--gutter); }
  .why-inner { grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; }
  .why-list { padding-top: 4px; }
}
@media (min-width: 1024px) {
  .why { padding: 120px var(--gutter); }
}


/* ════════════════════════════════════
   5. STATS BAND — full-width dark
   ════════════════════════════════════ */
.stats-band {
  background: var(--slate-900);
  padding: 64px var(--gutter);
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(212,168,67,0.06), transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(212,168,67,0.04), transparent 60%);
  pointer-events: none;
}
.stats-grid {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px 16px;
  text-align: center;
}
.stat-item { padding: 12px 0; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(48px, 12vw, 72px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2.5px; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-value .sfx {
  color: var(--gold-500);
  font-weight: 300;
  font-size: 0.55em;
  letter-spacing: -1px;
  margin-left: 2px;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  color: var(--slate-400);
  margin-top: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .stats-band { padding: 80px var(--gutter); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; }
  .stat-label { font-size: 13px; }
}


/* ════════════════════════════════════
   6. ABOUT — full-bleed photo + dark panel (NOT a card)
   ════════════════════════════════════ */
.about {
  display: grid; grid-template-columns: 1fr;
}
.about-photo { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--slate-200); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-panel {
  background: var(--slate-900);
  padding: 56px var(--gutter) 72px;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--slate-200);
  position: relative; overflow: hidden;
}
.about-panel::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 500px at 80% 0%, rgba(212,168,67,0.05), transparent 60%);
  pointer-events: none;
}
.about-panel > * { position: relative; z-index: 1; }
.about-panel h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 5.2vw, 38px);
  letter-spacing: -1px; line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  text-wrap: balance;
}
.about-panel p {
  font-size: 16px; line-height: 1.8;
  color: var(--slate-300);
  margin-bottom: 16px;
}
.about-panel p strong { color: var(--white); font-weight: 600; }
.about-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 16px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--gold-500); letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 1.5px solid var(--gold-500);
  transition: color .25s, gap .25s;
  align-self: flex-start;
}
.about-cta:hover { color: var(--gold-400); gap: 14px; }
.about-badges {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.about-badges img {
  height: 46px; width: auto;
  border-radius: 6px;
  opacity: 0.9;
  transition: opacity .2s;
}
.about-badges img:hover { opacity: 1; }

@media (min-width: 900px) {
  .about { grid-template-columns: 1fr 1fr; min-height: 620px; }
  .about-photo { aspect-ratio: auto; height: 100%; }
  .about-panel { padding: 80px clamp(40px, 5vw, 72px); }
}


/* ════════════════════════════════════
   MILITARY HERITAGE — Americal Division
   ════════════════════════════════════ */
.heritage {
  position: relative; overflow: hidden;
  padding: 76px var(--gutter);
  background:
    radial-gradient(ellipse 60% 55% at 80% 18%, rgba(212,168,67,0.08), transparent 62%),
    linear-gradient(165deg, var(--slate-950) 0%, var(--slate-900) 55%, var(--slate-950) 100%);
}
/* gold hairline separating the band from the founder section above */
.heritage::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.4), transparent);
  pointer-events: none;
}
.heritage-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 48px;
  align-items: center;
}

/* — story column — */
.heritage-text .eyebrow { color: var(--gold-500); }
.heritage-text h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 5.4vw, 42px);
  letter-spacing: -1.2px; line-height: 1.08;
  color: var(--white); margin: 14px 0 20px; text-wrap: balance;
}
.heritage-text h2 .gold { color: var(--gold-500); }
.heritage-lead {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(17px, 2.2vw, 20px); line-height: 1.5;
  color: var(--slate-100); margin-bottom: 18px; max-width: 54ch;
}
.heritage-text p {
  font-size: 15.5px; line-height: 1.8; color: var(--slate-400);
  margin-bottom: 14px; max-width: 58ch;
}
.heritage-facts {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.heritage-facts li {
  display: flex; flex-direction: column; gap: 3px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 2px solid var(--gold-500);
  border-radius: var(--r-sm);
  padding: 11px 16px;
  font-size: 12px; line-height: 1.3; color: var(--slate-300);
}
.heritage-facts li b {
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: var(--white); letter-spacing: -0.2px;
}

/* — emblem showcase — */
.heritage-emblem { position: relative; }
.heritage-emblem-frame {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 56px 32px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse 62% 56% at 50% 44%, rgba(40,92,168,0.30), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.06);
}
/* faint oversized watermark of the patch bleeding off the lower-right */
.heritage-emblem-frame::before {
  content: ""; position: absolute; right: -16%; bottom: -20%;
  width: 80%; height: 124%;
  background: url('/images/americal-division-patch.png') no-repeat center / contain;
  opacity: 0.05; transform: rotate(-8deg); pointer-events: none;
}
.heritage-emblem-frame img {
  position: relative; z-index: 1;
  width: auto; height: 240px; max-width: 100%; object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.55));
}
.heritage-emblem-cap {
  margin: 18px auto 0; max-width: 40ch; text-align: center;
  font-size: 13.5px; line-height: 1.7; color: var(--slate-400);
}
.heritage-emblem-cap b { color: var(--gold-500); font-weight: 600; }

@media (min-width: 900px) {
  .heritage { padding: 108px var(--gutter); }
  .heritage-inner { grid-template-columns: 1.12fr 0.88fr; gap: 72px; }
  .heritage-emblem-frame { padding: 72px 40px; }
  .heritage-emblem-frame img { height: 300px; }
}


/* ════════════════════════════════════
   LOCAL KNOWLEDGE — dark gold-accent card (city pages)
   First content beat after the hero. A contained dark panel on the light
   intro section: same premium dark+gold language as .heritage / .stats-band,
   but separated from the dark hero above and the white trust strip below.
   ════════════════════════════════════ */
.local-knowledge-sec { background: var(--white); }
.lk-card {
  position: relative; overflow: hidden;
  max-width: 980px; margin: 0 auto;
  padding: 40px 26px 36px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse 70% 60% at 82% 12%, rgba(212,168,67,0.10), transparent 60%),
    linear-gradient(165deg, var(--slate-950) 0%, var(--slate-900) 55%, var(--slate-950) 100%);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.06);
}
/* gold hairline across the top edge */
.lk-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.55), transparent);
  pointer-events: none;
}
.lk-card .eyebrow { color: var(--gold-500); margin-bottom: 14px; }
.lk-h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(24px, 5vw, 36px);
  letter-spacing: -1px; line-height: 1.1;
  color: var(--white); margin: 0 0 18px; text-wrap: balance;
}
.lk-h2 .gold { color: var(--gold-500); }
.lk-prose {
  font-size: 16px; line-height: 1.85; color: var(--slate-300);
  max-width: 64ch; margin: 0;
}
.lk-pills {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px;
}
.lk-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-pill);
  padding: 9px 16px 9px 13px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 13px; letter-spacing: 0.01em; color: var(--slate-100);
}
.lk-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.18);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .lk-card { padding: 56px 52px 48px; }
}


/* ════════════════════════════════════
   7. INDUSTRIES — photo cards w/ hover reveal
   ════════════════════════════════════ */
.industries {
  background: var(--slate-50);
  padding: 80px var(--gutter);
}
.industries-inner { max-width: var(--max-w); margin: 0 auto; }
.industries-head { margin-bottom: 40px; }
.industries-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 5.5vw, 42px);
  letter-spacing: -1.2px; line-height: 1.08;
  color: var(--slate-900);
  margin-bottom: 14px;
  text-wrap: balance;
}
.ind-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.ind-card {
  position: relative; display: block;
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--slate-900);
}
.ind-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 5s cubic-bezier(.16,1,.3,1);
}
.ind-card:hover img,
.ind-card:focus-visible img { transform: scale(1.06); }
.ind-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(12,16,24,0.92) 0%,
    rgba(12,16,24,0.45) 45%,
    rgba(12,16,24,0.10) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 22px;
  transition: background .35s;
}
.ind-card:hover .ind-overlay {
  background: linear-gradient(to top,
    rgba(12,16,24,0.96) 0%,
    rgba(12,16,24,0.55) 50%,
    rgba(12,16,24,0.18) 100%);
}
.ind-card h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.ind-card p {
  font-size: 13px; color: rgba(255,255,255,0.72);
  line-height: 1.5;
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height .35s, opacity .35s;
}
.ind-card:hover p,
.ind-card:focus-visible p { max-height: 80px; opacity: 1; }
.ind-arrow {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s, transform .25s, background .25s;
}
.ind-arrow svg { width: 16px; height: 16px; }
.ind-card:hover .ind-arrow,
.ind-card:focus-visible .ind-arrow { opacity: 1; transform: translateY(0); }
.ind-card:hover .ind-arrow { background: var(--gold-500); color: var(--slate-950); }

@media (min-width: 600px) { .ind-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .industries { padding: 120px var(--gutter); }
  .industries-head { margin-bottom: 56px; }
  .ind-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .ind-card { aspect-ratio: 3 / 4; }
}


/* ════════════════════════════════════
   8. TESTIMONIALS — featured + small cards
   ════════════════════════════════════ */
.testimonials {
  background: var(--white);
  padding: 80px var(--gutter);
}
.t-inner { max-width: 1100px; margin: 0 auto; }
.t-head { text-align: center; margin-bottom: 48px; }
.t-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 5.5vw, 42px);
  letter-spacing: -1.2px; line-height: 1.08;
  color: var(--slate-900);
  margin-bottom: 14px;
}
.t-head p { font-size: 16px; color: var(--slate-600); max-width: 50ch; margin: 0 auto; }

.t-featured {
  position: relative;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  padding: 40px 28px 36px;
  margin-bottom: 20px;
  overflow: hidden;
}
.t-featured::before {
  content: "\201C";
  position: absolute; top: -20px; left: 12px;
  font-family: Georgia, serif;
  font-size: 180px; font-weight: 700;
  color: var(--slate-200);
  line-height: 1;
  pointer-events: none;
}
.t-stars { display: inline-flex; gap: 3px; margin-bottom: 18px; position: relative; z-index: 1; }
.t-stars svg { width: 18px; height: 18px; fill: var(--gold-500); color: var(--gold-500); }
.t-featured blockquote {
  font-size: 18px; line-height: 1.7;
  color: var(--slate-800);
  font-style: italic;
  margin-bottom: 24px;
  position: relative; z-index: 1;
  max-width: 65ch;
}
.t-author {
  display: flex; align-items: center; gap: 14px;
  position: relative; z-index: 1;
}
.t-avatar {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--slate-900);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--gold-500);
}
.t-name { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--slate-900); }
.t-role { font-size: 12.5px; color: var(--slate-500); margin-top: 2px; line-height: 1.4; }

.t-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.t-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.t-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-color: var(--slate-300);
}
.t-card .t-stars { margin-bottom: 14px; }
.t-card blockquote {
  font-size: 14.5px; line-height: 1.7;
  color: var(--slate-700); font-style: italic;
  margin-bottom: 18px;
}
.t-card .t-author {
  padding-top: 16px;
  border-top: 1px solid var(--slate-200);
}
.t-card .t-avatar { width: 38px; height: 38px; font-size: 12px; background: var(--slate-800); color: var(--gold-400); }
.t-card .t-name { font-size: 13.5px; }
.t-card .t-role { font-size: 12px; }

@media (min-width: 768px) {
  .testimonials { padding: 120px var(--gutter); }
  .t-featured { padding: 56px 56px 48px; }
  .t-featured::before { font-size: 220px; left: 28px; top: -28px; }
  .t-featured blockquote { font-size: 21px; line-height: 1.7; }
  .t-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}


/* ════════════════════════════════════
   9. SERVICE AREAS — chips + dark CTA
   ════════════════════════════════════ */
.areas {
  background: var(--slate-50);
  padding: 80px var(--gutter);
}
.areas-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
.areas-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 5.5vw, 42px);
  letter-spacing: -1.2px; line-height: 1.08;
  color: var(--slate-900);
  margin-bottom: 14px;
  text-wrap: balance;
}
.areas-counties { margin-top: 28px; display: flex; flex-direction: column; gap: 24px; }
.county h4 {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  color: var(--slate-500);
  letter-spacing: 0.20em; text-transform: uppercase;
  margin-bottom: 12px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center;
  background: var(--white);
  border: 1px solid var(--slate-200);
  color: var(--slate-800);
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  padding: 7px 14px; border-radius: var(--r-pill);
  transition: background .2s, border-color .2s, color .2s;
}
.chip:hover { background: var(--slate-900); color: var(--white); border-color: var(--slate-900); }

.areas-cta {
  background: var(--slate-900);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  color: var(--slate-300);
  position: relative; overflow: hidden;
}
.areas-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 400px 300px at 100% 0%, rgba(212,168,67,0.10), transparent 60%);
  pointer-events: none;
}
.areas-cta > * { position: relative; z-index: 1; }
.areas-cta h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.areas-cta p {
  font-size: 14.5px; line-height: 1.7;
  color: var(--slate-300);
  margin-bottom: 24px;
}
.areas-cta a.areas-cta-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--gold-500); letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 1.5px solid var(--gold-500);
  transition: gap .25s, color .25s;
}
.areas-cta a.areas-cta-link:hover { gap: 14px; color: var(--gold-400); }

@media (min-width: 900px) {
  .areas { padding: 120px var(--gutter); }
  .areas-inner { grid-template-columns: 7fr 5fr; gap: 56px; align-items: start; }
  .areas-cta { padding: 48px 40px; }
  .areas-cta h3 { font-size: 26px; }
}


/* ════════════════════════════════════
   10. FINAL CTA — band
   ════════════════════════════════════ */
.final-cta {
  background: var(--white);
  padding: 80px var(--gutter);
  text-align: center;
  border-top: 1px solid var(--slate-100);
}
.final-cta-inner { max-width: 640px; margin: 0 auto; }
.final-cta h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 6vw, 48px);
  letter-spacing: -1.4px; line-height: 1.06;
  color: var(--slate-900);
  margin-bottom: 18px;
  text-wrap: balance;
}
.final-cta p { font-size: 17px; color: var(--slate-600); line-height: 1.7; margin-bottom: 36px; }
.cta-row { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--slate-900); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  padding: 16px 28px; border-radius: var(--r-sm);
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}
.btn-dark:hover { background: var(--slate-800); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.16); }
.btn-dark:active { transform: translateY(0); box-shadow: 0 4px 14px rgba(0,0,0,0.10); transition-duration: .08s; }
.btn-outline-d {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: transparent; color: var(--slate-800);
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  padding: 15px 28px; border-radius: var(--r-sm);
  border: 1px solid var(--slate-300);
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: border-color .25s, color .25s, background .25s;
}
.btn-outline-d:hover { border-color: var(--slate-900); color: var(--slate-900); background: var(--slate-50); }
@media (min-width: 480px) { .cta-row { flex-direction: row; justify-content: center; } }
@media (min-width: 1024px) { .final-cta { padding: 120px var(--gutter); } }


/* ════════════════════════════════════
   11. MOBILE CALL BAR (mobile only)
   ════════════════════════════════════ */
.mcall {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 800;
  background: var(--slate-900);
  color: var(--white);
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mcall svg { color: var(--gold-500); flex-shrink: 0; }
.mcall:hover { background: var(--slate-800); }
@media (min-width: 768px) { .mcall { display: none; } }


/* ════════════════════════════════════
   FOOTER (placeholder — will be grafted at port time)
   ════════════════════════════════════ */
.footer {
  background: var(--slate-950);
  color: var(--slate-400);
  padding: 56px var(--gutter) 28px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1fr; gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .footer-logo { height: 52px; width: auto; margin-bottom: 20px; opacity: 1; }
.footer-brand p { font-size: 14px; color: var(--slate-400); line-height: 1.7; max-width: 340px; }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.footer-contact a, .footer-contact span {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-accent);
  font-size: 14px; font-weight: 500;
  color: var(--slate-300);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--white); transform: none; }
.footer-contact svg { color: var(--gold-500); flex-shrink: 0; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  color: var(--slate-400);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px; color: var(--slate-400);
  padding: 6px 0;
  transition: color .2s, transform .2s;
}
.footer-col a:hover { color: var(--white); transform: translateX(3px); }
.footer-bottom {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 24px;
  font-family: var(--font-accent);
  font-size: 12px; color: var(--slate-500);
  text-align: center;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 768px) {
  .footer { padding: 72px var(--gutter) 28px; }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}


/* ════════════════════════════════════════════════════════════
   INNER-PAGE COMPONENTS (shared by service / industry / region pages)
   Built strictly from the tokens above so they read as native Premium
   Slate. Added 2026-06-13 for the site-wide rollout.
   ════════════════════════════════════════════════════════════ */

/* Generic section + centered header */
.isec { padding: 72px var(--gutter); background: var(--white); }
.isec--alt { background: var(--slate-50); }
.isec--dark { background: var(--slate-900); }
.isec-inner { max-width: var(--max-w); margin: 0 auto; }
.isec-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.isec-head .eyebrow { justify-content: center; }
.isec-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 5.5vw, 44px);
  letter-spacing: -1.2px; line-height: 1.08;
  color: var(--slate-900); margin-bottom: 16px; text-wrap: balance;
}
.isec--dark .isec-head h2 { color: var(--white); }
.isec-head p { font-size: 16.5px; color: var(--slate-600); line-height: 1.7; max-width: 60ch; margin: 0 auto; }
.isec--dark .isec-head p { color: var(--slate-300); }
@media (min-width: 900px) { .isec { padding: 110px var(--gutter); } }

/* Feature-card grid — coverage tiles, "what's included", comparisons */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 30px 26px 32px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.isec--alt .feature-card { background: var(--white); }
.feature-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--slate-300); }
.feature-ic {
  width: 46px; height: 46px; border-radius: var(--r-md);
  background: rgba(212,168,67,0.12);
  color: var(--gold-600);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px; letter-spacing: -0.4px; line-height: 1.25;
  color: var(--slate-900); margin-bottom: 10px;
}
.feature-card > p { font-size: 15px; color: var(--slate-600); line-height: 1.7; }
.feature-best {
  margin-top: 20px; padding: 12px 16px;
  background: var(--slate-50); border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--slate-700); line-height: 1.5;
}
.feature-best strong { color: var(--slate-900); }
@media (min-width: 600px) { .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Numbered process — "how it works" */
.process { display: grid; grid-template-columns: 1fr; gap: 36px; margin-top: 8px; }
.step-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 40px; line-height: 1; color: var(--gold-500);
  letter-spacing: -1.5px; margin-bottom: 16px;
  padding-bottom: 14px; border-bottom: 2px solid rgba(212,168,67,0.28);
  display: inline-block;
}
.isec--dark .step h3 { color: var(--white); }
.step h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px; letter-spacing: -0.3px; line-height: 1.25;
  color: var(--slate-900); margin-bottom: 10px;
}
.step p { font-size: 15px; line-height: 1.7; color: var(--slate-600); }
.isec--dark .step p { color: var(--slate-300); }
.step-tag {
  display: inline-block; margin-top: 14px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--gold-600);
}
.isec--dark .step-tag { color: var(--gold-400); }
@media (min-width: 768px) { .process { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

/* Solo (photo-less) hero for utility pages: contact / faqs / service-areas */
.hero--solo .hero-grid { grid-template-columns: 1fr; }
.hero--solo .hero-content { max-width: 780px; margin: 0 auto; text-align: center; padding-top: 72px; padding-bottom: 72px; }
.hero--solo .hero-eyebrow { justify-content: center; }
.hero--solo .hero-sub { margin-left: auto; margin-right: auto; }
.hero--solo .hero-actions, .hero--solo .hero-creds { justify-content: center; }
.hero--solo .hero-photo { display: none; }

/* Long-form prose (about / careers / legal) */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { font-size: 16.5px; color: var(--slate-700); line-height: 1.8; margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.4px; color: var(--slate-900); margin: 34px 0 12px; }
.prose strong { color: var(--slate-900); font-weight: 700; }
.prose a { color: var(--gold-600); text-decoration: underline; text-underline-offset: 2px; }

/* FAQ accordion — native <details>, no JS required */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--slate-300); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--slate-900); line-height: 1.4; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; flex-shrink: 0; width: 10px; height: 10px; border-right: 2px solid var(--gold-600); border-bottom: 2px solid var(--gold-600); transform: rotate(45deg); transition: transform .3s; margin-top: -5px; }
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq-item .faq-a { padding: 0 26px 22px; font-size: 15.5px; color: var(--slate-600); line-height: 1.8; }

/* Embedded form / map cards (GHL + Google Maps iframes) */
.contact-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 28px; }
.embed-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 28px 26px 24px; }
.embed-title { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.5px; color: var(--slate-900); margin-bottom: 6px; }
.embed-sub { font-size: 15px; color: var(--slate-600); line-height: 1.6; margin-bottom: 18px; }
.embed-card iframe { width: 100%; border: none; border-radius: var(--r-sm); display: block; }
.map-card { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--slate-200); margin-bottom: 24px; }
.map-card iframe { display: block; width: 100%; }
.contact-rows { display: flex; flex-direction: column; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-top: 1px solid var(--slate-200); font-size: 15px; color: var(--slate-700); line-height: 1.5; }
.contact-row:last-child { border-bottom: 1px solid var(--slate-200); }
.contact-row svg { color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
.contact-row a { color: var(--slate-900); font-weight: 600; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.05fr 0.95fr; gap: 36px; align-items: start; } }
