/* ============================================================
   WOODLEY COLLISION — AREAS SINGLE (city detail) PAGE
   Reuses: breadcrumb, .svc-card (services component),
   .faq-section (+ accordion), .areas-map (map), .cta-banner,
   and header/footer.
   Adds: hero two-col, the "Serving {City}" section with an
   inline stats card, and a clamped service-card modifier.
   ============================================================ */

/* ---------- HERO (two-col: text + image) ---------- */
.area-hero {
  max-width: var(--container-outer);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: var(--sp-16);
  padding-bottom: 120px;
  display: flex;
  gap: var(--sp-24);
  align-items: stretch;
}
.area-hero__text {
  flex: 0 0 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sp-24);
}
.area-hero__heading { display: flex; flex-direction: column; gap: var(--sp-12); }
.area-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}
.area-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: var(--sp-8) var(--sp-12);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-round);
  background: var(--white);
  color: var(--gray-900);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
}
.area-badge--light {
  border-color: rgba(225, 26, 23, 0.18);
  background: rgba(225, 26, 23, 0.06);
  color: var(--color-red);
}
.area-hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 1.6rem + 2.8vw, 3.875rem);  /* 40 -> 62px */
  font-weight: 600;
  line-height: 1.06;
  color: var(--gray-900);
}
.area-hero__subtitle {
  margin: 0;
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.5;
  color: #555;
}
.area-hero__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-12);
  margin-top: var(--sp-16);
}
.area-hero__fact {
  padding: var(--sp-16);
  border: 1px solid var(--gray-50);
  border-radius: var(--radius-md);
  background: var(--gray-50);
}
.area-hero__fact strong,
.area-hero__fact span {
  display: block;
}
.area-hero__fact strong {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--gray-900);
}
.area-hero__fact span {
  margin-top: var(--sp-4);
  font-size: var(--fs-body-s);
  line-height: 1.4;
  color: #555;
}
.area-hero__actions { display: flex; gap: var(--sp-8); align-items: center; }
.area-hero__media {
  flex: 1 1 auto;
  height: 460px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--gray-100);
}
.area-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- SERVING {CITY} (two-col: prose + services rail) ---------- */
.serving {
  max-width: var(--container-outer);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-36);
}
.serving__head { display: flex; flex-direction: column; gap: var(--sp-12); max-width: 600px; }
.serving__title {
  margin: 0;
  font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.25rem);   /* 28 -> 36px */
  font-weight: 600;
  line-height: 1.22;
  color: var(--gray-900);
}
.serving__subtitle {
  margin: 0;
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.5;
  color: #555;
}
.serving__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
/* Prose typography comes from blog-post.css (.article-prose). */
.serving__article { min-width: 0; }

/* ---- Right rail: this city's services + CTA ---- */
.serving-aside {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-24));
  display: flex;
  flex-direction: column;
  gap: var(--sp-20);
}
.serving-aside__card {
  padding: var(--sp-24);
  background: var(--white);
  border: 1px solid var(--gray-50);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.serving-aside__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--gray-900);
}
.serving-aside__list {
  margin: var(--sp-8) 0 0;
  padding: 0;
  list-style: none;
}
.serving-aside__list li + li { border-top: 1px solid var(--gray-100); }
.serving-aside__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-12);
  padding: var(--sp-12) 0;
  color: var(--gray-900);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.serving-aside__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  color: var(--gray-900);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.serving-aside__arrow svg { width: 13px; height: 13px; }
.serving-aside__list a:hover { color: var(--color-red); }
.serving-aside__list a:hover .serving-aside__arrow {
  border-color: var(--color-red);
  color: var(--color-red);
  transform: translate(2px, -2px);
}
.serving-aside__all {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  margin-top: var(--sp-12);
  color: var(--color-red);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}
.serving-aside__all svg { width: 15px; height: 15px; transition: transform var(--dur) var(--ease); }
.serving-aside__all:hover svg { transform: translateX(3px); }

/* Dark CTA card — base .btn--primary/--outline are dark-on-dark here, flip them */
.serving-aside__card--dark {
  background: var(--gray-900);
  border-color: var(--gray-900);
}
.serving-aside__card--dark .serving-aside__title { color: var(--white); }
.serving-aside__card--dark p {
  margin: var(--sp-8) 0 var(--sp-20);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}
.serving-aside__actions { display: flex; flex-direction: column; gap: var(--sp-8); }
.serving-aside__actions .btn { width: 100%; justify-content: space-between; }
.serving-aside__card--dark .btn--primary {
  background: var(--white);
  color: var(--gray-900);
}
.serving-aside__card--dark .btn--primary .btn__icon { background: var(--gray-900); color: var(--white); }
.serving-aside__card--dark .btn--primary:hover {
  background: var(--color-red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(225, 26, 23, 0.35);
}
.serving-aside__card--dark .btn--primary:hover .btn__icon { background: var(--white); color: var(--color-red); }
.serving-aside__card--dark .btn--outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.serving-aside__card--dark .btn--outline .btn__icon { background: rgba(255, 255, 255, 0.14); color: var(--white); }
.serving-aside__card--dark .btn--outline:hover { border-color: var(--color-red); color: var(--color-red); }
.serving-aside__card--dark .btn--outline:hover .btn__icon { background: var(--color-red); color: var(--white); }

/* Inline stats card (3 stats with vertical dividers).
   Distinct from about.css .stats-card which is absolutely
   positioned in that hero; here it sits in normal flow. */
.area-stats {
  align-self: stretch;
  display: flex;
  gap: var(--sp-24);
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--gray-50);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.01);
  padding: var(--sp-16) var(--sp-24);
}
.area-stats__item { display: flex; flex-direction: column; gap: var(--sp-4); }
.area-stats__num {
  font-size: 1.125rem;     /* 18px */
  font-weight: 600;
  line-height: 1.222;
  color: var(--gray-900);
  text-transform: uppercase;
}
.area-stats__label {
  font-size: var(--fs-body-s);
  font-weight: 400;
  line-height: 1.571;
  color: var(--gray-500);
}
.area-stats__divider { width: 1px; background: var(--gray-100); align-self: center; height: 48px; flex-shrink: 0; }

/* ---------- DRIVE INFO (location proof + directions CTA) ---------- */
.area-drive {
  max-width: var(--container-outer);
  margin-inline: auto;
  padding: clamp(40px, 5vw, 56px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  border-top: 1px solid var(--gray-50);
  border-bottom: 1px solid var(--gray-50);
}
.area-drive__content {
  max-width: 680px;
}
.area-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  width: fit-content;
  margin: 0 0 var(--sp-16);
  padding: var(--sp-8) var(--sp-12);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-round);
  color: #383838;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.area-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red);
  flex-shrink: 0;
}
.area-drive__title {
  margin: 0;
  font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.25rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--gray-900);
}
.area-drive__text {
  margin: var(--sp-12) 0 0;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: #555;
}
.area-drive__card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-12);
  padding: var(--sp-24);
  border: 1px solid var(--gray-50);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.area-drive__metric {
  padding: var(--sp-16);
  border-radius: var(--radius-md);
  background: var(--gray-50);
}
.area-drive__metric strong,
.area-drive__metric span {
  display: block;
}
.area-drive__metric strong {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--gray-900);
}
.area-drive__metric span {
  margin-top: var(--sp-4);
  font-size: var(--fs-body-s);
  line-height: 1.4;
  color: #555;
}
.area-drive__card p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: var(--fs-body-s);
  line-height: 1.5;
  color: #555;
}
.area-drive__card .btn {
  grid-column: 1 / -1;
  justify-content: space-between;
}

/* ---------- COMPLETE COLLISION SERVICES ---------- */
.area-services {
  max-width: var(--container-outer);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: 60px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-36);
}
.area-services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-24);
}
.area-services__heading { display: flex; flex-direction: column; gap: var(--sp-12); max-width: 600px; }
.area-services__title {
  font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.25rem);   /* 28 -> 36px */
  font-weight: 600;
  line-height: 1.22;
  color: var(--gray-900);
}
.area-services__subtitle {
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.5;
  color: #555;
}
.area-services__cta { flex-shrink: 0; }
.area-services__cta--mobile { display: none; }

/* 4-up grid of the shared .svc-card */
.area-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-16);
}
.area-services__grid .svc-card { width: auto; }

/* Clamped variant: no red rule, fixed 4-line description on this page */
.svc-card--clamped .svc-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- RELATED AREAS ---------- */
.area-related {
  max-width: var(--container-outer);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: 120px;
  display: grid;
  gap: var(--sp-40);
}
.area-related__group {
  display: grid;
  gap: var(--sp-20);
}
.area-related__head {
  max-width: 720px;
}
.area-related__title {
  margin: 0;
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--gray-900);
}
.area-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-16);
}
.area-related__card {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sp-20);
  padding: var(--sp-20);
  border: 1px solid var(--gray-50);
  border-radius: var(--radius-md);
  background: var(--white);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.01);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.area-related__card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 26, 23, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.area-related__card strong {
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1.35;
  color: var(--gray-900);
}
.area-related__card span {
  font-size: var(--fs-body-s);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-red);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .area-services__grid { grid-template-columns: repeat(3, 1fr); }
  .area-related__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .area-hero { flex-direction: column; }
  .area-hero__text { flex: 1 1 auto; width: 100%; }
  .area-hero__media { width: 100%; }
  .serving__body { grid-template-columns: 1fr; }
  .serving-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
  .area-drive { grid-template-columns: 1fr; }
  .area-services__grid { grid-template-columns: repeat(2, 1fr); }
  .area-related__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .area-hero { padding-bottom: 60px; }
  .area-hero__title { font-size: clamp(2.125rem, 1.75rem + 1.6vw, 2.25rem); line-height: 1.1; }
  .area-hero__facts { grid-template-columns: 1fr; }
  .area-hero__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .area-hero__actions .btn { width: 100%; justify-content: space-between; }
  .area-hero__media { height: 380px; border-radius: 24px; }

  .serving { padding-bottom: 60px; gap: var(--sp-24); }
  .serving__title { font-size: 1.75rem; }   /* 28px */
  .serving-aside { grid-template-columns: 1fr; }
  .area-stats { border-radius: var(--radius-md); flex-wrap: wrap; gap: var(--sp-20); }
  .area-stats__divider { display: none; }

  .area-drive { padding-block: 60px; }
  .area-drive__card {
    grid-template-columns: 1fr;
    padding: var(--sp-20);
    border-radius: var(--radius-md);
  }

  .area-services { padding-block: 60px; gap: var(--sp-32); }
  .area-services__title { font-size: 1.75rem; }   /* 28px */
  .area-services__cta { display: none; }
  .area-services__cta--mobile {
    display: block;
    width: 100%;
    order: 1;
  }
  .area-services__cta--mobile .btn { width: 100%; justify-content: space-between; }
  .area-services__grid { grid-template-columns: 1fr; gap: var(--sp-16); }
  /* mobile cards clamp to 3 lines */
  .svc-card--clamped .svc-card__desc { -webkit-line-clamp: 3; }

  .area-related {
    padding-bottom: 60px;
    gap: var(--sp-32);
  }
  .area-related__grid { grid-template-columns: 1fr; }
}
