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

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #449C3C;
  --primary-dark:   #337A2D;
  --primary-light:  #5BBF52;
  --accent:         #4C542C;
  --accent-light:   #6B7A3E;
  --ink:            #0a0a0a;
  --ink-mid:        #1c1c1c;
  --ink-soft:       #333333;
  --paper:          #fafaf7;
  --paper-dim:      #f0f0eb;
  --paper-deep:     #e4e4dc;
  --white:          #ffffff;
  --border:         #449C3C;
  --border-faint:   rgba(68,156,60,0.22);
  --border-ink:     rgba(10,10,10,0.12);
  --surface-2:      rgba(10,10,10,0.04);
  --neutral-muted:  #666;
  --font-display:   'Archivo', sans-serif;
  --font-body:      'IBM Plex Sans', sans-serif;
  --space-section:  96px;
  --radius:         0;
  --transition:     150ms ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

.nav img, header img, .header img, .nav-logo img, .logo img { max-height: 64px !important; width: 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; }

/* Headings with anchors */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a { color: inherit; text-decoration: none; border-bottom: 0; }

/* Links */
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* Lists */
ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

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

p { line-height: 1.7; }

em { font-style: italic; }
strong { font-weight: 700; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container      { max-width: 1200px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 48px); }
.wide-container { max-width: 1400px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 48px); }
.bleed          { width: 100%; margin-inline: 0; padding-inline: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }

.btn-phone {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-phone:hover { background: var(--primary-dark); color: var(--white); text-decoration: none; }
.btn-phone svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-cta-dark {
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-cta-dark:hover { background: var(--primary); border-color: var(--primary); color: var(--white); text-decoration: none; }
.btn-cta-dark svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-cta-outline:hover { background: var(--white); color: var(--ink); text-decoration: none; }

.btn-ink {
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-ink:hover { background: var(--primary); border-color: var(--primary); color: var(--white); text-decoration: none; }

.btn-ink-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-ink-outline:hover { background: var(--ink); color: var(--white); text-decoration: none; }

.btn-table {
  background: var(--primary);
  color: var(--white);
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.btn-table:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); text-decoration: none; }

.btn-table-urgent {
  background: var(--ink);
  color: var(--white);
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.btn-table-urgent:hover { background: var(--primary); border-color: var(--primary); color: var(--white); text-decoration: none; }

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up   { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right{ opacity: 0; transform: translateX(32px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.scale-in  { opacity: 0; transform: scale(0.94);       transition: opacity 0.6s ease, transform 0.6s 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, .stagger.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  text-decoration: none;
  transition: background var(--transition);
}
.mobile-call-pill svg { width: 20px; height: 20px; flex-shrink: 0; }
.mobile-call-pill:hover { background: var(--primary-dark); text-decoration: none; color: var(--white); }

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

/* ============================================================
   UTILITY / TOP BAR
   ============================================================ */
.utility-bar, .util-bar {
  background: var(--primary);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 10px clamp(16px, 4vw, 48px);
  position: sticky;
  top: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.utility-bar a, .util-bar a { color: var(--paper); text-decoration: none; }
.utility-bar a:hover, .util-bar a:hover { color: var(--white); text-decoration: underline; text-decoration-thickness: 1px; }

.utility-inner {
  max-width: 1400px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--paper);
  white-space: nowrap;
}
.utility-item svg { width: 14px; height: 14px; flex-shrink: 0; }

.utility-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.4);
  margin-inline: 12px;
  vertical-align: middle;
}

.util-bar-left  { display: flex; align-items: center; gap: 12px; }
.util-bar-right { display: flex; align-items: center; gap: 12px; }
.util-trust     { font-size: 12px; letter-spacing: 0.05em; font-weight: 600; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav, .site-nav, #nav {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 42px;
  z-index: 800;
}

.nav-inner {
  max-width: 1400px;
  margin-inline: auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; color: inherit; }
.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a, #navLinks a, #nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 14px;
  display: block;
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, #navLinks a:hover, #nav-links a:hover {
  color: var(--primary);
  text-decoration: none;
  border-bottom-color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border: 2px solid var(--primary) !important;
  border-bottom: 2px solid var(--primary) !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; border-color: var(--primary-dark) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 250ms, opacity 250ms;
}

@media (max-width: 899px) {
  .nav-toggle { display: flex; }

  .nav-links, #navLinks, #nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    z-index: 700;
    gap: 0;
  }
  .nav-links.open, #navLinks.open, #nav-links.open { display: flex; }
  .nav-links a, #navLinks a, #nav-links a {
    padding: 12px clamp(16px, 4vw, 48px);
    border-bottom: none;
  }
}

/* ============================================================
   HERO (split-hero + standard hero)
   ============================================================ */
.hero, section#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero-left, .split-hero-left {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.hero-right, .split-hero-right {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.hero-right img, .split-hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.25) brightness(0.92);
}

.hero-split-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  z-index: 3;
}

.split-hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.18) 0%, transparent 40%);
  z-index: 1;
}

.hero-overlay { background: linear-gradient(to right, rgba(10,10,10,0.3), transparent 60%); }

.hero-eyebrow, .split-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-title, .split-hero-h1, .split-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--paper);
}

.hero-title-accent { color: var(--primary); }

.hero-sub, .split-hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(250,250,247,0.72);
  max-width: 480px;
}

.split-hero-founder {
  font-size: 14px;
  color: rgba(250,250,247,0.6);
  letter-spacing: 0.04em;
}
.split-hero-founder strong { color: var(--paper); font-weight: 700; }

.hero-ctas, .split-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.split-hero-phone, .split-hero-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.split-hero-phone:hover, .split-hero-email:hover { color: var(--primary); text-decoration: none; }

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-top: 8px;
}

.trust-chip {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid rgba(68,156,60,0.6);
  padding: 5px 12px;
  border-radius: var(--radius);
}

@media (max-width: 899px) {
  .hero, section#hero { grid-template-columns: 1fr; min-height: unset; }
  .hero-right, .split-hero-right { min-height: 280px; }
  .hero-right img, .split-hero-right img { position: relative; width: 100%; height: 280px; inset: auto; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--ink-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px clamp(16px, 4vw, 48px);
  overflow: hidden;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.trust-label, .trust-strip-item {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
}

.trust-pipe, .trust-strip-sep {
  display: inline-block;
  margin-inline: 14px;
  color: rgba(68,156,60,0.4);
  font-weight: 300;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 80px !important;
  position: relative;
  z-index: 1;
  background: var(--paper);
}

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

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

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

.marquee-item {
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-size: clamp(13px, 1.4vw, 18px) !important;
  line-height: 1.2 !important;
  color: var(--ink);
  white-space: nowrap;
}

.marquee-dot {
  color: var(--primary);
  font-size: 18px !important;
  line-height: 1.2 !important;
}

/* ============================================================
   SERVICES TABLE
   ============================================================ */
.services-table {
  padding: var(--space-section) 0;
  background: var(--paper);
}

.services-table-header {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
  margin-bottom: 40px;
}

.services-table-header h2 {
  font-size: clamp(32px, 5vw, 64px);
  color: var(--ink);
  margin-bottom: 10px;
}

.services-sub {
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 10px;
}

.table-wrap {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
  overflow-x: auto;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
}

.service-table thead { background: var(--ink); }
.service-table thead .col-service,
.service-table thead .col-scope,
.service-table thead .col-cta {
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: var(--ink);
}

.service-table thead .col-service:last-child,
.service-table thead .col-scope:last-child,
.service-table thead .col-cta:last-child { border-right: none; }

/* tbody cells — must stay light */
.service-table tbody .col-service,
.service-table tbody .col-scope,
.service-table tbody .col-cta,
.service-table tbody td {
  background: var(--paper);
  color: var(--ink);
}

.service-table tbody tr {
  border-bottom: 1px solid var(--border-faint);
  transition: background var(--transition);
}
.service-table tbody tr:hover { background: var(--paper-dim); }
.service-table tbody tr:hover td { background: var(--paper-dim); }

.cell-service {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--border-faint);
  background: var(--paper);
  color: var(--ink);
  min-width: 220px;
}
.cell-service img { width: 40px; height: 40px; object-fit: cover; flex-shrink: 0; filter: grayscale(1) contrast(1.2); }

.service-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.cell-scope {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--ink-soft);
  border-right: 1px solid var(--border-faint);
  background: var(--paper);
  color: var(--ink);
}

.cell-cta {
  padding: 16px 20px;
  white-space: nowrap;
  background: var(--paper);
  color: var(--ink);
}

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-section) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.credentials-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.credentials-inner h2 {
  font-size: clamp(32px, 5vw, 64px);
  color: var(--paper);
  margin-bottom: 12px;
}

.credentials-sub {
  font-size: 16px;
  color: rgba(250,250,247,0.65);
  margin-bottom: 40px;
  max-width: 560px;
}

.credentials-img-wrap {
  margin-bottom: 40px;
}
.credentials-img-wrap img {
  max-height: 80px !important;
  width: auto !important;
  filter: brightness(0) invert(1) !important;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border-faint);
  border: 1px solid var(--border-faint);
}

.cert-item {
  background: var(--ink-mid);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cert-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.cert-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--paper);
  letter-spacing: -0.01em;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.stats > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(1) contrast(1.25) brightness(0.92);
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.72);
  z-index: 1;
}

.stats-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-inline: auto;
  padding: var(--space-section) clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
}

.stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(68,156,60,0.3);
}
.stat:last-of-type { border-right: none; }

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

.stat-label {
  display: block;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.7);
  margin-top: 8px;
}

.stat-divider {
  display: none;
}

@media (max-width: 899px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(68,156,60,0.3); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(68,156,60,0.3); }
}

@media (max-width: 639px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--space-section) 0;
  background: var(--paper);
}

.about-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.about-text { display: flex; flex-direction: column; gap: 20px; }

.about-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.about-text h2 {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--ink);
}

.about-heading { font-size: clamp(32px, 4vw, 56px); color: var(--ink); }

.about-body p {
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.about-body p:last-child { margin-bottom: 0; }

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.about-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius);
}

.about-arborist {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--border-faint);
}

.arborist-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
}
.arborist-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.about-photo-main {
  position: relative;
  overflow: hidden;
}
.about-photo-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.25) brightness(0.92);
}

.about-photo-secondary {
  position: relative;
  overflow: hidden;
}
.about-photo-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.25) brightness(0.92);
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,10,10,0.7));
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 12px 10px;
}

@media (max-width: 899px) {
  .about-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   CREW SPLIT
   ============================================================ */
.crew-split, .crew-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--ink);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.crew-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  max-width: 100%;
}

.crew-img-side, .crew-photo {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.crew-img-side img, .crew-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.25) brightness(0.92);
}

.crew-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(10,10,10,0.4));
  z-index: 1;
}

.crew-text-side, .crew-content {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.crew-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.crew-h2, .crew-heading, .crew-text-side h2, .crew-content h2 {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--paper);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.crew-body {
  font-size: 16px;
  line-height: 1.68;
  color: rgba(250,250,247,0.72);
}

.crew-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.crew-list li {
  font-size: 14px;
  font-weight: 600;
  color: rgba(250,250,247,0.85);
  padding-left: 18px;
  position: relative;
}
.crew-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--primary);
}

.crew-cert-box { margin-top: 12px; }
.crew-cert-box-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.crew-cert-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.crew-cert-list li {
  font-size: 13px;
  color: rgba(250,250,247,0.75);
  padding-left: 14px;
  position: relative;
}
.crew-cert-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 2px;
  background: var(--primary);
}

@media (max-width: 899px) {
  .crew-split, .crew-section { grid-template-columns: 1fr; }
  .crew-inner { grid-template-columns: 1fr; }
  .crew-img-side, .crew-photo { min-height: 280px; position: relative; }
  .crew-img-side img, .crew-photo img { position: absolute; }
}

/* ============================================================
   TESTIMONIALS / REVIEWS
   ============================================================ */
.testimonials {
  padding: var(--space-section) 0;
  background: var(--paper-dim);
  border-top: 1px solid var(--border);
}

.testimonials-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.testimonials-inner h2 {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--ink);
  margin-bottom: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-faint);
  border: 1px solid var(--border-faint);
  margin-bottom: 32px;
}

.review-card {
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--transition);
}
.review-card:hover { background: var(--paper-dim); }

.review-card-highlight {
  background: var(--ink);
}
.review-card-highlight .review-quote { color: var(--paper); }
.review-card-highlight .review-author { color: var(--paper); }
.review-card-highlight .review-platform { color: rgba(250,250,247,0.55); }
.review-card-highlight:hover { background: var(--ink-mid); }

.review-stars {
  display: flex;
  gap: 3px;
}
.review-stars svg { width: 18px; height: 18px; color: var(--primary); fill: var(--primary); }

.review-quote {
  font-size: 16px;
  line-height: 1.58;
  color: var(--ink-soft);
  flex: 1;
  font-style: italic;
}

.review-attribution {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}
.review-author {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--ink);
}
.review-platform {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-muted);
  opacity: 0.75;
}

.reviews-aggregate {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.agg-score {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
}
.agg-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

@media (max-width: 899px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--space-section) 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.faq-inner h2, .faq-heading {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--ink);
  margin-bottom: 40px;
}

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

details.faq-item {
  border-bottom: 1px solid var(--border-faint);
  padding: 20px 0;
}
details.faq-item:first-child { border-top: 1px solid var(--border-faint); }

details.faq-item > summary.faq-q {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: -0.01em;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
details.faq-item > summary.faq-q::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 200ms;
  color: var(--primary);
}
details.faq-item[open] .faq-chevron { transform: rotate(180deg); }
details.faq-item[open] > summary.faq-q { color: var(--primary); }

.faq-a {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.68;
  color: var(--ink-soft);
  max-width: 720px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--primary);
  padding: var(--space-section) 0;
  border-top: 1px solid var(--primary-dark);
  border-bottom: 1px solid var(--primary-dark);
}

.cta-band-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-band-text { display: flex; flex-direction: column; gap: 10px; }

.cta-band-heading, .cta-band-title, .cta-band-text h2 {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--white);
  line-height: 1.05;
}

.cta-band-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 899px) {
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band-actions { flex-direction: row; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact, .contact-section {
  padding: var(--space-section) 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.contact-text h2 {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--ink);
}

.contact-body {
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink-soft);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.contact-details li svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.contact-details li a { color: var(--ink); font-weight: 700; }
.contact-details li a:hover { color: var(--primary); }

.contact-service-areas { margin-top: 8px; }
.contact-areas-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.contact-areas-list {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.contact-photo {
  position: relative;
  overflow: hidden;
}
.contact-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.25) brightness(0.92);
}

.contact-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 50%);
  z-index: 1;
}

.contact-photo-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius);
}

/* Contact form */
.contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form-col h2 {
  font-size: clamp(24px, 3vw, 40px);
  color: var(--ink);
}

.form-sub {
  font-size: 14px;
  color: var(--ink-soft);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--border-ink);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(68,156,60,0.18);
}

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

.form-submit {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  align-self: flex-start;
}
.form-submit:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.contact-details-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-detail-block {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-detail-block h3 {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.contact-detail-block p { font-size: 15px; color: var(--ink-soft); }
.contact-detail-block a { color: var(--ink); font-weight: 700; }
.contact-detail-block a:hover { color: var(--primary); }

.contact-divider {
  height: 1px;
  background: var(--border-faint);
}

.contact-trust-mono {
  padding: 24px 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--primary);
  line-height: 1.8;
  letter-spacing: 0.06em;
}

@media (max-width: 899px) {
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area {
  padding: var(--space-section) 0;
  background: var(--paper-dim);
  border-top: 1px solid var(--border);
}

.service-area-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.service-area-header, .service-area-h2, .service-area-title {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--ink);
  margin-bottom: 12px;
}
.service-area-header h2 { margin-bottom: 12px; }

.service-area-sub {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--border-faint);
  border: 1px solid var(--border-faint);
}

.city-badge {
  background: var(--paper);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  transition: background var(--transition), color var(--transition);
  cursor: default;
}
.city-badge:hover { background: var(--primary); color: var(--white); }

.city-primary {
  background: var(--ink);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 900;
}
.city-primary:hover { background: var(--ink-mid); color: var(--primary); }

/* ============================================================
   TYPE BAND (services page)
   ============================================================ */
.type-band {
  padding: 80px clamp(16px, 4vw, 48px);
  background: var(--ink);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.type-band-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 100px);
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--paper);
}

.underline-brand {
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.type-band-sub {
  font-size: clamp(14px, 1.4vw, 18px);
  color: rgba(250,250,247,0.6);
  margin-top: 20px;
  line-height: 1.6;
}

/* ============================================================
   SERVICE FEATURES (services page)
   ============================================================ */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border-bottom: 1px solid var(--border-faint);
}

.service-feature.reverse { direction: rtl; }
.service-feature.reverse > * { direction: ltr; }

.sf-photo {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.sf-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.25) brightness(0.92);
}

.sf-panel {
  padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.sf-panel.ink { background: var(--ink); color: var(--paper); }
.sf-panel.paper { background: var(--paper); color: var(--ink); }
.sf-panel.accent { background: var(--accent); color: var(--paper); }

.sf-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.sf-panel.paper .sf-number { color: var(--primary); }
.sf-panel.accent .sf-number { color: rgba(250,250,247,0.6); }

.sf-panel h3 {
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.05;
  color: inherit;
}

.sf-copy {
  font-size: 15px;
  line-height: 1.68;
}
.sf-panel.ink .sf-copy { color: rgba(250,250,247,0.72); }
.sf-panel.paper .sf-copy { color: var(--ink-soft); }
.sf-panel.accent .sf-copy { color: rgba(250,250,247,0.8); }

.sf-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.sf-panel.accent .sf-badge { background: rgba(255,255,255,0.2); }

.sf-stat {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Full-width service feature */
.sf-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-bottom: 1px solid var(--border-faint);
}

.sf-full-photo {
  position: relative;
  overflow: hidden;
}
.sf-full-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.25) brightness(0.92);
}

/* No-photo service sections */
.sf-no-photo {
  border-bottom: 1px solid var(--border-faint);
}
.sf-no-photo .sf-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin-inline: auto;
  padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 48px);
  width: 100%;
}

.sf-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 899px) {
  .service-feature { grid-template-columns: 1fr; min-height: unset; }
  .service-feature.reverse { direction: ltr; }
  .sf-photo { min-height: 240px; }
  .sf-photo img { position: absolute; }
  .sf-full { grid-template-columns: 1fr; }
  .sf-no-photo .sf-panel { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT STORY (about page)
   ============================================================ */
.about-story {
  padding: var(--space-section) 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.about-story-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 5vw, 80px);
  align-items: start;
}

.story-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.story-h2 {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--ink);
  line-height: 1.05;
}

.story-body p {
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.story-body p:last-child { margin-bottom: 0; }
.story-body strong { color: var(--ink); }

.story-image-block {
  margin-top: 16px;
  position: relative;
}
.story-image-block img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.25) brightness(0.92);
}

.story-image-caption {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-muted);
  margin-top: 8px;
}

.story-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cred-box {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-faint);
}
.cred-box:last-child { border-bottom: none; }

.cred-box-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.cred-box-item {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.cred-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--ink);
}

.cred-box-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cred-box-list li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.cred-box-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 2px;
  background: var(--primary);
}

@media (max-width: 899px) {
  .about-story-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   VALUES (about page)
   ============================================================ */
.values-row {
  padding: var(--space-section) 0;
  background: var(--ink);
  border-top: 1px solid var(--border);
}

.values-header {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
  margin-bottom: 48px;
}

.values-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.values-h2 {
  font-size: clamp(32px, 5vw, 64px);
  color: var(--paper);
  line-height: 1.0;
}

.values-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(68,156,60,0.15);
  border: 1px solid rgba(68,156,60,0.15);
}

.value-item {
  background: var(--ink-mid);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--transition);
}
.value-item:hover { background: var(--ink); }

.value-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
}

.value-item h3, .value-title {
  font-size: clamp(18px, 2vw, 26px);
  color: var(--paper);
  letter-spacing: -0.02em;
}

.value-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(250,250,247,0.65);
}

@media (max-width: 899px) {
  .values-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   SPLIT HERO (about / contact pages)
   ============================================================ */
.split-hero, section#about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.split-hero-left {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.split-hero-right {
  position: relative;
  overflow: hidden;
}
.split-hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.25) brightness(0.92);
}

.split-hero-h1, .split-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 100px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--paper);
}

@media (max-width: 899px) {
  .split-hero, section#about-hero { grid-template-columns: 1fr; min-height: unset; }
  .split-hero-right { min-height: 280px; }
  .split-hero-right img { position: absolute; height: 100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer, .site-footer, footer {
  background: var(--ink-mid);
  color: var(--paper);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(68,156,60,0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand a { color: var(--paper); text-decoration: none; }
.footer-brand a:hover { color: var(--primary); text-decoration: none; }

.footer-logo img { max-height: 48px !important; }

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250,250,247,0.6);
}

.footer-insured {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.footer-col { display: flex; flex-direction: column; gap: 16px; }

.footer-col-heading, .footer-col-title, .footer-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
}

.footer-col h3, .footer-col h4 {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.footer-links li a {
  font-size: 14px;
  color: rgba(250,250,247,0.65);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links li a:hover { color: var(--primary); text-decoration: none; }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.footer-contact-list li {
  font-size: 14px;
  color: rgba(250,250,247,0.65);
}
.footer-contact-list li a { color: rgba(250,250,247,0.65); }
.footer-contact-list li a:hover { color: var(--primary); }

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(250,250,247,0.65);
  margin-bottom: 8px;
}
.footer-contact-row svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.footer-contact-row a { color: rgba(250,250,247,0.65); }
.footer-contact-row a:hover { color: var(--primary); }

.footer-contact-info { display: flex; flex-direction: column; gap: 0; }

.footer-certs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}
.footer-certs span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.footer-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}
.footer-city {
  font-size: 12px;
  color: rgba(250,250,247,0.55);
}
.footer-city::after { content: ','; }
.footer-city:last-child::after { content: ''; }

.footer-areas {
  font-size: 13px;
  color: rgba(250,250,247,0.55);
  line-height: 1.7;
}

.footer-creds {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: rgba(250,250,247,0.55);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy, .footer-copyright {
  font-size: 12px;
  color: rgba(250,250,247,0.4);
}

.footer-lic, .footer-licenses {
  font-size: 12px;
  color: rgba(250,250,247,0.4);
  text-align: right;
}

.footer-license-row {
  padding: 12px 0;
  border-top: 1px solid rgba(68,156,60,0.1);
  font-size: 11px;
  color: rgba(250,250,247,0.35);
  font-weight: 600;
  letter-spacing: 0.08em;
}

@media (max-width: 899px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 639px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-lic { text-align: left; }
}

/* ============================================================
   ACCENTS / MISC
   ============================================================ */
.accent { color: var(--primary); }
.ink    { background: var(--ink); color: var(--paper); }
.paper  { background: var(--paper); color: var(--ink); }

.underline-brand {
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

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

/* ============================================================
   PROCESS (if rendered)
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step {
  padding: 24px;
  border: 1px solid var(--border-faint);
  border-radius: var(--radius);
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

/* ============================================================
   RESPONSIVE GLOBAL
   ============================================================ */
@media (max-width: 639px) {
  :root { --space-section: 64px; }
  .hero-title, .split-hero-h1, .split-hero-title { font-size: clamp(36px, 10vw, 64px); }
  .cta-band-inner { gap: 24px; }
  .contact-photo img { height: 300px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (min-width: 1200px) {
  .stats-inner { padding: 120px clamp(16px, 4vw, 48px); }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.cert-item { grid-column: 1 / -1; }
.stat { grid-column: 1 / -1; }
.stat-divider { grid-column: 1 / -1; }
.fade-left { grid-column: 1 / -1; }
.fade-right { grid-column: 1 / -1; }
.about-photo-main { grid-column: 1 / -1; }
.about-photo-secondary { grid-column: 1 / -1; }
.crew-img-side { grid-column: 1 / -1; }
.crew-text-side { grid-column: 1 / -1; }
.review-card { grid-column: 1 / -1; }
.review-card-highlight { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.crew-inner { grid-column: 1 / -1; }
.fade-up { grid-column: 1 / -1; }
.city-primary { grid-column: 1 / -1; }
.city-badge { grid-column: 1 / -1; }
.sf-photo { grid-column: 1 / -1; }
.ink { grid-column: 1 / -1; }
.sf-number { grid-column: 1 / -1; }
.sf-title { grid-column: 1 / -1; }
.sf-copy { grid-column: 1 / -1; }
.sf-cta { grid-column: 1 / -1; }
.paper { grid-column: 1 / -1; }
.sf-full-photo { grid-column: 1 / -1; }
.accent { grid-column: 1 / -1; }
.sf-badge { grid-column: 1 / -1; }
.sf-text { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-contact { grid-column: 1 / -1; }
