/* ── PRACTICE AREA PAGE ──────────────────── */

/* -- Page Hero -- */
.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 140px 2.5rem 80px;
  background-image: linear-gradient(135deg, rgba(192,57,43,0.08) 0%, transparent 40%, rgba(192,57,43,0.04) 100%);
}
.page-hero-inner { max-width: 760px; margin: 0 auto; }
.page-hero .tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 1.25rem;
}
.page-hero .subtitle {
  font-size: 1.05rem; color: var(--muted); line-height: 1.8;
  max-width: 600px; margin-bottom: 2.25rem;
}

/* -- Services Section -- */
.services-section { background: rgba(33,33,36,0.86); border-top: 1px solid var(--border); }
.services-section .section-intro { max-width: 680px; margin-bottom: 4rem; }
.services-section .tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red);
}
.services-section h2.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.15; color: var(--white); margin: 0.6rem 0 1rem;
}
.services-section .section-desc {
  font-size: 0.97rem; color: var(--muted); line-height: 1.8;
}
.service-item { padding: 3rem 0; border-bottom: 1px solid var(--border); }
.service-item:first-of-type { border-top: 1px solid var(--border); }
.service-item h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 1rem;
}
.service-item p {
  font-size: 0.97rem; color: var(--muted); line-height: 1.85; margin-bottom: 1rem;
}
.service-item p strong { color: var(--light); }
.service-item .read-more {
  font-size: 0.82rem; font-weight: 600; color: var(--red); letter-spacing: 0.04em;
}
.service-item .read-more:hover { text-decoration: underline; }

/* -- Why Section -- */
.why-section { background: rgba(42,42,45,0.90); border-top: 1px solid var(--border); }
.why-section .tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red);
}
.why-section h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.15; color: var(--white); margin: 0.6rem 0 2.5rem;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
}
.why-cell { background: var(--surface); padding: 2.25rem 2rem; transition: background 0.2s; }
.why-cell:hover { background: var(--raised); }
.why-cell h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem;
}
.why-cell p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }

/* -- CTA Section -- */
.cta-section {
  background: var(--surface); border-top: 1px solid var(--border);
  text-align: center;
}
.cta-box { max-width: 640px; margin: 0 auto; }
.cta-box h2 {
  font-family: 'Playfair Display', serif; font-size: 1.6rem;
  font-weight: 700; color: var(--white); margin-bottom: 0.75rem;
}
.cta-box p {
  font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.75rem;
}
.cta-box .phone-display {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  font-weight: 700; color: var(--white); margin-top: 1.25rem;
}
.cta-box .phone-display a { color: var(--white); text-decoration: none; }
.cta-box .phone-display a:hover { color: var(--red); }
.cta-box .reassurance {
  font-size: 0.78rem; color: var(--muted); margin-top: 0.75rem;
}

/* -- Practice area section padding -- */
.services-section section,
.why-section section,
.cta-section section { padding: 90px 0; }

/* -- RESPONSIVE -- */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 2rem 60px; }
}
@media (max-width: 600px) {
  .page-hero { padding: 100px 1.5rem 50px; }
}
