/* =========================================================
   CHS Contracting — location landing pages
   Loaded AFTER style.css; reuses the same design tokens.
   ========================================================= */

/* ---------- breadcrumb ---------- */
.breadcrumb { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.breadcrumb .container { padding-top: 12px; padding-bottom: 12px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; padding: 0; font-size: .86rem; color: var(--muted); }
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li::after { content: "\203A"; margin-left: 8px; color: var(--muted); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb li[aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- location hero ---------- */
.loc-hero {
  position: relative;
  display: flex; align-items: center;
  min-height: 46vh;
  background: url("../img/hero.jpg") center/cover no-repeat;
  color: #fff;
}
.loc-hero .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,25,45,.82) 0%, rgba(10,25,45,.5) 60%, rgba(10,25,45,.28) 100%);
}
.loc-hero-content { position: relative; max-width: 760px; padding: 56px 0; }
.loc-hero-content h1 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: .4em; }
.loc-hero-content p { color: #eef2f7; font-size: 1.08rem; margin-bottom: 1.5em; max-width: 660px; }
.loc-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- content layout ---------- */
.loc-lead { font-size: 1.12rem; color: var(--body); max-width: 820px; }
.loc-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 46px; align-items: start; }
.loc-grid .prose p { max-width: 640px; }
.loc-aside {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px; box-shadow: var(--shadow); position: sticky; top: 96px;
}
.loc-aside h3 { font-size: 1.12rem; }
.loc-aside ul.plain { margin: 0 0 1.2em; padding-left: 1.1em; }
.loc-aside ul.plain li { margin-bottom: .4em; }
.loc-aside .aside-cta { margin-top: 6px; }
.loc-aside .phone-big { font-family: "Roboto Slab", serif; font-weight: 700; font-size: 1.35rem; color: var(--ink); }

/* ---------- neighborhood chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0 0; padding: 0; list-style: none; }
.chips li {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--blue);
  border-radius: 6px; padding: 7px 14px; font-size: .9rem; font-weight: 600; color: var(--ink);
}

/* ---------- services mini-grid ---------- */
.svc-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.svc-mini .item {
  background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--blue);
  border-radius: var(--radius); padding: 22px 22px; box-shadow: var(--shadow);
}
.svc-mini h3 { font-size: 1.06rem; margin-bottom: .35em; }
.svc-mini p { font-size: .94rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-top: 28px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; margin-bottom: 16px; background: #fff; box-shadow: var(--shadow);
}
.faq-item h3 { font-size: 1.06rem; margin-bottom: .4em; }
.faq-item p { margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--blue); color: #14334d; text-align: center; }
.cta-band .container { padding-top: 52px; padding-bottom: 52px; }
.cta-band h2 { color: #14334d; }
.cta-band p { color: #14334d; max-width: 640px; margin: 0 auto 1.5em; font-weight: 500; }
.cta-band .btn-primary { background: #14334d; border-color: #14334d; color: #fff; }
.cta-band .btn-primary:hover { background: #0c2436; border-color: #0c2436; color: #fff; }
.cta-band .btn-outline { background: transparent; color: #14334d; border-color: #14334d; }
.cta-band .btn-outline:hover { background: #14334d; color: #fff; }

/* ---------- related areas ---------- */
.related-areas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.related-areas a {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 6px;
  padding: 9px 16px; font-weight: 600; color: var(--ink); font-size: .92rem;
}
.related-areas a:hover { border-color: var(--blue); color: var(--blue); }

/* ---------- "areas we serve" grid (homepage + hub) ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 34px; }
.area-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow); color: var(--ink); font-weight: 700; transition: all .16s ease;
}
.area-card:hover { border-color: var(--blue); transform: translateY(-2px); color: var(--blue); }
.area-card span { display: block; font-size: .82rem; color: var(--muted); font-weight: 500; margin-top: 2px; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .loc-grid { grid-template-columns: 1fr; }
  .loc-aside { position: static; }
  .svc-mini { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .svc-mini { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
}

/* ---------- trust bar (homepage, under hero) ---------- */
.trust-bar { background: #14202e; color: #dfe7ef; }
.trust-bar .container {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 8px 26px; padding: 13px 24px; text-align: center;
}
.trust-bar span { font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
@media (max-width: 680px) { .trust-bar .container { gap: 6px 16px; } .trust-bar span { font-size: .72rem; } }

/* ---------- contact form reassurance ---------- */
.form-reassure { margin-top: 10px; color: var(--muted); font-size: .86rem; font-weight: 500; }

/* ---------- mobile sticky click-to-call bar (injected by main.js) ---------- */
.sticky-call {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
  display: none; background: var(--blue); box-shadow: 0 -2px 14px rgba(0,0,0,.18);
}
.sticky-call a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 16px; color: #14334d; font-family: "Montserrat", sans-serif;
  font-weight: 700; font-size: 15.5px; letter-spacing: .02em;
}
.sticky-call a:hover { color: #14334d; }
@media (max-width: 680px) {
  .sticky-call { display: block; }
  body { padding-bottom: 52px; }
}
