@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,wght@0,300;0,400;0,700;1,400;1,700&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #DC0404;
  --accent:         #B40404;
  --canvas:         #FAF6EE;
  --surface:        #F0EBE0;
  --ink:            #1A1814;
  --muted:          #5C5649;
  --green:          #016633;
  --green-dark:     #014d26;
  --green-light:    rgba(1, 102, 51, 0.08);
  --cream:          #FAF6EE;
  --cream-70:       rgba(250, 246, 238, 0.70);
  --border:         rgba(26, 24, 20, 0.14);
  --border-strong:  rgba(26, 24, 20, 0.28);
  --red-10:         rgba(220, 4, 4, 0.10);
  --header-height:  72px;
  --radius:         4px;
  --max-w:          1240px;
  --section-py:     clamp(72px, 9vh, 120px);
  --font-display:   'Source Serif 4', Georgia, serif;
  --font-body:      'IBM Plex Sans', system-ui, sans-serif;
  --font-mono:      'IBM Plex Mono', 'Courier New', monospace;
}

@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

/* ============================================================
   UNIVERSAL IMAGE CAP
   ============================================================ */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 44px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* ============================================================
   HEADING ANCHOR RESET
   ============================================================ */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY BASE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(22px, 3vw, 32px); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

ul { list-style: none; padding: 0; margin: 0; }

strong { font-weight: 600; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

.wide-container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms, color 180ms, border-color 180ms, filter 180ms;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary,
.btn-primary-red {
  background: var(--primary);
  color: var(--cream);
  border-color: var(--primary);
}
.btn-primary:hover,
.btn-primary-red:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
}

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline-cream:hover {
  background: var(--cream);
  color: var(--ink);
  text-decoration: none;
}

.btn-submit {
  background: var(--primary);
  color: var(--cream);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 32px;
  cursor: pointer;
  width: 100%;
  transition: filter 180ms;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-submit:hover { filter: brightness(0.88); }

/* ============================================================
   FORM FIELDS
   ============================================================ */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 150ms;
  outline: none;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

/* ============================================================
   SECTION EYEBROW / LABEL
   ============================================================ */
.section-eyebrow,
.about-eyebrow,
.about-hero-eyebrow,
.credentials-eyebrow,
.service-areas-eyebrow,
.faq-eyebrow,
.contact-eyebrow,
.contact-cta-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 18px;
  display: block;
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible { opacity: 1; transform: none; }

.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   STICKY HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(26, 24, 20, 0.10);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--header-height);
}

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo:hover { text-decoration: none; }

.nav-logo span {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

#navLinks {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-pages {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.nav-pages a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
}

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: filter 180ms;
}

.nav-cta:hover {
  filter: brightness(0.88);
  color: var(--cream);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  color: var(--ink);
  padding: 8px;
  line-height: 1;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; margin-left: auto; }

  #navLinks {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: 20px 28px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 800;
  }

  #navLinks.open { display: flex; }

  .nav-pages {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }

  .nav-pages a {
    padding: 10px 0;
    width: 100%;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
  }

  .nav-cta .nav-cta-text { display: none; }
}

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.45);
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: filter 180ms;
}
.mobile-call-pill:hover {
  filter: brightness(0.90);
  color: #fff;
  text-decoration: none;
}
.mobile-call-pill svg { width: 18px; height: 18px; flex: 0 0 auto; }

@media (max-width: 900px) {
  .mobile-call-pill { display: flex; }
}

/* ============================================================
   MARQUEE (thin strip default)
   ============================================================ */
.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 64px;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.marquee-item {
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  background: var(--canvas);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  top: clamp(40px, 8vh, 80px);
  right: -20px;
  font-family: var(--font-mono);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 500;
  color: var(--green);
  opacity: 0.18;
  letter-spacing: 0.06em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  line-height: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 48px) clamp(64px, 10vh, 100px);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 28px;
}

.hero-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(72px, 11vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 12ch;
}

.hero-service-line {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 5.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 4px;
  max-width: 18ch;
}

.hero-hairline {
  width: 100vw;
  position: relative;
  left: calc(-1 * clamp(20px, 4vw, 48px));
  height: 2px;
  background: var(--primary);
  margin: 32px 0 28px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.45;
  max-width: 52ch;
  margin-bottom: 28px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.trust-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
  line-height: 1;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-data-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 8px;
}

.hero-data-strip span { color: var(--muted); }
.hero-data-strip a { color: var(--muted); }
.hero-data-strip a:hover { color: var(--primary); text-decoration: none; }

/* About page hero */
.about-hero {
  background: var(--canvas);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-hero-watermark {
  position: absolute;
  top: clamp(30px, 6vh, 60px);
  right: -10px;
  font-family: var(--font-mono);
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 500;
  color: var(--green);
  opacity: 0.16;
  letter-spacing: 0.06em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: clamp(72px, 10vh, 120px) clamp(20px, 4vw, 48px) clamp(56px, 8vh, 90px);
}

.about-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-hero-title-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 8px;
}

.about-hero-hairline {
  width: 100vw;
  position: relative;
  left: calc(-1 * clamp(20px, 4vw, 48px));
  height: 2px;
  background: var(--primary);
  margin: 28px 0 24px;
}

.about-hero-sub {
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--ink);
  max-width: 50ch;
  margin-bottom: 24px;
}

.about-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-hero-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  padding: 48px 0;
  overflow: hidden;
}

.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.trust-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  background: var(--green);
  color: var(--cream);
  border-radius: 999px;
  padding: 8px 18px;
  white-space: nowrap;
  line-height: 1;
}

/* ============================================================
   SERVICES — TABBED PANEL
   ============================================================ */
.services {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.services-inner > .section-eyebrow { margin-bottom: 12px; }

.services-inner > h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 40px;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 0;
}

.service-tab {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 18px 14px;
  cursor: pointer;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
  margin-bottom: -2px;
  line-height: 1;
}

.service-tab:hover { color: var(--ink); }

.service-tab.active {
  color: var(--ink);
  border-bottom: 3px solid var(--primary);
}

.services-panels {
  min-height: 480px;
}

.service-panel {
  display: none;
  grid-template-columns: 45% 55%;
  min-height: 480px;
}

.service-panel.active {
  display: grid;
}

.service-panel-visual {
  background: var(--green);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.service-panel-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}

.service-panel-isa {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.70);
  position: relative;
  z-index: 2;
}

.panel-watermark {
  position: absolute;
  bottom: -16px;
  right: -12px;
  font-family: var(--font-mono);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600;
  color: rgba(250, 246, 238, 0.10);
  letter-spacing: 0.06em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.service-panel-body {
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-left: none;
}

.service-panel-body h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 16px;
  color: var(--ink);
}

.service-panel-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 14px;
}

.service-panel-body > a {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-panel-body > a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.service-panel-heading { display: none; }

@media (max-width: 700px) {
  .service-panel.active { grid-template-columns: 1fr; }
  .service-panel-visual { min-height: 220px; justify-content: flex-start; }
  .services-tabs { overflow-x: auto; flex-wrap: nowrap; }
  .service-tab { padding: 10px 12px; font-size: 11px; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.about-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 55% 45%;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.about-left { grid-column: 1; }
.about-right { grid-column: 2; }

.about-pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 20px 0 24px;
  max-width: 28ch;
}

.about-prose p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink);
  margin-bottom: 16px;
}

.about-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  align-items: center;
}

.about-contact-line span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-cred-panel {
  background: var(--green);
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cred-stamp {
  border: 1px solid rgba(250, 246, 238, 0.25);
  padding: 20px;
  text-align: center;
}

.cred-stamp-body {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250, 246, 238, 0.55);
  margin-bottom: 8px;
}

.cred-stamp-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 6px;
}

.cred-stamp-id {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(250, 246, 238, 0.85);
}

@media (max-width: 900px) {
  .about-section-inner {
    grid-template-columns: 1fr;
  }
  .about-left { grid-column: 1; }
  .about-right { grid-column: 1; }
}

/* ============================================================
   CREDENTIALS SECTION
   ============================================================ */
.credentials-section {
  background: var(--surface);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.credentials-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: clamp(60px, 14vw, 180px);
  font-weight: 600;
  color: rgba(220, 4, 4, 0.05);
  letter-spacing: 0.06em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.credentials-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.credentials-inner > h2,
.credentials-heading {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 48px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.credential-seal {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 16px;
  margin: 0 auto;
  transition: box-shadow 250ms, transform 250ms;
  position: relative;
}

.credential-seal:hover {
  box-shadow: 0 0 0 4px var(--red-10);
  transform: scale(1.03);
}

.seal-issuer {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.seal-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 8px;
  display: block;
}

.seal-id {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  color: var(--primary);
  display: block;
}

@media (max-width: 900px) {
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .credentials-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .credential-seal { width: 140px; height: 140px; }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--surface);
  padding: 72px 0;
}

.service-areas-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.service-areas-heading,
.service-areas-inner > h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 32px;
  color: var(--ink);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.area-chip {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  background: var(--green);
  color: var(--cream);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
}

.service-areas-cta { margin-top: 8px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--green);
  padding: clamp(72px, 9vw, 120px) 0;
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-left { grid-column: 1; }
.contact-right { grid-column: 2; }

.contact-eyebrow {
  color: rgba(250, 246, 238, 0.65);
  margin-bottom: 14px;
}

.contact-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--cream);
  display: block;
  text-decoration: none;
  margin-bottom: 16px;
  transition: opacity 150ms;
}
.contact-phone:hover { opacity: 0.82; text-decoration: none; color: var(--cream); }

.contact-tagline {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(250, 246, 238, 0.85);
  margin-bottom: 28px;
  line-height: 1.5;
}

.contact-data {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(250, 246, 238, 0.70);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-data a {
  color: rgba(250, 246, 238, 0.70);
  text-decoration: none;
}
.contact-data a:hover { color: var(--cream); text-decoration: underline; }

.contact-form-panel {
  background: var(--canvas);
  padding: clamp(28px, 3.5vw, 44px);
  border-radius: var(--radius);
}

.contact-form-panel h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-style: italic;
}

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-left { grid-column: 1; }
  .contact-right { grid-column: 1; }
}

/* ============================================================
   CONTACT CTA STRIP (about page)
   ============================================================ */
.contact-cta-strip {
  background: var(--green);
  padding: clamp(60px, 8vw, 96px) 0;
}

.contact-cta-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  text-align: center;
}

.contact-cta-label {
  color: rgba(250, 246, 238, 0.65);
  margin-bottom: 12px;
}

.contact-cta-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq,
.faq-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

.faq-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.faq-inner > h2,
.faq-heading {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

details.faq-item {
  border-bottom: 1px solid rgba(26, 24, 20, 0.20);
  padding: 20px 0;
}

details.faq-item > summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  transition: color 150ms;
}

details.faq-item > summary::-webkit-details-marker { display: none; }

details.faq-item > summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 28px;
  flex: 0 0 auto;
  transition: transform 200ms;
  color: var(--muted);
  line-height: 1;
}

details.faq-item[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}

details.faq-item > summary:hover { color: var(--primary); }

.faq-chevron {
  display: none; /* handled by ::after */
}

.faq-answer {
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
  margin-top: 14px;
  padding-right: 40px;
}

/* Also style the index.html variant (non-.faq-list) */
.faq > .faq-inner > details {
  border-bottom: 1px solid rgba(26, 24, 20, 0.20);
  padding: 20px 0;
}

.faq > .faq-inner > details > summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}

.faq > .faq-inner > details > summary::-webkit-details-marker { display: none; }

.faq > .faq-inner > details > summary::after {
  content: "+";
  font-weight: 300;
  font-size: 28px;
  transition: transform 200ms;
  color: var(--muted);
  line-height: 1;
}

.faq > .faq-inner > details[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(56px, 7vh, 96px) 0 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 5vh, 64px);
  border-bottom: 1px solid rgba(250, 246, 238, 0.12);
}

.footer-left { grid-column: 1; }
.footer-right { grid-column: 2; }

.footer-logo { margin-bottom: 16px; }

.footer-brand,
.footer-name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: rgba(250, 246, 238, 0.70);
  margin-bottom: 20px;
  line-height: 1.4;
}

.footer-contact,
.footer-data {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(250, 246, 238, 0.60);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact a,
.footer-data a {
  color: rgba(250, 246, 238, 0.60);
  text-decoration: none;
}
.footer-contact a:hover,
.footer-data a:hover { color: var(--cream); text-decoration: underline; }

.footer-creds {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-cred-line {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(250, 246, 238, 0.50);
}

.footer-col { margin-bottom: 28px; }

.footer-col h4,
.footer-nav-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(250, 246, 238, 0.45);
  margin-bottom: 14px;
}

.footer-nav,
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav li a,
.footer-nav-list li a {
  font-size: 14px;
  color: rgba(250, 246, 238, 0.75);
  text-decoration: none;
  transition: color 150ms;
}

.footer-nav li a:hover,
.footer-nav-list li a:hover {
  color: var(--cream);
  text-decoration: none;
}

.footer-nav-col { grid-column: 2; }

.footer-social {
  margin-top: 20px;
}

.footer-social-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250, 246, 238, 0.40);
  margin-bottom: 6px;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  color: rgba(250, 246, 238, 0.60);
  transition: color 150ms;
}
.footer-social-link:hover svg { color: var(--cream); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.footer-copy,
.footer-copyright,
.footer-isa-stamp {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(250, 246, 238, 0.38);
}

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-left { grid-column: 1; }
  .footer-right { grid-column: 1; }
  .footer-nav-col { grid-column: 1; }
}

/* ============================================================
   STAT COUNTER (defensive, not in this brief but required)
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}

.stat-num {
  font-size: clamp(48px, 8vw, 96px);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   PROCESS STRIP
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

/* ============================================================
   REVIEW CARD
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: 4px;
  background: var(--surface);
}

.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

/* ============================================================
   SERVICE CARD HOVER
   ============================================================ */
.service-card {
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.18);
}

/* ============================================================
   SECTION TITLE FALLBACK
   ============================================================ */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
}

/* ============================================================
   RESPONSIVE — TABLET + MOBILE
   ============================================================ */
@media (max-width: 1200px) {
  .hero-name { font-size: clamp(64px, 9vw, 108px); }
}

@media (max-width: 900px) {
  .hero-name { font-size: clamp(56px, 13vw, 96px); }
  .hero-service-line { font-size: clamp(28px, 7vw, 56px); }
}

@media (max-width: 640px) {
  .hero-name { font-size: clamp(48px, 16vw, 80px); }
  .hero-service-line { font-size: clamp(24px, 8vw, 44px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .hero-data-strip { flex-direction: column; gap: 8px; }
  .trust-strip-inner { justify-content: flex-start; }
  .contact-cta-actions { flex-direction: column; align-items: center; }
  .about-contact-line { flex-direction: column; align-items: flex-start; }
}
