/* =============================================================
   Maryland Lot Striping — styles.css
   Theme: striping yellow on dark asphalt
   ============================================================= */

:root {
  --asphalt-900: #15171a;
  --asphalt-800: #1a1c1f;
  --asphalt-700: #23262b;
  --asphalt-600: #2d3137;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --yellow: #ffce00;
  --yellow-600: #e6b800;
  --yellow-soft: rgba(255, 206, 0, 0.12);
  --ink: #14171a;
  --ink-soft: #3c434b;
  --muted: #5b646d;
  --muted-light: #c7ccd1;
  --paper: #ffffff;
  --paper-2: #f5f6f8;
  --paper-3: #eceef1;
  --ok: #1f9d57;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.05);
  --shadow-md: 0 8px 28px rgba(10,12,15,.12);
  --container: 1140px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--ink); text-decoration: none; }

h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow-600);
  margin-bottom: .7rem;
}
.eyebrow.on-dark { color: var(--yellow); }

.lead { font-size: 1.18rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-weight: 800;
  font-size: 1rem;
  padding: .85em 1.5em;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--yellow); color: var(--ink); }
.btn-primary:hover { background: var(--yellow-600); box-shadow: 0 8px 22px rgba(255,206,0,.32); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline.on-dark { color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline.on-dark:hover { background: #fff; color: var(--ink); border-color:#fff; }
.btn-lg { padding: 1em 1.8em; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--asphalt-900);
  border-bottom: 3px solid var(--yellow);
}
.topbar {
  background: #0f1113;
  color: var(--muted-light);
  font-size: .85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 7px;
  padding-bottom: 7px;
  flex-wrap: wrap;
}
.topbar a { color: var(--muted-light); }
.topbar a:hover { color: var(--yellow); }
.topbar .tb-right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar strong { color: #fff; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand .brand-name { color: #fff; font-weight: 800; font-size: 1.12rem; letter-spacing: -.01em; }
.brand .brand-sub { color: var(--yellow); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: #e9ecef;
  font-weight: 600;
  font-size: .96rem;
  padding: .55em .8em;
  border-radius: 8px;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-links a.active { color: var(--yellow); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 8px;
  padding: 9px 11px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(15,17,19,.86), rgba(15,17,19,.92)),
    repeating-linear-gradient(115deg, #1d2024 0 64px, #191b1e 64px 128px);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 14px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 46px, transparent 46px 92px);
  opacity: .9;
}
.hero .container { position: relative; padding-top: 78px; padding-bottom: 90px; }
.hero h1 { color: #fff; max-width: 18ch; }
.hero h1 .hl { color: var(--yellow); }
.hero p { color: #d6dadf; font-size: 1.2rem; max-width: 56ch; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 1.9rem; color: #c7ccd1; font-size: .92rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { flex: none; }

/* hero card / quick form preview */
.hero-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.hero-card h3 { font-size: 1.25rem; }
.hero-card ul { list-style: none; margin: 14px 0 18px; padding: 0; }
.hero-card li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; font-weight: 600; color: var(--ink-soft); }
.hero-card li svg { flex: none; margin-top: 3px; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-tight { padding: 52px 0; }
.section-light { background: var(--paper-2); }
.section-dark { background: var(--asphalt-800); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #c7ccd1; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--paper-3);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s;
  height: 100%;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #dfe3e7; }
.card .icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--yellow-soft);
  border-radius: 12px;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: .8rem; }
.card .card-link { font-weight: 800; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.card .card-link:hover { color: var(--yellow-600); }
.card .card-link::after { content: "→"; transition: transform .15s; }
.card .card-link:hover::after { transform: translateX(3px); }

/* feature list with check bullets */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks li svg { flex: none; margin-top: 4px; }
.checks.cols-2 { grid-template-columns: 1fr 1fr; }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; text-align: center; }
.stats .stat { padding: 8px; }
.stats .num { font-size: 2.4rem; font-weight: 800; color: var(--yellow); letter-spacing: -.02em; }
.stats .lbl { color: #c7ccd1; font-size: .95rem; font-weight: 600; }

/* split content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split .media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--asphalt-800);
  min-height: 320px;
  box-shadow: var(--shadow-md);
}

/* process steps */
.steps { counter-reset: step; display: grid; gap: 22px; }
.steps .step { display: flex; gap: 18px; align-items: flex-start; }
.steps .step::before {
  counter-increment: step;
  content: counter(step);
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  border-radius: 50%;
}
.steps .step h3 { margin-bottom: .2rem; }
.steps .step p { color: var(--ink-soft); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(120deg, rgba(255,206,0,.10), rgba(255,206,0,0)),
    var(--asphalt-900);
  color: #fff;
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
}
.cta-band .inner {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin: 0; }
.cta-band p { color: #c7ccd1; margin: .4rem 0 0; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Reviews ---------- */
.review {
  background: #fff;
  border: 1px solid var(--paper-3);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.review .stars { color: var(--yellow-600); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 10px; }
.review blockquote { margin: 0 0 16px; font-size: 1.02rem; color: var(--ink-soft); }
.review .who { font-weight: 800; }
.review .role { color: var(--muted); font-size: .9rem; }
.badge-sample {
  display:inline-block; font-size:.7rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  color: var(--muted); background: var(--paper-3); padding:3px 8px; border-radius:6px; margin-left:8px;
}

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--paper-3); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 44px 20px 4px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 700; color: var(--yellow-600);
  transition: transform .2s;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 4px 20px; margin: 0; color: var(--ink-soft); }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .95rem; }
.field .req { color: #cc3b3b; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid #d4d8dd;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--yellow-600);
  box-shadow: 0 0 0 3px var(--yellow-soft);
}
.form-hint { font-size: .85rem; color: var(--muted); }
.hp { position: absolute; left: -5000px; }

/* contact detail blocks */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ic { flex: none; width: 44px; height: 44px; display: grid; place-items: center; background: var(--yellow-soft); border-radius: 10px; }
.contact-list .lbl { font-weight: 800; }
.contact-list a { color: var(--ink); font-weight: 600; }
.contact-list a:hover { color: var(--yellow-600); }

/* ---------- Breadcrumbs ---------- */
.crumbs { background: var(--paper-2); border-bottom: 1px solid var(--paper-3); font-size: .9rem; }
.crumbs .container { padding-top: 12px; padding-bottom: 12px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; color: var(--muted); }
.crumbs li::after { content: "/"; margin-left: 8px; color: #b9c0c7; }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--muted); font-weight: 600; }
.crumbs a:hover { color: var(--yellow-600); }
.crumbs li[aria-current] { color: var(--ink); font-weight: 700; }

/* ---------- Page hero (inner) ---------- */
.page-hero {
  background:
    linear-gradient(180deg, rgba(15,17,19,.82), rgba(15,17,19,.92)),
    repeating-linear-gradient(115deg, #1d2024 0 64px, #191b1e 64px 128px);
  color: #fff;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 10px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 40px, transparent 40px 80px);
}
.page-hero .container { padding: 56px 22px 64px; }
.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero p { color: #d6dadf; font-size: 1.15rem; max-width: 60ch; margin-bottom: 0; }

/* prose blocks for content pages */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.3em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .5em; }
.prose.wide { max-width: 860px; }

/* pill list of towns/areas */
.pills { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pills li { background: #fff; border: 1px solid var(--paper-3); border-radius: 999px; padding: 8px 16px; font-weight: 600; font-size: .92rem; box-shadow: var(--shadow-sm); }
.section-dark .pills li { background: var(--asphalt-700); border-color: var(--line); color: #e9ecef; }

/* ---------- Footer ---------- */
.site-footer { background: var(--asphalt-900); color: #aeb4bb; padding: 60px 0 26px; border-top: 3px solid var(--yellow); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.site-footer h4 { color: #fff; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #aeb4bb; }
.site-footer a:hover { color: var(--yellow); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-brand .brand-name { color: #fff; font-weight: 800; font-size: 1.15rem; }
.footer-brand p { font-size: .95rem; margin-top: 12px; max-width: 34ch; }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-contact a { font-weight: 600; }
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 40px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .85rem; color: #7d858d;
}
.footer-bottom a { color: #7d858d; }

/* sticky mobile call bar */
.call-bar { display: none; }

/* utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
.nowrap { white-space: nowrap; }
.visually-hidden { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 26px; }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 320px);
    flex-direction: column;
    align-items: stretch;
    background: var(--asphalt-800);
    padding: 84px 22px 30px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform .25s ease;
    box-shadow: -20px 0 60px rgba(0,0,0,.5);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 12px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-links .nav-cta { margin: 14px 0 0; }
  .nav-links .btn { width: 100%; }
  .nav-toggle { display: block; z-index: 60; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 40; }
  .nav-scrim.show { display: block; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  section { padding: 52px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checks.cols-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .topbar .tb-left { display: none; }
  .topbar .container { justify-content: center; }
  .cta-band .inner { flex-direction: column; align-items: flex-start; }
  /* sticky call bar on mobile */
  .call-bar {
    display: flex;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: var(--asphalt-900);
    border-top: 2px solid var(--yellow);
  }
  .call-bar a {
    flex: 1; text-align: center; color: #fff; font-weight: 800; padding: 13px 8px;
    display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .98rem;
  }
  .call-bar a.primary { background: var(--yellow); color: var(--ink); }
  .call-bar a + a { border-left: 1px solid var(--line); }
  body { padding-bottom: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
