/* ============================================================
   Jay's Local Junk Removal, Salt Lake County Junk Hauling
   Design system: ink black · charcoal · lime green · bone · steel
   Vibe: rugged, blue-collar, high-contrast, athletic-badge energy
   ============================================================ */

:root {
  /* Core palette */
  --ink: #0e0e0e;            /* near-black (brand black) */
  --charcoal: #16191a;       /* charcoal section bg */
  --charcoal-2: #20262a;     /* raised charcoal / cards */
  --charcoal-3: #2a3236;     /* hover fill */
  --lime: #84bd3e;           /* logo green, USE ON DARK backgrounds */
  --lime-bright: #97d24c;    /* hover / glow green on dark */
  --lime-deep: #6a9c2f;      /* deeper green decorative */
  --lime-ink: #4e7a1f;       /* a11y: green TEXT on LIGHT backgrounds (>=4.5:1) */
  --steel: #9aa0a6;          /* steel gray (truck), on DARK only */
  --steel-ink: #5b6166;      /* a11y: gray TEXT on LIGHT backgrounds (>=4.5:1) */
  --bone: #f5f5f2;           /* warm white sections */
  --paper: #ffffff;          /* lightest */
  --line: rgba(14, 14, 14, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);

  /* Text */
  --text: #14181a;           /* near-black body text on light */
  --text-soft: #454b4f;      /* secondary text on light (>=4.5:1 on bone) */
  --text-faint: #8a9096;     /* OK on DARK backgrounds only */
  --muted-on-light: #5b6166; /* a11y: faint TEXT on LIGHT (>=4.5:1) */
  --on-dark: #ecedee;        /* primary text on dark */
  --on-dark-soft: #b3b8bc;   /* secondary text on dark (>=4.5:1 on charcoal) */

  /* Type */
  --display: "Anton", "Arial Narrow", "Oswald", system-ui, sans-serif;
  --condensed: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 2px 10px rgba(14, 14, 14, 0.08);
  --shadow: 0 18px 50px -22px rgba(14, 14, 14, 0.5);
  --shadow-lg: 0 40px 90px -40px rgba(14, 14, 14, 0.66);
  --lime-glow: 0 12px 30px -12px rgba(132, 189, 62, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Signature caution-stripe motif (diagonal hauling/warning tape) */
  --stripes: repeating-linear-gradient(
    -45deg,
    var(--lime) 0 14px,
    var(--ink) 14px 28px
  );
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 2.5rem); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--lime); color: var(--ink); font-weight: 700; padding: 0.7rem 1.1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { color: var(--text); }
h1, h2 {
  font-family: var(--display); font-weight: 400; line-height: 0.96;
  letter-spacing: 0.005em; text-transform: uppercase;
}
h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h3 { font-family: var(--condensed); font-weight: 600; font-size: 1.32rem; line-height: 1.15; letter-spacing: 0.005em; }
h4 { font-family: var(--condensed); font-weight: 600; font-size: 1rem; }

.eyebrow {
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lime-ink);
  margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--lime); display: inline-block; }
.eyebrow-light { color: var(--lime); }

.lead { font-size: 1.18rem; color: var(--text-soft); line-height: 1.6; }
.accent { color: var(--lime); }
.accent-ink { color: var(--lime-ink); }

/* Signature diagonal caution-stripe divider */
.stripe-divider { height: 8px; background: var(--stripes); width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--condensed); font-weight: 600; font-size: 1.02rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 0.9rem 1.7rem; border-radius: 6px;
  min-height: 48px;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 0.6rem 1.15rem; font-size: 0.92rem; min-height: 44px; }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.12rem; }
.btn-block { width: 100%; }

/* Primary = lime call-to-action */
.btn-primary { background: var(--lime); color: var(--ink); box-shadow: var(--lime-glow); }
.btn-primary::after { content: ""; position: absolute; inset: 0; background: var(--lime-bright); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); z-index: -1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(132, 189, 62, 0.7); }
.btn-primary:hover::after { transform: scaleX(1); }

/* Ghost = outline on dark/photo */
.btn-ghost { color: #fff; border: 2px solid rgba(255,255,255,0.55); }
.btn-ghost::after { content: ""; position: absolute; inset: 0; background: #fff; transform: scaleY(0); transform-origin: bottom; transition: transform 0.35s var(--ease); z-index: -1; }
.btn-ghost:hover { color: var(--ink); transform: translateY(-2px); border-color: #fff; }
.btn-ghost:hover::after { transform: scaleY(1); }

/* Dark = solid black on light bg */
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark::after { content: ""; position: absolute; inset: 0; background: var(--charcoal-2); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); z-index: -1; }
.btn-dark:hover { transform: translateY(-2px); }
.btn-dark:hover::after { transform: scaleX(1); }

/* Text/SMS secondary on dark bar */
.btn-outline-lime { background: transparent; color: var(--lime); border: 2px solid var(--lime); }
.btn-outline-lime:hover { background: var(--lime); color: var(--ink); transform: translateY(-2px); }

:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 4px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.85rem 0;
  background: rgba(14, 14, 14, 0.55);
  backdrop-filter: blur(2px);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(14px) saturate(140%);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(132, 189, 62, 0.22);
  box-shadow: 0 14px 34px -26px rgba(0,0,0,0.9);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

/* Brand: logo PNG when present + CSS wordmark fallback */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: #fff; }
.brand-logo { height: 58px; width: auto; display: none; }       /* square badge, shown once it loads (JS) */
.brand.has-logo .brand-logo { display: block; }
.brand.has-logo .brand-wordmark { display: none; }
.brand-wordmark {
  display: flex; flex-direction: column; line-height: 0.86;
  transition: transform 0.5s var(--ease);
}
.brand:hover .brand-wordmark { transform: translateY(-1px); }
.brand-top { font-family: var(--condensed); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.22em; color: var(--lime); text-transform: uppercase; }
.brand-main { font-family: var(--display); font-weight: 400; font-size: 1.55rem; letter-spacing: 0.01em; color: #fff; text-transform: uppercase; }

.main-nav { display: flex; gap: 1.7rem; align-items: center; }
.main-nav a {
  font-family: var(--condensed); font-weight: 500; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.86); position: relative; padding: 0.3rem 0;
  white-space: nowrap; transition: color 0.3s var(--ease);
}
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--lime); transition: width 0.3s var(--ease); }
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 1.1rem; }
.phone-link { display: inline-flex; align-items: center; gap: 0.45rem; color: #fff; font-family: var(--condensed); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.02em; white-space: nowrap; }
.phone-link svg { color: var(--lime); }
.phone-link:hover { color: var(--lime); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; z-index: 120; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav-toggle span { width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(14, 14, 14, 0.99); backdrop-filter: blur(8px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 5.5rem 1.5rem 3rem; overflow-y: auto;
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.15rem; text-align: center; width: 100%; max-width: 420px; }
.mobile-menu > nav > a { color: #fff; font-family: var(--display); font-size: 1.75rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.02em; }
.mobile-menu a:hover { color: var(--lime); }
.mobile-menu .btn { font-size: 1.05rem; margin-top: 0.5rem; }
.mobile-phone { font-family: var(--condensed) !important; font-size: 1.2rem !important; color: var(--lime) !important; font-weight: 600; }

/* keep estimate button visible on solid subpage headers */
.site-header.solid .header-cta { display: flex; }
@media (max-width: 560px) { .site-header.solid .phone-link { display: none; } }

/* WebDevAuto credit link */
.wda-link { color: #5aa9ff; text-decoration: underline; text-underline-offset: 2px; }
.wda-link:hover { color: #82c0ff; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; background: var(--ink); }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(132,189,62,0.12) 0%, transparent 55%),
    linear-gradient(160deg, #1c2226 0%, #0e0e0e 60%);
}
/* faint diagonal stripe texture in hero corner */
.hero-bg::before {
  content: ""; position: absolute; top: 0; right: 0; width: 46%; height: 100%;
  background: var(--stripes); opacity: 0.06;
  -webkit-mask-image: linear-gradient(250deg, #000 0%, transparent 70%);
  mask-image: linear-gradient(250deg, #000 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; padding-top: 7.5rem; padding-bottom: 5rem; }

/* Two-column hero: messaging left, lead-capture card right */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-copy .eyebrow, .hero-copy .hero-title, .hero-copy .hero-sub, .hero-copy .hero-actions, .hero-copy .hero-badges { max-width: 620px; }
.hero-title {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.6rem, 6vw, 5rem); line-height: 0.94; letter-spacing: 0.005em;
  color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero-title .accent { color: var(--lime); }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.24rem); color: rgba(255,255,255,0.9); max-width: 560px; margin: 1.4rem 0 2rem; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero-actions .btn-phone-num { font-family: var(--display); letter-spacing: 0.02em; }
.hero-form-jump { display: none; } /* mobile-only scroll-to-form, shown below */
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.7rem 1.4rem; margin-top: 2.2rem; }
.hero-badges li { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--condensed); font-weight: 500; font-size: 0.98rem; letter-spacing: 0.01em; color: rgba(255,255,255,0.92); }
.hero-badges svg { color: var(--lime); flex-shrink: 0; }

/* Hero lead-capture card (raised charcoal panel on the dark hero) */
.hero-form-col { min-width: 0; }
.quote-card {
  background: linear-gradient(180deg, var(--charcoal-2) 0%, #1a1f22 100%);
  border: 1px solid rgba(132,189,62,0.28);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.4vw, 2rem);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.02) inset;
  position: relative; overflow: hidden;
}
.quote-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--lime);
}
.quote-card-head { margin-bottom: 1.2rem; }
.quote-card-title { color: #fff; font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1; letter-spacing: 0.01em; margin-bottom: 0.45rem; }
.quote-card-sub { color: var(--on-dark-soft); font-size: 0.95rem; line-height: 1.4; }
.quote-card .field { margin-bottom: 0.85rem; }
.quote-card .field label { color: var(--on-dark); }
.quote-card .field .field-opt { color: var(--on-dark-soft); font-weight: 400; text-transform: none; letter-spacing: 0; }
.quote-card .field input, .quote-card .field textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.16); color: #fff;
}
.quote-card .field input::placeholder, .quote-card .field textarea::placeholder { color: rgba(255,255,255,0.45); }
.quote-card .field input:focus, .quote-card .field textarea:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(132,189,62,0.3); background: rgba(255,255,255,0.06); }
.quote-card .field textarea { min-height: 80px; }
.quote-card .btn-block { margin-top: 0.4rem; }
.quote-card-note { margin-top: 0.85rem; font-size: 0.82rem; color: var(--on-dark-soft); text-align: center; line-height: 1.4; }
.quote-card .form-success { margin-top: 1rem; }

.scroll-cue { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.45); border-radius: 14px; display: flex; justify-content: center; padding-top: 8px; }
.scroll-cue span { width: 4px; height: 8px; background: var(--lime); border-radius: 4px; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(10px); } 100% { opacity: 0; } }

/* ---------- Trust strip ---------- */
.trust { background: var(--lime); color: var(--ink); padding: 1.5rem 0; }
.trust-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem 2.4rem; }
.trust-item { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--condensed); font-weight: 600; font-size: 1.04rem; text-transform: uppercase; letter-spacing: 0.03em; }
.trust-item svg { flex-shrink: 0; }
.trust-sep { width: 7px; height: 7px; background: var(--ink); border-radius: 50%; opacity: 0.5; }

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-dark { background: var(--charcoal); color: var(--on-dark); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-ink { background: var(--ink); color: var(--on-dark); }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-tint { background: var(--bone); }

.section-head { max-width: 760px; margin: 0 auto clamp(2.6rem, 5vw, 3.8rem); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-intro { color: var(--text-soft); font-size: 1.12rem; margin-top: 1rem; }
.section-dark .section-intro, .section-ink .section-intro { color: var(--on-dark-soft); }

/* ---------- Before / After gallery ---------- */
/* One full-width before/after set per row; portrait-friendly 4/5 crop */
.ba-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.2rem); max-width: 980px; margin-inline: auto; }
.ba-set {
  background: var(--charcoal-2); border: 1px solid var(--line-light); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.ba-set:hover { transform: translateY(-5px); border-color: rgba(132,189,62,0.5); box-shadow: var(--shadow-lg); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: var(--ink); }
.ba-shot { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--charcoal-3); }
.ba-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.ba-set:hover .ba-shot img { transform: scale(1.05); }
/* styled placeholder when the photo 404s (img onerror toggles .ph) */
.ba-shot.ph { display: flex; align-items: center; justify-content: center; }
.ba-shot.ph img { display: none; }
.ba-shot.ph::after {
  content: attr(data-ph); font-family: var(--condensed); font-weight: 600; font-size: 0.86rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--steel);
  text-align: center; padding: 1rem; line-height: 1.4;
}
.ba-badge {
  position: absolute; top: 0.7rem; left: 0.7rem; z-index: 2;
  font-family: var(--condensed); font-weight: 700; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.32rem 0.7rem; border-radius: 4px;
}
.ba-badge.before { background: rgba(14,14,14,0.85); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.ba-badge.after { background: var(--lime); color: var(--ink); }
.ba-caption { padding: 1.1rem 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.ba-caption h3 { color: #fff; margin: 0; }
.ba-caption .ba-tag { font-family: var(--condensed); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--lime); font-weight: 600; }

/* ---------- Services grid ---------- */
.card-grid { display: grid; gap: 1.3rem; }
.services-grid { grid-template-columns: repeat(3, 1fr); }

.service-card {
  background: var(--charcoal-2); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--lime); transition: width 0.45s var(--ease); }
.service-card:hover { transform: translateY(-5px); background: var(--charcoal-3); border-color: rgba(132,189,62,0.5); box-shadow: var(--shadow-lg); }
.service-card:hover::before { width: 100%; }
.service-ico {
  width: 52px; height: 52px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(132,189,62,0.14); color: var(--lime); margin-bottom: 1.1rem;
  border: 1px solid rgba(132,189,62,0.32); transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.service-card:hover .service-ico { transform: scale(1.06) rotate(-3deg); background: rgba(132,189,62,0.22); }
.service-card h3 { color: #fff; margin-bottom: 0.45rem; }
.service-card p { color: var(--on-dark-soft); font-size: 0.95rem; line-height: 1.5; }

/* ---------- Pricing ---------- */
.pricing-wrap { max-width: 1040px; margin-inline: auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.price-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(132,189,62,0.6); }
.price-card.feature { background: var(--ink); color: #fff; border-color: var(--ink); }
.price-card.feature::after {
  content: "POPULAR"; position: absolute; top: 0.9rem; right: -2.2rem; transform: rotate(45deg);
  background: var(--lime); color: var(--ink); font-family: var(--condensed); font-weight: 700;
  font-size: 0.62rem; letter-spacing: 0.12em; padding: 0.25rem 2.4rem;
}
.price-label { font-family: var(--condensed); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 1.04rem; color: var(--text); margin-bottom: 0.5rem; }
.price-card.feature .price-label { color: #fff; }
.price-amount { font-family: var(--display); font-size: 2.7rem; line-height: 1; color: var(--lime-ink); letter-spacing: 0.01em; }
.price-card.feature .price-amount { color: var(--lime); }
.price-unit { font-family: var(--condensed); font-size: 0.92rem; color: var(--muted-on-light); margin-top: 0.5rem; }
.price-card.feature .price-unit { color: var(--on-dark-soft); }

.price-list { max-width: 1040px; margin: 1.2rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem 1.2rem; }
.price-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 0.8rem;
  padding: 0.85rem 1.1rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.price-row .pr-name { font-family: var(--condensed); font-weight: 500; font-size: 1.02rem; color: var(--text); }
.price-row .pr-cost { font-family: var(--display); font-size: 1.18rem; color: var(--lime-ink); white-space: nowrap; }

.price-note {
  max-width: 1040px; margin: 1.8rem auto 0; padding: 1.2rem 1.5rem;
  background: rgba(132,189,62,0.1); border: 1px solid rgba(132,189,62,0.35); border-left: 5px solid var(--lime);
  border-radius: var(--radius-sm); display: flex; align-items: center; gap: 0.9rem;
}
.price-note svg { color: var(--lime-ink); flex-shrink: 0; }
.price-note p { color: var(--text); font-size: 1rem; margin: 0; font-weight: 500; }

/* ---------- Service area ---------- */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.2rem, 6vw, 4.5rem); align-items: center; }
.areas-copy .lead { color: var(--on-dark-soft); }
.area-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.area-chips li {
  font-family: var(--condensed); padding: 0.5rem 1rem; border: 1px solid var(--line-light); border-radius: 6px;
  font-size: 0.96rem; font-weight: 500; color: var(--on-dark); background: rgba(255,255,255,0.03);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.area-chips li:hover { background: rgba(132,189,62,0.16); border-color: var(--lime); transform: translateY(-2px); }
.area-chips .chip-hq { background: var(--lime); color: var(--ink); border-color: var(--lime); font-weight: 700; }
.area-chips .chip-hq:hover { background: var(--lime-bright); }

.area-card {
  background: var(--charcoal-2); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 2rem 1.9rem; box-shadow: var(--shadow);
}
.area-card .area-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--condensed); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; color: var(--lime);
  background: rgba(132,189,62,0.12); border: 1px solid rgba(132,189,62,0.3); padding: 0.4rem 0.85rem; border-radius: 6px; margin-bottom: 1.2rem;
}
.area-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.6rem; }
.area-card p { color: var(--on-dark-soft); font-size: 0.98rem; margin-bottom: 1rem; }
.area-card .area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem; margin-top: 1.2rem; }
.area-card .area-list li { position: relative; padding-left: 1.5rem; font-family: var(--condensed); font-size: 0.98rem; color: var(--on-dark); }
.area-card .area-list li::before {
  content: ""; position: absolute; left: 0; top: 0.35rem; width: 14px; height: 14px; border-radius: 50%;
  background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230e0e0e'%3E%3Cpath d='m9 16.2-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* ---------- About / why ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.2rem, 6vw, 4.5rem); align-items: center; }
.about-copy h2 { margin-bottom: 1.2rem; }
.about-copy .lead { margin-bottom: 1.1rem; }
.about-copy p { color: var(--text-soft); margin-bottom: 1.1rem; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.3rem; margin: 1.7rem 0 2rem; }
.check-list li { position: relative; padding-left: 1.9rem; font-family: var(--condensed); font-weight: 500; color: var(--text); font-size: 1.02rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230e0e0e'%3E%3Cpath d='m9 16.2-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* Why-choose feature panel (lime accent stat tiles) */
.why-panel {
  background: var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  position: relative;
}
.why-panel-stripe { height: 8px; background: var(--stripes); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.why-item { padding: 1.8rem 1.7rem; border-top: 1px solid rgba(255,255,255,0.08); border-left: 1px solid rgba(255,255,255,0.08); }
.why-item:nth-child(odd) { border-left: none; }
.why-item:nth-child(-n+2) { border-top: none; }
.why-ico { color: var(--lime); margin-bottom: 0.9rem; display: inline-flex; }
.why-item h4 { color: #fff; font-size: 1.18rem; margin-bottom: 0.4rem; }
.why-item p { color: var(--on-dark-soft); font-size: 0.94rem; line-height: 1.5; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding: clamp(4rem, 9vw, 7rem) 0; color: #fff; text-align: center; overflow: hidden; background: var(--ink); }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 120% at 50% -10%, rgba(132,189,62,0.18) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-content h2 { color: #fff; font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
.cta-content p { color: rgba(255,255,255,0.88); font-size: 1.18rem; margin: 1.1rem 0 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.2rem, 6vw, 4.5rem); align-items: start; }
.contact-info h2 { margin-bottom: 1.1rem; }
.contact-info .lead { margin-bottom: 1.8rem; }
.contact-list { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-list li { display: flex; align-items: center; gap: 1rem; }
.contact-ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 11px; background: rgba(132,189,62,0.12); color: var(--lime-ink); display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(132,189,62,0.3); }
.contact-label { display: block; font-family: var(--condensed); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-on-light); font-weight: 600; }
.contact-list a, .contact-list div span:last-child { font-family: var(--condensed); font-weight: 500; font-size: 1.08rem; color: var(--text); }
.contact-list a:hover { color: var(--lime-ink); }

/* Slim contact-info block (bottom #contact section, form lives in hero now) */
.contact-info-block {
  max-width: 900px; margin-inline: auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: clamp(1.6rem, 3.5vw, 2.6rem);
  display: flex; flex-direction: column; align-items: stretch; gap: 1.8rem;
}
.contact-info-block .contact-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2rem; flex-direction: row;
}
.contact-info-block .btn { align-self: flex-start; }

.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.05rem; }
.field label { font-family: var(--condensed); font-size: 0.92rem; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--text);
  padding: 0.8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  min-height: 48px; transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--lime-deep); box-shadow: 0 0 0 3px rgba(132,189,62,0.28); outline: none; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--lime); outline-offset: 1px; }
.field .error { font-family: var(--sans); font-size: 0.8rem; color: #c0392b; min-height: 0; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d65a45; }
.form-success { margin-top: 1rem; padding: 0.9rem 1.1rem; background: rgba(132,189,62,0.14); border: 1px solid rgba(132,189,62,0.45); border-radius: var(--radius-sm); color: var(--lime-ink); font-weight: 600; font-size: 0.97rem; }
.form-success.error { background: rgba(214,90,69,0.12); border-color: rgba(214,90,69,0.45); color: #b4452f; }
.form-note { margin-top: 1rem; font-size: 0.86rem; color: var(--muted-on-light); text-align: center; }
.form-note a { color: var(--lime-ink); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark-soft); padding-top: clamp(3.2rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 2.2rem; padding-bottom: 3.2rem; }
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand .brand-main { font-size: 1.7rem; }
.footer-blurb { font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; max-width: 40ch; }
.footer-tagline { font-family: var(--condensed); font-size: 0.86rem; color: var(--lime); letter-spacing: 0.04em; text-transform: uppercase; }
.footer-col h4 { color: #fff; font-family: var(--condensed); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.95rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--lime); }
.footer-col li { font-size: 0.95rem; line-height: 1.5; }
.footer-contact { margin-bottom: 1.3rem; }
.footer-nap-label { display: block; font-family: var(--condensed); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-faint); margin-bottom: 0.2rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.4rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; color: var(--text-faint); }
.footer-legal a { color: var(--text-faint); transition: color 0.3s var(--ease); }
.footer-legal a:hover { color: var(--lime); }

/* ---------- Sticky mobile call/text bar ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; grid-template-columns: 1fr 1fr 1fr;
  background: var(--ink); border-top: 2px solid var(--lime);
  box-shadow: 0 -8px 24px -12px rgba(0,0,0,0.7);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  padding: 0.65rem 0.4rem; min-height: 56px;
  font-family: var(--condensed); font-weight: 600; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.04em;
  color: #fff; transition: background 0.25s var(--ease);
}
.sticky-bar a svg { color: var(--lime); }
.sticky-bar a:active { background: var(--charcoal-2); }
.sticky-bar a.sb-call { background: var(--lime); color: var(--ink); }
.sticky-bar a.sb-call svg { color: var(--ink); }
.sticky-bar a:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.1); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal:nth-child(5) { transition-delay: 0.24s; }
.reveal:nth-child(6) { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
}

/* Stack hero: messaging on top, lead-capture card below */
@media (max-width: 920px) {
  .hero { min-height: auto; }
  .hero-split { grid-template-columns: 1fr; gap: 2rem; }
  .hero-copy .hero-title, .hero-copy .hero-sub, .hero-copy .eyebrow { max-width: none; }
  .hero-form-jump { display: inline-flex; } /* surface the scroll-to-form CTA on mobile */
  .hero-form-col { width: 100%; }
  .quote-card { max-width: 560px; margin-inline: auto; }
  .scroll-cue { display: none; }
}

@media (max-width: 860px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-grid, .areas-grid, .contact-grid, .ba-grid { grid-template-columns: 1fr; }
  .areas-map, .area-card { margin-top: 0.5rem; }
  /* show sticky bar on touch/handheld widths */
  .sticky-bar { display: grid; }
  body { padding-bottom: 64px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .price-list { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item:nth-child(2) { border-top: 1px solid rgba(255,255,255,0.08); }
  .why-item { border-left: none; }
  .area-card .area-list { grid-template-columns: 1fr; }
  .contact-info-block .contact-list { grid-template-columns: 1fr; gap: 1.2rem; }
  .contact-info-block .btn { align-self: stretch; width: 100%; }
  .hero-content { padding-top: 6.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .trust-grid { gap: 0.7rem 1.4rem; }
  .ba-caption { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

/* ---------- Legal / informational pages (shared) ---------- */
.site-header.solid {
  position: sticky; background: rgba(14, 14, 14, 0.97);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(132,189,62,0.22);
}
.legal-main { background: var(--paper); padding: clamp(2.4rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem); }
.legal-wrap { max-width: 800px; margin-inline: auto; }
.legal-wrap > .eyebrow { justify-content: flex-start; }
.legal-wrap h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 0.4rem; }
.legal-updated { color: var(--muted-on-light); font-size: 0.92rem; margin-bottom: 2.2rem; }
.legal-wrap h2 { font-size: 1.4rem; margin: 2rem 0 0.7rem; }
.legal-wrap p, .legal-wrap li { color: var(--text-soft); line-height: 1.75; margin-bottom: 0.9rem; }
.legal-wrap ul { padding-left: 1.3rem; list-style: disc; margin-bottom: 0.9rem; }
.legal-wrap a { color: var(--lime-ink); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.legal-wrap strong { color: var(--text); }
.legal-note { background: var(--bone); border-left: 3px solid var(--lime); padding: 0.9rem 1.15rem; border-radius: 0 8px 8px 0; color: var(--text-soft); font-size: 0.95rem; margin-bottom: 2rem; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; margin-top: 0.5rem; }
.footer-legal-links a { color: var(--on-dark-soft); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal-links a:hover { color: var(--lime); }
