/* ==========================================================================
   Lowther | Walker — Federal Healthcare Fraud Lawyer landing page
   Design tokens + layout. Mirrors the approved design-tool mockup pixel for
   pixel; recreated as plain CSS (no framework/build step).
   ========================================================================== */

:root {
  --color-navy: #041836;
  --color-slate: #37465A;
  --color-slate-border: #153A67;
  --color-gold: #8E690E;
  --color-gold-hover: #7A5A0C;
  --color-link: #7A5A0C;
  --color-link-hover: #8E690E;
  --color-body: #4A4A4A;
  --color-bg-light: #F4F4F4;
  --color-border: #E5E5E5;
  --color-border-2: #E2E2E2;
  --color-error: #B3261E;
  --color-white: #fff;
  --shadow-card: 0 0 20px 0 #EEEEEE;
  --radius: 5px;
  --radius-pill: 999px;
  --font-heading: "Merriweather", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max-width: 1280px;
  color-scheme: light;
}

/* ---- Reset / base ---- */
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 80px; }
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--color-link); text-decoration: none; }
a:hover { color: var(--color-link-hover); text-decoration: underline; }
button { font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }
:focus-visible { outline: 3px solid var(--color-gold); outline-offset: 2px; }
[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ---- Shared building blocks ---- */
.eyebrow {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-slate);
  margin: 0;
}
.eyebrow--on-dark { color: rgba(255, 255, 255, .85); }
.eyebrow--on-navy-strong { color: rgba(255, 255, 255, .9); }

.gold-rule { width: 130px; height: 2px; background: var(--color-gold); margin: 14px 0 24px; }
.gold-rule--white { background: #fff; }
.gold-rule--center { margin: 14px auto 24px; }
.gold-rule--tight { margin: 14px 0 22px; }
.gold-rule--label { margin: 0 0 26px; }

.section-head { max-width: 820px; }
.section-head--center { text-align: center; margin: 0 auto 44px; }

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
  color: var(--color-slate);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.section-title .accent { color: var(--color-gold); }
.section-intro { font-size: 17px; line-height: 28px; margin: 0; text-wrap: pretty; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 15px 25px;
  font-size: 15px;
  font-weight: 500;
  min-height: 44px;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  background: transparent;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--color-gold); color: #fff; }
.btn-primary:hover { background: var(--color-gold-hover); color: #fff; }
.btn-outline { background: transparent; border: 1px solid var(--color-slate-border); color: var(--color-slate-border); }
.btn-outline:hover { background: var(--color-bg-light); color: var(--color-slate-border); }
.btn-outline-white { background: transparent; border: 1px solid #fff; color: #fff; }
.btn-outline-white:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.btn-header { padding: 13px 25px; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.link-arrow { font-weight: 500; }
.full-span { grid-column: 1 / -1; }

/* ---- Image slot placeholder component (see image-slot.js) ---- */
.image-slot {
  width: 100%;
  height: 100%;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  text-align: center;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 12px, rgba(255, 255, 255, 0) 12px 24px),
    linear-gradient(160deg, #17335c, #0a2242);
  color: rgba(255, 255, 255, .82);
}
.image-slot svg { flex: none; opacity: .9; }
.image-slot-label {
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: .02em;
  max-width: 220px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 92px;
  transition: height .2s ease;
}
.site-header.is-scrolled .header-inner { height: 68px; }

.logo-link { display: block; flex: none; }
.logo-img { height: 46px; width: auto; display: block; transition: height .2s ease; }
.site-header.is-scrolled .logo-img { height: 34px; }

.nav-primary { display: none; gap: 28px; flex: 1; justify-content: center; min-width: 0; }
.nav-link { color: var(--color-slate); font-weight: 500; font-size: 15px; border-bottom: 2px solid transparent; padding: 4px 0; }
.nav-link:hover { color: var(--color-slate); text-decoration: none; border-bottom-color: var(--color-gold); }

.header-cta-group { display: none; gap: 12px; align-items: center; flex: none; }

.header-toggle-group { display: flex; gap: 10px; align-items: center; flex: none; }
.nav-toggle {
  width: 44px; height: 44px;
  border: 1px solid var(--color-slate-border);
  border-radius: var(--radius);
  background: #fff;
  display: flex; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle-bar { display: block; width: 20px; height: 2px; background: var(--color-slate-border); }

@media (min-width: 1150px) {
  .nav-primary, .header-cta-group { display: flex; }
  .header-toggle-group { display: none; }
}

.header-spacer { height: 92px; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 80;
  background: var(--color-navy);
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-nav-close-row { display: flex; justify-content: flex-end; }
.mobile-nav-close {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--radius);
  color: #fff; font-size: 22px; cursor: pointer;
}
.mobile-nav-link { color: #fff; font-size: 20px; padding: 14px 0; min-height: 44px; display: block; }
.mobile-nav-link:hover { color: #fff; text-decoration: none; }
.mobile-nav-cta { margin-top: 16px; display: block; text-align: center; }

@media (min-width: 1150px) {
  .mobile-nav { display: none !important; }
}

/* ==========================================================================
   1. Hero
   ========================================================================== */
.hero {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
  padding: 72px 24px 150px;
}
.hero-image-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 44%;
  opacity: .85;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 38%);
  mask-image: linear-gradient(to right, transparent 0%, #000 38%);
}
.hero-inner { position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; }
.hero-copy { max-width: 720px; }
.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 50px;
  line-height: 65px;
  color: #fff;
  margin: 0 0 22px;
  text-wrap: pretty;
}
.hero-lede { font-size: 19px; line-height: 31px; color: #fff; margin: 0 0 18px; max-width: 660px; text-wrap: pretty; }
.hero-urgency { font-size: 17px; line-height: 28px; color: rgba(255, 255, 255, .92); margin: 0 0 14px; max-width: 660px; }
.hero .btn-row { margin-bottom: 30px; }

/* ==========================================================================
   2. Straddling card trio
   ========================================================================== */
.trio-section { background: #fff; padding: 0 24px 80px; }
.trio-grid {
  max-width: var(--max-width);
  margin: -110px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 5;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 30px;
}
.card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  color: var(--color-slate);
  margin: 0 0 18px;
}
.info-card { position: relative; overflow: hidden; display: flex; flex-direction: column; }
.info-card-icon { margin-bottom: 18px; }
.info-card-title { font-family: var(--font-heading); font-weight: 600; font-size: 22px; line-height: 26px; color: var(--color-slate); margin: 0 0 12px; }
.info-card-body { font-size: 17px; line-height: 28px; margin: 0 0 18px; position: relative; z-index: 2; flex: 1; }
.info-card-watermark { position: absolute; right: -24px; bottom: -24px; opacity: .06; pointer-events: none; }

.form-card { order: 2; }
.info-card--subpoena { order: 1; }
.info-card--agents { order: 3; }

@media (max-width: 767px) {
  .form-card { order: 0; }
  .info-card--subpoena { order: 1; }
  .info-card--agents { order: 2; }
}

/* ---- Forms (hero + main) ---- */
.lp-form { display: flex; flex-direction: column; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 14px; font-weight: 500; color: var(--color-slate); }
.form-field input,
.form-field textarea {
  border: 1px solid #D5D5D5;
  border-radius: var(--radius);
  padding: 11px 12px;
  font-size: 16px;
  color: var(--color-body);
  background: #fff;
  min-height: 44px;
}
.form-field textarea { resize: vertical; min-height: auto; }
.form-field.has-error input,
.form-field.has-error textarea { border-color: var(--color-error); }
.field-error { display: flex; gap: 6px; align-items: center; margin: 0; color: var(--color-error); font-size: 13px; }
.field-error svg { flex: none; }
.form-note { margin: 0; font-size: 13px; color: var(--color-body); text-align: center; }

.form-success {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--color-bg-light);
}
.form-success-title { margin: 0 0 8px; font-family: var(--font-heading); font-size: 18px; color: var(--color-slate); }
.form-success-body { margin: 0 0 14px; font-size: 15px; line-height: 24px; }

.form-error-banner {
  border: 1px solid var(--color-error);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: #FBEAE9;
  color: var(--color-error);
  font-size: 14px;
  margin-bottom: 14px;
}

/* ==========================================================================
   3. Trust bar
   ========================================================================== */
.trust-section { background: #fff; padding: 0 24px 84px; position: relative; overflow: hidden; }
.trust-grid {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.trust-tile {
  background: var(--color-navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.trust-icon { flex: none; margin-top: 4px; }
.trust-value { font-family: var(--font-heading); font-weight: 600; font-size: 30px; line-height: 36px; color: #fff; margin: 0 0 4px; }
.trust-label { font-size: 15px; line-height: 23px; margin: 0; color: #fff; }

/* ==========================================================================
   4. Services
   ========================================================================== */
.services-section { background: var(--color-bg-light); padding: 88px 24px; }
.services-section .section-wrap,
.services-section .section-head { max-width: var(--max-width); }
.section-wrap { max-width: var(--max-width); margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.service-card { display: flex; flex-direction: column; }
.service-card-icon { margin-bottom: 18px; }
.service-card-title { font-family: var(--font-heading); font-weight: 600; font-size: 22px; line-height: 26px; color: var(--color-slate); margin: 0 0 12px; }
.service-card-body { font-size: 17px; line-height: 28px; margin: 0 0 20px; flex: 1; }

/* ==========================================================================
   5. Mid-page lead form
   ========================================================================== */
.lead-form-section { background: var(--color-slate-border); padding: 88px 24px; }
.lead-form-section .section-wrap { max-width: 820px; }
.lead-form-section .section-head { text-align: center; margin: 0 auto 36px; max-width: none; }
.lead-form-section .section-title { color: #fff; }
.lead-form-section .section-intro { color: #fff; }
.lead-form-section .section-intro a { color: #fff; text-decoration: underline; }
.lead-form-section .section-intro a:hover { color: #fff; }

.main-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.main-form .form-field { grid-column: 1 / -1; }
.main-form .form-field label { color: #fff; font-size: 15px; }
.main-form .form-field input,
.main-form .form-field textarea { padding: 12px; }
.main-form .field-error { background: #fff; border-radius: 4px; padding: 6px 8px; }
.main-form-submit-row { grid-column: 1 / -1; }
.main-form-fineprint {
  display: flex; gap: 8px; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; margin: 14px 0 0;
}

.main-form-success {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.main-form-success-title { font-family: var(--font-heading); font-weight: 600; font-size: 22px; line-height: 26px; color: var(--color-slate); margin: 0 0 10px; }
.main-form-success-body { font-size: 17px; line-height: 28px; margin: 0 0 18px; }

/* ==========================================================================
   6. Case results
   ========================================================================== */
.results-section { background: #fff; padding: 88px 24px; }
.results-section .section-wrap { max-width: 1180px; }

.featured-result {
  background: var(--color-navy);
  border-radius: var(--radius);
  padding: 48px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.featured-result-eyebrow { font-size: 15px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .85); margin: 0; }
.featured-result-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 34px;
  line-height: 46px;
  color: #fff;
  margin: 0 0 16px;
  max-width: 760px;
  text-wrap: pretty;
}
.featured-result-detail { font-size: 19px; line-height: 31px; color: rgba(255, 255, 255, .92); margin: 0; max-width: 700px; }
.featured-result-watermark { position: absolute; right: -40px; bottom: -60px; opacity: .07; pointer-events: none; }

.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.result-card-title { font-family: var(--font-heading); font-weight: 600; font-size: 20px; line-height: 29px; color: var(--color-slate); margin: 0; text-wrap: pretty; }
.result-card .gold-rule { margin: 18px 0; }
.result-card-detail { font-size: 16px; line-height: 27px; margin: 0; }
.results-cta { margin: 14px 0 0; }

/* ==========================================================================
   7. Why choose us
   ========================================================================== */
.why-us-section { background: var(--color-bg-light); padding: 88px 24px; }
.why-us-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 56px;
  align-items: center;
}
.why-collage { position: relative; aspect-ratio: 1 / 1; }
.why-collage-photo {
  position: absolute; right: 0; top: 0;
  width: 70%; aspect-ratio: 4 / 3;
  z-index: 1;
  filter: grayscale(1);
  box-shadow: 0 0 20px 0 #E4E4E4;
}
.why-collage-portrait {
  position: absolute; left: 0; top: 38%;
  width: 64.8%; aspect-ratio: 1 / 1;
  z-index: 2;
  box-shadow: 0 0 20px 0 #DDDDDD;
}
@media (max-width: 767px) {
  .why-collage { position: static; aspect-ratio: auto; margin-bottom: 8px; }
  .why-collage-photo { display: none; }
  .why-collage-portrait { position: static; left: auto; top: auto; width: 100%; aspect-ratio: 1 / 1; }
}

.why-us-copy .section-intro { margin: 0 0 28px; }
.why-checklist {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.why-checklist li { display: flex; gap: 12px; align-items: flex-start; }
.why-checklist svg { flex: none; margin-top: 5px; }
.why-checklist p { margin: 0; font-size: 16px; line-height: 26px; }
.why-checklist strong { color: var(--color-slate); font-weight: 600; }

/* ==========================================================================
   8. Google reviews
   ========================================================================== */
.reviews-section { background: var(--color-bg-light); padding: 0 24px 88px; }
.reviews-header { text-align: center; margin-bottom: 32px; }
.reviews-rating { display: flex; gap: 10px; align-items: center; justify-content: center; margin: 0; font-size: 17px; color: var(--color-body); }
.reviews-stars { display: flex; gap: 2px; }
.review-controls { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 16px; }
.review-nav-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--color-slate-border);
  background: #fff;
  border-radius: var(--radius);
  color: var(--color-slate-border);
  font-size: 18px;
  cursor: pointer;
}
.review-nav-btn:hover { background: var(--color-slate-border); color: #fff; }

.review-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 14px;
}
.review-card {
  flex: 0 0 min(420px, 86%);
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 30px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review-card .reviews-stars { gap: 2px; }
.review-quote { margin: 0; font-style: italic; font-size: 16px; line-height: 27px; color: var(--color-body); }
.read-more {
  align-self: flex-start;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--color-link);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.read-more:hover { color: var(--color-link-hover); text-decoration: underline; }
.review-name { font-family: var(--font-heading); font-weight: 600; font-size: 17px; color: var(--color-slate); margin-top: auto; }
.reviews-more-link { margin: 18px 0 0; }

/* ==========================================================================
   9. About the firm
   ========================================================================== */
.about-section { background: #fff; padding: 88px 24px; }
.about-section .section-wrap { max-width: 680px; text-align: center; }
.about-body { font-size: 17px; line-height: 28px; margin: 0 0 20px; text-align: left; text-wrap: pretty; }
.about-signature { font-style: italic; font-size: 17px; margin: 0 0 26px; color: var(--color-slate); }
.about-cta { font-size: 17px; font-weight: 500; }

/* ==========================================================================
   10. CTA band
   ========================================================================== */
.cta-band { position: relative; padding: 88px 24px; overflow: hidden; }
.cta-band-bg { position: absolute; inset: 0; }
.cta-band-overlay { position: absolute; inset: 0; background: var(--color-navy); opacity: .85; pointer-events: none; }
.cta-band-inner { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.cta-band-title { font-family: var(--font-heading); font-weight: 600; font-size: 40px; line-height: 56px; color: #fff; margin: 0 0 18px; text-wrap: pretty; }
.cta-band-title .accent { color: var(--color-gold); }
.cta-band-body { font-size: 17px; line-height: 28px; color: #fff; margin: 0 0 30px; }
.cta-band .btn-row { justify-content: center; }

/* ==========================================================================
   11. Meet the lawyers
   ========================================================================== */
.attorneys-section { background: var(--color-bg-light); padding: 88px 24px; }
.team-sub-label { font-size: 15px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--color-slate); margin: 0 0 8px; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 24px;
  margin: 0 auto 56px;
  width: 100%;
}
.partner-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: row;
}
.partner-photo { aspect-ratio: 2 / 2.5; flex: none; width: 46%; }
.partner-details { padding: 26px; display: flex; flex-direction: column; flex: 1; justify-content: center; }
@media (max-width: 767px) {
  .partner-card { flex-direction: column; }
  .partner-photo { width: 100%; }
}

.associates-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.associate-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.associate-photo { aspect-ratio: 2 / 2.5; }
.associate-details { padding: 26px; display: flex; flex-direction: column; flex: 1; }

.attorney-name { font-family: var(--font-heading); font-weight: 600; font-size: 22px; line-height: 26px; color: var(--color-slate); margin: 0 0 6px; }
.attorney-title { font-style: italic; font-size: 15px; margin: 0 0 14px; color: var(--color-body); }
.attorney-bio { font-size: 16px; line-height: 26px; margin: 0 0 18px; flex: 1; }
.read-bio-btn {
  align-self: flex-start;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--color-link);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  min-height: 44px;
}
.read-bio-btn:hover { color: var(--color-link-hover); text-decoration: underline; }

.memberships { margin-top: 56px; text-align: center; }
.memberships-label { font-size: 15px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--color-slate); margin: 0 0 20px; }
.memberships-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.memberships-list li {
  background: #fff;
  border: 1px solid var(--color-border-2);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14px;
  color: #6B6B6B;
  filter: grayscale(1);
}

/* ==========================================================================
   12 / 13. Modals (attorney bio + client review)
   ========================================================================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(4, 24, 54, .72);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.modal-card {
  background: #fff;
  border-radius: var(--radius);
  width: 100%;
  padding: 48px;
  position: relative;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, .3);
}
.modal-card--bio { max-width: 820px; }
.modal-card--review { max-width: 680px; padding: 44px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: var(--radius);
  color: var(--color-slate);
  font-size: 22px;
  cursor: pointer;
}
.modal-close:hover { background: var(--color-bg-light); }
.modal-bio-name { font-family: var(--font-heading); font-weight: 600; font-size: 32px; line-height: 42px; color: var(--color-slate); margin: 0 0 6px; text-wrap: pretty; }
.modal-bio-title { font-style: italic; font-size: 16px; color: var(--color-body); margin: 0; }
.modal-card .gold-rule { margin: 20px 0 26px; }
.modal-bio-para { font-size: 17px; line-height: 29px; margin: 0 0 20px; text-wrap: pretty; }
.modal-assoc-intro { font-size: 17px; line-height: 28px; font-weight: 500; color: var(--color-slate); margin: 26px 0 14px; }
.modal-assoc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.modal-assoc-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 26px; }
.modal-assoc-list svg { flex: none; margin-top: 5px; }
.modal-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

.modal-review-stars { display: flex; gap: 2px; margin-bottom: 18px; }
.modal-review-quote { margin: 0 0 20px; font-style: italic; font-size: 17px; line-height: 29px; color: var(--color-body); white-space: pre-line; }
.modal-review-name { font-family: var(--font-heading); font-weight: 600; font-size: 17px; color: var(--color-slate); margin: 0; }

/* ==========================================================================
   14. FAQ
   ========================================================================== */
.faq-section { background: #fff; padding: 88px 24px; }
.faq-section .section-wrap { max-width: 860px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.faq-item h3 { margin: 0; }
.faq-question {
  width: 100%;
  min-height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 0;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: var(--color-slate);
}
.faq-item.is-open .faq-question { background: var(--color-bg-light); }
.faq-chevron { color: var(--color-gold); font-size: 14px; transform: rotate(0deg); transition: transform .2s ease; }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer-wrap { padding: 4px 20px 20px; }
.faq-answer {
  margin: 0;
  font-size: 16px;
  line-height: 27px;
  color: var(--color-body);
  background: var(--color-bg-light);
  border-left: 3px solid var(--color-gold);
  padding: 14px 16px;
}
.faq-footer { margin: 26px 0 0; font-size: 17px; line-height: 28px; }

/* ==========================================================================
   15. Areas we serve
   ========================================================================== */
.areas-section { background: #fff; padding: 0 24px 88px; }
.areas-section .section-wrap { max-width: 1080px; }
.areas-section .section-head { margin: 0 auto 36px; }
.pill-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pill-list li { border-radius: var(--radius-pill); padding: 7px 15px; font-size: 14px; }
.pill-state { border: 1px solid var(--color-slate-border); color: var(--color-slate); }
.pill-territory { border: 1px solid var(--color-gold); color: var(--color-link); font-weight: 500; }
.areas-footer { text-align: center; font-size: 17px; line-height: 28px; margin: 0; }

/* ==========================================================================
   16. Footer
   ========================================================================== */
.site-footer { background: var(--color-navy); color: #fff; }
.footer-hero { position: relative; padding: 80px 24px; overflow: hidden; }
.footer-hero-bg { position: absolute; inset: 0; }
.footer-hero-overlay { position: absolute; inset: 0; background: var(--color-navy); opacity: .88; pointer-events: none; }
.footer-hero-inner { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.footer-logo { height: 44px; width: auto; margin: 0 auto 26px; display: block; filter: brightness(0) invert(1); }
.footer-hero-title { font-family: var(--font-heading); font-weight: 600; font-size: 40px; line-height: 56px; color: #fff; margin: 0 0 16px; text-wrap: pretty; }
.footer-hero-body { font-size: 17px; line-height: 28px; color: rgba(255, 255, 255, .92); margin: 0 0 14px; }
.footer-hero-address { font-size: 15px; color: rgba(255, 255, 255, .8); margin: 0 0 28px; }
.footer-hero .btn-row { justify-content: center; }

.footer-links {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 60px 24px;
}
.footer-links-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.footer-col-logo { height: 34px; width: auto; display: block; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-blurb { font-size: 15px; line-height: 25px; color: rgba(255, 255, 255, .85); margin: 0 0 14px; }
.footer-address { font-size: 15px; line-height: 25px; color: rgba(255, 255, 255, .7); margin: 0 0 18px; }
.footer-heading { font-family: var(--font-heading); font-weight: 600; font-size: 18px; color: #fff; margin: 0 0 16px; }
.footer-linklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-linklist a { color: rgba(255, 255, 255, .85); font-size: 15px; }
.footer-linklist a:hover { color: #fff; text-decoration: underline; }
.footer-phone { margin: 0 0 10px; }
.footer-phone a { color: #fff; font-size: 17px; font-weight: 500; text-decoration: none; }
.footer-phone a:hover { color: #fff; text-decoration: underline; }
.footer-hours { font-size: 15px; line-height: 25px; color: rgba(255, 255, 255, .85); margin: 0 0 10px; }
.footer-contact-address { font-size: 15px; line-height: 25px; color: rgba(255, 255, 255, .7); margin: 0 0 10px; }
.footer-note { font-size: 15px; color: rgba(255, 255, 255, .85); margin: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 22px 24px;
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: 13px; line-height: 22px; color: rgba(255, 255, 255, .7); }
.footer-bottom a { color: rgba(255, 255, 255, .9); text-decoration: underline; }
.footer-bottom a:hover { color: #fff; }

.call-bar-spacer { height: 0px; }

/* ==========================================================================
   17. Mobile sticky call/CTA bar
   ========================================================================== */
.sticky-call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-navy);
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.sticky-call-btn {
  color: #fff;
  text-align: center;
  padding: 17px 12px;
  font-size: 15px;
  font-weight: 500;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sticky-call-btn:hover { color: #fff; text-decoration: none; background: rgba(255, 255, 255, .08); }
.sticky-cta-btn {
  background: var(--color-gold);
  color: #fff;
  text-align: center;
  padding: 17px 12px;
  font-size: 15px;
  font-weight: 500;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticky-cta-btn:hover { color: #fff; text-decoration: none; background: var(--color-gold-hover); }

/* ==========================================================================
   Responsive type scale for small screens
   ========================================================================== */
@media (max-width: 767px) {
  .hero-title { font-size: 38px; line-height: 48px; }
  .section-title { font-size: 30px; line-height: 40px; }
  .featured-result-title { font-size: 26px; line-height: 36px; }
  .cta-band-title { font-size: 30px; line-height: 40px; }
  .modal-bio-name { font-size: 26px; line-height: 34px; }
}
