/* =============================================================
   Pawsh Mobile Grooming — Area Page Styles
   Loaded on top of ../styles.css for the /areas/* pages only.
   ============================================================= */

/* ---------- Area Hero ---------- */
.area-hero {
  padding-block: clamp(72px, 9vw, 120px);
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line);
}
.area-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.area-hero-copy h1 {
  margin-bottom: .35em;
}
.area-hero-sub {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 540px;
}
.area-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}
.area-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  font-size: .95rem;
  color: var(--muted);
}
.area-hero-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: 18px 0;
  font-size: .9rem;
  color: var(--muted);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.breadcrumbs a {
  color: var(--terracotta);
  text-decoration: underline;
  text-decoration-color: rgba(168, 94, 58, .35);
  text-underline-offset: 3px;
}
.breadcrumbs a:hover {
  text-decoration-color: var(--terracotta);
}
.breadcrumbs li[aria-current="page"] {
  color: var(--espresso);
}
.breadcrumbs li + li::before {
  content: "›";
  margin-right: 8px;
  color: var(--brass);
}

/* ---------- Why this neighborhood ---------- */
.area-why {
  background: var(--cream);
}
.area-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.area-why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-1);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.area-why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.area-why-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--espresso);
}
.area-why-card p {
  color: var(--muted);
  margin: 0;
}
.area-why-icon {
  width: 38px;
  height: 38px;
  color: var(--terracotta);
  margin-bottom: 14px;
}

/* ---------- Zip codes + landmarks ---------- */
.area-local {
  background: var(--cream-soft);
}
.area-local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.area-local-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-1);
}
.area-local-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.area-zip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.area-zip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--oat);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--espresso);
}
.area-landmark-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.area-landmark-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--espresso);
}
.area-landmark-list li::before {
  content: "📍";
  font-size: .95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* The above bullet uses an emoji-style marker for visual landmark feel.
   Override with text if emojis are unwanted. */
.area-landmark-list.no-emoji li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 10px;
}

/* ---------- Map embed wrapper ---------- */
.area-map {
  background: var(--cream);
}
.area-map-embed {
  width: 100%;
  min-height: 380px;
  background: var(--oat);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.area-map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}
.area-map-placeholder {
  text-align: center;
  color: var(--muted);
  padding: 24px;
}
.area-map-placeholder strong {
  display: block;
  color: var(--espresso);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

/* ---------- Local reviews ---------- */
.area-reviews {
  background: var(--cream-soft);
}
.area-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

/* ---------- Other areas pill grid ---------- */
.area-other {
  background: var(--cream);
}
.area-other-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-other-pills a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: .95rem;
  color: var(--espresso);
  transition: background .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.area-other-pills a:hover {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
  transform: translateY(-1px);
}

/* ---------- Popular services ---------- */
.area-services {
  background: var(--cream-soft);
}
.area-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.area-service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-1);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.area-service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.area-service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.area-service-card p {
  color: var(--muted);
  margin: 0 0 18px;
  flex-grow: 1;
}
.area-service-card a {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(168, 94, 58, .4);
  text-underline-offset: 3px;
}
.area-service-card a:hover {
  text-decoration-color: var(--terracotta);
}

/* ---------- Area CTA strip ---------- */
.area-cta-strip {
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
}
.area-cta-strip h2 {
  color: var(--cream);
  margin-bottom: 12px;
}
.area-cta-strip p {
  color: rgba(247, 241, 232, .85);
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .area-hero-grid {
    grid-template-columns: 1fr;
  }
  .area-hero-media {
    order: -1;
  }
  .area-hero-media img {
    aspect-ratio: 4 / 3;
  }
  .area-local-grid {
    grid-template-columns: 1fr;
  }
}
