/* ===========================================================================
   The Price Law Firm — design system
   Light, airy service-business layout (NOT the dark/gold traditional law look).
   Palette variables are defined once below — swap the hex values here only.
   =========================================================================== */

:root {
  --navy: #12294D;
  --navy-800: #1B3663;
  --navy-700: #24437A;
  --accent: #1E5FD9;
  --accent-dark: #1749A8;
  --accent-soft: #EAF1FE;
  --slate: #5B6472;
  --slate-light: #7D8794;
  --border: #E7EAEF;
  --bg: #F7F9FB;
  --white: #FFFFFF;
  --amber: #B45309;
  --amber-soft: #FEF3C7;

  --shadow-sm: 0 1px 2px rgba(18, 41, 77, .06), 0 1px 3px rgba(18, 41, 77, .05);
  --shadow: 0 4px 6px -1px rgba(18, 41, 77, .07), 0 2px 4px -2px rgba(18, 41, 77, .05);
  --shadow-lg: 0 10px 24px -6px rgba(18, 41, 77, .12), 0 4px 8px -4px rgba(18, 41, 77, .06);
  --shadow-xl: 0 24px 48px -12px rgba(18, 41, 77, .18);

  --r-sm: 8px;
  --r: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  --container: 1200px;
  --header-h: 84px;

  --font-head: 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.3; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .45em; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--r) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------------------------------------------------------------- layout -- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--gray { background: var(--bg); }
.section--navy { background: var(--navy); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: rgba(255,255,255,.82); }

.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3.25rem); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { font-size: 1.06rem; color: var(--slate); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .85rem;
}
.section--navy .eyebrow { color: #7FA9F5; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.lead { font-size: 1.13rem; line-height: 1.72; color: var(--slate); }
.center { text-align: center; }

/* --------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: .97rem;
  padding: .95rem 1.7rem; border-radius: var(--r-full);
  border: 2px solid transparent; cursor: pointer; text-align: center;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(30, 95, 217, .28); }
.btn--primary:hover { background: var(--accent-dark); color: #fff; box-shadow: 0 8px 22px rgba(30, 95, 217, .36); }

.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }

.btn--ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--accent-soft); color: var(--navy); }

.btn--sm { padding: .7rem 1.25rem; font-size: .9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

.arrow-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--accent);
}
.arrow-link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.arrow-link:hover svg { transform: translateX(4px); }

/* ------------------------------------------------------------ trust pills -- */
.hero-badge > svg, .pill > svg, .tag > svg { width: 15px; height: 15px; flex-shrink: 0; }

.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pills.center { justify-content: center; }
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: var(--r-full);
  background: var(--white); border: 1px solid var(--border);
  font-size: .87rem; font-weight: 600; font-family: var(--font-head); color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.pill svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
.pill--dark { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.22); color: #fff; box-shadow: none; }
.pill--dark svg { color: #8FB6F7; }

/* ---------------------------------------------------------------- header -- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .28s ease, box-shadow .28s ease, border-color .28s ease;
  background: transparent; border-bottom: 1px solid transparent;
}
.site-header .inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  height: var(--header-h); display: flex; align-items: center; gap: 24px;
}
.site-header.solid, body:not(.has-hero) .site-header {
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: var(--shadow); border-bottom-color: var(--border);
}

.logo { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.logo svg { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text .l1 { font-family: var(--font-head); font-weight: 800; font-size: 1.12rem; color: var(--navy); letter-spacing: -.02em; }
.logo-text .l2 { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--slate-light); font-weight: 600; }

body.has-hero .site-header:not(.solid) .logo-text .l1 { color: #fff; }
body.has-hero .site-header:not(.solid) .logo-text .l2 { color: rgba(255,255,255,.72); }
body.has-hero .site-header:not(.solid) .logo svg .mark-bg { fill: rgba(255,255,255,.16); }
body.has-hero .site-header:not(.solid) .logo svg .mark-fg { fill: #fff; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-list > li { list-style: none; position: relative; margin: 0; }
.nav-list { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--font-head); font-weight: 600; font-size: .93rem;
  color: var(--navy); padding: .6rem .8rem; border-radius: var(--r-sm);
  background: none; border: 0; cursor: pointer; font-family: var(--font-head);
}
.nav-link:hover, .nav-link[aria-expanded="true"] { color: var(--accent); background: var(--accent-soft); }
.nav-link.is-current { color: var(--accent); }
.nav-link .chev { width: 13px; height: 13px; transition: transform .2s ease; }
.nav-link[aria-expanded="true"] .chev { transform: rotate(180deg); }
body.has-hero .site-header:not(.solid) .nav-link { color: rgba(255,255,255,.94); }
body.has-hero .site-header:not(.solid) .nav-link:hover,
body.has-hero .site-header:not(.solid) .nav-link[aria-expanded="true"] { background: rgba(255,255,255,.14); color: #fff; }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 268px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: var(--shadow-xl); padding: 8px; margin: 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li { margin: 0; }
.dropdown a {
  display: block; padding: .6rem .8rem; border-radius: var(--r-sm);
  font-size: .92rem; font-weight: 500; color: var(--navy);
}
.dropdown a:hover { background: var(--accent-soft); color: var(--accent); }
.dropdown .divider { height: 1px; background: var(--border); margin: 6px 4px; }
.dropdown .all-link { font-weight: 700; color: var(--accent); font-family: var(--font-head); font-size: .88rem; }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-head); font-weight: 700; font-size: .97rem; color: var(--navy);
}
.header-phone svg { width: 17px; height: 17px; color: var(--accent); }
body.has-hero .site-header:not(.solid) .header-phone { color: #fff; }
body.has-hero .site-header:not(.solid) .header-phone svg { color: #fff; }

.burger {
  display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer;
  align-items: center; justify-content: center; border-radius: var(--r-sm); margin-left: auto;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--navy); position: relative; transition: background .2s; }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--navy); transition: transform .25s ease, top .25s ease;
}
.burger span::before { top: -7px; } .burger span::after { top: 7px; }
body.has-hero .site-header:not(.solid) .burger span,
body.has-hero .site-header:not(.solid) .burger span::before,
body.has-hero .site-header:not(.solid) .burger span::after { background: #fff; }
body.nav-open .burger span { background: transparent !important; }
body.nav-open .burger span::before { top: 0; transform: rotate(45deg); background: var(--navy) !important; }
body.nav-open .burger span::after { top: 0; transform: rotate(-45deg); background: var(--navy) !important; }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0; z-index: 99; background: #fff;
  padding: 1.25rem 24px 6rem; overflow-y: auto;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
body.nav-open .mobile-nav { transform: translateX(0); visibility: visible; }
body.nav-open { overflow: hidden; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--border); }
.mobile-nav a, .mobile-nav .m-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 1rem 0; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  color: var(--navy); background: none; border: 0; cursor: pointer; text-align: left;
}
.mobile-nav .m-toggle svg { width: 16px; height: 16px; transition: transform .2s; }
.mobile-nav .m-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-nav .m-sub { display: none; padding: 0 0 .75rem .9rem; border-left: 2px solid var(--accent-soft); margin-left: 2px; }
.mobile-nav .m-sub.open { display: block; }
.mobile-nav .m-sub a { font-size: .96rem; font-weight: 500; color: var(--slate); padding: .55rem 0; }
.mobile-nav .m-cta { margin-top: 1.75rem; display: grid; gap: 12px; }
.mobile-nav .m-cta .btn { width: 100%; }

/* ------------------------------------------------------------------ hero -- */
.hero {
  position: relative; padding: calc(var(--header-h) + clamp(3.5rem, 8vw, 6.5rem)) 0 clamp(3.5rem, 8vw, 6.5rem);
  background: var(--navy); overflow: hidden; color: #fff;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img, .hero__bg svg { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(18,41,77,.94) 0%, rgba(18,41,77,.86) 45%, rgba(18,41,77,.62) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: .55em; }
.hero p.lead { color: rgba(255,255,255,.88); font-size: clamp(1.05rem, 1.6vw, 1.22rem); margin-bottom: 1.9rem; }
.hero .btn-row { margin-top: 2rem; }
.hero--center .hero__inner { max-width: 860px; margin: 0 auto; text-align: center; }
.hero--center .btn-row { justify-content: center; }
.hero--center .breadcrumb { justify-content: center; }

.hero--compact { padding: calc(var(--header-h) + 3.25rem) 0 3.25rem; }

.rating-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.rating-badge {
  display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1.5rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24);
  padding: .55rem 1.1rem; border-radius: var(--r-full); backdrop-filter: blur(6px);
  font-size: .9rem; color: #fff; font-weight: 600; font-family: var(--font-head);
}
.stars { display: inline-flex; gap: 2px; color: #FBBF24; }
.stars svg { width: 15px; height: 15px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1.4rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24);
  padding: .5rem 1.05rem; border-radius: var(--r-full);
  font-size: .84rem; color: #fff; font-weight: 600; font-family: var(--font-head);
  letter-spacing: .02em;
}
.hero-badge svg { width: 15px; height: 15px; color: #8FB6F7; }

/* ------------------------------------------------------------ breadcrumb -- */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; list-style: none; padding: 0; margin: 0 0 1.25rem; font-size: .87rem; }
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: .45rem; }
.breadcrumb a { color: rgba(255,255,255,.78); font-weight: 500; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,.4); }
.breadcrumb [aria-current] { color: #fff; font-weight: 600; }

/* ----------------------------------------------------------------- cards -- */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #D5DCE6; }
.card__media { position: relative; aspect-ratio: 16 / 10; background: var(--accent-soft); overflow: hidden; }
.card__media img, .card__media svg { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .5rem; }
.card__body p { font-size: .97rem; color: var(--slate); }
.card__body .card__bullets li { color: var(--slate); }
.card__bullets { list-style: none; padding: 0; margin: 0 0 1.35rem; }
.card__bullets li { position: relative; padding-left: 1.6rem; font-size: .94rem; margin-bottom: .55rem; line-height: 1.55; }
.card__bullets li::before {
  content: ''; position: absolute; left: 0; top: .5em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--accent); opacity: .85;
}
.card .arrow-link { margin-top: auto; padding-top: .35rem; }

.card--feature { border-color: #D9E2F0; box-shadow: var(--shadow-lg); }
.card--feature .card__body { padding: clamp(28px, 4vw, 44px); }

.icon-badge {
  width: 52px; height: 52px; border-radius: var(--r); background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.icon-badge svg { width: 26px; height: 26px; color: var(--accent); }

/* location cards */
.loc-card { display: flex; flex-direction: column; }
.loc-card .card__body { padding: 24px; }
.loc-card .county { font-size: .8rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--accent); margin-bottom: .4rem; font-family: var(--font-head); }

.also-serving {
  margin-top: 2.5rem; padding: 1.5rem 1.75rem; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-lg); text-align: center;
}
.also-serving strong { color: var(--navy); font-family: var(--font-head); }
.also-serving p { font-size: .96rem; margin: 0; }

/* --------------------------------------------------------------- process -- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; }
.step__num {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; line-height: 1;
  color: var(--accent); opacity: .22; margin-bottom: .75rem; letter-spacing: -.04em;
}
.section--navy .step__num { color: #7FA9F5; opacity: .45; }
.step h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.step p { font-size: .95rem; }
.steps--3 { grid-template-columns: repeat(3, 1fr); }

/* ----------------------------------------------------------------- split -- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--media-right .split__media { order: 2; }
.split__media { position: relative; display: flex; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split__media > * { flex: 1 1 auto; }
.split__media > .media-ph { height: auto; align-self: stretch; }
/* Bill's portrait sits in the upper half of a square frame; default centre
   cropping clips his head in short/wide containers. Anchor the crop high. */
.split__media.is-headshot img { object-position: center 18%; }
.split__media img, .split__media svg { width: 100%; height: 100%; object-fit: cover; }

.stat-badge {
  position: absolute; bottom: 22px; left: 22px; background: #fff; padding: 1rem 1.35rem;
  border-radius: var(--r); box-shadow: var(--shadow-xl); border: 1px solid var(--border);
}
.stat-badge .n { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-badge .t { font-size: .82rem; color: var(--slate); font-weight: 600; margin-top: .25rem; }

/* --------------------------------------------------------- feature badges -- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px 24px; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease;
}
.feature:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feature h3 { font-size: 1.06rem; margin-bottom: .45rem; }
.feature p { font-size: .93rem; margin: 0; }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.checklist li { position: relative; padding-left: 2rem; font-size: 1rem; margin: 0; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: .34em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E5FD9' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.section--navy .checklist li { color: rgba(255,255,255,.85); }

/* ---------------------------------------------------------- testimonials -- */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 6px 22px; margin: 0 -6px; scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: start; flex: 0 0 clamp(280px, 31.5%, 380px); }
.carousel__nav { display: flex; gap: 10px; justify-content: center; margin-top: .5rem; }
.carousel__btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: background .18s, color .18s, border-color .18s;
}
.carousel__btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.carousel__btn svg { width: 18px; height: 18px; }

.quote {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%;
}
.quote .stars { margin-bottom: 1rem; }
.quote blockquote { margin: 0 0 1.35rem; font-size: 1rem; line-height: 1.68; color: var(--slate); flex: 1; }
.quote blockquote::before { content: '\201C'; }
.quote blockquote::after { content: '\201D'; }
.quote__meta { display: flex; align-items: center; gap: .8rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.quote__avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.quote__name { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: .95rem; line-height: 1.3; }
.quote__source { font-size: .82rem; color: var(--slate-light); }

/* --------------------------------------------------------------- results -- */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.result-card {
  background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: var(--r); padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.result-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.result-card__amount {
  font-family: var(--font-head); font-size: 1.85rem; font-weight: 800; color: var(--navy);
  letter-spacing: -.03em; line-height: 1.05;
}
.result-card__cat {
  font-size: .72rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  color: var(--accent); margin: .5rem 0 .8rem; font-family: var(--font-head);
}
.result-card p { font-size: .93rem; margin: 0; color: var(--slate); }

@media (max-width: 960px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .results-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------- faq -- */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease; }
.faq__item.open { box-shadow: var(--shadow); border-color: #D5DCE6; }
.faq__q {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.25rem;
  padding: 1.2rem 1.5rem; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 1.03rem; color: var(--navy); line-height: 1.45;
}
.faq__q:hover { color: var(--accent); }
.faq__icon { flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; transition: transform .25s ease; color: var(--accent); }
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 1.5rem 1.4rem; font-size: .99rem; }
.faq__a-inner p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------- cta -- */
.cta-band { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; top: -60%; right: -12%; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,95,217,.42) 0%, rgba(30,95,217,0) 68%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 1.08rem; max-width: 620px; margin-inline: auto; }
.cta-band .pills { margin-top: 2.25rem; }

/* ------------------------------------------------------------------- map -- */
.find-us { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.4rem; }
.info-list li { display: flex; gap: 1rem; margin: 0; }
.info-list .ico {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: var(--r-sm); background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
}
.info-list .ico svg { width: 20px; height: 20px; color: var(--accent); }
.info-list .lbl { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: .1rem; }
.info-list .val, .info-list .val a { color: var(--slate); font-size: .97rem; }
.info-list .val a:hover { color: var(--accent); }

.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); background: var(--bg); }
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ------------------------------------------------------------------ form -- */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: .45rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--navy); background: var(--bg);
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(30,95,217,.13);
}
.field textarea { resize: vertical; min-height: 132px; }
.form-note { font-size: .84rem; color: var(--slate-light); margin-top: 1rem; line-height: 1.55; }

/* ---------------------------------------------------------------- footer -- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.74); padding: clamp(3rem, 6vw, 4.5rem) 0 0; font-size: .95rem; }
.site-footer h4 {
  color: #fff; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase;
  margin-bottom: 1.15rem; font-weight: 700;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .logo-text .l1 { color: #fff; }
.footer-brand .logo-text .l2 { color: rgba(255,255,255,.6); }
.footer-brand .logo svg .mark-bg { fill: rgba(255,255,255,.14); }
.footer-brand .logo svg .mark-fg { fill: #fff; }
.footer-brand p { margin: 1.15rem 0 1.5rem; line-height: 1.7; font-size: .93rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; color: #fff; transition: background .18s;
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { color: rgba(255,255,255,.74); }
.site-footer a:hover { color: #fff; }
.footer-contact li { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: .9rem; }
.footer-contact svg { width: 16px; height: 16px; color: #7FA9F5; flex-shrink: 0; margin-top: .3em; }
.footer-pills { padding: 2rem 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; align-items: center;
  padding: 1.6rem 0; font-size: .87rem; color: rgba(255,255,255,.6);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-disclaimer { padding: 0 0 2rem; font-size: .8rem; line-height: 1.65; color: rgba(255,255,255,.5); max-width: 100%; }

/* ---------------------------------------------------------------- videos -- */
/* Vertical 9:16 Shorts. The YouTube thumbnail is 4:3 with the vertical frame
   pillarboxed in the centre, so object-fit: cover crops the bars away and
   leaves exactly the video area. */
.video-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.video-card { display: flex; flex-direction: column; }
.video-facade {
  position: relative; display: block; width: 100%; padding: 0; border: 1px solid var(--border);
  aspect-ratio: 9 / 16; border-radius: var(--r-lg); overflow: hidden; cursor: pointer;
  background: var(--navy); box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.video-facade:hover, .video-facade:focus-visible { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play {
  position: absolute; inset: 0; margin: auto; width: 62px; height: 62px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(18, 41, 77, .72); color: #fff; border-radius: 50%;
  backdrop-filter: blur(2px); transition: background .2s ease, transform .2s ease;
}
.video-facade:hover .video-play { background: var(--accent); transform: scale(1.08); }
.video-play svg { width: 30px; height: 30px; margin-left: 3px; }
.video-card iframe {
  width: 100%; aspect-ratio: 9 / 16; border: 0;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); display: block; background: #000;
}
.video-caption { margin-top: .8rem; font-size: .92rem; line-height: 1.5; font-weight: 600; color: var(--navy); }

/* -------------------------------------------------------------- floating -- */
.form-embed { min-height: 540px; }
.form-embed iframe { display: block; width: 100%; min-height: 540px; }

.mobile-call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 88; display: none;
  background: #fff; border-top: 1px solid var(--border); padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 18px rgba(18,41,77,.1); gap: 10px;
}
.mobile-call-bar .btn { flex: 1; padding: .8rem 1rem; font-size: .92rem; }

/* -------------------------------------------------------- media / placeholder */
.media-ph { position: relative; width: 100%; height: 100%; min-height: 200px; background: linear-gradient(135deg, #1B3663 0%, #12294D 55%, #0D1F3C 100%); display: flex; align-items: center; justify-content: center; }
.media-ph--light { background: linear-gradient(135deg, #EAF1FE 0%, #DCE7F9 100%); }
.media-ph__label {
  position: relative; z-index: 1; text-align: center; padding: 1.25rem;
  font-family: var(--font-head); font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.62); max-width: 90%;
}
.media-ph--light .media-ph__label { color: rgba(18,41,77,.45); }
.media-ph__label svg { width: 30px; height: 30px; margin: 0 auto .6rem; display: block; opacity: .65; }
.media-ph--bg { align-items: flex-end; justify-content: flex-end; }
.media-ph--bg .media-ph__label {
  position: absolute; right: 14px; bottom: 12px; z-index: 2;
  padding: .4rem .7rem; border-radius: 6px; background: rgba(0,0,0,.28);
  font-size: .62rem; letter-spacing: .05em; color: rgba(255,255,255,.55);
  max-width: min(380px, 60%); text-align: right; line-height: 1.4;
}
.media-ph--bg .media-ph__label svg { display: none; }

.media-ph::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.07) 0%, transparent 45%),
                    radial-gradient(circle at 80% 75%, rgba(255,255,255,.05) 0%, transparent 45%);
}

/* Unconfirmed content marker — impossible to miss, easy to grep. */
.ph {
  background: var(--amber-soft); color: var(--amber); padding: .05em .4em; border-radius: 4px;
  border-bottom: 2px dotted currentColor; font-weight: 600; font-size: .95em;
}

/* ------------------------------------------------------------ legal pages -- */
.prose { max-width: 800px; }
.prose h2 { font-size: 1.5rem; margin-top: 2.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.13rem; margin-top: 1.8rem; }
.prose ul { padding-left: 1.35em; }
.prose li { margin-bottom: .6em; }
.prose .updated { font-size: .9rem; color: var(--slate-light); padding-bottom: 1.6rem; margin-bottom: 2.2rem; border-bottom: 1px solid var(--border); }

.notice {
  background: var(--accent-soft); border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem; border-radius: 0 var(--r) var(--r) 0; margin: 1.75rem 0; font-size: .97rem;
}
.notice--warn { background: var(--amber-soft); border-left-color: var(--amber); color: #7C4A03; }
.notice--warn strong { color: #7C4A03; }

/* ------------------------------------------------------------ sitemap pg -- */
.sitemap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.sitemap-col { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.sitemap-col h2 { font-size: 1.1rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.1rem; }
.sitemap-col ul { list-style: none; padding: 0; margin: 0; }
.sitemap-col li { margin-bottom: .1rem; }
.sitemap-col a { display: block; padding: .5rem .65rem; border-radius: var(--r-sm); color: var(--navy); font-weight: 500; font-size: .97rem; }
.sitemap-col a:hover { background: var(--accent-soft); color: var(--accent); }
.sitemap-col .sub { padding-left: 1.15rem; }

/* -------------------------------------------------------------- blog grid -- */
.blog-card .card__body { padding: 24px; }
.tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft); padding: .3rem .7rem; border-radius: var(--r-full);
  margin-bottom: .85rem; font-family: var(--font-head);
}
.blog-card h3 { font-size: 1.12rem; }
.blog-meta { font-size: .84rem; color: var(--slate-light); margin-bottom: .7rem; }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 2.75rem; }
.filter-btn {
  padding: .55rem 1.15rem; border-radius: var(--r-full); border: 1px solid var(--border); background: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .89rem; color: var(--navy); cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.post-body { max-width: 760px; }
.post-body h2 { font-size: 1.45rem; margin-top: 2.4rem; }
.post-body h3 { margin-top: 1.7rem; }
.post-cta { margin-top: 3rem; padding: 2rem; background: var(--accent-soft); border-radius: var(--r-lg); }
.post-cta h3 { margin-bottom: .6rem; }

/* ------------------------------------------------------------- animation -- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ------------------------------------------------------------ responsive -- */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr; row-gap: 2.5rem; }
  .steps, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .nav-list, .header-cta .header-phone { display: none; }
  .burger { display: flex; }
  .header-cta { margin-left: auto; }
  .header-cta .btn { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .find-us { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--media-right .split__media { order: 0; }
  .split__media { max-height: 440px; }
  .carousel__track > * { flex: 0 0 min(84%, 360px); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  :root { --header-h: 72px; }
  .grid-2, .grid-3, .grid-4, .steps, .steps--3, .feature-grid, .sitemap-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 74px; }
  /* lift the LeadConnector bubble clear of the fixed call bar */
  chat-widget { --lc-widget-bottom: 84px; bottom: 84px; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .mobile-call-bar .btn, .carousel__btn { width: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .map-embed iframe { height: 320px; }
  .hero { padding-top: calc(var(--header-h) + 2.75rem); }
}

@media print {
  .site-header, .mobile-nav, chat-widget, .mobile-call-bar, .cta-band, .map-embed { display: none !important; }
  body { padding-bottom: 0; font-size: 12pt; color: #000; }
}
