/* ════════════════════════════════════════════════════════════
   Gleam Autocare — Service-area (location) pages
   Layers on top of /blog/blog.css (shared nav, hero, prose,
   answer-box, pill, lead-card, footer). Only adds what's new.
   ════════════════════════════════════════════════════════════ */

/* Local two-column intro */
.loc-body { background: var(--gray-bg); padding: 56px 0 72px; }
.loc-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}
.loc-main h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 32px);
  line-height: 1.12;
  color: var(--black);
  margin: 36px 0 16px;
}
.loc-main h2:first-child { margin-top: 0; }
.loc-main p { font-size: 17px; line-height: 1.78; color: var(--ink); margin: 0 0 20px; }
.loc-main a { color: var(--red-dark); text-underline-offset: 3px; }
.loc-main a:hover { color: var(--red); }

/* What's included checklist */
.loc-includes { list-style: none; margin: 8px 0 24px; padding: 0; }
.loc-includes li {
  position: relative;
  padding: 0 0 12px 30px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}
.loc-includes li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}

/* Sticky offer / lead card sidebar */
.loc-aside { position: sticky; top: 88px; }
.loc-offer {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px;
  color: var(--white);
}
.loc-offer-price { display: flex; align-items: baseline; gap: 8px; margin: 0 0 4px; }
.loc-offer-price .from { font-family: var(--font-ui); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.loc-offer-price .num { font-family: var(--font-display); font-size: 44px; line-height: 1; color: var(--white); }
.loc-offer .offer-label { font-family: var(--font-ui); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--red); margin: 0 0 18px; }
.loc-addons { list-style: none; margin: 18px 0 0; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,0.1); }
.loc-addons li { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.7); padding: 5px 0; font-family: var(--font-read); }
.loc-addons li span:last-child { color: var(--white); font-weight: 500; }

/* Area chips on a page (nearby + cross-links) */
.loc-areas-line { font-size: 15px; line-height: 1.8; color: var(--ink-soft); margin: 0 0 8px; }

/* FAQ (reuse-friendly, white bg) */
.loc-faq { background: var(--white); padding: 64px 0; }
.loc-faq-inner { max-width: var(--read); margin: 0 auto; padding: 0 24px; }
.loc-faq h2 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 36px); color: var(--black); margin: 0 0 28px; }
.loc-faq-item { border-bottom: 1px solid var(--hairline); padding: 20px 0; }
.loc-faq-item h3 { font-family: var(--font-ui); font-weight: 600; font-size: 16px; color: var(--black); margin: 0 0 10px; }
.loc-faq-item p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* ───── Areas hub page grid ───── */
.areas-grid-section { background: var(--gray-bg); padding: 64px 0 96px; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.area-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.area-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-color: transparent; }
.area-card:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.area-card .region { font-family: var(--font-ui); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin: 0 0 10px; }
.area-card h2 { font-family: var(--font-display); font-size: 22px; color: var(--black); margin: 0 0 8px; }
.area-card p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 16px; flex: 1; }
.area-card .go { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }
.area-card .go svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ───── Responsive ───── */
@media (max-width: 900px) {
  .loc-grid { grid-template-columns: 1fr; gap: 32px; }
  .loc-aside { position: static; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .areas-grid { grid-template-columns: 1fr; }
}
