/* ===== PRACTICE AREAS PAGE ===== */

/* Hero */
.pa-hero {
  position: relative;
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.pa-hero-bg {
  position: absolute;
  inset: 0;
}
.pa-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.pa-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,30,60,0.95) 0%,
    rgba(15,30,60,0.82) 100%
  );
}

.pa-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.pa-hero-content .label { color: var(--gold); margin-bottom: 14px; }

.pa-hero-content h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 14px;
}

.pa-hero-content p {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Intro Bar */
.pa-intro-bar {
  background: var(--gold);
  padding: 28px 40px;
}

.pa-intro-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.pa-intro-inner p {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.65;
  max-width: 680px;
}
.pa-intro-inner strong { font-weight: 700; }

.pa-intro-inner .btn-gold {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  white-space: nowrap;
}
.pa-intro-inner .btn-gold:hover { background: var(--navy-light); border-color: var(--navy-light); }

/* Sections */
.pa-section {
  background: var(--white);
}

.pa-section.alt-bg {
  background: var(--off-white);
}

.pa-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.pa-split.reverse { direction: rtl; }
.pa-split.reverse > * { direction: ltr; }

.pa-img {
  position: relative;
  overflow: hidden;
}

.pa-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.pa-section:hover .pa-img img { transform: scale(1.04); }

.pa-number {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-family: 'Merriweather', serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.pa-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: inherit;
}

.pa-text h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.pa-lead {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.75;
  margin-bottom: 16px;
}

.pa-text p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 28px;
}

.pa-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pa-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}

.pa-list li svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Active nav */
.nav-active { color: var(--gold) !important; }

/* CTA */
.pa-cta {
  background: var(--navy);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pa-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1400&q=50') center/cover;
  opacity: 0.05;
}

.pa-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.pa-cta-inner h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.pa-cta-inner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 36px;
}

.pa-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Reveal animations */
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
  .pa-split { grid-template-columns: 1fr; min-height: auto; }
  .pa-split.reverse { direction: ltr; }
  .pa-img { height: 320px; }
  .pa-text { padding: 56px 36px; }
  .pa-number { font-size: 3.5rem; }
  .pa-intro-inner { flex-direction: column; gap: 20px; }
}

@media (max-width: 560px) {
  .pa-text { padding: 48px 24px; }
  .pa-intro-bar { padding: 24px; }
}
