/* International Lawyers - Premium Immigration Law Firm */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --midnight: #0D1B2A;
  --gold: #D4AF37;
  --light: #F8F9FA;
  --silver: #8A9BB5;
  --gold-dark: #B8960C;
  --midnight-light: #162436;
  --midnight-mid: #1a2e45;
  --text-dark: #1a1a2e;
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--light);
}

/* ===== FADE-IN (always visible - no observer) ===== */
.fade-in {
  opacity: 1;
  transform: none;
}
.fade-in.visible { opacity: 1; }

/* ===== TOPBAR ===== */
.topbar {
  background: #050d17;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--gold); text-decoration: none; }
.topbar a:hover { color: #f0d060; }
.topbar-item { display: flex; align-items: center; gap: 8px; }
.topbar-item i { color: var(--gold); font-size: 12px; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--midnight);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 0.5px;
}
.nav-logo-sub {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}
.btn-nav {
  background: var(--gold) !important;
  color: var(--midnight) !important;
  font-weight: 600 !important;
  padding: 9px 20px !important;
  border-radius: 4px !important;
  transition: all 0.2s !important;
}
.btn-nav:hover { background: #f0d060 !important; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--light);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0D1B2A 0%, #1a2e45 40%, #0a1520 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--light), transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--light);
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--midnight);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: #f0d060;
  border-color: #f0d060;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--light);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--midnight);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { background: #f0d060; transform: translateY(-1px); }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--gold);
  padding: 20px 0;
  text-align: center;
}
.trust-strip p {
  font-size: 15px;
  font-weight: 600;
  color: var(--midnight);
  letter-spacing: 1px;
}
.trust-strip span { font-weight: 800; }

/* ===== SECTION STYLES ===== */
section { padding: 80px 0; }
.section-dark { background: var(--midnight); }
.section-mid { background: var(--midnight-light); }
.section-light { background: var(--light); }
.section-white { background: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-dark .section-header h2,
.section-mid .section-header h2 { color: var(--light); }
.section-header p {
  font-size: 17px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-dark .section-header p,
.section-mid .section-header p { color: var(--silver); }

/* ===== ABOUT STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--midnight-light);
  border-radius: 8px;
  border: 1px solid rgba(212,175,55,0.15);
  transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.stat-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* ===== PRACTICE AREAS GRID ===== */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.practice-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  border: 1px solid #e8e8e8;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.practice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.2s;
}
.practice-card:hover::before { transform: scaleY(1); }
.practice-card:hover {
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.practice-icon {
  width: 56px; height: 56px;
  background: rgba(212,175,55,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--gold);
}
.practice-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 12px;
}
.practice-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ===== ATTORNEY CARDS ===== */
.attorneys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.attorney-card {
  background: var(--midnight-light);
  border-radius: 10px;
  padding: 36px 28px;
  border: 1px solid rgba(212,175,55,0.12);
  transition: all 0.2s;
  text-align: center;
}
.attorney-card:hover {
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.attorney-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--midnight), #1a2e45);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}
.attorney-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 6px;
}
.attorney-title {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.attorney-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}
.tag {
  font-size: 11px;
  padding: 4px 12px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold);
  border-radius: 20px;
  font-weight: 500;
}
.attorney-bio {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}
.attorney-meta {
  font-size: 12px;
  color: var(--silver);
}
.attorney-meta strong { color: rgba(255,255,255,0.7); }

/* Single column attorney cards for attorneys page */
.attorneys-list .attorney-card {
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}
.attorneys-list .attorney-avatar { margin: 0; }
.attorneys-list .attorney-tags { justify-content: flex-start; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-mid) 100%);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.15);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--light);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 17px;
  color: var(--silver);
  margin-bottom: 36px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: #050d17;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(212,175,55,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin: 16px 0 24px;
}
.footer-gold-line {
  width: 40px; height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
}
.footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--light);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; font-size: 14px; flex-shrink: 0; }
.footer-contact-item a,
.footer-contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--midnight) 0%, #162436 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  font-size: 13px;
  color: var(--silver);
  margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: var(--gold); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: #f0d060; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 16px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 17px; color: var(--silver); max-width: 560px; }

/* ===== ABOUT PAGE ===== */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--midnight-light);
  border-radius: 8px;
  padding: 36px;
  border: 1px solid rgba(212,175,55,0.12);
}
.value-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--light);
  margin-bottom: 10px;
}
.value-card p { font-size: 14.5px; color: var(--silver); line-height: 1.7; }

.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--midnight);
}
.timeline-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--light);
  margin-bottom: 6px;
}
.timeline-item p { font-size: 14px; color: var(--silver); }

/* ===== PRACTICE AREAS PAGE ===== */
.pa-list { list-style: none; margin-top: 16px; }
.pa-list li {
  padding: 8px 0;
  color: #555;
  font-size: 14.5px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-bottom: 1px solid #f0f0f0;
}
.pa-list li::before { content: "→"; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.pa-detail-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  border: 1px solid #e8e8e8;
  margin-bottom: 24px;
  transition: box-shadow 0.2s;
}
.pa-detail-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.pa-detail-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--midnight);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pa-detail-card h3 i { color: var(--gold); }
.pa-detail-card p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 16px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.process-step {
  background: var(--midnight-light);
  border-radius: 8px;
  padding: 32px 24px;
  border: 1px solid rgba(212,175,55,0.12);
  text-align: center;
  transition: transform 0.2s;
}
.process-step:hover { transform: translateY(-4px); }
.step-number {
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--midnight);
  margin: 0 auto 16px;
}
.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--light);
  margin-bottom: 10px;
}
.process-step p { font-size: 13.5px; color: var(--silver); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--light);
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(212,175,55,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 4px;
}
.contact-detail p, .contact-detail a {
  font-size: 14px;
  color: var(--silver);
  text-decoration: none;
  line-height: 1.6;
}
.contact-detail a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 35px rgba(0,0,0,0.08);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--midnight);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.2s;
  background: var(--light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  background: var(--gold);
  color: var(--midnight);
  padding: 14px 36px;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}
.form-submit:hover { background: #f0d060; transform: translateY(-1px); }

.faq-section { margin-top: 16px; }
.faq-item {
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 10px;
}
.faq-answer { font-size: 14.5px; color: #666; line-height: 1.7; }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-item {
  padding: 28px;
  background: rgba(212,175,55,0.05);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}
.why-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--light);
  margin-bottom: 8px;
}
.why-item p { font-size: 14px; color: var(--silver); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .stats-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-grid, .attorneys-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .core-values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--midnight); flex-direction: column; padding: 20px 24px; border-top: 1px solid rgba(212,175,55,0.15); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .navbar { position: relative; }
  .stats-grid, .process-grid { grid-template-columns: 1fr; }
  .practice-grid, .attorneys-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 100px 0 80px; }
  section { padding: 56px 0; }
  .attorneys-list .attorney-card { grid-template-columns: 1fr; text-align: center; }
  .attorneys-list .attorney-avatar { margin: 0 auto; }
  .attorneys-list .attorney-tags { justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
}
