/* Areas — page-specific styles only */

.page-hero {
  padding: 36px 0 8px;
  text-align: left;
}
.page-hero .lede {
  max-width: 70ch;
  margin: 8px auto 0;
  color: #334155;
}

/* ===== Page hero (Areas) ===== */
.page-hero {
  padding: 28px 0 8px; /* same vertical spacing as Services */
}
.page-hero h1 {
  font-family: "Cormorant SC", serif;
  font-weight: 600;
  font-size: clamp(36px, 3.2vw, 56px);
  color: #0b0f19;
  margin: 0 0 6px;
  letter-spacing: 1px;
}

.page-hero .lede {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  color: #1e293b;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}
@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.map {
  width: 100%;
  min-height: 420px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.05);
  background: #fff;
}

.map-panel .map-note,
.map-note {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #475569;
  text-align: center;
  margin: 8px 2px 0;
}

/* Areas panel headings and lists */
.areas-panel h2,
.areas-panel h3 {
  font-family: "Cormorant SC", serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #0b0f19;
}

.areas {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
@media (max-width: 640px) {
  .areas {
    grid-template-columns: 1fr;
  }
}
.areas li::before {
  content: "• ";
  color: #94a3b8;
}

.arrange {
  color: #334155;
  margin: 0 0 14px;
}

/* CTA button refinement */
.cta-inline {
  text-align: center; /* centers the button */
  margin-top: 16px;
}

.cta-inline .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  font-family: inherit; /* ← this pulls from body (Segoe UI) */
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  background: linear-gradient(145deg, #064b1f, #0a6b2a);
  color: #fff;
  border-radius: 12px;
  border: 1px solid #043517;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.cta-inline .btn:hover {
  background: linear-gradient(145deg, #0a6b2a, #064b1f);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}
