/* ==========================================================================
   Pinnacle Asphalt Paving & Striping — enterprise design system
   ========================================================================== */

:root {
  --navy-900: #071526;
  --navy-800: #0c2340;
  --navy-700: #123053;
  --navy-600: #1b4571;
  --gold-500: #e8a317;
  --gold-600: #c8860c;
  --ink: #16202c;
  --ink-600: #47566a;
  --ink-400: #74839a;
  --paper: #ffffff;
  --paper-alt: #f4f6f9;
  --line: #dbe2eb;
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 1px 2px rgba(7, 21, 38, 0.06), 0 2px 8px rgba(7, 21, 38, 0.05);
  --shadow-md: 0 10px 30px rgba(7, 21, 38, 0.1);
  --shadow-lg: 0 24px 60px rgba(7, 21, 38, 0.16);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-head: "Barlow Condensed", "Inter", system-ui, sans-serif;
  --radius: 3px;
  --wrap: 1200px;
}

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

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

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

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

a { color: var(--navy-600); text-decoration-thickness: 1px; text-underline-offset: 2px; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.01em; line-height: 1.08; margin: 0; text-wrap: balance; }

p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--gold-500); color: var(--navy-900); padding: 0.75rem 1.25rem; font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem; border: 2px solid transparent; border-radius: var(--radius);
  font-family: var(--font); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 1rem 2rem; font-size: 0.92rem; }
.btn-block { width: 100%; }

.btn-solid { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); }
.btn-solid:hover { background: var(--gold-600); border-color: var(--gold-600); }

.btn-outline { background: transparent; border-color: var(--navy-800); color: var(--navy-800); }
.btn-outline:hover { background: var(--navy-800); color: #fff; }

.btn-ghost { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.55); color: #fff; backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: #fff; }

.btn-ghost-dark { background: transparent; border-color: var(--navy-800); color: var(--navy-800); }

/* ---------- utility bar ---------- */

.utility-bar { background: var(--navy-900); color: rgba(255, 255, 255, 0.72); font-size: 0.78rem; }
.utility-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 2.5rem; }
.utility-inner p { margin: 0; }
.utility-note { letter-spacing: 0.04em; text-transform: uppercase; }
.utility-links { display: flex; align-items: center; gap: 1.25rem; }
.utility-links a { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.utility-links a:hover { color: #fff; }
/* ---------- header ---------- */

.site-header { position: sticky; top: 0; z-index: 90; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 5rem; }
.logo { display: block; flex: 0 0 auto; }
.logo img { width: auto; max-height: 54px; }

.primary-nav { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.primary-nav a {
  position: relative; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-600); text-decoration: none; padding: 0.25rem 0;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--gold-500); transition: right 0.2s ease;
}
.primary-nav a:hover, .primary-nav a.active { color: var(--navy-800); }
.primary-nav a:hover::after, .primary-nav a.active::after { right: 0; }

.header-cta { flex: 0 0 auto; }

.nav-toggle {
  display: none; margin-left: auto; width: 2.75rem; height: 2.5rem;
  background: var(--navy-800); border: 0; border-radius: var(--radius); cursor: pointer; position: relative;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  position: absolute; left: 50%; width: 1.25rem; height: 2px; background: #fff;
  transform: translateX(-50%); transition: transform 0.2s ease, opacity 0.2s ease; content: "";
}
.nav-toggle-bar { top: 50%; margin-top: -1px; }
.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

/* ---------- breadcrumbs ---------- */

.breadcrumbs { background: var(--paper-alt); border-bottom: 1px solid var(--line); font-size: 0.8rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 0; padding: 0.7rem 0; }
.breadcrumbs li { color: var(--ink-400); }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.5rem; color: var(--line); }
.breadcrumbs a { color: var(--ink-600); text-decoration: none; }
.breadcrumbs a:hover { color: var(--navy-800); text-decoration: underline; }

/* ---------- hero ---------- */

.hero { position: relative; isolation: isolate; color: #fff; display: flex; align-items: flex-end; min-height: min(78vh, 680px); padding: 7rem 0 4rem; overflow: hidden; }
.hero-city { min-height: min(62vh, 540px); padding: 5.5rem 0 3.5rem; }

.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 21, 38, 0.9) 0%, rgba(7, 21, 38, 0.74) 40%, rgba(7, 21, 38, 0.24) 76%, rgba(7, 21, 38, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 21, 38, 0.7) 0%, rgba(7, 21, 38, 0) 60%);
}

.hero-inner { position: relative; max-width: 42rem; }

.hero-kicker {
  display: inline-block; margin: 0 0 1rem; padding: 0.35rem 0.75rem;
  border-left: 3px solid var(--gold-500); background: rgba(255, 255, 255, 0.07);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #fff;
}

.hero h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); text-transform: uppercase; margin-bottom: 1.25rem; }
.hero-lead { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: rgba(255, 255, 255, 0.86); max-width: 34rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.hero-proof { display: flex; flex-wrap: wrap; gap: 1.75rem; list-style: none; margin: 2.5rem 0 0; padding: 0; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255, 255, 255, 0.72); }
.hero-proof li { position: relative; padding-left: 1rem; }
.hero-proof li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; background: var(--gold-500); }

.hero-phone { display: inline-block; margin-top: 1.5rem; font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.85rem); font-weight: 700; color: var(--gold-500); text-decoration: none; letter-spacing: 0.01em; }
.hero-phone:hover { color: #fff; }
.hero-phone-note { margin: 0.25rem 0 0; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); }

/* ---------- stats ---------- */

.stats-strip { background: var(--navy-800); border-bottom: 3px solid var(--gold-500); }
.stats-list { display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; margin: 0; padding: 0; }
.stats-list li { padding: 2rem 1.5rem; text-align: center; border-right: 1px solid var(--line-dark); }
.stats-list li:last-child { border-right: 0; }
.stat-value { display: block; font-family: var(--font-head); font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 700; color: #fff; line-height: 1; }
.stat-value em { font-style: normal; color: var(--gold-500); }
.stat-label { display: block; margin-top: 0.5rem; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.62); }

/* ---------- sections ---------- */

.section { padding: 5.5rem 0; }
.section-tight { padding: 3rem 0 5rem; }
.section-alt { background: var(--paper-alt); }

.eyebrow { margin: 0 0 0.6rem; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-600); }
.eyebrow-light { color: var(--gold-500); }

.section-title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); text-transform: uppercase; color: var(--navy-800); margin-bottom: 1rem; }
.section-title-light { color: #fff; }

.section-lead { max-width: 44rem; font-size: 1.05rem; color: var(--ink-600); }
.section-lead-light { color: rgba(255, 255, 255, 0.76); }

.prose { color: var(--ink-600); max-width: 40rem; }
.center { text-align: center; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.text-link { color: var(--navy-600); font-weight: 600; }

/* ---------- split media ---------- */

.split-media { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; }
.split-reverse .split-figure { order: -1; }
.split-copy > .section-title { margin-bottom: 1.25rem; }

.split-figure { margin: 0; position: relative; }
.split-figure img { width: 100%; box-shadow: var(--shadow-lg); border-bottom: 4px solid var(--gold-500); }
.split-figure figcaption { margin-top: 0.85rem; font-size: 0.82rem; color: var(--ink-400); letter-spacing: 0.02em; }

/* ---------- tick / spec lists ---------- */

.tick-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.65rem 1.5rem; }
.tick-list li { position: relative; padding-left: 1.5rem; font-size: 0.94rem; color: var(--ink-600); }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 0.5em; width: 0.6rem; height: 0.6rem;
  background: var(--gold-500); clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.spec-card { background: var(--navy-800); color: #fff; padding: 2.25rem; box-shadow: var(--shadow-lg); border-top: 4px solid var(--gold-500); }
.spec-card h3 { font-size: 1.35rem; text-transform: uppercase; margin-bottom: 1.25rem; }
.spec-list { list-style: none; margin: 0 0 1.75rem; padding: 0; }
.spec-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line-dark); font-size: 0.88rem; }
.spec-list li span:first-child { color: rgba(255, 255, 255, 0.64); }
.spec-list li span:last-child { font-weight: 600; text-align: right; }

/* ---------- credentials ---------- */

.cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.cred-card { background: #fff; padding: 1.75rem 1.5rem; border: 1px solid var(--line); border-top: 3px solid var(--navy-800); }
.cred-card h3 { font-size: 1.1rem; text-transform: uppercase; color: var(--navy-800); margin-bottom: 0.6rem; }
.cred-card p { margin: 0; font-size: 0.88rem; color: var(--ink-600); }

/* ---------- services ---------- */

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 3rem; }
.svc-card { background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy-600); }
.svc-media { display: block; overflow: hidden; aspect-ratio: 4 / 3; background: var(--navy-800); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.svc-card:hover .svc-media img { transform: scale(1.05); }
.svc-body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.svc-index { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; color: var(--gold-600); }
.svc-body h3 { font-size: 1.3rem; text-transform: uppercase; margin: 0.35rem 0 0.6rem; }
.svc-body h3 a { color: var(--navy-800); text-decoration: none; }
.svc-body h3 a:hover { color: var(--gold-600); }
.svc-body p { font-size: 0.9rem; color: var(--ink-600); margin-bottom: 1.25rem; }
.svc-link { margin-top: auto; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-600); }

/* ---------- process ---------- */

.process-section { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.process-section::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(232, 163, 23, 0.05) 0 2px, transparent 2px 14px);
  pointer-events: none;
}
.proc-list { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; list-style: none; margin: 3rem 0 0; padding: 0; }
.proc-step { position: relative; padding-top: 2rem; border-top: 2px solid var(--line-dark); }
.proc-step::after { content: ""; position: absolute; top: -2px; left: 0; width: 2.5rem; height: 2px; background: var(--gold-500); }
.proc-num { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.1em; color: var(--gold-500); }
.proc-step h3 { font-size: 1.15rem; text-transform: uppercase; margin: 0.4rem 0 0.6rem; color: #fff; }
.proc-step p { font-size: 0.86rem; color: rgba(255, 255, 255, 0.68); margin: 0; }

/* ---------- reviews ---------- */

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.review-card { margin: 0; background: #fff; border: 1px solid var(--line); padding: 2rem 1.75rem; position: relative; }
.review-card::before { content: "\201C"; position: absolute; top: 0.25rem; left: 1.25rem; font-family: var(--font-head); font-size: 4.5rem; color: var(--line); line-height: 1; }
.review-card blockquote { margin: 0; position: relative; }
.review-card p { font-size: 0.94rem; color: var(--ink-600); }
.review-card figcaption { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.review-name { display: block; font-weight: 700; color: var(--navy-800); }
.review-role { display: block; font-size: 0.8rem; color: var(--ink-400); letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------- faq ---------- */

.faq-wrap { max-width: 56rem; }
.faq-list { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 0; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; text-transform: uppercase; color: var(--navy-800);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--gold-600); line-height: 1; flex: 0 0 auto; }
.faq-item[open] summary::after { content: "–"; }
.faq-answer { padding: 0 0 1.35rem; }
.faq-answer p { margin: 0; max-width: 48rem; color: var(--ink-600); font-size: 0.95rem; }

/* ---------- locations ---------- */

.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.loc-card {
  position: relative; display: block; padding: 1.35rem 2.5rem 1.35rem 1.35rem;
  background: #fff; border: 1px solid var(--line); text-decoration: none; color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.loc-card:hover { border-color: var(--navy-600); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.loc-state { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; color: var(--gold-600); }
.loc-city { display: block; font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; color: var(--navy-800); line-height: 1.15; margin: 0.2rem 0 0.3rem; }
.loc-meta { display: block; font-size: 0.85rem; color: var(--ink-400); }
.loc-arrow { position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%); color: var(--line); font-size: 1.1rem; transition: color 0.18s ease, right 0.18s ease; }
.loc-card:hover .loc-arrow { color: var(--gold-500); right: 0.85rem; }

.loc-search { margin-top: 2rem; max-width: 30rem; }
.loc-search input {
  width: 100%; padding: 0.95rem 1.1rem; font: inherit; color: #fff;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius); backdrop-filter: blur(6px);
}
.loc-search input::placeholder { color: rgba(255, 255, 255, 0.6); }
.loc-search-empty { margin: 0.75rem 0 0; font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); }
.loc-search-empty a { color: var(--gold-500); }
.loc-search-light { margin: 1.5rem 0 0; }
.loc-search-light input { color: var(--ink); background: #fff; border: 1px solid var(--line); backdrop-filter: none; }
.loc-search-light input::placeholder { color: var(--ink-400); }
.loc-search-light .loc-search-empty { color: var(--ink-600); }

.state-jump { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 2rem 0 0.5rem; }
.state-jump a {
  padding: 0.3rem 0.6rem; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--ink-600); background: #fff; border: 1px solid var(--line); text-decoration: none;
}
.state-jump a:hover { color: #fff; background: var(--navy-800); border-color: var(--navy-800); }

.state-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2rem; }
.state-block { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--navy-800); padding: 1.25rem 1.35rem 1rem; scroll-margin-top: 7rem; }
.state-block h2 {
  display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem;
  font-size: 1.15rem; text-transform: uppercase; color: var(--navy-800);
  padding-bottom: 0.5rem; margin-bottom: 0.35rem; border-bottom: 1px solid var(--line);
}
.state-count { font-family: var(--font); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; color: var(--gold-600); }

.state-cities { list-style: none; margin: 0; padding: 0; }
.state-cities li + li { border-top: 1px solid var(--paper-alt); }
.state-cities a { display: flex; flex-direction: column; padding: 0.55rem 0; text-decoration: none; }
.state-cities a:hover .sc-city { color: var(--gold-600); }
.sc-city { font-weight: 600; color: var(--navy-800); font-size: 0.95rem; }
.sc-phone { font-size: 0.8rem; color: var(--ink-400); }

/* ---------- city page ---------- */

.local-card { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--gold-500); padding: 2rem 1.85rem; box-shadow: var(--shadow-md); }
.local-card h3 { font-size: 1.3rem; text-transform: uppercase; color: var(--navy-800); margin-bottom: 1.25rem; }
.local-dl { display: grid; grid-template-columns: auto 1fr; gap: 0.6rem 1rem; margin: 0 0 1.75rem; font-size: 0.88rem; }
.local-dl dt { font-weight: 600; color: var(--ink-400); text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.08em; padding-top: 0.15rem; }
.local-dl dd { margin: 0; color: var(--ink); }

.city-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.city-svc { display: block; padding: 1.5rem; background: #fff; border: 1px solid var(--line); text-decoration: none; transition: border-color 0.18s ease, box-shadow 0.18s ease; }
.city-svc:hover { border-color: var(--navy-600); box-shadow: var(--shadow-md); }
.city-svc-title { display: block; font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; color: var(--navy-800); }
.city-svc-desc { display: block; margin-top: 0.4rem; font-size: 0.88rem; color: var(--ink-600); }

/* ---------- related ---------- */

.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.rel-card { display: block; padding: 1.65rem; background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--gold-500); text-decoration: none; transition: box-shadow 0.18s ease, transform 0.18s ease; }
.rel-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.rel-title { display: block; font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; color: var(--navy-800); }
.rel-desc { display: block; margin-top: 0.35rem; font-size: 0.87rem; color: var(--ink-600); }

/* ---------- live map (Leaflet) ---------- */

.map-section { background: var(--paper-alt); color: var(--ink); position: relative; }
.map-section > .wrap { position: relative; }

.live-map { margin: 2.25rem 0 0; position: relative; }
.live-map [data-map-markets] { display: none; }
.live-map-frame {
  position: relative; overflow: hidden;
  height: 34rem;
  background: #e8eef3;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-500);
  box-shadow: var(--shadow-lg);
}
.live-map.is-compact .live-map-frame { height: 24rem; }
.live-map-canvas { position: absolute; inset: 0; }
.live-map-vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 400;
  box-shadow: inset 0 0 80px rgba(12, 35, 64, 0.08);
}

.leaflet-container { background: #e8eef3; font-family: var(--font); }
.leaflet-tile-pane { filter: saturate(0.88) brightness(1.02) contrast(1.02); }
.leaflet-control-zoom { border: 0 !important; box-shadow: var(--shadow-sm) !important; }
.leaflet-control-zoom a {
  width: 2.2rem !important; height: 2.2rem !important; line-height: 2.2rem !important;
  background: #fff !important; color: var(--navy-800) !important;
  border: 1px solid var(--line) !important; font-weight: 600;
}
.leaflet-control-zoom a:hover { background: var(--gold-500) !important; border-color: var(--gold-500) !important; color: var(--navy-900) !important; }
.leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.78) !important; color: var(--ink-400) !important;
  font-size: 0.68rem !important;
}
.leaflet-control-attribution a { color: var(--navy-600) !important; }

.lm-icon { background: none !important; border: 0 !important; }
.lm-marker { display: block; width: 36px; height: 48px; }
.lm-marker svg { display: block; overflow: visible; }
.lm-pin-shadow { fill: rgba(12, 35, 64, 0.22); }
.lm-pin-body {
  fill: #e8a317; stroke: #0c2340; stroke-width: 1.4;
  filter: drop-shadow(0 4px 6px rgba(12, 35, 64, 0.22));
  transition: fill 0.16s ease;
}
.lm-pin-eye { fill: #fff; }
.lm-icon:hover { transform: translateY(-2px); }
.lm-icon.is-active .lm-pin-body { fill: #0c2340; stroke: #e8a317; stroke-width: 1.8; }
.lm-icon.is-active .lm-pin-eye { fill: #e8a317; }

.lm-leaflet-pop .leaflet-popup-content-wrapper {
  background: #fff; color: var(--navy-800); border-radius: 0;
  border-top: 3px solid var(--gold-500); box-shadow: var(--shadow-lg);
  padding: 0;
}
.lm-leaflet-pop .leaflet-popup-content { margin: 1.05rem 1.15rem 1.15rem; width: 15.5rem !important; }
.lm-leaflet-pop .leaflet-popup-tip { background: #fff; }
.lm-leaflet-pop .leaflet-popup-close-button { color: var(--ink-400) !important; top: 0.25rem !important; right: 0.4rem !important; }
.lm-pop-city { margin: 0; font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; text-transform: uppercase; color: var(--navy-800); padding-right: 1rem; }
.lm-pop-area { margin: 0.25rem 0 0.9rem; font-size: 0.82rem; color: var(--ink-400); }
.lm-pop-call {
  display: block; text-align: center; padding: 0.7rem 0.75rem;
  background: var(--gold-500); color: var(--navy-900);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em; text-decoration: none;
}
.lm-pop-call:hover { background: var(--gold-600); }
.lm-pop-link {
  display: block; margin-top: 0.65rem; font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-600); text-decoration: none;
}
.lm-pop-link:hover { color: var(--gold-600); }

.lm-caption {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem 1.25rem;
  margin-top: 1.1rem; font-size: 0.8rem; color: var(--ink-400);
}
.lm-count { letter-spacing: 0.06em; text-transform: uppercase; }
.lm-count strong { color: var(--gold-600); font-family: var(--font-head); font-size: 1.05rem; }

/* ---------- locator (rail + map) ---------- */

.locator { background: var(--paper-alt); color: var(--ink); padding: 5.5rem 0; }
.locator > .wrap { position: relative; }

.locator-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; margin-bottom: 2.25rem;
}
.locator-head .section-title { margin-bottom: 0; }
.locator-lead { margin: 0; max-width: 26rem; font-size: 0.95rem; color: var(--ink-600); }

.locator-shell {
  display: grid; grid-template-columns: 23rem 1fr;
  height: min(72vh, 46rem);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-500);
  box-shadow: var(--shadow-lg);
}

.locator-rail { display: flex; flex-direction: column; border-right: 1px solid var(--line); min-width: 0; min-height: 0; overflow: hidden; background: #fff; }
.rail-head { padding: 1.35rem 1.35rem 1.1rem; border-bottom: 1px solid var(--line); }

.rail-search { position: relative; }
.rail-search-icon {
  position: absolute; left: 0.8rem; top: 50%; transform: translateY(-50%);
  width: 1.05rem; height: 1.05rem; fill: none; stroke: var(--ink-400);
  stroke-width: 2; stroke-linecap: round; pointer-events: none;
}
.rail-search input {
  width: 100%; padding: 0.8rem 0.9rem 0.8rem 2.5rem; font: inherit; font-size: 0.92rem; color: var(--ink);
  background: var(--paper-alt); border: 1px solid var(--line);
}
.rail-search input::placeholder { color: var(--ink-400); }
.rail-search input:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 1px; }

.rail-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.9rem; }
.rail-chip {
  padding: 0.35rem 0.7rem; font: inherit; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  color: var(--ink-600); background: #fff;
  border: 1px solid var(--line); transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
.rail-chip:hover { color: var(--navy-800); border-color: var(--navy-800); }
.rail-chip.is-on { color: var(--navy-900); background: var(--gold-500); border-color: var(--gold-500); }

.rail-count { margin: 0.9rem 0 0; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-400); }
.rail-count strong { color: var(--gold-600); font-family: var(--font-head); font-size: 1rem; }

.rail-list {
  list-style: none; margin: 0; padding: 0; overflow-y: auto;
  flex: 1; min-height: 0; scrollbar-width: thin;
}
.rail-list::-webkit-scrollbar { width: 6px; }
.rail-list::-webkit-scrollbar-thumb { background: #c5d0dc; }

.rail-item {
  display: flex; align-items: stretch; gap: 0.5rem;
  padding: 0.35rem 0.85rem 0.35rem 1.35rem;
  border-bottom: 1px solid var(--paper-alt);
  border-left: 3px solid transparent; transition: background 0.16s ease, border-color 0.16s ease;
}
.rail-item:hover, .rail-item.is-hot { background: #f7f4ea; }
.rail-item.is-selected { background: #fbf4e4; border-left-color: var(--gold-500); }
.rail-item[hidden] { display: none; }

.rail-main {
  flex: 1; min-width: 0; padding: 0.75rem 0; text-align: left;
  background: none; border: 0; font: inherit; color: inherit; cursor: pointer;
}
.ri-head { display: flex; align-items: baseline; gap: 0.45rem; }
.ri-city { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; color: var(--navy-800); }
.ri-state { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; color: var(--gold-600); }
.ri-area { display: block; margin-top: 0.1rem; font-size: 0.78rem; color: var(--ink-400); }
.ri-phone { display: block; margin-top: 0.3rem; font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.ri-phone-none { font-weight: 400; color: var(--ink-400); }
.rail-main:hover .ri-city { color: var(--gold-600); }

.ri-actions { display: flex; align-items: center; gap: 0.35rem; flex: 0 0 auto; }
.ri-locate {
  width: 2rem; height: 2rem; display: grid; place-items: center; cursor: pointer;
  font-size: 0.95rem; color: var(--ink-400); background: transparent;
  border: 1px solid var(--line); transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
.ri-locate:hover { color: var(--navy-900); background: var(--gold-500); border-color: var(--gold-500); }
.ri-call {
  padding: 0.45rem 0.7rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; color: var(--navy-800);
  border: 1px solid var(--line);
}
.ri-call:hover { color: #fff; background: var(--navy-800); border-color: var(--navy-800); }
.ri-page {
  padding: 0.45rem 0.7rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; color: var(--navy-800);
  border: 1px solid var(--gold-500); background: var(--gold-500);
}
.ri-page:hover { color: var(--navy-900); background: var(--gold-600); border-color: var(--gold-600); }

.rail-empty { margin: 0; padding: 1.5rem 1.35rem; font-size: 0.9rem; color: var(--ink-600); }
.rail-empty a { color: var(--gold-600); }

.locator-map { position: relative; min-width: 0; min-height: 0; overflow: hidden; }
.locator-map .live-map { margin: 0; height: 100%; display: flex; flex-direction: column; min-height: 0; }
.locator-map .live-map-frame {
  flex: 1; height: auto; min-height: 0; border: 0; border-top: 0; box-shadow: none;
}
.locator-map .lm-caption {
  margin: 0; padding: 0.85rem 1.35rem; border-top: 1px solid var(--line); background: #fff;
}

/* ---------- market links ---------- */

.market-links {
  list-style: none; margin: 2rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.25rem 1rem;
}
.market-links a { display: block; padding: 0.4rem 0; font-size: 0.9rem; color: var(--ink-600); text-decoration: none; border-bottom: 1px solid var(--line); }
.market-links a:hover { color: var(--navy-800); border-color: var(--gold-500); }

/* ---------- page hero (light) ---------- */

.page-hero { background: var(--paper-alt); border-bottom: 1px solid var(--line); padding: 4rem 0 3.5rem; }
.page-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.35rem); text-transform: uppercase; color: var(--navy-800); margin-bottom: 1rem; }
.page-hero-split { padding-bottom: 4.5rem; }

/* ---------- cta band ---------- */

.cta-band { background: linear-gradient(100deg, var(--navy-800) 0%, var(--navy-700) 55%, var(--navy-600) 100%); color: #fff; padding: 3.75rem 0; }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-copy { max-width: 38rem; }
.cta-copy h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); text-transform: uppercase; margin-bottom: 0.6rem; }
.cta-copy p { margin: 0; color: rgba(255, 255, 255, 0.78); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- contact ---------- */

.minor-heading { font-size: 1rem; text-transform: uppercase; color: var(--navy-800); margin: 2rem 0 0.6rem; }
.aside-hours { list-style: none; margin: 0; padding: 0; max-width: 24rem; font-size: 0.88rem; }
.aside-hours li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.4rem 0; border-bottom: 1px solid var(--line); }
.aside-hours li span:last-child { color: var(--ink-600); }

.spec-list-light li { border-bottom-color: var(--line); }
.spec-list-light li span:first-child { color: var(--ink-400); }
.spec-list-light li span:last-child { color: var(--navy-800); }

.market-dial { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.market-dial a {
  display: flex; flex-direction: column; gap: 0.1rem; padding: 0.9rem 1rem;
  background: #fff; border: 1px solid var(--line); text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.market-dial a:hover { border-color: var(--navy-600); box-shadow: var(--shadow-md); }
.ml-city { font-weight: 600; font-size: 0.9rem; color: var(--navy-800); }
.ml-phone { font-size: 0.82rem; color: var(--ink-400); }

/* ---------- footer ---------- */

.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.68); padding: 4rem 0 0; font-size: 0.9rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { width: 210px; height: auto; }
.footer-brand p { margin: 1.15rem 0 0; max-width: 24rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-contact a { color: var(--gold-500); text-decoration: none; font-weight: 600; }
.site-footer h2 { font-family: var(--font); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem; }
.footer-list, .footer-hours { list-style: none; margin: 0; padding: 0; }
.footer-list li, .footer-hours li { margin-bottom: 0.5rem; }
.footer-list a { color: rgba(255, 255, 255, 0.68); text-decoration: none; }
.footer-list a:hover { color: var(--gold-500); }
.footer-hours li { display: flex; flex-direction: column; font-size: 0.84rem; }
.fh-days { color: #fff; }
.fh-time { color: rgba(255, 255, 255, 0.55); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; padding: 1.4rem 0 1.75rem; border-top: 1px solid var(--line-dark); font-size: 0.78rem; color: rgba(255, 255, 255, 0.45); }
.footer-bottom p { margin: 0; }

/* ---------- sticky mobile cta ---------- */

.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; gap: 0.5rem; padding: 0.6rem 0.75rem; background: rgba(255, 255, 255, 0.97); border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(7, 21, 38, 0.12); }
.sticky-cta .btn { flex: 1; padding: 0.8rem 0.5rem; font-size: 0.78rem; }

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .stats-list { grid-template-columns: repeat(2, 1fr); }
  .stats-list li:nth-child(2) { border-right: 0; }
  .svc-grid, .review-grid, .city-svc-grid, .rel-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: repeat(3, 1fr); }
  .state-grid { grid-template-columns: repeat(3, 1fr); }
  .proc-list { grid-template-columns: repeat(3, 1fr); row-gap: 2.25rem; }
  .market-links { grid-template-columns: repeat(3, 1fr); }
  .market-dial { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .primary-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: 0.5rem 1.5rem 1.25rem;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .primary-nav a::after { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .split-media { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-reverse .split-figure { order: 0; }
  .loc-grid, .state-grid, .market-links, .market-dial { grid-template-columns: repeat(2, 1fr); }
  .locator-shell { grid-template-columns: 1fr; height: auto; }
  .locator-rail { border-right: 0; border-bottom: 1px solid var(--line); }
  .rail-list { flex: none; max-height: 22rem; }
  .locator-map .live-map-frame { min-height: 24rem; height: 24rem; }
  .live-map-frame { height: 24rem; }
  .section { padding: 4rem 0; }
  .utility-note { display: none; }
  .utility-inner { justify-content: flex-end; }
}

@media (max-width: 620px) {
  .hero { min-height: auto; padding: 4.5rem 0 3rem; }
  .hero-proof { gap: 0.75rem 1.25rem; }
  .svc-grid, .review-grid, .city-svc-grid, .rel-grid, .cred-grid, .proc-list, .loc-grid, .state-grid, .market-dial, .tick-list { grid-template-columns: 1fr; }
  .stats-list { grid-template-columns: 1fr 1fr; }
  .stats-list li { padding: 1.35rem 0.75rem; border-bottom: 1px solid var(--line-dark); }
  .locator { padding: 3.5rem 0; }
  .locator-head { display: block; }
  .locator-lead { margin-top: 0.9rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 4.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
