/* ── HOME PAGE ── */

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 600px;
}

.hero-left {
  background: var(--navy);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.08);
  pointer-events: none;
}

.hero-h1 {
  font-size: 52px;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 420px; margin-bottom: 28px; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.langs-header {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #ffffff;
  margin-bottom: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-weight: 800;
}
.langs-subheader {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 12px;
}
.langs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.lang-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 7px;
  padding: 9px 11px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lang-main { font-size: 13px; color: #ffffff !important; font-weight: 600; }
.lang-sub { font-size: 10px; color: #c8a96e !important; font-weight: 500; }

/* RIGHT SIDE */
.hero-right {
  background: white;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
}

.attorney-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.atty-initials {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
}
.atty-name { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.atty-cred { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

.sp-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.sp-item {
  font-size: 12px;
  color: var(--text-mid);
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  transition: all 0.2s;
}
.sp-item::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.sp-item:hover { border-color: var(--gold); color: var(--navy); background: var(--gold-pale); }

.sp-locations {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.sp-loc-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-right: 2px;
}
.sp-loc-tag {
  font-size: 11px;
  color: var(--navy);
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--cream);
}

.stats-row {
  display: flex;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.stat { flex: 1; text-align: center; }
.stat:not(:last-child) { border-right: 1px solid var(--border); }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; color: var(--navy); }
.stat-l { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* WHY SECTION */
.why-section {
  padding: 80px 0;
  background: var(--cream);
}
.why-header {
  text-align: center;
  margin-bottom: 52px;
}
.why-header .section-sub { margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.why-icon {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}
.why-icon svg { width: 20px; height: 20px; }
.why-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 10px; font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* CRISIS CTA */
.crisis-cta {
  background: var(--red);
  padding: 44px 0;
}
.crisis-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { order: 1; }
  .hero-right { order: 2; }
  .hero-h1 { font-size: 36px; }
  .langs-grid { grid-template-columns: repeat(4,1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .crisis-cta-inner { flex-direction: column; text-align: center; align-items: center; }
}
@media (max-width: 600px) {
  .hero-left { padding: 36px 20px; background: var(--navy) !important; }
  .hero-right { padding: 32px 20px; }
  .langs-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .sp-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 20px 24px; }
}
