/* MEG Law — Stylesheet
   Navy #1A355C | Blue #2B388F | Green #00B67A | Text #425563
   Fonts: Cormorant Garamond (headings) + DM Sans (body) — matching G&G / meg.co aesthetic
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

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

:root {
  --navy:   #1A355C;
  --navy-2: #2B388F;
  --gold:   #00B67A;
  --gold-lt:#00CF8A;
  --cream:  #F0F4F8;
  --slate:  #7A8FA6;
  --text:   #425563;
  --white:  #FFFFFF;
  --border: rgba(0,182,122,0.2);
  --shadow-sm: 0 2px 12px rgba(26,53,92,0.08);
  --shadow:    0 8px 40px rgba(26,53,92,0.12);
  --shadow-lg: 0 20px 60px rgba(26,53,92,0.18);
  --radius: 3px;
  --max-w:  1180px;
  --t: 0.28s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.1;
  color: var(--navy);
}
h1 { font-size: clamp(3rem, 6.5vw, 5.6rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-weight: 600; }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,182,122,0.4);
}
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ─── Navigation ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 16px 0;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  transition: all var(--t);
}
.nav.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 2px 16px rgba(26,53,92,0.1);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo-mark {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav__logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.nav__logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  transition: color var(--t);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t);
}
.nav__links a:hover, .nav__links a.active { color: var(--navy); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--navy);
  transition: all var(--t);
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero__glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,182,122,0.06) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.hero__glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,182,122,0.04) 0%, transparent 70%);
  bottom: 100px; left: -100px;
  pointer-events: none;
}
.hero__main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
  z-index: 1;
}
.hero__content {
  max-width: 820px;
}
.hero__content .eyebrow {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__content .eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero__title {
  color: var(--white);
  margin-bottom: 30px;
  font-size: clamp(3.2rem, 6.8vw, 5.8rem);
}
.hero__title em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 44px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Hero Stats Strip ──────────────────────────────────── */
.hero__stats-strip {
  border-top: 1px solid rgba(0,182,122,0.2);
  position: relative;
  z-index: 1;
}
.hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero__stat {
  padding: 28px 36px;
  border-right: 1px solid rgba(0,182,122,0.15);
  transition: background var(--t);
}
.hero__stat:last-child { border-right: none; }
.hero__stat:hover { background: rgba(0,182,122,0.04); }
.hero__stat-num {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ─── Trust Bar ─────────────────────────────────────────── */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 16px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 32px;
}
.trust-bar__item svg { color: var(--gold); flex-shrink: 0; }
.trust-bar__divider {
  width: 1px;
  height: 18px;
  background: rgba(26,53,92,0.15);
  flex-shrink: 0;
}

/* ─── Sections ──────────────────────────────────────────── */
.section { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }

.section__header { margin-bottom: 48px; }
.section__header--center {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.section__header .eyebrow { margin-bottom: 14px; }
.section__header h2 { margin-bottom: 18px; }
.section__header p { color: var(--slate); font-size: 0.975rem; line-height: 1.75; margin: 0; }
.section--navy .section__header p { color: rgba(255,255,255,0.72); }

.gold-rule {
  display: block;
  width: 44px; height: 2px;
  background: var(--gold);
  margin-top: 22px;
}
.gold-rule--center { margin: 22px auto 0; }

/* ─── About Intro ───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text { padding-top: 8px; }
.about-text .eyebrow { margin-bottom: 14px; }
.about-text h2 { margin-bottom: 6px; }
.about-text p {
  color: var(--slate);
  font-size: 0.975rem;
  line-height: 1.85;
  margin-top: 24px;
}
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 0; }
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.feature:first-child { padding-top: 0; }
.feature:last-child { border-bottom: none; padding-bottom: 0; }
.feature__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(0,182,122,0.4);
  line-height: 1;
  flex-shrink: 0;
  width: 20px;
  padding-top: 3px;
}
.feature__body h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.feature__body p {
  font-size: 0.875rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.65;
}

/* Who we serve panel */
.serve-panel {
  background: var(--navy);
  border-radius: 4px;
  padding: 40px 36px;
  position: sticky;
  top: 100px;
}
.serve-panel .eyebrow { margin-bottom: 10px; }
.serve-panel h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 32px; }
.serve-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.serve-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--t);
}
.serve-item:first-child { padding-top: 0; }
.serve-item:last-child { border-bottom: none; padding-bottom: 0; }
.serve-item::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── Practice Cards ────────────────────────────────────── */
.practice-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.practice-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,182,122,0.15);
  border-radius: 4px;
  padding: 36px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 14px;
  row-gap: 10px;
  align-items: start;
}
.practice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}
.practice-card:hover { border-color: rgba(0,182,122,0.4); background: rgba(0,182,122,0.04); }
.practice-card:hover::before { transform: scaleY(1); }
.practice-card__num {
  grid-column: 1;
  grid-row: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(0,182,122,0.5);
  line-height: 1.4;
  letter-spacing: 0;
}
.practice-card h3 {
  grid-column: 2;
  grid-row: 1;
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0;
  line-height: 1.3;
}
.practice-card p {
  grid-column: 1 / -1;
  grid-row: 2;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0;
}
.practice-card__link {
  grid-column: 1 / -1;
  grid-row: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--t);
}
.practice-card__link:hover { gap: 10px; }

/* ─── Process ───────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  overflow: hidden;
  align-items: stretch;
}
.process-step {
  padding: 36px;
  border-right: 1px solid rgba(0,0,0,0.08);
  transition: background var(--t);
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 10px;
  align-items: start;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--cream); }
.process-step__num {
  grid-column: 1;
  grid-row: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(0,182,122,0.5);
  line-height: 1.4;
  letter-spacing: 0;
}
.process-step h3 {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.05rem;
  margin-bottom: 0;
  color: var(--navy);
  line-height: 1.3;
}
.process-step p {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.75;
  margin: 0;
}

/* ─── Why Us ────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0,182,122,0.15);
  border: 1px solid rgba(0,182,122,0.15);
  border-radius: 4px;
  overflow: hidden;
}
.why-item {
  background: var(--navy);
  padding: 36px;
  transition: background var(--t);
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 12px;
}
.why-item:hover { background: #0D2545; }
.why-item__icon {
  grid-column: 1;
  grid-row: 1;
  width: 40px; height: 40px;
  border-radius: 3px;
  border: 1px solid rgba(0,182,122,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  align-self: center;
}
.why-item h3 {
  grid-column: 2;
  grid-row: 1;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0;
  align-self: center;
}
.why-item p {
  grid-column: 2;
  grid-row: 2;
  color: rgba(255,255,255,0.78);
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0;
}

/* ─── Team Photo ─────────────────────────────────────────── */
.team-section { padding: 56px 0; background: var(--cream); }
.team-photo-wrap {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.team-photo-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.team-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,53,92,0.96));
  padding: 80px 48px 40px;
}
.team-photo-overlay h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 4px; }
.team-photo-overlay p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin: 0; }

/* ─── CTA Banner ────────────────────────────────────────── */
.cta-banner {
  background: var(--gold);
  padding: 64px 0;
}
.cta-banner__inner { text-align: center; }
.cta-banner h2 { color: var(--navy); margin-bottom: 14px; }
.cta-banner p { color: rgba(26,53,92,0.65); font-size: 1.05rem; max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }

/* ─── Footer ────────────────────────────────────────────── */
.footer { background: #0F2039; padding: 60px 0 28px; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer__brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-top: 18px;
  line-height: 1.75;
  max-width: 270px;
}
.footer__col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--t);
}
.footer__col a:hover { color: rgba(255,255,255,0.85); }
.footer__contact-item { display: flex; gap: 12px; margin-bottom: 14px; }
.footer__contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item span, .footer__contact-item a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  transition: color var(--t);
}
.footer__contact-item a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); margin: 0; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 0.78rem; color: rgba(255,255,255,0.25); transition: color var(--t); }
.footer__legal a:hover { color: rgba(255,255,255,0.55); }

/* ─── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 120px 0 60px;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { color: var(--white); margin-bottom: 22px; }
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.8;
  margin: 0;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.35); transition: color var(--t); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ─── Attorney Profile ──────────────────────────────────── */
.attorney-full {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.attorney-full:last-child { border-bottom: none; }
.attorney-full--reverse { grid-template-columns: 1fr 360px; }
.attorney-full--reverse .attorney-photo { order: 2; }
.attorney-full--reverse .attorney-info { order: 1; }
.attorney-photo { position: sticky; top: 100px; }
.attorney-photo img { width: 100%; border-radius: 4px; box-shadow: var(--shadow-lg); }
.attorney-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #0D2545, var(--navy));
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.attorney-contact-card {
  margin-top: 20px;
  padding: 22px 24px;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.07);
}
.attorney-contact-card p {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.attorney-contact-card a { display: block; transition: color var(--t); }
.attorney-contact-card a:first-of-type { color: var(--gold); font-size: 0.95rem; margin-bottom: 5px; }
.attorney-contact-card a:last-of-type { color: var(--slate); font-size: 0.85rem; }
.attorney-contact-card a:hover { color: var(--navy); }

.attorney-info .eyebrow { margin-bottom: 8px; }
.attorney-info h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 4px; }
.attorney-info__role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.attorney-info__bio p { color: var(--slate); font-size: 0.975rem; line-height: 1.85; }
.attorney-credentials { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.credential-item { display: flex; gap: 14px; align-items: flex-start; }
.credential-item__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}
.credential-item span { font-size: 0.9rem; color: var(--text); line-height: 1.5; }

/* ─── Practice Detail ───────────────────────────────────── */
.practice-detail {
  padding: 80px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.practice-detail:last-child { border-bottom: none; }
.practice-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.practice-detail__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.practice-detail h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 22px; }
.practice-detail p { color: var(--slate); font-size: 0.97rem; line-height: 1.85; margin-bottom: 1.1rem; }
.practice-detail ul { list-style: none; margin-top: 20px; }
.practice-detail ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 12px;
}
.practice-detail ul li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}
.practice-visual {
  background: var(--navy);
  border-radius: 4px;
  padding: 48px 40px;
  border: 1px solid var(--border);
}
.practice-visual__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 28px;
}
.practice-visual__items { display: flex; flex-direction: column; gap: 12px; }
.practice-visual__item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,182,122,0.15);
  border-radius: 3px;
  padding: 16px 20px 16px 38px;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.5;
  position: relative;
}
.practice-visual__item::before {
  content: '✓';
  position: absolute;
  left: 14px;
  top: 50%; transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}
.practice-visual__note {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(0,182,122,0.25);
  border-radius: 3px;
  background: rgba(0,182,122,0.04);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.practice-visual__note strong { color: var(--gold); }

/* ─── Contact ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form-card {
  background: var(--white);
  border-radius: 4px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
}
.contact-form-card h3 { font-size: 1.6rem; margin-bottom: 6px; }
.contact-form-card > p { color: var(--slate); margin-bottom: 36px; font-size: 0.925rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.925rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  appearance: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(0,182,122,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-disclaimer { font-size: 0.73rem; color: var(--slate); margin-top: 16px; line-height: 1.65; }
.contact-info { padding-top: 8px; }
.contact-info .eyebrow { margin-bottom: 12px; }
.contact-info h3 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-info > p { color: var(--slate); margin-bottom: 40px; font-size: 0.975rem; line-height: 1.8; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-detail__icon {
  width: 46px; height: 46px;
  border-radius: 4px;
  background: rgba(0,182,122,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-detail__body h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-detail__body p,
.contact-detail__body a { font-size: 0.975rem; color: var(--text); margin: 0; line-height: 1.5; }
.contact-detail__body a:hover { color: var(--gold); }
.contingency-box {
  background: var(--navy);
  border-radius: 4px;
  padding: 30px 32px;
  margin-top: 40px;
  border-left: 3px solid var(--gold);
}
.contingency-box h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.contingency-box p { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.75; margin: 0; }

/* ─── FAQ Cards ─────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}
.faq-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  padding: 36px 32px;
  transition: all var(--t);
}
.faq-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq-card h4 { font-size: 0.975rem; margin-bottom: 12px; line-height: 1.4; }
.faq-card p { color: var(--slate); font-size: 0.875rem; line-height: 1.75; margin: 0; }

/* ─── Utilities ─────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ─── Scroll Animations ─────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .hero__stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero__stat:nth-child(2) { border-right: none; }
  .about-grid { grid-template-columns: 1fr; }
  .serve-panel { position: static; }
  .attorney-full { grid-template-columns: 1fr; gap: 40px; }
  .attorney-full--reverse .attorney-photo { order: 0; }
  .attorney-photo { position: static; }
  .attorney-photo img, .attorney-photo-placeholder { max-width: 480px; }
  .practice-detail__inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 52px 0; }
  .hero__main { padding: 100px 0 48px; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__lead { font-size: 0.95rem; margin-bottom: 32px; }
  .hero__stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero__stat { padding: 18px 12px; }
  .hero__stat-num { font-size: 1.4rem; }
  .hero__stat-label { font-size: 0.55rem; letter-spacing: 0.04em; line-height: 1.3; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .practice-cards { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; border: none; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); padding: 28px 20px; }
  .process-step:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 20px 24px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .trust-bar__inner { gap: 0; overflow-x: auto; justify-content: flex-start; padding: 0 8px; }
  .trust-bar__item { padding: 0 16px; font-size: 0.65rem; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  /* Nav */
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }
  /* Contact */
  .contact-form-card { padding: 28px 20px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  /* Team photo */
  .team-photo-wrap img { height: 280px; }
  .team-section { padding: 48px 0; }
  /* CTA */
  .cta-banner { padding: 56px 0; }
  .cta-banner h2 { font-size: 1.8rem; }
  /* Page hero */
  .page-hero { padding: 110px 0 52px; }
  /* Attorney */
  .attorney-photo img, .attorney-photo-placeholder { max-width: 100%; }
  /* Serve panel */
  .serve-panel { padding: 36px 28px; }
  /* Section header */
  .section__header--center { margin-bottom: 36px; }
  /* Logo */
  .nav__logo-img { height: 30px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }
  .hero__main { padding: 90px 0 40px; }
  .hero__stats-inner { grid-template-columns: 1fr 1fr; }
  .hero__stat { padding: 16px 12px; }
  .hero__stat-num { font-size: 1.25rem; }
  .btn { padding: 12px 22px; font-size: 0.7rem; }
  .footer__top { gap: 24px; }
  .cta-banner p { font-size: 0.9rem; }
}

/* Mobile nav */
.nav.mobile-open .nav__links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 998;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav.mobile-open .nav__links a { font-size: 1.3rem; letter-spacing: 0.04em; color: var(--white); }
.nav.mobile-open .nav__hamburger span { background: var(--white); }
.nav.mobile-open .nav__hamburger span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav.mobile-open .nav__hamburger span:nth-child(2) { opacity: 0; }
.nav.mobile-open .nav__hamburger span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ─── Logo Image ─────────────────────────────────────────── */
.nav__logo-img {
  height: 38px;
  width: auto;
  display: block;


}
.footer__logo-img {
  height: 34px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

/* ─── Anchor scroll offset (accounts for sticky nav + section nav) ── */
section[id],
div[id] {
  scroll-margin-top: 130px;
}
