*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #242424; overflow-x: hidden; }

:root {
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  --charcoal: #242424;
  --midnight: #111111;
  --gray-mid: #898989;
  --gray-light: #f5f5f5;
  --navy: #1B2D45;
  --navy-mid: #2C4A6E;
  --navy-light: #EEF3F9;
  --gold: #B8973E;
  --gold-light: #F5EDD6;
  --shadow-card: rgba(19,19,22,0.7) 0px 1px 5px -4px, rgba(34,42,53,0.08) 0px 0px 0px 1px, rgba(34,42,53,0.05) 0px 4px 8px 0px;
  --shadow-elevated: rgba(19,19,22,0.7) 0px 2px 8px -4px, rgba(34,42,53,0.10) 0px 0px 0px 1px, rgba(34,42,53,0.08) 0px 8px 20px 0px;
  --shadow-modal: rgba(19,19,22,0.5) 0px 4px 16px -4px, rgba(34,42,53,0.12) 0px 0px 0px 1px, rgba(34,42,53,0.10) 0px 16px 40px 0px;
  --shadow-btn-navy: rgba(255,255,255,0.12) 0px 2px 0px inset, rgba(27,45,69,0.5) 0px 1px 5px -4px;
  --t: 150ms ease-out;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
/* SPA page rules removed — not used in WordPress */


/* ── Nav ── */
#nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms, box-shadow 200ms;
}
#nav.scrolled { border-bottom-color: rgba(34,42,53,0.08); box-shadow: rgba(34,42,53,0.05) 0px 4px 8px; }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; cursor: pointer; background: none; border: none; padding: 0; }
.nav-logo img { height: 56px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: #666; text-decoration: none; cursor: pointer;
  background: none; border: none; padding: 8px 14px; border-radius: 8px;
  transition: color var(--t), background var(--t);
}
.nav-link:hover { color: #111; background: #f5f5f5; }
.nav-link.active { color: #111; font-weight: 600; }
.nav-cta {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  background: var(--navy); color: #fff; border: none; cursor: pointer;
  padding: 10px 20px; border-radius: 8px; margin-left: 8px;
  box-shadow: var(--shadow-btn-navy);
  transition: opacity var(--t);
}
.nav-cta:hover { opacity: 0.80; }

/* ── Buttons ── */
.btn-navy {
  font-family: var(--font-body); font-weight: 600;
  background: var(--navy); color: #fff; border: none; cursor: pointer;
  border-radius: 8px; box-shadow: var(--shadow-btn-navy);
  transition: opacity var(--t); display: inline-flex; align-items: center; gap: 8px;
}
.btn-navy:hover { opacity: 0.78; }
.btn-navy.lg { font-size: 15px; padding: 14px 28px; }
.btn-navy.md { font-size: 14px; padding: 11px 22px; }

.btn-ghost {
  font-family: var(--font-body); font-weight: 600;
  background: #fff; color: var(--navy); border: none; cursor: pointer;
  border-radius: 8px; box-shadow: var(--shadow-card);
  transition: box-shadow var(--t), opacity var(--t); display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { box-shadow: var(--shadow-elevated); opacity: 0.85; }
.btn-ghost.lg { font-size: 15px; padding: 14px 28px; }

.btn-white {
  font-family: var(--font-body); font-weight: 600;
  background: #fff; color: var(--navy); border: none; cursor: pointer;
  padding: 14px 28px; border-radius: 8px; font-size: 15px;
  transition: opacity var(--t);
}
.btn-white:hover { opacity: 0.85; }

/* ── Section label ── */
.section-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }

/* ══════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════ */

/* Hero */
.hero {
  padding: 80px 24px 64px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.hero-content { padding-bottom: 0; }

/* Hero practice graphic */
.hero-practice-graphic {
  background: var(--navy); border-radius: 24px;
  padding: 32px; box-shadow: var(--shadow-modal); position: relative; overflow: hidden;
}
.hero-practice-graphic::before {
  content:''; position:absolute; top:-60px; right:-60px;
  width:220px; height:220px; border-radius:50%;
  background:rgba(184,151,62,0.10);
}
.hpg-label {
  font-family:var(--font-mono); font-size:10px; font-weight:600;
  color:rgba(255,255,255,0.35); letter-spacing:1.5px; text-transform:uppercase;
  margin-bottom:20px; position:relative; z-index:1;
}
.hpg-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:12px; position:relative; z-index:1;
}
.hpg-card {
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.10);
  border-radius:14px; padding:20px 18px; cursor:pointer;
  transition:background 200ms, transform 200ms;
}
.hpg-card:hover { background:rgba(255,255,255,0.12); transform:translateY(-2px); }
.hpg-icon {
  width:36px; height:36px; border-radius:10px; margin-bottom:12px;
  display:flex; align-items:center; justify-content:center;
}
.hpg-icon svg { width:17px; height:17px; }
.hpg-icon.gold { background:rgba(184,151,62,0.20); color:var(--gold); }
.hpg-icon.light { background:rgba(255,255,255,0.10); color:rgba(255,255,255,0.7); }
.hpg-title {
  font-family:var(--font-display); font-size:14px; font-weight:700;
  color:#fff; margin-bottom:4px; line-height:1.2;
}
.hpg-sub {
  font-family:var(--font-body); font-size:12px;
  color:rgba(255,255,255,0.4); line-height:1.5;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light); border-radius: 9999px;
  padding: 6px 16px; margin-bottom: 32px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  color: var(--gold);
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(38px, 5vw, 62px); font-weight: 700;
  line-height: 1.08; color: #111; letter-spacing: -0.5px;
  margin-bottom: 24px; text-wrap: pretty;
}
.hero h1 em { font-style: normal; color: var(--navy); }
.hero-sub {
  font-family: var(--font-body); font-size: 17px; font-weight: 300;
  line-height: 1.70; color: #898989; margin-bottom: 40px; max-width: 440px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative; padding-bottom: 80px;
}
.hero-card-main {
  background: var(--navy); border-radius: 20px; padding: 36px;
  box-shadow: var(--shadow-modal); position: relative; overflow: hidden;
}
.hero-card-main::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(184,151,62,0.12);
}
.hero-card-main::after {
  content: ''; position: absolute; bottom: -40px; left: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(44,74,110,0.5);
}
.hc-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}
.hc-quote {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  color: #fff; line-height: 1.35; margin-bottom: 24px; max-width: 280px; position: relative; z-index: 1;
}
.hc-quote span { color: var(--gold); }
.hc-attr {
  font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.5);
  position: relative; z-index: 1;
}

/* Stats strip */
.stats-strip {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(34,42,53,0.08);
  border-bottom: 1px solid rgba(34,42,53,0.08);
  margin-top: 16px;
}
.stat-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(34,42,53,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 40px; font-weight: 700;
  color: var(--navy); line-height: 1; margin-bottom: 6px;
}
.stat-num sup { font-size: 20px; }
.stat-label { font-family: var(--font-body); font-size: 13px; color: #898989; font-weight: 400; }

/* Trust bar */
.trust-bar {
  background: #f5f5f5;
  padding: 18px 24px;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.trust-sep { color: rgba(34,42,53,0.2); font-size: 12px; }
.trust-item {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  color: #898989; letter-spacing: 0.5px; padding: 4px 0;
}

/* Practice areas */
.section-block { padding: 96px 24px; max-width: 1200px; margin: 0 auto; }
.section-block h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  line-height: 1.10; color: #111; margin-bottom: 16px; letter-spacing: -0.3px;
}
.section-block .lead {
  font-family: var(--font-body); font-size: 17px; font-weight: 300;
  color: #898989; line-height: 1.65; margin-bottom: 52px; max-width: 480px;
}

.practice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.practice-card {
  background: #fff; border-radius: 14px; padding: 28px 24px;
  box-shadow: var(--shadow-card); cursor: pointer;
  transition: box-shadow 200ms, transform 200ms;
  display: flex; flex-direction: column;
}
.practice-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-3px); }
.pc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.pc-icon svg { width: 22px; height: 22px; }
.pc-icon.navy { background: var(--navy-light); color: var(--navy); }
.pc-icon.gold { background: var(--gold-light); color: var(--gold); }
.pc-tag {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  color: #898989; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px;
}
.pc-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: #111; margin-bottom: 10px; line-height: 1.2;
}
.pc-body { font-family: var(--font-body); font-size: 14px; color: #898989; line-height: 1.65; flex: 1; }
.pc-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 20px; font-size: 13px; font-weight: 600;
  color: var(--navy); font-family: var(--font-body);
  border-bottom: 1px solid var(--gold); padding-bottom: 1px; width: fit-content;
}

/* Difference section */
.difference-section { background: #f5f5f5; padding: 96px 0; }
.difference-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr; gap: 0; align-items: center;
}
.difference-visual {
  position: relative;
}
.diff-card {
  background: #fff; border-radius: 16px; padding: 32px;
  box-shadow: var(--shadow-elevated);
}
.diff-card-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(34,42,53,0.08);
}
.diff-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff;
}
.diff-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #111; }
.diff-role { font-family: var(--font-body); font-size: 13px; color: #898989; margin-top: 2px; }
.diff-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.diff-stat { background: #f5f5f5; border-radius: 10px; padding: 16px; }
.diff-stat-num { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--navy); }
.diff-stat-lab { font-family: var(--font-body); font-size: 12px; color: #898989; margin-top: 2px; }
.diff-bar { height: 4px; border-radius: 9999px; background: #eee; overflow: hidden; margin-bottom: 8px; }
.diff-bar-fill { height: 100%; border-radius: 9999px; background: var(--gold); }
.diff-bar-label { display: flex; justify-content: space-between; font-size: 12px; color: #898989; font-family: var(--font-body); }

.diff-float {
  position: absolute; background: #fff; border-radius: 12px;
  padding: 14px 18px; box-shadow: var(--shadow-elevated);
  display: flex; align-items: center; gap: 10px;
}
.diff-float.top { top: -20px; right: -24px; }
.diff-float.bot { bottom: -20px; left: -24px; }
.df-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.df-text { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: #111; }
.df-sub { font-size: 11px; font-weight: 400; color: #898989; }

.difference-content {}
.diff-content h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); font-weight: 700;
  line-height: 1.10; color: #111; margin-bottom: 20px; letter-spacing: -0.3px;
}
.diff-content .lead {
  font-family: var(--font-body); font-size: 16px; font-weight: 300;
  color: #898989; line-height: 1.70; margin-bottom: 40px;
}
.diff-features { display: flex; flex-direction: column; gap: 24px; }
.diff-feature { display: flex; gap: 18px; align-items: flex-start; }
.df-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--navy-light); display: flex; align-items: center;
  justify-content: center; color: var(--navy); margin-top: 2px;
}
.df-icon svg { width: 18px; height: 18px; }
.df-f-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #111; margin-bottom: 4px; }
.df-f-body { font-family: var(--font-body); font-size: 14px; color: #898989; line-height: 1.65; }

/* Attorneys */
.attorneys-section { padding: 96px 24px; max-width: 1200px; margin: 0 auto; }
.attorneys-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.attorney-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 200ms, transform 200ms;
}
.attorney-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-2px); }
.attorney-card-top {
  background: var(--navy); padding: 28px 28px 24px; position: relative; overflow: hidden;
}
.attorney-card-top::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(184,151,62,0.15);
}
.att-initials {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: #fff; margin-bottom: 16px; position: relative; z-index: 1;
}
.att-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 3px; position: relative; z-index: 1; }
.att-role { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.5); position: relative; z-index: 1; }
.attorney-card-body { padding: 22px 28px 28px; }
.att-areas { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.att-area {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  padding: 4px 11px; border-radius: 9999px; background: #f5f5f5; color: #666;
}
.att-bio { font-family: var(--font-body); font-size: 14px; color: #898989; line-height: 1.65; margin-bottom: 20px; }
.att-link {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--navy); background: none; border: none; border-bottom: 1px solid var(--gold);
  padding-bottom: 1px; cursor: pointer;
}

/* Testimonials */
.testimonials-section { background: var(--navy); padding: 96px 24px; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 64px; align-items: flex-start; }
.testimonials-intro { flex: 0 0 260px; }
.testimonials-intro h2 {
  font-family: var(--font-display); font-size: clamp(28px,4vw,44px); font-weight: 700;
  line-height: 1.10; color: #fff; margin-bottom: 16px; letter-spacing: -0.3px; text-align: left;
}
.testimonials-intro .lead {
  font-family: var(--font-body); font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.5); text-align: left;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; flex: 1; }
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 28px;
}
.t-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.t-star { color: var(--gold); font-size: 14px; }
.t-quote {
  font-family: var(--font-body); font-size: 15px; line-height: 1.70;
  color: rgba(255,255,255,0.8); margin-bottom: 24px; font-style: italic;
}
.t-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 18px; }
.t-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #fff; }
.t-detail { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 3px; }

/* Trust / logos */
.logos-section { padding: 60px 24px; border-top: 1px solid rgba(34,42,53,0.08); border-bottom: 1px solid rgba(34,42,53,0.08); }
.logos-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.logos-label {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  color: #898989; letter-spacing: 0.5px; margin-bottom: 36px;
}
.logos-row { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.logo-item {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: #c8c8c8; letter-spacing: -0.3px; transition: color var(--t);
}
.logo-item:hover { color: #898989; }

/* CTA Banner */
.cta-banner {
  background: var(--gold-light); padding: 80px 24px; text-align: center;
  border-top: 3px solid var(--gold);
}
.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(26px,4vw,44px); font-weight: 700;
  line-height: 1.10; color: var(--navy); margin-bottom: 16px; letter-spacing: -0.3px;
}
.cta-banner p { font-family: var(--font-body); font-size: 17px; font-weight: 300; color: #898989; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; }

/* ══════════════════════════════════════════
   PRACTICE AREAS PAGE
══════════════════════════════════════════ */
.page-hero { padding: 72px 24px 64px; max-width: 1200px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(32px,5vw,52px); font-weight: 700;
  line-height: 1.10; color: var(--navy); margin-bottom: 16px; letter-spacing: -0.3px;
}
.page-hero .lead { font-family: var(--font-body); font-size: 17px; font-weight: 300; color: #898989; line-height: 1.65; max-width: 520px; }

.accordion-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px 96px; }
.accordion-item { border-radius: 14px; overflow: hidden; margin-bottom: 10px; box-shadow: var(--shadow-card); transition: box-shadow 200ms; }
.accordion-item.open { box-shadow: var(--shadow-elevated); }
.accordion-header {
  padding: 24px 28px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; background: #fff; user-select: none;
}
.accordion-tag { font-family: var(--font-body); font-size: 11px; font-weight: 600; color: #898989; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 4px; }
.accordion-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); }
.accordion-icon { width: 32px; height: 32px; border-radius: 50%; background: #f5f5f5; display: flex; align-items: center; justify-content: center; transition: background 200ms, transform 200ms; flex-shrink: 0; }
.accordion-item.open .accordion-icon { background: var(--navy); transform: rotate(45deg); }
.accordion-icon svg { width: 16px; height: 16px; color: #898989; }
.accordion-item.open .accordion-icon svg { color: #fff; }
.accordion-body { display: none; padding: 0 28px 28px; background: #fff; }
.accordion-item.open .accordion-body { display: block; }
.accordion-divider { height: 1px; background: rgba(34,42,53,0.08); margin-bottom: 24px; }
.accordion-text { font-family: var(--font-body); font-size: 15px; color: #898989; line-height: 1.70; margin-bottom: 24px; max-width: 640px; }
.acc-page-link {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--navy); background: none; border: none; border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px; cursor: pointer; transition: opacity var(--t);
}
.acc-page-link:hover { opacity: 0.7; }

/* ── Nav dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: 12px; padding: 8px;
  box-shadow: var(--shadow-modal); min-width: 220px;
  opacity: 0; pointer-events: none;
  transition: opacity 150ms ease-out, transform 150ms ease-out;
  z-index: 300;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-dropdown:not(:hover) .nav-dropdown-menu:hover {
  opacity: 1; pointer-events: all;
}
.nav-dropdown-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 8px; cursor: pointer;
  background: none; border: none; width: 100%; text-align: left;
  transition: background var(--t);
}
.nav-dropdown-item:hover { background: #f5f5f5; }
.ndi-icon {
  width: 32px; height: 32px; border-radius: 8px; background: var(--navy-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--navy);
}
.ndi-icon svg { width: 15px; height: 15px; }
.ndi-label { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: #111; }
.ndi-sub { font-family: var(--font-body); font-size: 12px; color: #898989; margin-top: 1px; }
.nav-dropdown-divider { height: 1px; background: rgba(34,42,53,0.08); margin: 6px 0; }
.nav-caret { display: inline-block; margin-left: 3px; font-size: 10px; color: #898989; transition: transform var(--t); }
.nav-dropdown:hover .nav-caret { transform: rotate(180deg); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.pill-tag {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 9999px;
  box-shadow: rgba(34,42,53,0.08) 0px 0px 0px 1px; color: #242424;
}

/* ══════════════════════════════════════════
   ATTORNEYS PAGE
══════════════════════════════════════════ */
.attorneys-page-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; padding: 0 24px 96px; }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-grid {
  max-width: 1200px; margin: 0 auto; padding: 72px 24px 96px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-info h1 {
  font-family: var(--font-display); font-size: clamp(30px,4vw,48px); font-weight: 700;
  line-height: 1.10; color: var(--navy); margin-bottom: 20px; letter-spacing: -0.3px;
}
.contact-info .lead { font-family: var(--font-body); font-size: 16px; font-weight: 300; color: #898989; line-height: 1.70; margin-bottom: 40px; }
.contact-detail { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 14px; }
.cd-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--navy-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-icon svg { width: 16px; height: 16px; color: var(--navy); }
.cd-label { font-family: var(--font-body); font-size: 11px; font-weight: 600; color: #898989; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.cd-value { font-family: var(--font-body); font-size: 15px; color: #242424; }

.contact-form-wrap { background: #fff; border-radius: 16px; padding: 36px; box-shadow: var(--shadow-elevated); }
.form-group { margin-bottom: 18px; }
.form-label { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: #242424; display: block; margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px;
  padding: 11px 14px; border-radius: 8px; outline: none; color: #242424;
  background: #fff; border: 1px solid rgba(34,42,53,0.15);
  box-shadow: rgba(34,42,53,0.04) 0px 1px 2px;
  transition: box-shadow 150ms, border-color 150ms;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(27,45,69,0.4);
  box-shadow: 0 0 0 3px rgba(27,45,69,0.08);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-family: var(--font-body); font-size: 12px; color: #898989; text-align: center; margin-top: 12px; line-height: 1.5; }
.form-success { text-align: center; padding: 40px 0; }
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.form-success-body { font-family: var(--font-body); font-size: 15px; color: #898989; line-height: 1.65; }

/* ── Footer ── */
footer { background: var(--midnight); padding: 64px 24px 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-about p { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.65; margin-top: 14px; max-width: 300px; }
.footer-col-title { font-family: var(--font-display); font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.35); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-link {
  font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.5);
  margin-bottom: 10px; cursor: pointer; display: block;
  transition: color var(--t); background: none; border: none; text-align: left; padding: 0;
}
.footer-link:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-gold-bar { width: 100%; height: 3px; background: var(--gold); }

/* ══ WHY + TESTIMONIALS COMBINED ══ */
.why-testimonials-section { background: var(--navy); padding: 96px 0; }
.why-testimonials-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.why-col {}
.why-col h2 { font-family: var(--font-display); font-size: clamp(28px,4vw,40px); font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: -0.3px; line-height: 1.1; }
.why-col .lead { color: rgba(255,255,255,0.55); margin-bottom: 40px; }
.why-col .section-label { color: rgba(184,151,62,0.9); }
.why-col .section-label::before { background: rgba(184,151,62,0.6); }
.why-col .df-icon { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.why-col .df-f-title { color: #fff; }
.why-col .df-f-body { color: rgba(255,255,255,0.5); }
.testimonials-col {}
.testimonials-col h2 { font-family: var(--font-display); font-size: clamp(24px,3vw,36px); font-weight: 700; line-height: 1.1; letter-spacing: -0.3px; }
.t-col-stack { display: flex; flex-direction: column; gap: 12px; }
.t-col-stack .testimonial-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 24px; }

/* ══ END WHY + TESTIMONIALS ══ */
.pa-hero {
  background: var(--navy); padding: 72px 24px 64px; position: relative; overflow: hidden;
}
.pa-hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(184,151,62,0.08);
}
.pa-hero::after {
  content: ''; position: absolute; bottom: -60px; left: 30%;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(44,74,110,0.4);
}
.pa-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.pa-breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 28px;
  font-family: var(--font-body); font-size: 13px; color: #fff;
}
.pa-breadcrumb-link {
  color: #fff; text-decoration: none; transition: opacity var(--t);
}
.pa-breadcrumb a,
.pa-breadcrumb a:link,
.pa-breadcrumb a:visited,
.pa-breadcrumb .pa-breadcrumb-link {
  color: #fff !important;
  text-decoration: none;
}
.pa-breadcrumb-link:hover { opacity: 0.75; }
.pa-breadcrumb-current { color: #fff; opacity: 0.85; }
.pa-breadcrumb span { color: #fff; }
.pa-hero h1 {
  font-family: var(--font-display); font-size: clamp(34px,5vw,56px); font-weight: 700;
  line-height: 1.08; color: #fff; margin-bottom: 20px; letter-spacing: -0.5px;
  max-width: 640px;
}
.pa-hero-sub {
  font-family: var(--font-body); font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.70; max-width: 520px; margin-bottom: 36px;
}
.pa-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pa-hero-tag {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  padding: 5px 14px; border-radius: 9999px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
}
a.pa-hero-tag {
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
}
a.pa-hero-tag:hover {
  background: rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.30);
}

.pa-body { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Resources */
.resources-section { padding: 80px 0 0; }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.resource-card {
  background: #fff; border-radius: 14px; padding: 28px;
  box-shadow: var(--shadow-card); cursor: pointer;
  transition: box-shadow 200ms, transform 200ms;
  display: flex; flex-direction: column;
}
.resource-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-2px); }
.rc-type {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 14px;
}
.rc-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--gold-light); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.rc-icon svg { width: 15px; height: 15px; color: var(--gold); }
.rc-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #111; margin-bottom: 8px; line-height: 1.3; }
.rc-desc { font-family: var(--font-body); font-size: 14px; color: #898989; line-height: 1.65; flex: 1; }
.rc-link { margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--navy); font-family: var(--font-body); display: inline-flex; align-items: center; gap: 4px; }

/* Email capture */
.guide-capture {
  margin: 64px 0;
  background: var(--navy-light); border-radius: 20px; padding: 52px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  border: 1px solid rgba(27,45,69,0.12);
}
.guide-content .gc-eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.guide-content .gc-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.guide-content h3 { font-family: var(--font-display); font-size: clamp(22px,3vw,32px); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.3px; }
.guide-content p { font-family: var(--font-body); font-size: 15px; color: #555; line-height: 1.70; }
.guide-form {}
.guide-form-label { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: #242424; display: block; margin-bottom: 8px; }
.guide-input-row { display: flex; gap: 10px; margin-bottom: 10px; }
.guide-input-row input {
  flex: 1; font-family: var(--font-body); font-size: 15px; padding: 12px 16px;
  border-radius: 8px; border: 1px solid rgba(34,42,53,0.15); outline: none;
  background: #fff; box-shadow: rgba(34,42,53,0.04) 0px 1px 2px;
  transition: border-color 150ms, box-shadow 150ms; color: #242424;
}
.guide-input-row input:focus { border-color: rgba(27,45,69,0.4); box-shadow: 0 0 0 3px rgba(27,45,69,0.08); }
.guide-note { font-family: var(--font-body); font-size: 12px; color: #898989; margin-top: 8px; }
.guide-success { background: #fff; border-radius: 12px; padding: 28px; text-align: center; box-shadow: var(--shadow-card); }
.guide-success-icon { font-size: 32px; margin-bottom: 10px; }
.guide-success-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.guide-success-body { font-family: var(--font-body); font-size: 14px; color: #898989; }

/* FAQ */
.faq-section { padding: 0 0 96px; }
.faq-section h2 { font-family: var(--font-display); font-size: clamp(24px,3vw,36px); font-weight: 700; color: #111; margin-bottom: 8px; letter-spacing: -0.3px; }
.faq-section .faq-lead { font-family: var(--font-body); font-size: 16px; color: #898989; margin-bottom: 36px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-card); }
.faq-q {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; background: #fff; user-select: none; gap: 16px;
}
.faq-q-text { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: #111; line-height: 1.4; }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: #f5f5f5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 200ms, transform 200ms; }
.faq-item.open .faq-toggle { background: var(--navy); transform: rotate(45deg); }
.faq-toggle svg { width: 14px; height: 14px; color: #898989; }
.faq-item.open .faq-toggle svg { color: #fff; }
.faq-a { display: none; padding: 0 24px 22px; background: #fff; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-family: var(--font-body); font-size: 15px; color: #898989; line-height: 1.75; border-top: 1px solid rgba(34,42,53,0.08); padding-top: 18px; }

/* ══ BLOG PAGE ══ */
.blog-hero { padding: 72px 24px 56px; max-width: 1200px; margin: 0 auto; }
.blog-hero h1 { font-family: var(--font-display); font-size: clamp(32px,5vw,52px); font-weight: 700; line-height: 1.10; color: #111; margin-bottom: 16px; letter-spacing: -0.3px; }
.blog-hero .lead { font-family: var(--font-body); font-size: 17px; font-weight: 300; color: #898989; line-height: 1.65; max-width: 500px; }

.blog-filters { display: flex; gap: 8px; flex-wrap: wrap; padding: 0 24px; max-width: 1200px; margin: 0 auto 48px; }
.blog-filter {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  padding: 7px 18px; border-radius: 9999px; border: none; cursor: pointer;
  background: #f5f5f5; color: #898989; transition: background var(--t), color var(--t);
}
.blog-filter.active, .blog-filter:hover { background: var(--navy); color: #fff; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; padding: 0 24px 96px; }
.blog-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-card); cursor: pointer;
  transition: box-shadow 200ms, transform 200ms; display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-3px); }
.blog-card.featured { grid-column: span 2; }
.bc-img {
  height: 180px; background: var(--navy-light); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blog-card.featured .bc-img { height: 220px; }
.bc-img-icon { opacity: 0.18; }
.bc-img-icon svg { width: 80px; height: 80px; color: var(--navy); }
.bc-category {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 9999px;
  background: #fff; color: var(--navy);
  box-shadow: var(--shadow-card);
}
.bc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.bc-date { font-family: var(--font-mono); font-size: 11px; color: #898989; margin-bottom: 10px; letter-spacing: 0.5px; }
.bc-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #111; line-height: 1.3; margin-bottom: 10px; }
.blog-card.featured .bc-title { font-size: 22px; }
.bc-excerpt { font-family: var(--font-body); font-size: 14px; color: #898989; line-height: 1.65; flex: 1; }
.bc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(34,42,53,0.08); }
.bc-author { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: #242424; }
.bc-read { font-family: var(--font-body); font-size: 12px; color: #898989; }

.blog-newsletter { background: var(--gold-light); padding: 72px 24px; border-top: 3px solid var(--gold); text-align: center; }
.blog-newsletter h2 { font-family: var(--font-display); font-size: clamp(24px,3vw,36px); font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.3px; }
.blog-newsletter p { font-family: var(--font-body); font-size: 16px; color: #898989; margin-bottom: 28px; }
.blog-nl-row { display: flex; gap: 10px; justify-content: center; max-width: 480px; margin: 0 auto; }
.blog-nl-row input { flex: 1; font-family: var(--font-body); font-size: 15px; padding: 12px 16px; border-radius: 8px; border: 1px solid rgba(34,42,53,0.15); outline: none; background: #fff; transition: border-color 150ms, box-shadow 150ms; }
.blog-nl-row input:focus { border-color: rgba(27,45,69,0.4); box-shadow: 0 0 0 3px rgba(27,45,69,0.08); }

/* ══ ARTICLE MODAL ══ */
.article-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(17,17,17,0.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 250ms ease-out;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 24px; overflow-y: auto;
}
.article-overlay.open { opacity: 1; pointer-events: all; }
.article-modal {
  background: #fff; border-radius: 20px; max-width: 740px; width: 100%;
  box-shadow: var(--shadow-modal); position: relative;
  transform: translateY(20px); transition: transform 300ms ease-out;
  overflow: hidden;
}
.article-overlay.open .article-modal { transform: translateY(0); }
.article-modal-header {
  background: var(--navy); padding: 36px 40px 32px; position: relative; overflow: hidden;
}
.article-modal-header::before {
  content:''; position:absolute; top:-60px; right:-60px; width:200px; height:200px;
  border-radius:50%; background:rgba(184,151,62,0.12);
}
.amh-category {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.amh-category::before { content:''; display:block; width:16px; height:1px; background:var(--gold); }
.article-modal-header h2 {
  font-family: var(--font-display); font-size: clamp(20px,3vw,28px); font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 12px; max-width: 580px; position: relative; z-index:1;
}
.amh-meta {
  font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.45);
  display: flex; gap: 16px; align-items: center; position: relative; z-index:1;
}
.article-close {
  position: absolute; top: 20px; right: 20px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t); color: #fff;
}
.article-close:hover { background: rgba(255,255,255,0.2); }
.article-close svg { width: 16px; height: 16px; }
.article-body { padding: 40px 40px 48px; }
.article-body h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: #111; margin: 28px 0 10px; line-height: 1.3;
}
.article-body h3:first-child { margin-top: 0; }
.article-body p {
  font-family: var(--font-body); font-size: 16px; color: #555;
  line-height: 1.80; margin-bottom: 16px;
}
.article-body ul { margin: 0 0 16px 20px; }
.article-body ul li {
  font-family: var(--font-body); font-size: 16px; color: #555;
  line-height: 1.75; margin-bottom: 8px;
}
.article-callout {
  background: var(--navy-light); border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 24px 0;
}
.article-callout p { color: var(--navy); font-weight: 500; margin: 0; }
.article-cta {
  border-top: 1px solid rgba(34,42,53,0.08); margin-top: 36px; padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.article-cta p { font-family: var(--font-body); font-size: 15px; color: #898989; margin: 0; }
.rc-link-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--navy); border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px; transition: opacity var(--t); display: inline-flex; align-items: center; gap: 4px;
}
.rc-link-btn:hover { opacity: 0.7; }

/* ══════════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px; margin-left: 8px;
  transition: background var(--t);
}
.nav-toggle:hover { background: #f5f5f5; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #242424; border-radius: 2px;
  transition: transform 200ms ease-out, opacity 200ms ease-out;
  transform-origin: center;
}
#nav.mobile-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav.mobile-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#nav.mobile-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid rgba(34,42,53,0.08);
  padding: 12px 16px 20px;
  box-shadow: rgba(34,42,53,0.08) 0px 8px 16px;
}
#nav.mobile-open .nav-mobile { display: flex; }
.nav-mobile-link {
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  color: #242424; text-decoration: none; cursor: pointer;
  background: none; border: none; text-align: left;
  padding: 13px 10px; border-bottom: 1px solid rgba(34,42,53,0.06);
  display: block; transition: color var(--t);
}
.nav-mobile-link:hover { color: var(--navy); }
.nav-mobile-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  color: #898989; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 16px 10px 6px; display: block;
}
.nav-mobile-sub {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: #666; text-decoration: none; cursor: pointer;
  background: none; border: none; text-align: left;
  padding: 10px 10px 10px 24px; display: block;
  border-bottom: 1px solid rgba(34,42,53,0.04);
  transition: color var(--t);
}
.nav-mobile-sub:hover { color: var(--navy); }
.nav-mobile-cta {
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: #fff; background: var(--navy); text-decoration: none;
  padding: 14px 24px; border-radius: 8px; text-align: center;
  margin-top: 14px; display: block; cursor: pointer; border: none;
  box-shadow: var(--shadow-btn-navy); transition: opacity var(--t);
}
.nav-mobile-cta:hover { opacity: 0.82; }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px 48px; }
  .hero-practice-graphic { max-width: 520px; }
  .hpg-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .attorneys-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-inner { flex-direction: column; gap: 40px; }
  .testimonials-intro { flex: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .why-testimonials-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-capture { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .diff-float { display: none; }
  .difference-inner { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card.featured { grid-column: span 2; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { padding: 48px 20px 40px; gap: 32px; }
  .hpg-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-navy,
  .hero-btns .btn-ghost { width: 100%; justify-content: center; }

  /* Stats strip */
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(34,42,53,0.08); }
  .stat-item:last-child { border-bottom: none; }

  /* Practice grid */
  .practice-grid { grid-template-columns: 1fr; }

  /* Attorneys */
  .attorneys-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: span 1; }
  .blog-nl-row { flex-direction: column; }
  .blog-nl-row .btn-navy { width: 100%; justify-content: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }

  /* Guide capture */
  .guide-capture { padding: 28px 24px; margin: 40px 0; }
  .guide-input-row { flex-direction: column; }
  .guide-input-row .btn-navy { width: 100%; justify-content: center; }

  /* CTA banner */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-navy,
  .cta-actions .btn-ghost { width: 100%; max-width: 340px; justify-content: center; }

  /* Article modal — bottom sheet on mobile */
  .article-overlay { padding: 0; align-items: flex-end; }
  .article-modal {
    border-radius: 20px 20px 0 0; max-height: 90vh;
    overflow-y: auto; width: 100%;
  }
  .article-modal-header { padding: 28px 24px 24px; }
  .article-body { padding: 28px 24px 40px; }
  .article-cta { flex-direction: column; }

  /* Section spacing */
  .section-block { padding: 64px 20px; }
  .pa-body { padding: 0 20px; }
  .resources-grid { grid-template-columns: 1fr; }

  /* Practice area hero tags */
  .pa-hero-tags { gap: 6px; }

  /* Blog newsletter */
  .blog-newsletter { padding: 56px 24px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; height: 64px; }
  .nav-logo img { height: 46px; }

  .hero { padding: 36px 16px 32px; }
  .pa-hero { padding: 52px 16px 44px; }
  .section-block { padding: 56px 16px; }
  .pa-body { padding: 0 16px; }

  .guide-capture { padding: 24px 18px; }
  .contact-grid { padding: 40px 16px 64px; }
  .contact-form-wrap { padding: 22px 18px; }
  .blog-grid { padding: 0 16px 72px; }
  .blog-filters { padding: 0 16px; }
  .blog-hero { padding: 56px 16px 44px; }
  .page-hero { padding: 56px 16px 44px; }
  .accordion-wrap { padding: 0 16px 72px; }
  .attorneys-section { padding: 64px 16px; }
  .logos-section { padding: 48px 16px; }
  .logos-row { gap: 28px; }
  footer { padding: 44px 16px 0; }

  .stats-strip { grid-template-columns: 1fr; }
  .diff-stat-row { grid-template-columns: 1fr; }

  .article-body h3 { font-size: 17px; }
  .article-body p, .article-body ul li { font-size: 15px; }

  .cta-actions .btn-navy,
  .cta-actions .btn-ghost { max-width: 100%; }
}

/* ══════════════════════════════════════════
   SERVICE AREA SECTION
══════════════════════════════════════════ */
.service-area-section {
  padding: 64px 0;
  border-top: 1px solid rgba(34,42,53,0.08);
}
.service-area-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px,3vw,32px);
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.service-area-intro {
  font-family: var(--font-body);
  font-size: 16px;
  color: #898989;
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.service-area-intro strong { color: #444; }
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-area-county {
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
}
.service-area-county h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-area-county ul { list-style: none; }
.service-area-county ul li {
  font-family: var(--font-body);
  font-size: 14px;
  color: #555;
  padding: 5px 0;
  border-bottom: 1px solid rgba(27,45,69,0.06);
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-area-county ul li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-area-county ul li:last-child { border-bottom: none; }

/* ══════════════════════════════════════════
   SUBPAGES SECTION (on parent practice area pages)
══════════════════════════════════════════ */
.subpages-section {
  padding: 64px 0;
  border-top: 1px solid rgba(34,42,53,0.08);
}
.subpages-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px,3vw,32px);
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.subpages-section > p {
  font-family: var(--font-body);
  font-size: 16px;
  color: #898989;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.subpages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.subpage-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(34,42,53,0.08);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: box-shadow var(--t), transform var(--t);
}
.subpage-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}
.spc-content { flex: 1; }
.spc-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
}
.spc-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: #898989;
  line-height: 1.5;
}
.spc-arrow {
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--t), transform var(--t);
}
.subpage-card:hover .spc-arrow { opacity: 1; transform: translateX(3px); }

/* ══════════════════════════════════════════
   SUBPAGE CONTENT SECTIONS
══════════════════════════════════════════ */
.subpage-intro-block {
  padding: 64px 0 48px;
}
.subpage-intro-block p {
  font-family: var(--font-body);
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 16px;
}
.subpage-content {
  padding: 48px 0;
  border-top: 1px solid rgba(34,42,53,0.08);
}
.subpage-content h2 {
  font-family: var(--font-display);
  font-size: clamp(20px,2.5vw,28px);
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}
.subpage-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  margin-top: 24px;
}
.subpage-content p {
  font-family: var(--font-body);
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 720px;
}
.subpage-content ul {
  margin: 8px 0 16px 18px;
  max-width: 680px;
}
.subpage-content ul li {
  font-family: var(--font-body);
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 6px;
}
.subpage-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.subpage-why-card {
  padding: 26px 22px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}
.subpage-why-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  margin-top: 0;
}
.subpage-why-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  max-width: none;
  margin: 0;
}
.subpage-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  margin-top: 8px;
  opacity: 0.8;
  transition: opacity var(--t);
}
.subpage-back-link:hover { opacity: 1; text-decoration: underline; }

/* Responsive – service area & subpages */
@media (max-width: 1024px) {
  .service-area-grid { grid-template-columns: repeat(2, 1fr); }
  .subpage-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .service-area-grid { grid-template-columns: repeat(2, 1fr); }
  .subpages-grid { grid-template-columns: 1fr; }
  .subpage-why-grid { grid-template-columns: 1fr; }
  .service-area-section { padding: 48px 0; }
  .subpages-section { padding: 48px 0; }
  .subpage-intro-block { padding: 48px 0 36px; }
  .subpage-content { padding: 36px 0; }
}
@media (max-width: 480px) {
  .service-area-grid { grid-template-columns: 1fr; }
}
