/* === PAGE HERO (practice area + subpages) === */
.page-hero {
  padding: clamp(8rem, 16vw, 12rem) clamp(1.5rem, 4vw, 3rem) clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(248,249,251,0.92), rgba(248,249,251,0.7));
  z-index: 1;
}
.page-hero-eyebrow {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.page-hero h1 {
  font-family: var(--heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin-bottom: 1.5rem;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
}
.page-hero-desc {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--text-secondary);
  max-width: 55ch;
  margin-bottom: 2rem;
}
.page-hero-actions { display: flex; gap: 1rem; align-items: center; }
@media (max-width: 768px) {
  .page-hero-actions { flex-direction: column; align-items: stretch; }
  .page-hero-actions .btn-primary { text-align: center; }
}

/* === SERVICES LIST === */
.services-list { border-top: 1px solid var(--border); }
.service-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 3rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-row:hover { padding-left: 1rem; }
.service-row h3 {
  font-family: var(--heading);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 300;
  white-space: nowrap;
  transition: color 0.3s;
}
.service-row:hover h3 { color: var(--navy); }
.service-row p {
  font-size: 0.85rem; line-height: 1.5;
  color: var(--text-muted);
  text-align: right;
  max-width: 380px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .service-row { flex-direction: column; gap: 0.5rem; }
  .service-row p { text-align: left; max-width: none; }
}

/* === PULL QUOTE === */
.pull-quote {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.pull-quote p {
  font-family: var(--heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-primary);
}
.pull-quote .quote-attr {
  font-family: var(--sans);
  font-size: 0.8rem; font-weight: 400;
  color: var(--text-muted);
  margin-top: 1.25rem;
  letter-spacing: 0.04em;
}

/* === SCENARIO CARDS === */
.scenarios-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.scenario-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.scenario-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 34, 51, 0.06);
}
.scenario-label {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.scenario-card h3 {
  font-family: var(--heading);
  font-size: 1.15rem; font-weight: 300;
  margin-bottom: 0.75rem; line-height: 1.3;
}
.scenario-card p { font-size: 0.85rem; line-height: 1.65; color: var(--text-secondary); }
@media (max-width: 768px) { .scenarios-grid { grid-template-columns: 1fr; } }
