/* ============================================================
   Heuer Fischer Law — Stylesheet
   Based on Figma design: file jlYupl7E0KcFPQx9P6vLuU
   ============================================================ */

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
input, textarea, select { font: inherit; }

/* ─── Design Tokens ─── */
:root {
  /* Colors */
  --white:          #FFFFFF;
  --off-white:      #F7F7F7;
  --near-black:     #1E1C1D;
  --text-muted:     rgba(30, 28, 29, 0.6);
  --text-faint:     rgba(30, 28, 29, 0.4);
  --brand:          #533824;
  --brand-light:    rgba(83, 56, 36, 0.1);
  --warm-gray:      #E2E1DD;
  --border:         rgba(30, 28, 29, 0.1);
  --border-med:     rgba(30, 28, 29, 0.2);
  --header-bg:      rgba(255, 255, 255, 0.92);
  --card-shadow:    0 4px 24px rgba(30, 28, 29, 0.08);
  --card-shadow-lg: 0 8px 40px rgba(30, 28, 29, 0.12);

  /* Typography */
  --font-serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-4:   0.25rem;
  --space-8:   0.5rem;
  --space-12:  0.75rem;
  --space-16:  1rem;
  --space-20:  1.25rem;
  --space-24:  1.5rem;
  --space-32:  2rem;
  --space-40:  2.5rem;
  --space-48:  3rem;
  --space-64:  4rem;
  --space-80:  5rem;
  --space-96:  6rem;

  /* Layout */
  --max-width:  1280px;
  --header-h:   72px;
  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --transition: 0.2s ease;
}

/* ─── Base ─── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--near-black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── Utility ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-24);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--space-16);
}

.section-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.15;
  color: var(--near-black);
}

.section-heading-center {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.15;
  color: var(--near-black);
  text-align: center;
}

.section-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: var(--space-16);
}

.section-sub-center {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: var(--space-16);
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: none; opacity: 1; }

.btn-brown  { background: var(--brand); color: var(--white); }
.btn-dark   { background: #1E1C1D; color: #ffffff; }
.btn-outline {
  background: var(--white);
  color: var(--brand);
  border: 2px solid var(--border);
}
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-full { width: 100%; }

/* ─── Link styles ─── */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: var(--space-16);
  transition: gap var(--transition);
}
.card-link:hover { gap: 0.625rem; }

.link-underline {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand);
  border-bottom: 2px solid var(--brand);
  padding-bottom: 2px;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.link-underline:hover { opacity: 0.75; }

.link-subtle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--near-black);
  border-bottom: 1px solid var(--border-med);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.link-subtle:hover { border-color: var(--near-black); }
button.link-subtle, .link-subtle--btn {
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-med);
  padding: 0 0 2px 0;
  font-family: inherit;
  cursor: pointer;
}


/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-24);
  width: 100%;
}

.logo { flex-shrink: 0; }
.logo-img {
  height: 88px;
  width: auto;
  object-fit: contain;
}

.primary-nav { flex: 1; }
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.primary-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--near-black);
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.primary-nav a:hover { background: var(--off-white); }
.primary-nav a.active { color: var(--brand); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-32);
  flex-shrink: 0;
  margin-left: var(--space-80);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
}
.phone-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
}

.header-actions .btn { padding: 0.75rem 1.75rem; font-size: 0.9375rem; border-radius: 10px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-8);
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--near-black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Language Toggle ── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
  padding: 0.25rem 0.375rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background var(--transition);
}
.lang-toggle:hover { background: var(--off-white); }

.lang-opt {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(30, 28, 29, 0.2);
  line-height: 1;
  transition: color var(--transition), font-weight var(--transition);
  cursor: pointer;
  user-select: none;
}
.lang-opt--active {
  color: var(--brand);
  font-weight: 700;
}

.lang-sep {
  font-size: 0.875rem;
  color: rgba(30, 28, 29, 0.45);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}


/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  background: var(--warm-gray);
  padding: calc(var(--header-h) + var(--space-64)) 0 var(--space-80);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  background: var(--brand-light);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  margin-bottom: var(--space-24);
}

.hero-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--near-black);
  margin-bottom: var(--space-24);
}
.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(30, 28, 29, 0.7);
  max-width: 500px;
  margin-bottom: var(--space-32);
}

.hero-ctas {
  display: flex;
  gap: var(--space-16);
  flex-wrap: wrap;
  margin-bottom: var(--space-40);
}

.hero-trust {
  display: flex;
  gap: var(--space-32);
  padding-top: var(--space-32);
  border-top: 1px solid var(--border);
}

.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--near-black);
}
.trust-sub {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Hero media */
.hero-media { position: relative; }

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-lg);
}
.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.hero-testimonial {
  position: absolute;
  bottom: -2.5rem;
  left: -5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-20) var(--space-24);
  max-width: 280px;
  box-shadow: var(--card-shadow-lg);
}
.stars { margin-bottom: var(--space-12); }
.testimonial-quote {
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(30, 28, 29, 0.8);
  margin-bottom: var(--space-12);
}
.testimonial-attr {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--near-black);
}


/* ════════════════════════════════════════════
   HOW WE HELP (PRACTICE AREAS)
════════════════════════════════════════════ */
.how-we-help {
  background: var(--white);
  padding: var(--space-96) 0;
}

.section-intro {
  max-width: 768px;
  margin-bottom: var(--space-64);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-24);
}

.practice-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: var(--space-32);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.practice-card:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-2px);
}
.practice-card .card-link::after {
  content: '';
  position: absolute;
  inset: 0;
}

.practice-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: var(--space-24);
  flex-shrink: 0;
}

.practice-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--near-black);
  margin-bottom: var(--space-12);
}

.practice-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}


/* ════════════════════════════════════════════
   RECENT RESULTS
════════════════════════════════════════════ */
.results-section {
  background: var(--near-black);
  padding: var(--space-96) 0;
}

.results-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-16);
  margin-bottom: var(--space-64);
}

.results-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 3rem);
  color: var(--white);
  text-align: center;
}

.results-bar {
  width: 80px;
  height: 4px;
  background: var(--brand);
  border-radius: 2px;
}

/* Outer flex row: [arrow] [viewport] [arrow] */
.results-slider {
  display: flex;
  align-items: stretch;
  gap: var(--space-16);
}

/* Styled arrow panels — match Figma bordered card design */
.results-arrow {
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: none;
  color: var(--brand);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  min-height: 160px;
  padding: 0;
}
.results-arrow:hover {
  border-color: var(--brand);
  background: rgba(83, 56, 36, 0.12);
}
.results-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* Clipping container */
.results-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

/* The sliding strip */
.results-track {
  display: flex;
  gap: var(--space-24);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Cards: width set by JS; min-height so short cards stay tall */
.result-card {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: var(--space-40);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  min-height: 200px;
  transition: border-color var(--transition);
}
.result-card:hover { border-color: rgba(255, 255, 255, 0.25); }

.result-amount {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1;
  color: var(--warm-gray);
}

.result-type {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.result-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin-top: auto;
  padding-top: var(--space-8);
}

/* Dot row below the slider */
.results-footer {
  display: flex;
  justify-content: center;
  margin-top: var(--space-32);
}

.slider-dots {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.slider-dot.active {
  background: var(--brand);
  transform: scale(1.3);
}


/* ════════════════════════════════════════════
   OUR APPROACH
════════════════════════════════════════════ */
.approach-section {
  background: var(--warm-gray);
  padding: var(--space-96) 0;
}

.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-80);
  align-items: center;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
  margin-top: var(--space-40);
  list-style: none;
}

.approach-step {
  display: flex;
  gap: var(--space-20);
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--near-black);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-body h3 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--near-black);
  margin-bottom: var(--space-8);
}
.step-body p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.approach-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-lg);
}
.approach-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}


/* ════════════════════════════════════════════
   RESOURCES
════════════════════════════════════════════ */
.resources-section {
  background: var(--white);
  padding: var(--space-96) 0;
}

.resources-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-32);
  margin-bottom: var(--space-64);
}
.resources-header-text { max-width: 600px; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-32);
}

.article-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.article-card:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-2px);
}

.article-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

/* Homepage article cards whose content is still being produced */
.article-card--soon .article-img-wrap img { transform: none; }
.article-ribbon {
  position: absolute;
  top: 22px;
  right: -52px;
  width: 180px;
  transform: rotate(45deg);
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 0;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(14,12,13,0.28);
}
a.article-card { text-decoration: none; color: inherit; display: flex; }
a.article-card:hover h3 { color: var(--brand); }
.article-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.article-card:hover .article-img-wrap img { transform: scale(1.03); }

.article-body {
  padding: var(--space-20) 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--space-8);
}

.article-body h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--near-black);
  margin-bottom: var(--space-12);
}

.article-body p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}


/* ════════════════════════════════════════════
   TEAM
════════════════════════════════════════════ */
.team-section {
  background: var(--white);
  padding: var(--space-96) 0;
  border-top: 1px solid var(--border);
}

.team-intro {
  text-align: center;
  margin-bottom: var(--space-64);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-32);
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-32);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover {
  box-shadow: var(--card-shadow-lg);
  transform: translateY(-2px);
}

.team-photo-wrap {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--space-24);
  background: var(--off-white);
  flex-shrink: 0;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2rem;
  color: var(--near-black);
  margin-bottom: var(--space-8);
}

.team-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand);
  margin-bottom: var(--space-16);
}

.team-quote {
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: var(--space-20);
}

.team-card--staff {
  background: var(--white);
  align-items: flex-start;
  text-align: center;
  padding: var(--space-32) 0 0;
  overflow: hidden;
}

.team-staff-photo-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.team-staff-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-staff-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-32);
  flex: 1;
}
.team-staff-link {
  margin-top: auto;
  padding-top: var(--space-20);
}

.team-staff-body h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2rem;
  color: var(--near-black);
  margin-bottom: var(--space-8);
}

.team-staff-roles {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-20);
}


/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq-section {
  background: var(--white);
  padding: var(--space-96) 0;
  border-top: 1px solid var(--border);
}

.faq-section .section-heading-center { margin-bottom: var(--space-48); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  padding: var(--space-24) 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--near-black);
  background: transparent;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--brand); background: transparent; }
.faq-question[aria-expanded="true"] { color: var(--brand); background: transparent; }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), border-color var(--transition);
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  border-color: var(--brand);
}

.faq-answer {
  padding: 0 0 var(--space-24);
  background: transparent;
}
.faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #64748B;
}


/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact-section {
  background: var(--white);
  padding: var(--space-96) 0;
}

.contact-card {
  background: #e6e1d9;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 16px rgba(30,28,29,0.08), 0 24px 64px rgba(30,28,29,0.26);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  overflow: hidden;
}

.contact-info {
  background: var(--near-black);
  padding: var(--space-64) var(--space-48);
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--white);
}

.contact-sub {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
  margin-top: auto;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg path { stroke: var(--brand); }
.contact-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 4px;
}

.detail-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}
a.detail-link {
  text-decoration: none;
  color: var(--white);
}
a.detail-link:hover {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
}

/* Contact form */
.contact-form {
  padding: var(--space-48);
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 1rem;
  color: var(--near-black);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(83, 56, 36, 0.1);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #9CA3AF; }
.form-field textarea { resize: vertical; min-height: 120px; }

.form-success {
  padding: var(--space-16);
  background: rgba(83, 56, 36, 0.08);
  border-radius: var(--radius-sm);
  color: var(--brand);
  font-weight: 600;
  text-align: center;
}


/* ════════════════════════════════════════════
   PRACTICE AREAS PAGE
════════════════════════════════════════════ */

/* Hero */
.pa-hero {
  background: #E2E1DD;
  padding: var(--space-80) 0;
  text-align: center;
}
.pa-hero-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--near-black);
  margin-bottom: var(--space-16);
}
.pa-underline {
  width: 80px;
  height: 4px;
  background: var(--brand);
  margin: 0 auto var(--space-24);
  border-radius: 2px;
}
.pa-hero-sub {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #475569;
  max-width: 800px;
  margin: 0 auto;
}

/* Practice area list */
.pa-list {
  padding: var(--space-80) 0 var(--space-64);
  background: var(--white);
}
.pa-items {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin: 0 auto;
}
.pa-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-24);
  padding-bottom: var(--space-48);
  margin-bottom: var(--space-32);
  border-bottom: 1px solid #E2E8F0;
}
.pa-item--last {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.pa-icon-box {
  width: 64px;
  height: 64px;
  background: rgba(83, 56, 36, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pa-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pa-item-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  color: var(--near-black);
}
.pa-item-desc {
  font-size: 1rem;
  line-height: 1.625;
  color: #475569;
  max-width: 720px;
}
.pa-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand);
  transition: gap var(--transition);
}
.pa-learn-more:hover { gap: 0.625rem; }

/* Dark why section */
.pa-why {
  background: var(--near-black);
  padding: var(--space-80) 0;
}
.pa-why-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-64);
}
.pa-why-text { flex: 1; }
.pa-why-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: var(--space-16);
}
.pa-why-sub {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin-bottom: var(--space-32);
}
.pa-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}
.pa-why-list li {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}
.pa-why-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}
.pa-why-cta { flex-shrink: 0; }

/* Stats strip */
.pa-stats {
  background: var(--brand);
  padding: var(--space-48) 0;
}
.pa-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pa-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 var(--space-64);
  text-align: center;
}
.pa-stat-val {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.pa-stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.pa-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* Responsive — PA */
@media (max-width: 768px) {
  .pa-why-inner { flex-direction: column; align-items: flex-start; gap: var(--space-32); }
  .pa-stats-inner { flex-direction: column; gap: var(--space-24); }
  .pa-stat-divider { width: 40px; height: 1px; }
  .pa-item { flex-direction: column; gap: var(--space-16); }
}


/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: var(--space-64) 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-80);
  padding-bottom: var(--space-48);
}

.footer-brand { display: flex; flex-direction: column; gap: var(--space-16); }

.footer-logo img { height: 160px; width: auto; object-fit: contain; }

.footer-brand > p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: var(--space-12);
  margin-top: var(--space-8);
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.social-link:hover { border-color: var(--brand); color: var(--brand); }
.social-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: var(--space-48);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--space-20);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}
.footer-col ul li a,
.footer-col--office address a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--near-black);
  transition: color var(--transition);
}
.footer-col ul li a:hover,
.footer-col--office address a:hover { color: var(--brand); }

.footer-col--office address {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--space-16);
}

.footer-phone {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--brand);
  display: inline-block;
  transition: opacity var(--transition);
}
.footer-phone:hover { opacity: 0.75; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-20) 0;
  border-top: 1px solid var(--border);
  gap: var(--space-24);
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-faint);
}
.footer-legal {
  display: flex;
  gap: var(--space-24);
}
.footer-legal a {
  font-size: 0.8125rem;
  color: var(--text-faint);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--near-black); }


/* ════════════════════════════════════════════
   LEGAL PAGES (disclaimer, privacy-policy)
════════════════════════════════════════════ */
.legal-hero {
  background: var(--off-white);
  padding: calc(var(--header-h) + var(--space-64)) 0 var(--space-48);
  border-bottom: 1px solid var(--border);
}
.legal-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-24);
}
.legal-hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--near-black);
  margin-bottom: var(--space-12);
}
.legal-hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.legal-content {
  padding: var(--space-64) var(--space-24) var(--space-96);
}
.legal-body {
  max-width: 760px;
  margin: 0 auto;
}
.review-notice {
  background: #fffbeb;
  border: 1px solid #f59e0b;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius);
  padding: var(--space-16) var(--space-20);
  margin-bottom: var(--space-32);
  font-size: 0.875rem;
  line-height: 1.6;
  color: #92400e;
}
.review-notice strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
}
.legal-updated {
  font-size: 0.8125rem;
  color: var(--text-faint);
  margin-bottom: var(--space-48);
}
.legal-section {
  margin-bottom: var(--space-48);
}
.legal-section h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--near-black);
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border);
}
.legal-section p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--space-12);
}
.legal-section ul {
  padding-left: var(--space-20);
  margin-bottom: var(--space-12);
}
.legal-section ul li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--space-8);
}
.legal-contact-block {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-24) var(--space-28);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.legal-contact-block a {
  color: var(--brand);
  font-weight: 600;
}

/* Footer attorney advertising bar */
.footer-ad-bar {
  font-size: 0.6875rem;
  color: var(--text-faint);
  line-height: 1.65;
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--border);
  text-align: center;
}


/* ════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-48);
  }
  .hero-media { order: -1; }
  .hero-img { height: 380px; }
  .hero-testimonial {
    position: static;
    max-width: 100%;
    margin-top: var(--space-16);
  }

  .practice-grid { grid-template-columns: repeat(2, 1fr); }

  /* Narrower arrow panels on tablet */
  .results-arrow { flex: 0 0 40px; font-size: 1.5rem; }

  .approach-content { grid-template-columns: 1fr; gap: var(--space-48); }
  .approach-image-wrap { order: -1; }
  .approach-img { height: 360px; }

  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid .article-card:last-child { grid-column: 1 / -1; max-width: 50%; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card--staff { grid-column: 1 / -1; }
  .team-staff-photo-wrap { height: 280px; }

  .contact-card { grid-template-columns: 1fr; }
  .contact-info { padding: var(--space-48); }

  .footer-top { grid-template-columns: 1fr; gap: var(--space-40); }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-col--office { grid-column: 1 / -1; }

  .resources-header { flex-direction: column; align-items: flex-start; }
}


/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --space-96: 4rem; --space-80: 3rem; --space-64: 2.5rem; }

  /* Header */
  .primary-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: var(--space-24);
    z-index: 99;
  }
  .primary-nav.open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav a {
    display: block;
    padding: 0.875rem var(--space-16);
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  /* On mobile: hide phone/CTA; hamburger moves to end, lang-toggle auto-margins right */
  .header-actions { display: none; }
  .nav-toggle { display: flex; order: 10; }
  .header-inner > .lang-toggle { margin-left: auto; }

  /* Hero — put text above image on mobile */
  .hero-content { display: contents; }
  .hero-inner   { gap: 0; }
  .hero-badge   { order: 1; }
  .hero-heading { order: 2; }
  .hero-sub     { order: 3; }
  .hero-ctas    { order: 4; }
  .hero-media   { order: 5; margin-bottom: var(--space-16); }
  .hero-trust   { order: 6; }
  .hero-heading { font-size: clamp(2.125rem, 9.5vw, 2.75rem); margin-bottom: var(--space-20); }
  .hero-sub     { margin-bottom: var(--space-24); }
  .hero-ctas    { margin-bottom: var(--space-32); }
  .hero-line { white-space: normal; }
  .hero-ctas { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: var(--space-16); align-items: center; }
  .trust-item { align-items: center; text-align: center; }
  .hero-img { height: 260px; }

  /* Results slider: hide side arrows, rely on dots */
  .results-arrow { display: none; }
  .results-slider { display: block; }

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

  .articles-grid { grid-template-columns: 1fr; }
  .articles-grid .article-card:last-child { grid-column: auto; max-width: 100%; }

  .team-grid { grid-template-columns: 1fr; }
  .team-staff-photo-wrap { height: 200px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-info { padding: var(--space-32) var(--space-24); }
  .contact-form { padding: var(--space-32) var(--space-24); }

  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-col--office { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* ════════════════════════════════════════════
   INNER PAGES — SHARED COMPONENTS
════════════════════════════════════════════ */

/* Page Hero (inner pages) */
.inner-hero {
  background: var(--white);
  padding: calc(var(--header-h) + var(--space-64)) 0 var(--space-80);
}
.inner-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: center;
}
.inner-hero-content .hero-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.inner-hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-lg);
}
.inner-hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* Location bar */
.location-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-16) 0;
}
.location-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-16);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748B;
}
.location-bar-label { font-weight: 600; color: #64748B; }
.location-sep { color: #94A3B8; font-size: 0.5rem; line-height: 1; }

/* Overview section */
.overview-section {
  background: var(--warm-gray);
  padding: var(--space-96) 0;
}
.overview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-80);
  align-items: center;
}
.overview-blocks {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
  margin-top: var(--space-32);
}
.overview-block h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--near-black);
  margin-bottom: var(--space-8);
}
.overview-block p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.overview-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-lg);
}
.overview-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Situation cards */
.situations-section {
  background: var(--white);
  padding: var(--space-96) 0;
}
.situations-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-32);
  margin-bottom: var(--space-48);
}
.situations-header-text { max-width: 600px; }
.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-24);
}
.situation-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: var(--space-32);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  transition: box-shadow var(--transition), transform var(--transition);
}
.situation-card:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-2px);
}
.situation-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: var(--space-8);
}
.situation-card-icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}
.situation-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  color: #fff;
}
.situation-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--near-black);
}
.situation-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748B;
}

/* Process section – dark */
.process-dark {
  background: var(--near-black);
  padding: var(--space-96) 0;
}
.process-dark-header {
  text-align: center;
  margin-bottom: var(--space-64);
}
.process-dark-header .section-heading { color: var(--white); }
.process-dark-header .section-sub {
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.process-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-24);
}
.process-step-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: var(--space-24);
}
.process-step-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: var(--space-12);
}
.process-step-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #9CA3AF;
}

/* Inline result cards (inner pages, no slider) */
.page-results {
  background: var(--warm-gray);
  padding: var(--space-96) 0;
}
.page-results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-24);
  margin-bottom: var(--space-48);
}
.page-result-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-24);
}
.page-result-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--brand);
  padding: var(--space-32);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.page-result-card .r-amount {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--near-black);
  line-height: 1;
}
.page-result-card .r-type {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(83,56,36,0.55);
}
.page-result-card .r-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748B;
  font-style: italic;
  margin-top: var(--space-8);
}

/* Causes grid */
.causes-section {
  background: var(--white);
  padding: var(--space-96) 0;
}
.causes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-32) var(--space-48);
  margin-top: var(--space-48);
}
.cause-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding-top: var(--space-24);
  border-top: 2px solid var(--border);
}
.cause-item h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--near-black);
}
.cause-item p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* MN Law blocks */
.law-section {
  background: var(--warm-gray);
  padding: var(--space-96) 0;
}
.law-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-24);
  margin-top: var(--space-48);
}
.law-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-32);
}
.law-block h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--near-black);
  margin-bottom: var(--space-12);
}
.law-block p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Inner CTA band */
.inner-cta {
  background: var(--near-black);
  padding: var(--space-96) 0;
  text-align: center;
}
.inner-cta h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--white);
  margin-bottom: var(--space-16);
}
.inner-cta p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto var(--space-40);
}
.inner-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-16);
  flex-wrap: wrap;
  margin-bottom: var(--space-20);
}
.inner-cta-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: var(--white); }

/* ─── AA CTA Card (split two-column) ─── */
.aa-cta-section {
  background: var(--off-white);
  padding: var(--space-96) 0;
}
.aa-cta-card {
  background: #1D1B1C;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 66fr 34fr;
  overflow: hidden;
}
.aa-cta-left {
  padding: var(--space-64);
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  justify-content: center;
}
.aa-cta-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  color: var(--white);
  line-height: 1.15;
}
.aa-cta-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: #CBD5E1;
  max-width: 480px;
}
.aa-cta-actions {
  display: flex;
  align-items: center;
  gap: var(--space-32);
  flex-wrap: wrap;
}
.btn-cream {
  background: #e6e1d9;
  color: var(--near-black);
  border: none;
  white-space: nowrap;
}
.btn-cream:hover { background: var(--white); color: var(--near-black); }
.aa-cta-phone-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.aa-cta-phone-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
.aa-cta-phone-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.aa-cta-phone-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.aa-cta-phone-num {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  line-height: 1.2;
}
.aa-cta-phone-num:hover { color: rgba(255,255,255,0.8); }
.aa-cta-right {
  position: relative;
  background-image: url('../images/auto-accident-law.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.aa-cta-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(29,27,28,0.91);
}
.aa-cta-right-content {
  position: relative;
  text-align: center;
  padding: var(--space-48) var(--space-32);
}
.aa-cta-pct {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-12);
}
.aa-cta-tag {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
@media (max-width: 768px) {
  .aa-cta-card { grid-template-columns: 1fr; }
  .aa-cta-left { padding: var(--space-48) var(--space-32); }
  .aa-cta-right { min-height: 200px; order: 2; }
  .aa-cta-pct { font-size: 3.5rem; }
  .aa-cta-actions { flex-direction: column; align-items: flex-start; gap: var(--space-24); }
}

/* Inner FAQ */
.inner-faq {
  background: var(--white);
  padding: var(--space-96) 0;
  border-top: 1px solid var(--border);
}
.inner-faq .section-heading-center { margin-bottom: var(--space-48); }

/* Responsive — inner pages */
@media (max-width: 1024px) {
  .inner-hero-inner { grid-template-columns: 1fr; gap: var(--space-48); }
  .inner-hero-img-wrap { order: -1; }
  .inner-hero-img { height: 360px; }
  .overview-inner { grid-template-columns: 1fr; gap: var(--space-48); }
  .overview-img-wrap { order: -1; }
  .overview-img { height: 320px; }
  .situation-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps-row { grid-template-columns: repeat(2, 1fr); }
  .page-result-cards { grid-template-columns: repeat(2, 1fr); }
  .causes-grid { grid-template-columns: repeat(2, 1fr); }
  .law-blocks { grid-template-columns: 1fr; }
  .situations-header { flex-direction: column; align-items: flex-start; }
  .page-results-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .inner-hero-img { height: 240px; }
  .situation-grid { grid-template-columns: 1fr; }
  .process-steps-row { grid-template-columns: 1fr; }
  .page-result-cards { grid-template-columns: 1fr; }
  .causes-grid { grid-template-columns: 1fr; }
  .location-bar-inner { gap: var(--space-8); }
}

/* ─── Nav Dropdown ─── */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-dd-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 1px;
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.nav-has-dropdown:hover .nav-dd-arrow,
.nav-has-dropdown:focus-within .nav-dd-arrow { transform: rotate(180deg); }
/* Bridge gap so mouse travelling to dropdown doesn't close it */
.nav-has-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(30,28,29,0.12), 0 4px 8px rgba(30,28,29,0.04);
  padding: 10px 8px;
  width: max-content;
  display: flex;
  flex-direction: row;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  /* closing: 150ms delay then fade */
  transition: opacity 200ms ease 150ms, transform 200ms ease 150ms, visibility 0ms ease 350ms;
  z-index: 200;
  pointer-events: none;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown,
.nav-has-dropdown.dd-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  /* opening: immediate */
  transition: opacity 200ms ease, transform 200ms ease, visibility 0ms ease;
}
.nav-dropdown li { display: contents; }
.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--near-black);
  border-radius: 8px;
  background: transparent;
  white-space: nowrap;
  transition: background 150ms ease;
}
.nav-dropdown a:hover,
.nav-dropdown a.dropdown-active { background: #F5F1EB; color: var(--near-black); }
.nav-dropdown.dd-overflow { left: auto; right: -12px; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.cp-page {
  min-height: calc(100vh - var(--header-h));
}
.cp-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: calc(100vh - var(--header-h));
}
.cp-left {
  background: #FAF9F7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-80) var(--space-64);
}
.cp-left-inner {
  width: 100%;
  max-width: 540px;
}
.cp-right {
  background: var(--near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-80) var(--space-64);
}
.cp-right-inner {
  width: 100%;
  max-width: 440px;
}
.cp-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #705B3D;
  margin-bottom: var(--space-16);
}
.cp-eyebrow--light {
  color: rgba(255,255,255,0.45);
}
.cp-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 700;
  color: #010100;
  line-height: 1.05;
  margin-bottom: var(--space-16);
}
.cp-lead {
  font-size: 1.0625rem;
  color: #4E4543;
  line-height: 1.65;
  margin-bottom: var(--space-40);
  max-width: 460px;
}
.cp-fields {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}
.cp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}
.cp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cp-field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--near-black);
}
.cp-field input,
.cp-field select,
.cp-field textarea {
  border: 1px solid #D1D5DB;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--near-black);
  background: var(--white);
  width: 100%;
  transition: border-color var(--transition);
}
.cp-field input:focus,
.cp-field select:focus,
.cp-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(83,56,36,0.1);
}
.cp-field textarea {
  resize: vertical;
  min-height: 130px;
}
.cp-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: var(--space-8);
}
.cp-submit:hover { background: #3d2a1a; }
.cp-info-h {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.625rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-16);
}
.cp-info-body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: var(--space-48);
}
.cp-contacts {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
  list-style: none;
}
.cp-contact {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
}
.cp-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.cp-contact-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.cp-contact-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 5px;
}
.cp-contact-val {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.5;
  text-decoration: none;
}
.cp-contact-val:hover { text-decoration: underline; }

@media (max-width: 960px) {
  .cp-grid { grid-template-columns: 1fr; min-height: auto; }
  .cp-left, .cp-right { padding: var(--space-64) var(--space-32); }
  .cp-left { align-items: flex-start; }
  .cp-right { align-items: flex-start; }
}
@media (max-width: 560px) {
  .cp-row { grid-template-columns: 1fr; }
  .cp-left, .cp-right { padding: var(--space-48) var(--space-20); }
}

/* ═══════════════════════════════════════
   RESOURCES PAGE
═══════════════════════════════════════ */

/* Hero */
.rp-hero {
  background: var(--warm-gray);
  padding: var(--space-96) 0;
}
.rp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: center;
}
.rp-hero-badge {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--space-20);
}
.rp-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--near-black);
  line-height: 1.05;
}
.rp-hero-body {
  font-size: 1.1875rem;
  color: #4E4543;
  line-height: 1.72;
}

/* How to use */
.rp-how {
  background: var(--white);
  padding: var(--space-96) 0;
}
.rp-how-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--near-black);
  text-align: center;
  margin-bottom: var(--space-64);
}
.rp-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.rp-how-item {
  padding: var(--space-32) var(--space-32) 0;
  border-top: 3px solid var(--brand);
}
.rp-how-item + .rp-how-item {
  border-left: 1px solid var(--border);
}
.rp-how-item h3 {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  color: var(--near-black);
  margin-bottom: var(--space-12);
}
.rp-how-item p {
  font-size: 0.9375rem;
  color: #64748B;
  line-height: 1.65;
}

/* Bento grid */
.rp-bento-section {
  background: #FBF9F6;
  padding: var(--space-96) 0;
}
.rp-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-24);
}
.rp-bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: block;
  text-decoration: none;
}
.rp-bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.rp-bento-card:hover img { transform: scale(1.04); }
.rp-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,12,13,0.88) 40%, rgba(14,12,13,0.25) 100%);
  transition: opacity var(--transition);
}
.rp-bento-card:hover .rp-bento-overlay { opacity: 0.95; }
.rp-bento-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-32);
}
.rp-bento-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-8);
}
.rp-bento-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: var(--space-12);
}
.rp-bento-arrow {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.55);
  display: block;
  transition: transform var(--transition), color var(--transition);
}
.rp-bento-card:hover .rp-bento-arrow {
  transform: translateX(6px);
  color: rgba(255,255,255,0.9);
}

/* Resource cards whose content is still being produced */
.rp-bento-card--soon { cursor: default; }
.rp-bento-card--soon:hover img { transform: none; }
.rp-bento-ribbon {
  position: absolute;
  top: 30px;
  right: -58px;
  width: 200px;
  transform: rotate(45deg);
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 0;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(14,12,13,0.28);
}
@media (max-width: 640px) {
  .rp-bento-ribbon {
    top: 24px;
    right: -62px;
    font-size: 0.5625rem;
    padding: 6px 0;
  }
}

/* Quote */
.rp-quote-section {
  background: #F5F3F0;
  padding: var(--space-96) 0;
  text-align: center;
}
.rp-blockquote {
  max-width: 840px;
  margin: 0 auto;
}
.rp-quote-text {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  color: var(--near-black);
  line-height: 1.5;
  margin-bottom: var(--space-24);
}
.rp-quote-attr {
  font-size: 0.9375rem;
  color: #64748B;
  font-weight: 500;
  font-style: normal;
}

/* Dark CTA */
.rp-cta {
  background: var(--near-black);
  padding: var(--space-96) 0;
}
.rp-cta-inner {
  text-align: center;
}
.rp-cta-heading {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-16);
}
.rp-cta-sub {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: var(--space-40);
}
.btn-brand {
  background: var(--brand);
  color: var(--white);
}
.btn-brand:hover { background: #3d2a1a; }

/* Resources responsive */
@media (max-width: 1024px) {
  .rp-hero-inner { grid-template-columns: 1fr; gap: var(--space-32); }
  .rp-how-grid { grid-template-columns: 1fr 1fr; }
  .rp-how-item + .rp-how-item { border-left: none; }
  .rp-how-item:nth-child(2n+1) { border-top-color: var(--brand); }
  .rp-how-item:nth-child(odd) + .rp-how-item { border-left: 1px solid var(--border); }
}
@media (max-width: 700px) {
  .rp-bento-grid { grid-template-columns: 1fr; }
  .rp-how-grid { grid-template-columns: 1fr; }
  .rp-how-item + .rp-how-item { border-left: none; }
  .rp-how-item:nth-child(odd) + .rp-how-item { border-left: none; }
}

/* ─── PA Stats Bar ─── */
.pa-stats-note {
  max-width: 720px;
  margin: var(--space-20) auto 0;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
.pa-stats-bar {
  background: var(--brand);
}
.pa-stats-bar-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: var(--space-48) var(--space-96);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.pa-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 0 var(--space-64);
}
.pa-stat-amount {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.pa-stat-label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pa-stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.22);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .pa-stats-bar-inner {
    flex-direction: column;
    gap: var(--space-32);
    padding: var(--space-48) var(--space-24);
  }
  .pa-stat-divider {
    width: 56px;
    height: 1px;
  }
  .pa-stat-item {
    padding: 0;
  }
}

/* ─── PA How We Help (dark) ─── */
.pa-how-help {
  background: var(--near-black);
  padding: var(--space-96) 0;
}
.pa-how-help h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: var(--space-48);
}
.pa-how-help-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
}
.pa-how-help-col p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

/* ─── PA Why Minnesota ─── */
.pa-why-mn {
  background: var(--warm-gray);
  padding: var(--space-96) 0;
}
.pa-why-mn-header {
  text-align: center;
  margin-bottom: var(--space-48);
}
.pa-why-mn-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-24);
}
.pa-why-mn-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-40) var(--space-32);
  box-shadow: var(--card-shadow);
}
.pa-why-mn-icon {
  width: 56px;
  height: 56px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-24);
}
.pa-why-mn-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.pa-why-mn-card h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--near-black);
  margin-bottom: var(--space-12);
}
.pa-why-mn-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ─── PA Consult (office + form) ─── */
.pa-consult {
  background: var(--white);
  padding: var(--space-96) 0;
}
.pa-consult-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-80);
  align-items: start;
}
.pa-consult-info h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--near-black);
  margin-bottom: var(--space-16);
}
.pa-consult-info p.consult-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--space-40);
}
.pa-consult-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}
.pa-consult-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
}
.pa-consult-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(83,56,36,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pa-consult-detail-icon img { width: 18px; height: 18px; object-fit: contain; }
.pa-consult-detail p.detail-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pa-consult-detail p.detail-val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--near-black);
  margin-top: 2px;
}

/* Responsive new PA sections */
@media (max-width: 1024px) {
  .pa-how-help-cols { grid-template-columns: 1fr; gap: var(--space-40); }
  .pa-why-mn-cards { grid-template-columns: 1fr 1fr; }
  .pa-consult-inner { grid-template-columns: 1fr; gap: var(--space-48); }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 var(--space-16);
    background: transparent;
    pointer-events: auto;
    min-width: 0;
  }
  .nav-dd-arrow { display: none; }
  .nav-dropdown a { padding: 0.3125rem var(--space-12); font-size: 0.8125rem; }
  .nav-dropdown a:hover { background: rgba(83,56,36,0.08); }
}
@media (max-width: 640px) {
  .pa-why-mn-cards { grid-template-columns: 1fr; }
}

/* Inline success panel — replaces the form in place (homepage, practice areas) */
.form-inline-success {
  text-align: center;
  padding: var(--space-48) var(--space-32);
  outline: none;
}
.fis-check {
  width: 56px; height: 56px; margin: 0 auto var(--space-24);
  border-radius: 50%; background: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.fis-check svg {
  width: 26px; height: 26px; stroke: #fff; stroke-width: 2.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.form-inline-success h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  color: var(--near-black);
  line-height: 1.25;
  margin-bottom: var(--space-16);
}
.form-inline-success p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto var(--space-16);
}
.form-inline-success .fis-urgent {
  font-size: 0.875rem;
  padding-top: var(--space-16);
  border-top: 1px solid var(--border);
  margin-top: var(--space-24);
}
.form-inline-success .fis-urgent a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

/* Inline field validation */
.field-invalid {
  border-color: #A32D2D !important;
  box-shadow: 0 0 0 3px rgba(163,45,45,0.10);
}
.field-error {
  margin: 6px 0 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #A32D2D;
}
