/**
 * City × service landing (/house-cleaning/{city}/, /office-cleaning/{city}/)
 */

.area-landing__hero {
  position: relative;
  border-radius: var(--radius, 14px);
  overflow: hidden;
  margin: 0 0 1.25rem;
  min-height: 220px;
  background: var(--card, #1e293b) center/cover no-repeat;
  border: 1px solid var(--border, #334155);
}

.area-landing__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.82) 0%,
    rgba(15, 23, 42, 0.45) 55%,
    rgba(15, 23, 42, 0.25) 100%
  );
  pointer-events: none;
}

.area-landing__hero-inner {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.25rem 1.35rem;
  max-width: 46rem;
}

.area-landing__hero-inner h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.area-landing__hero-inner .lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.55;
}

.area-landing__breadcrumb {
  font-size: 0.8125rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.78);
}

.area-landing__breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.area-landing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.area-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 1.25rem;
}

.area-trust-strip__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: rgba(var(--brand-rgb, 53, 87, 156), 0.12);
  border: 1px solid rgba(var(--brand-rgb, 53, 87, 156), 0.22);
  color: var(--text, #e2e8f0);
}

.area-prose {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted2, #94a3b8);
}

.area-prose h2 {
  margin: 1.35rem 0 0.65rem;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text, #f1f5f9);
}

.area-prose p {
  margin: 0 0 0.85rem;
}

.area-benefits {
  display: grid;
  gap: 10px;
  margin: 0.35rem 0 0;
}

@media (min-width: 720px) {
  .area-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.area-benefits li {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border, #334155);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.area-faq details {
  border: 1px solid var(--border, #334155);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.area-faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text, #f1f5f9);
}

.area-faq details[open] summary {
  margin-bottom: 6px;
}

.area-nearby {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  font-size: 0.9375rem;
}

.area-nearby a {
  font-weight: 800;
}

.area-cta {
  margin-top: 1.25rem;
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(var(--brand-rgb, 53, 87, 156), 0.35);
  background: rgba(var(--brand-rgb, 53, 87, 156), 0.1);
}

.area-cta h2 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.area-cta p {
  margin: 0 0 0.85rem;
  color: var(--muted2, #94a3b8);
  font-size: 0.95rem;
}

/* Hub: services-areas */
.services-areas__grid {
  display: grid;
  gap: 14px;
  margin-top: 0.75rem;
}

@media (min-width: 720px) {
  .services-areas__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.services-areas__card {
  position: relative;
  border-radius: 14px;
  border: 1px solid var(--border, #334155);
  overflow: hidden;
  background: var(--card, #1e293b);
}

/* Match .card2 top accent (k3-core.css) on hub city cards */
.services-areas__card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--accentGrad, linear-gradient(90deg, #35579c, #3a95c4, #5cb3e8));
  z-index: 3;
  pointer-events: none;
}

.services-areas__card--featured {
  border-color: rgba(var(--brand-rgb, 53, 87, 156), 0.45);
  box-shadow: 0 0 0 1px rgba(var(--brand-rgb, 53, 87, 156), 0.12);
}

.services-areas__card-media {
  position: relative;
  z-index: 1;
  height: 140px;
  background: center/cover no-repeat;
  border-bottom: 1px solid var(--border, #334155);
}

.services-areas__card-body {
  position: relative;
  z-index: 2;
  padding: 14px 16px 16px;
}

.services-areas__card-body h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.services-areas__card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.services-areas__card-actions .btn-sm {
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 10px;
}

.services-areas__more {
  margin-top: 1.5rem;
}

.services-areas__list {
  display: grid;
  gap: 8px;
  margin-top: 0.5rem;
}

.services-areas__list a {
  font-weight: 700;
}
