/* ============================================================
   BERGEN PRO CLEAN — APPLE DESIGN SYSTEM v2
   "The standard Bergen County deserves."

   DESIGN CMS — change only :root variables to rebrand
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,200;1,9..40,300&family=Instrument+Serif:ital@0;1&display=swap');

/* ============================================================
   YOUR DESIGN CMS — change these, nothing else
   ============================================================ */
:root {
  --color-gold: #C8A24A;
  --color-bg:           #FFFFFF;
  --color-bg-soft:      #F8FAFB;
  --color-bg-dark:      #0A2540;
  --color-bg-darker:    #060F1A;
  --color-primary:      #0A2540;
  --color-accent:       #2ECC71;
  --color-accent-deep:  #00A67E;
  --color-text:         #0A2540;
  --color-text-mid:     rgba(10,37,64,0.55);
  --color-text-muted:   rgba(10,37,64,0.35);
  --color-border:       rgba(10,37,64,0.07);
  --color-border-mid:   rgba(10,37,64,0.12);
  --font-display:       'Instrument Serif', Georgia, serif;
  --font-body:          'DM Sans', system-ui, sans-serif;
  --nav-height:         48px;
  --max-width:          1160px;
  --section-y:          88px;
  --radius:             12px;
  --radius-lg:          16px;
  --transition:         0.2s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--color-accent); color: #fff; padding: 0.5rem 1rem; border-radius: var(--radius); font-weight: 600; z-index: 9999; transition: top var(--transition); }
.skip-link:focus { top: 0.5rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 48px; }
.section { padding: var(--section-y) 0; }
.section--soft { background: var(--color-bg-soft); }
.section--dark { background: var(--color-bg-dark); color: #fff; }
.section--darker { background: var(--color-bg-darker); color: #fff; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
}
.eyebrow--muted { color: rgba(255,255,255,0.45); }

.display {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text);
}
.display em { font-style: italic; color: var(--color-accent); }
.display--light { color: #fff; }

h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-text);
}
h1 em, .h1 em { font-style: italic; color: var(--color-accent); }

h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
h2 em, .h2 em { font-style: italic; }

h3, .h3 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text);
  line-height: 1.4;
}

.lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text-mid);
}

.body-sm { font-size: 13px; line-height: 1.7; color: var(--color-text-mid); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 44px;
  padding: 10px 24px;
  cursor: pointer;
}

.btn-dark {
  background: var(--color-primary);
  color: #fff;
  border: 1.5px solid var(--color-primary);
}
.btn-dark:hover { background: #0d2d4d; transform: translateY(-1px); }

.btn-green {
  background: var(--color-accent);
  color: #fff;
  border: 1.5px solid var(--color-accent);
}
.btn-green:hover { background: var(--color-accent-deep); border-color: var(--color-accent-deep); transform: translateY(-1px); }

.btn-ghost-dark {
  background: transparent;
  color: var(--color-text-mid);
  border: 1.5px solid var(--color-border-mid);
}
.btn-ghost-dark:hover { border-color: var(--color-primary); color: var(--color-text); }

.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost-light:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent);
  transition: gap var(--transition);
  cursor: pointer;
}
.link-arrow:hover { gap: 8px; }

.btn-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-group--center { justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
  padding-top: 25px !important;
  padding-bottom: 50px !important;
}

.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--color-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  color: #fff;
  transition: color var(--transition);
}
.nav.scrolled .nav-logo { color: var(--color-text); }
.nav-logo-svg { width: 250px; height: auto; display: block; }
.nav-logo-wordmark { flex-shrink: 0; }
.nav-logomark { display: none; }


.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--color-text-mid); }
.nav.scrolled .nav-links a:hover { color: var(--color-text); }

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-accent);
  transition: color var(--transition);
}
.nav-cta:hover { color: var(--color-accent-deep); }
.nav.scrolled .nav-cta { color: var(--color-accent); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav.scrolled .nav-hamburger span { background: var(--color-text); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 24px 48px 32px;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 16px 40px rgba(10,37,64,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 18px;
  font-weight: 300;
  color: var(--color-text-mid);
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--color-text); }
.nav-mobile .btn { margin-top: 20px; align-self: flex-start; }

/* ============================================================
   PAGE TRANSITIONS
   ============================================================ */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
body.transitioning .page-transition { opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background-color: var(--color-bg-dark);
  background-image:
    linear-gradient(90deg, rgba(8,22,43,0.92) 0%, rgba(8,22,43,0.82) 42%, rgba(8,22,43,0.62) 100%),
    var(--hero-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(var(--color-accent) 1px, transparent 1px), linear-gradient(90deg, var(--color-accent) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(46,204,113,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 680px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

.hero h1 { color: #fff; margin-bottom: 20px; }
.hero .lead { color: rgba(255,255,255,0.5); max-width: 440px; margin-bottom: 36px; }

.home-page {
  --hero-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80");
}

.about-page {
  --page-hero-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=80");
}

.services-page {
  --page-hero-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80");
}

.contact-page {
  --page-hero-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80");
}

.areas-page {
  --page-hero-image: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1800&q=80");
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat {
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-stat-val {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-lbl {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   CINEMATIC BAND
   ============================================================ */
.cinematic {
  background: var(--color-bg-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cinematic-grid {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: linear-gradient(rgba(255,255,255,1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cinematic-line {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: rgba(46,204,113,0.15);
}
.cinematic-word {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.cinematic-word em { font-style: italic; color: var(--color-accent); }
.cinematic-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  display: flex;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-cell {
  flex: 1;
  padding: 24px 0;
  text-align: center;
  border-right: 1px solid var(--color-border);
}
.trust-cell:last-child { border-right: none; }
.trust-val {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 5px;
}
.trust-val--accent { color: var(--color-accent); }
.trust-lbl {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ============================================================
   SERVICE GRID
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-cell {
  background: var(--color-bg);
  padding: 28px 24px 28px;
  transition: background var(--transition);
}
.service-cell:hover { background: var(--color-bg-soft); }
.service-num {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: block;
}
.service-cell h3 { margin-bottom: 8px; }
.service-cell p { font-size: 12px; color: var(--color-text-mid); line-height: 1.65; }

.service-cell--icon {
  display: block;
  color: inherit;
  text-decoration: none;
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-soft);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg {
  width: 25px;
  height: 25px;
}
.service-icon svg path {
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-cell--icon:hover .service-icon {
  background: rgba(41, 176, 139, 0.10);
  border-color: rgba(41, 176, 139, 0.28);
}

/* Full service page cells */
.service-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-full-cell {
  background: var(--color-bg);
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: start;
  gap: 0;
  transition: background var(--transition);
}
.service-full-cell:hover { background: var(--color-bg-soft); }
.service-full-left {
  padding: 32px 32px;
  border-right: 1px solid var(--color-border);
}
.service-full-body {
  padding: 32px 40px;
}
.service-full-cta {
  padding: 32px 32px;
  border-left: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.service-features-list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.service-feature {
  font-size: 12px;
  color: var(--color-text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-feature::before {
  content: '';
  width: 16px; height: 16px;
  background: rgba(46,204,113,0.12);
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4.2 7.2L8 3' stroke='%232ECC71' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ============================================================
   STATEMENT BAND
   ============================================================ */
.statement {
  padding: 72px 0;
  background: var(--color-bg-soft);
  display: flex;
  align-items: center;
}
.statement-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.statement-bar {
  width: 3px;
  align-self: stretch;
  background: var(--color-accent);
  border-radius: 2px;
  flex-shrink: 0;
  min-height: 80px;
}
.statement-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.statement-text em { font-style: italic; color: var(--color-text-mid); }

/* ============================================================
   WHY US GRID
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-cell {
  background: var(--color-bg);
  padding: 36px 36px;
}
.why-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: rgba(10,37,64,0.08);
  line-height: 1;
  margin-bottom: 12px;
}
.why-cell h3 { margin-bottom: 10px; }
.why-cell p { font-size: 13px; color: var(--color-text-mid); line-height: 1.75; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testi-stars { font-size: 11px; color: var(--color-accent); letter-spacing: 3px; margin-bottom: 16px; }
.testi-quote { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 20px; }
.testi-rule { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 16px; }
.testi-name { font-size: 12px; font-weight: 500; color: #fff; margin-bottom: 2px; }
.testi-company { font-size: 11px; color: rgba(255,255,255,0.3); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: var(--section-y) 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band .lead { margin-bottom: 32px; max-width: 400px; margin-left: auto; margin-right: auto; }

/* ============================================================
   ZIP CHECKER (cinematic version)
   ============================================================ */
.zip-section {
  background-color: var(--color-bg-dark);
  background-image:
    linear-gradient(90deg, rgba(8,22,43,0.94) 0%, rgba(8,22,43,0.82) 45%, rgba(8,22,43,0.66) 100%),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.zip-section-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 48px 48px;
}
.zip-inner { position: relative; z-index: 1; max-width: 520px; margin: 0 auto; }
.zip-inner h2 { color: #fff; margin-bottom: 8px; }
.zip-inner p { color: rgba(255,255,255,0.4); font-size: 14px; font-weight: 300; margin-bottom: 32px; }
.zip-row {
  display: flex;
  gap: 8px;
  max-width: 380px;
  margin: 0 auto;
}
.zip-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 12px 20px;
  font-size: 15px;
  font-family: var(--font-body);
  color: #fff;
  outline: none;
  min-height: 48px;
  letter-spacing: 0.05em;
  transition: border-color var(--transition);
  text-align: center;
}
.zip-input::placeholder { color: rgba(255,255,255,0.25); letter-spacing: 0.1em; }
.zip-input:focus { border-color: rgba(46,204,113,0.5); background: rgba(255,255,255,0.08); }
.zip-result {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  display: none;
  line-height: 1.6;
}
.zip-result.success { color: var(--color-accent); display: block; }
.zip-result.error { color: rgba(255,255,255,0.45); display: block; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-wrap { max-width: 600px; margin: 0 auto; }
.form-eyebrow { text-align: center; margin-bottom: 48px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 12px; font-weight: 500; color: var(--color-text-mid); margin-bottom: 6px; letter-spacing: 0.02em; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-mid);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--color-text);
  outline: none;
  min-height: 48px;
  transition: border-color var(--transition), background var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(46,204,113,0.08);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; margin-top: 8px; font-size: 14px; min-height: 52px; border-radius: var(--radius); }
.form-footnote { text-align: center; font-size: 11px; color: var(--color-text-muted); margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 48px 0; }
.form-success.visible { display: block; }
.form-success-val { font-family: var(--font-display); font-size: 48px; color: var(--color-accent); line-height: 1; margin-bottom: 12px; }
.form-success h3 { font-size: 20px; font-weight: 400; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--color-text-mid); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background-color: var(--color-bg-dark);
  background-image:
    linear-gradient(90deg, rgba(8,22,43,0.92) 0%, rgba(8,22,43,0.8) 45%, rgba(8,22,43,0.58) 100%),
    var(--page-hero-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: calc(var(--nav-height) + 64px) 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero-glow {
  position: absolute;
  top: -30%; right: -10%;
  width: 50%; height: 160%;
  background: radial-gradient(ellipse, rgba(46,204,113,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,0.45); max-width: 520px; }

/* ============================================================
   FOUNDER PAGE
   ============================================================ */
.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  min-height: 600px;
}
.founder-photo-col {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-soft);
  border-right: 1px solid var(--color-border);
}
.founder-photo-inner {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
}
.founder-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.founder-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--color-bg-dark);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.founder-badge-val {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-accent);
  line-height: 1;
}
.founder-badge-lbl {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.founder-content-col {
  padding: 56px 56px;
}
.founder-content-col .eyebrow { margin-bottom: 12px; }
.founder-name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 4px;
}
.founder-title { font-size: 13px; color: var(--color-accent); font-weight: 500; margin-bottom: 28px; }
.founder-body { color: var(--color-text-mid); font-size: 15px; font-weight: 300; line-height: 1.8; }
.founder-body p { margin-bottom: 16px; }

.founder-principles {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}
.founder-principle {
  background: var(--color-bg);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.founder-principle-bar {
  width: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 40px;
}
.founder-principle-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.45;
  font-style: italic;
}

/* Timeline */
.timeline { max-width: 600px; margin: 0 auto; }
.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 28px;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-dot--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.timeline-dot-inner {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-text-muted);
}
.timeline-dot--active .timeline-dot-inner { background: #fff; }
.timeline-content { padding-top: 8px; }
.timeline-year {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 4px;
}
.timeline-content h3 { margin-bottom: 6px; }
.timeline-content p { font-size: 13px; color: var(--color-text-mid); line-height: 1.7; }

/* ============================================================
   AREAS PAGE
   ============================================================ */
.towns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}
.town-pill {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--color-text-mid);
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.town-pill:hover { border-color: var(--color-accent); color: var(--color-text); background: rgba(46,204,113,0.05); }

.county-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.county-cell {
  background: var(--color-bg);
  padding: 32px;
}
.county-cell h3 { margin-bottom: 16px; }
.county-towns { display: flex; flex-direction: column; gap: 6px; }
.county-town { font-size: 13px; color: var(--color-text-mid); display: flex; align-items: center; gap: 8px; }
.county-town::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--color-accent); flex-shrink: 0; }

/* ============================================================
   CONTENT NEEDED BADGES
   ============================================================ */
.content-needed {
  background: #FFFBEB;
  border: 1.5px dashed #D97706;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 12px;
  color: #92400E;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
  margin: 16px 0;
}
.content-needed::before { content: '📋'; flex-shrink: 0; font-size: 14px; }

/* ============================================================
   MOBILE CALL BUTTON
   ============================================================ */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 52px;
  height: 52px;
  background: var(--color-accent);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(46,204,113,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mobile-call-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(46,204,113,0.5); }
.mobile-call-btn svg { width: 22px; height: 22px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 48px 0 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}
.footer-brand-name { font-size: 15px; font-weight: 500; color: var(--color-text); margin-bottom: 4px; }
.footer-brand-sub { font-size: 11px; color: var(--color-text-muted); }
.footer-cols { display: flex; gap: 48px; }
.footer-col h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.footer-col a { display: block; font-size: 12px; color: var(--color-text-mid); margin-bottom: 8px; transition: color var(--transition); }
.footer-col a:hover { color: var(--color-text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--color-text-muted);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 60ms; }
.fade-up:nth-child(3) { transition-delay: 120ms; }
.fade-up:nth-child(4) { transition-delay: 180ms; }
.fade-up:nth-child(5) { transition-delay: 240ms; }
.fade-up:nth-child(6) { transition-delay: 300ms; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
}
.error-num {
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 180px);
  font-weight: 400;
  color: rgba(10,37,64,0.06);
  line-height: 1;
  margin-bottom: -20px;
}
.error-page h1 { margin-bottom: 12px; }
.error-page p { color: var(--color-text-mid); font-weight: 300; margin-bottom: 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .service-full-cell { grid-template-columns: 1fr; }
  .service-full-cta { border-left: none; border-top: 1px solid var(--color-border); padding: 20px 32px; }
  .founder-layout { grid-template-columns: 1fr; }
  .founder-photo-col { border-right: none; border-bottom: 1px solid var(--color-border); }
  .founder-photo-inner { min-height: 320px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .county-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-y: 56px; }
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-call-btn { display: flex; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-strip { flex-wrap: wrap; }
  .trust-cell { min-width: 50%; }
  .footer-cols { flex-wrap: wrap; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .county-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .service-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .btn-group--center { align-items: center; }
  .zip-row { flex-direction: column; }
}
@media (max-width: 560px) { .nav-logo-svg { width: 200px; } .mobile-call-btn { display: none !important; } }
