/* ===== Service Area page styles ===== */

.area-hero {
  padding: 80px 0 88px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.area-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 100%, rgba(255,255,255,0.12), transparent 50%),
    radial-gradient(circle at 80% 0%, rgba(255,255,255,0.10), transparent 50%);
  pointer-events: none;
}
.area-hero-inner { position: relative; max-width: 820px; }
.breadcrumbs {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
  display: flex; gap: 8px; align-items: center;
}
.breadcrumbs a { color: rgba(255,255,255,0.85); text-decoration: underline; }
.breadcrumbs a:hover { color: #fff; }
.area-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.18);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.area-hero h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 16px;
}
.area-subhead {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin-bottom: 32px;
}

.btn-white {
  background: #fff;
  color: var(--navy);
}
.btn-white:hover { background: var(--aqua); color: #fff; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.85);
}
.btn-outline-white:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

/* Intro */
.area-intro { padding: 80px 0; background: #fff; }
.area-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.area-lead { font-size: 17px; color: var(--ink); margin-bottom: 16px; }
.area-spots {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.area-spots h3 { font-size: 20px; margin-bottom: 8px; }
.spot-lead { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.area-spots ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.area-spots li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
}
.area-spots li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--aqua);
  box-shadow: 0 0 0 4px var(--aqua-light);
}

.why-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .area-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid-4 { grid-template-columns: 1fr; }
}
