
:root {
  --navy: #1B3865;
  --navy-deep: #0F2547;
  --navy-soft: #2A4D86;
  --cream: #F4EFE3;
  --cream-soft: #FAF6EC;
  --paper: #FFFDF8;
  --ink: #0E1A2E;
  --ink-soft: #3D4A60;
  --rule: #DDD5C2;
  --rule-strong: #C9BEA3;
  --gold: #D4A050;
  --gold-deep: #9A7530;
  --gold-soft: #EFE2C5;
  --serif: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --sans: "Geist", system-ui, -apple-system, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
  --maxw: 1240px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* utility bar */
.utility { background: var(--navy-deep); color: var(--cream); font-size: 13px; letter-spacing: 0.01em; }
.utility .wrap { display: flex; align-items: center; justify-content: space-between; height: 38px; gap: 24px; }
.utility-left { display: flex; gap: 24px; align-items: center; }
.utility-item { display: inline-flex; align-items: center; gap: 7px; opacity: 0.85; }
.utility-item svg { width: 13px; height: 13px; }
.utility-right { display: flex; align-items: center; gap: 18px; }
.utility-right a { opacity: 0.85; transition: opacity .15s; }
.utility-right a:hover { opacity: 1; }
.utility-divider { width: 1px; height: 14px; background: rgba(244,239,227,0.2); }

/* header */
header.site { background: var(--navy); color: var(--cream); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(244,239,227,0.08); }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 14px; }
.logo img { height: 56px; width: auto; background: var(--navy); padding: 4px; border-radius: 4px; }
nav.primary { display: flex; gap: 30px; align-items: center; }
nav.primary a { font-size: 14.5px; font-weight: 500; letter-spacing: 0.01em; color: var(--cream); opacity: 0.88; transition: opacity .15s; position: relative; padding: 6px 0; }
nav.primary a:hover { opacity: 1; }
nav.primary a.has-menu::after { content: ""; display: inline-block; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-left: 6px; margin-bottom: 3px; opacity: 0.6; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.call-pill { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--navy-deep); padding: 11px 18px 11px 16px; border-radius: 999px; font-weight: 600; font-size: 15px; letter-spacing: -0.005em; transition: transform .15s, background .15s; box-shadow: 0 1px 0 rgba(0,0,0,0.04) inset; }
.call-pill:hover { transform: translateY(-1px); background: #E0B265; }
.call-pill svg { width: 16px; height: 16px; }
.call-pill .label-small { font-size: 11px; font-weight: 500; opacity: 0.7; letter-spacing: 0.08em; text-transform: uppercase; display: block; line-height: 1; margin-bottom: 2px; }
.call-pill .label-big { font-family: var(--serif); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; line-height: 1; }
.call-pill-stack { display: flex; flex-direction: column; align-items: flex-start; }
.hamburger { display: none; background: none; border: 0; color: var(--cream); padding: 8px; }
.hamburger svg { width: 24px; height: 24px; }
.mobile-nav { display: none; background: var(--navy-deep); border-top: 1px solid rgba(244,239,227,0.08); }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 8px 0; }
.mobile-nav a { display: block; padding: 14px 28px; color: var(--cream); font-size: 15px; border-bottom: 1px solid rgba(244,239,227,0.06); }

/* hero */
section.hero { background: radial-gradient(1200px 600px at 85% -10%, rgba(255,255,255,0.06), transparent 60%), linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--cream); padding: 64px 0 0; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 26px; }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--gold); box-shadow: 0 0 0 4px rgba(212,160,80,0.18); }
.hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 5.2vw, 64px); line-height: 1.04; letter-spacing: -0.02em; margin: 0 0 22px; color: #FFF; text-wrap: balance; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-lede { font-size: 19px; line-height: 1.55; color: rgba(244,239,227,0.82); max-width: 560px; margin: 0 0 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 24px; border-radius: 6px; font-weight: 600; font-size: 16px; letter-spacing: -0.005em; transition: transform .15s, background .15s, border-color .15s; border: 1.5px solid transparent; }
.btn svg { width: 17px; height: 17px; }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: #E0B265; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(244,239,227,0.3); }
.btn-ghost:hover { border-color: var(--cream); }
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: var(--navy-deep); }
.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(244,239,227,0.12); }
.hero-meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta-num { font-family: var(--serif); font-size: 32px; font-weight: 500; line-height: 1; color: #FFF; letter-spacing: -0.02em; }
.hero-meta-label { font-size: 12.5px; color: rgba(244,239,227,0.65); letter-spacing: 0.04em; text-transform: uppercase; }

/* hero form card */
.hero-card { background: var(--cream); color: var(--ink); border-radius: 10px; padding: 32px 30px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3), 0 0 0 1px rgba(15,37,71,0.06); position: relative; }
.hero-card::before { content: "Free Consultation"; position: absolute; top: -12px; right: 24px; background: var(--gold); color: var(--navy-deep); padding: 4px 12px; border-radius: 4px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.hero-card h2 { font-family: var(--serif); font-weight: 500; font-size: 26px; line-height: 1.15; margin: 0 0 6px; letter-spacing: -0.01em; }
.hero-card p.sub { font-size: 14px; color: var(--ink-soft); margin: 0 0 22px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 12px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea { font: inherit; padding: 12px 14px; border: 1px solid var(--rule-strong); border-radius: 6px; background: #FFF; color: var(--ink); font-size: 15px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--navy); outline-offset: -1px; border-color: var(--navy); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-card button[type=submit], form button[type=submit].primary { width: 100%; background: var(--navy); color: var(--cream); border: 0; padding: 15px; border-radius: 6px; font-weight: 600; font-size: 16px; margin-top: 8px; transition: background .15s; }
.hero-card button[type=submit]:hover, form button[type=submit].primary:hover { background: var(--navy-deep); }
.hero-card .or { text-align: center; margin: 14px 0 12px; position: relative; font-size: 12px; color: var(--ink-soft); letter-spacing: 0.06em; }
.hero-card .or::before, .hero-card .or::after { content: ""; position: absolute; top: 50%; width: calc(50% - 28px); height: 1px; background: var(--rule); }
.hero-card .or::before { left: 0; }
.hero-card .or::after { right: 0; }
.hero-card .call-direct { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 13px; border: 1.5px solid var(--navy); border-radius: 6px; color: var(--navy); font-weight: 600; font-family: var(--serif); font-size: 19px; letter-spacing: -0.01em; }
.hero-card .privacy { margin-top: 14px; font-size: 12px; color: var(--ink-soft); display: flex; align-items: flex-start; gap: 8px; line-height: 1.45; }
.hero-card .privacy svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px; color: var(--navy); }

/* trust strip */
.trust-strip { background: var(--navy-deep); color: var(--cream); border-top: 1px solid rgba(244,239,227,0.08); margin-top: 64px; }
.trust-strip .wrap { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; padding: 0; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 24px 28px; border-left: 1px solid rgba(244,239,227,0.08); }
.trust-item:first-child { border-left: 0; }
.trust-icon { width: 38px; height: 38px; border-radius: 8px; background: rgba(212,160,80,0.12); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 20px; height: 20px; }
.trust-text { display: flex; flex-direction: column; }
.trust-text strong { font-family: var(--serif); font-weight: 600; font-size: 15px; color: #FFF; letter-spacing: -0.005em; }
.trust-text span { font-size: 12px; color: rgba(244,239,227,0.6); letter-spacing: 0.02em; }

/* section primitives */
section.block { padding: 100px 0; position: relative; }
section.block.cream { background: var(--cream-soft); }
section.block.navy { background: var(--navy); color: var(--cream); }
.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 18px; display: inline-flex; align-items: center; gap: 10px; }
.section-eyebrow .bar { width: 28px; height: 1.5px; background: var(--gold-deep); }
section.block.navy .section-eyebrow { color: var(--gold); }
section.block.navy .section-eyebrow .bar { background: var(--gold); }
h2.section-title { font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 16px; text-wrap: balance; }
h2.section-title em { font-style: italic; font-weight: 400; color: var(--gold-deep); }
section.block.navy h2.section-title { color: #FFF; }
section.block.navy h2.section-title em { color: var(--gold); }
.section-lede { font-size: 19px; color: var(--ink-soft); line-height: 1.55; margin: 0; max-width: 680px; }
section.block.navy .section-lede { color: rgba(244,239,227,0.78); }
.section-head.center .section-eyebrow, .section-head.center .section-lede { margin-left: auto; margin-right: auto; }
.section-head.center .section-lede { display: block; }

/* page hero (smaller than homepage hero) */
.page-hero { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--cream); padding: 64px 0 72px; position: relative; }
.page-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 4.6vw, 56px); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 16px; color: #FFF; text-wrap: balance; max-width: 880px; }
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.page-hero .lede { font-size: 19px; line-height: 1.55; color: rgba(244,239,227,0.82); max-width: 720px; margin: 0 0 28px; }
.breadcrumbs { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,239,227,0.6); margin-bottom: 24px; }
.breadcrumbs a { color: rgba(244,239,227,0.8); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 8px; opacity: 0.4; }
.page-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* services grid */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; }
.service { background: var(--paper); padding: 36px 28px 32px; display: flex; flex-direction: column; gap: 14px; transition: background .2s; position: relative; }
.service:hover { background: #FFF; }
.service-icon { width: 44px; height: 44px; border-radius: 6px; background: var(--navy); color: var(--cream); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.service-icon svg { width: 22px; height: 22px; }
.service h3 { font-family: var(--serif); font-weight: 600; font-size: 20px; line-height: 1.2; margin: 0; letter-spacing: -0.01em; }
.service p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; margin: 0; flex: 1; }
.service-link { font-size: 13px; font-weight: 500; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.01em; margin-top: 6px; }
.service-link::after { content: "→"; transition: transform .15s; }
.service:hover .service-link::after { transform: translateX(3px); }

/* process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-step { padding: 0 32px 0 0; position: relative; }
.process-step:not(:last-child)::after { content: ""; position: absolute; top: 24px; right: 16px; width: 12px; height: 12px; border-right: 1.5px solid var(--gold); border-top: 1.5px solid var(--gold); transform: rotate(45deg); }
.process-num { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--gold); margin-bottom: 10px; letter-spacing: 0.04em; }
.process-rule { height: 1px; background: rgba(244,239,227,0.18); margin-bottom: 24px; width: 100%; }
.process-step h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin: 0 0 14px; color: #FFF; letter-spacing: -0.01em; line-height: 1.15; }
.process-step p { font-size: 15px; color: rgba(244,239,227,0.7); line-height: 1.55; margin: 0; }

/* why us */
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.why-image-stack { position: relative; aspect-ratio: 4 / 5; border-radius: 6px; overflow: hidden; }
.why-image-stack img { width: 100%; height: 100%; object-fit: cover; }
.why-badge { position: absolute; bottom: 24px; left: 24px; background: var(--navy); color: var(--cream); padding: 18px 22px; border-radius: 6px; box-shadow: 0 20px 40px -15px rgba(0,0,0,0.3); max-width: 260px; }
.why-badge-num { font-family: var(--serif); font-size: 38px; line-height: 1; color: var(--gold); margin-bottom: 6px; letter-spacing: -0.02em; }
.why-badge-text { font-size: 13px; line-height: 1.4; color: rgba(244,239,227,0.85); }
.why-list { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; }
.why-item { display: grid; grid-template-columns: 36px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--rule); align-items: start; }
.why-item:last-child { border-bottom: 1px solid var(--rule); }
.why-item-icon { width: 36px; height: 36px; border-radius: 999px; background: var(--cream); color: var(--navy); display: flex; align-items: center; justify-content: center; border: 1px solid var(--rule-strong); }
.why-item-icon svg { width: 16px; height: 16px; }
.why-item h4 { font-family: var(--serif); font-weight: 600; font-size: 19px; margin: 0 0 4px; letter-spacing: -0.005em; }
.why-item p { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* prose blocks (used on inner pages) */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--serif); font-weight: 500; font-size: 32px; line-height: 1.15; letter-spacing: -0.015em; margin: 48px 0 16px; color: var(--navy-deep); }
.prose h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; line-height: 1.25; margin: 36px 0 10px; color: var(--navy-deep); }
.prose p { margin: 0 0 18px; font-size: 17px; line-height: 1.65; color: var(--ink); }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 22px; }
.prose ul li, .prose ol li { margin-bottom: 8px; font-size: 17px; line-height: 1.6; color: var(--ink); }
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gold); text-decoration-thickness: 1.5px; }
.prose a:hover { color: var(--gold-deep); }
.prose strong { font-weight: 600; color: var(--navy-deep); }
.prose blockquote { border-left: 3px solid var(--gold); padding: 6px 0 6px 20px; margin: 24px 0; font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.5; color: var(--navy-deep); }

/* two column layout */
.two-col { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; }
.aside-card { background: var(--cream); border: 1px solid var(--rule); border-radius: 8px; padding: 28px 26px; position: sticky; top: 110px; }
.aside-card h3 { font-family: var(--serif); font-weight: 600; font-size: 20px; margin: 0 0 14px; }
.aside-card .nap { font-size: 14.5px; line-height: 1.55; margin-bottom: 16px; }
.aside-card .nap strong { display: block; font-family: var(--serif); font-size: 17px; color: var(--navy-deep); margin-bottom: 4px; }
.aside-card .phone { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--navy); color: var(--cream); border-radius: 6px; font-weight: 600; margin-bottom: 10px; font-family: var(--serif); font-size: 19px; }
.aside-card .phone:hover { background: var(--navy-deep); }
.aside-card .secondary-cta { display: block; text-align: center; padding: 12px; border: 1.5px solid var(--navy); color: var(--navy); border-radius: 6px; font-weight: 600; font-size: 14px; }

/* testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: var(--paper); border: 1px solid var(--rule); border-radius: 6px; padding: 30px 28px 26px; display: flex; flex-direction: column; gap: 18px; }
.testimonial .stars { display: flex; gap: 2px; color: var(--gold); }
.testimonial .stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial blockquote { margin: 0; font-family: var(--serif); font-size: 18px; line-height: 1.45; color: var(--ink); letter-spacing: -0.005em; flex: 1; }
.testimonial blockquote::before { content: "\201C"; color: var(--gold-deep); font-size: 32px; line-height: 0; vertical-align: -0.2em; margin-right: 2px; }
.testimonial-meta { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--rule); }
.avatar { width: 36px; height: 36px; border-radius: 999px; background: var(--navy); color: var(--cream); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; font-size: 14px; }
.testimonial-meta-text strong { display: block; font-size: 14px; font-weight: 600; }
.testimonial-meta-text span { font-size: 12.5px; color: var(--ink-soft); }
.testimonials-source { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 36px; font-size: 13px; color: var(--ink-soft); }
.source-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--rule-strong); border-radius: 999px; background: var(--paper); }
.source-badge .g { width: 16px; height: 16px; border-radius: 999px; background: conic-gradient(from -45deg, #4285F4, #34A853, #FBBC05, #EA4335, #4285F4); }

/* locations */
.locations-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.locations-aside h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; color: #FFF; margin: 24px 0 8px; letter-spacing: -0.01em; }
.locations-aside p { font-size: 14.5px; color: rgba(244,239,227,0.7); margin: 0; line-height: 1.55; }
.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(244,239,227,0.12); border: 1px solid rgba(244,239,227,0.12); border-radius: 4px; overflow: hidden; }
.city { background: var(--navy); padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; transition: background .15s; color: var(--cream); }
.city:hover { background: var(--navy-soft); }
.city-name { font-family: var(--serif); font-weight: 500; font-size: 17px; letter-spacing: -0.005em; }
.city-arrow { width: 24px; height: 24px; border-radius: 999px; border: 1px solid rgba(244,239,227,0.25); display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(244,239,227,0.6); }
.city:hover .city-arrow { border-color: var(--gold); color: var(--gold); }
.map-frame { aspect-ratio: 1 / 1; border-radius: 8px; overflow: hidden; border: 1px solid rgba(244,239,227,0.12); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* cta strip */
.cta-strip { background: var(--navy); color: var(--cream); padding: 64px 0; border-top: 1px solid rgba(244,239,227,0.08); border-bottom: 1px solid rgba(244,239,227,0.08); }
.cta-strip-inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: center; }
.cta-strip h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.1; margin: 0 0 14px; color: #FFF; letter-spacing: -0.02em; text-wrap: balance; }
.cta-strip h2 em { font-style: italic; color: var(--gold); }
.cta-strip p { margin: 0; font-size: 17px; color: rgba(244,239,227,0.75); max-width: 580px; }
.cta-strip-right { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.cta-big-call { display: flex; flex-direction: column; align-items: center; gap: 4px; background: var(--gold); color: var(--navy-deep); padding: 22px 28px; border-radius: 8px; transition: background .15s, transform .15s; }
.cta-big-call:hover { background: #E0B265; transform: translateY(-1px); }
.cta-big-call .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; }
.cta-big-call .num { font-family: var(--serif); font-weight: 600; font-size: 32px; letter-spacing: -0.02em; line-height: 1; }
.cta-big-call .hrs { font-size: 12px; opacity: 0.7; letter-spacing: 0.02em; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr; max-width: 880px; margin: 0 auto; }
details.faq { border-top: 1px solid var(--rule); padding: 24px 0; }
details.faq[open] { padding-bottom: 28px; }
details.faq:last-of-type { border-bottom: 1px solid var(--rule); }
details.faq summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-family: var(--serif); font-weight: 500; font-size: 21px; letter-spacing: -0.01em; color: var(--ink); }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; flex-shrink: 0; width: 32px; height: 32px; border-radius: 999px; border: 1px solid var(--rule-strong); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 400; transition: transform .2s, background .2s; }
details.faq[open] summary::after { content: "\2212"; background: var(--navy); color: var(--cream); border-color: var(--navy); }
details.faq p { margin: 14px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.6; max-width: 720px; }

/* footer */
footer.site { background: var(--navy-deep); color: rgba(244,239,227,0.78); padding: 80px 0 32px; font-size: 14.5px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(244,239,227,0.12); }
.footer-brand img { height: 60px; margin-bottom: 20px; background: var(--navy-deep); padding: 4px; border-radius: 4px; }
.footer-brand p { margin: 0 0 24px; max-width: 320px; line-height: 1.55; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.footer-contact-row svg { width: 14px; height: 14px; margin-top: 4px; color: var(--gold); flex-shrink: 0; }
.footer-contact-row strong { color: #FFF; font-weight: 600; font-family: var(--serif); font-size: 17px; letter-spacing: -0.005em; }
footer h4 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin: 4px 0 18px; font-weight: 500; }
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer ul a { transition: color .15s; }
footer ul a:hover { color: #FFF; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; gap: 24px; flex-wrap: wrap; font-size: 12.5px; color: rgba(244,239,227,0.55); }
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom .legal a:hover { color: #FFF; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 32px; height: 32px; border-radius: 50%; background: rgba(244,239,227,0.08); display: inline-flex; align-items: center; justify-content: center; color: rgba(244,239,227,0.7); transition: background .15s; }
.footer-social a:hover { background: var(--gold); color: var(--navy-deep); }
.footer-social svg { width: 16px; height: 16px; }

/* mobile sticky call bar */
.mobile-call-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy-deep); color: var(--cream); border-top: 1px solid rgba(244,239,227,0.1); display: none; z-index: 100; box-shadow: 0 -10px 30px -10px rgba(0,0,0,0.3); }
.mobile-call-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 12px; font-weight: 600; font-size: 15px; }
.mobile-call-bar a.call { background: var(--gold); color: var(--navy-deep); }
.mobile-call-bar a.consult { color: var(--cream); }

/* feature image */
.feature-image { width: 100%; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; margin: 32px 0; border: 1px solid var(--rule); }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }

/* location grid (locations.html) */
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.location-card { background: var(--paper); border: 1px solid var(--rule); border-radius: 8px; padding: 24px 24px 22px; transition: border-color .15s, transform .15s; display: block; }
.location-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.location-card .city-h { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--navy-deep); margin: 0 0 6px; letter-spacing: -0.01em; }
.location-card .county { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); margin: 0 0 12px; }
.location-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 14px; line-height: 1.5; }
.location-card .arrow { font-size: 13px; color: var(--navy); font-weight: 600; }

/* contact page */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
.contact-info { background: var(--cream); border: 1px solid var(--rule); border-radius: 8px; padding: 32px 28px; }
.contact-info h2 { font-family: var(--serif); font-weight: 600; font-size: 24px; margin: 0 0 18px; color: var(--navy-deep); }
.contact-info .row { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.contact-info .row svg { width: 18px; height: 18px; color: var(--gold-deep); margin-top: 4px; flex-shrink: 0; }
.contact-info .row strong { display: block; font-family: var(--serif); font-size: 16px; color: var(--navy-deep); margin-bottom: 2px; }
.contact-info .row span, .contact-info .row a { font-size: 14.5px; color: var(--ink-soft); }
.contact-info .row a:hover { color: var(--navy); }
.contact-form { background: #FFF; border: 1px solid var(--rule); border-radius: 8px; padding: 32px 28px; }
.contact-form h2 { font-family: var(--serif); font-weight: 600; font-size: 24px; margin: 0 0 6px; color: var(--navy-deep); }
.contact-form .sub { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 22px; }

/* responsive */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-step:nth-child(2)::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial:last-child { grid-column: 1 / -1; }
  .trust-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(odd) { border-left: 0; }
  .trust-item:nth-child(n+3) { border-top: 1px solid rgba(244,239,227,0.08); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .locations-wrap { grid-template-columns: 1fr; gap: 40px; }
  .cta-strip-inner { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .aside-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  nav.primary { display: none; }
  .hamburger { display: block; }
  .header-cta .call-pill .label-small { display: none; }
  .header-cta .call-pill .label-big { font-size: 15px; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 56px; }
  section.block { padding: 72px 0; }
  .page-hero { padding: 48px 0 56px; }
}
@media (max-width: 560px) {
  .utility .wrap { font-size: 12px; height: 36px; }
  .utility-left .utility-item:nth-child(2) { display: none; }
  .utility-right a:nth-child(n+3) { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-strip .wrap { grid-template-columns: 1fr; }
  .trust-item { border-left: 0 !important; border-top: 1px solid rgba(244,239,227,0.08); }
  .trust-item:first-child { border-top: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  header.site .wrap { height: 68px; }
  .logo img { height: 44px; }
  .hero { padding-top: 40px; }
  .hero-meta { gap: 18px; }
  .hero-meta-num { font-size: 26px; }
  .cta-big-call .num { font-size: 26px; }
  .wrap { padding: 0 20px; }
}

/* ============================================================
   HOMEPAGE COMPONENT FIXES + ADDITIONS
   ============================================================ */

/* Override the old 4-col rule-bg services grid for homepage cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
  border: 0;
  border-radius: 0;
  margin-top: 44px;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(15,37,71,.1);
  border-radius: 12px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,37,71,.08);
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  margin: 0;
  letter-spacing: -.015em;
  line-height: 1.25;
}
.service-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: 6px;
  transition: gap .2s;
}
.service-card .card-link:hover { gap: 10px; color: var(--gold); }

/* Why-grid: 4 columns with numbered cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.why-card {
  text-align: left;
  padding: 0;
}
.why-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.why-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}

/* Locations strip: city pills, not bullets */
.locations-strip {
  list-style: none;
  padding: 0;
  margin: 44px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.locations-strip li { margin: 0; }
.locations-strip a {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(244,239,227,.08);
  border: 1px solid rgba(244,239,227,.2);
  border-radius: 999px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}
.locations-strip a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

/* Geo-block reframed as a callout panel with split layout */
.geo-block {
  background: var(--cream);
  position: relative;
}
.geo-block .wrap { max-width: 1100px; }
.geo-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.geo-col h2 {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--navy);
  margin: 0 0 18px;
  letter-spacing: -.015em;
  line-height: 1.2;
}
.geo-col p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 16px;
}
.geo-col p:last-child { margin-bottom: 0; }
.geo-neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.geo-neighborhoods span {
  display: inline-block;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid rgba(15,37,71,.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}
.geo-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.geo-stat {
  background: #fff;
  border-radius: 10px;
  padding: 20px 18px;
  border-left: 3px solid var(--gold);
}
.geo-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.geo-stat-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* Mailing-only notice strip */
.mailing-notice {
  background: linear-gradient(180deg, rgba(212,160,80,.08), rgba(212,160,80,.02));
  border-top: 1px solid rgba(15,37,71,.08);
  border-bottom: 1px solid rgba(15,37,71,.08);
  padding: 14px 0;
}
.mailing-notice-inner {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--ink);
}
.mailing-notice svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.mailing-notice p { margin: 0; line-height: 1.5; }
.mailing-notice a { color: var(--navy); font-weight: 600; }

/* Client Results Section */
.results-section { background: var(--cream); }
.savings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.savings-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(15,37,71,.06);
  border: 1px solid rgba(15,37,71,.06);
  text-align: center;
}
.savings-date {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.savings-amount {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.05;
  font-weight: 700;
  color: #4a8030;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.savings-pct {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 22px;
  font-weight: 500;
}
.savings-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 22px;
  font-weight: 700;
  font-size: 18px;
}
.savings-before {
  background: #fce4e4;
  color: #1a1a1a;
  padding: 14px 18px;
  border-radius: 8px 0 0 8px;
  text-align: center;
}
.savings-after {
  background: #d6f0c2;
  color: #1a1a1a;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  text-align: center;
}
.savings-arrow {
  background: #d6f0c2;
  color: #1a1a1a;
  padding: 14px 6px;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.savings-client { line-height: 1.4; }
.savings-name {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  font-style: italic;
}
.savings-city {
  display: block;
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
  margin-top: 2px;
}
.results-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.results-disclaimer a { color: var(--navy); }

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  margin-top: 44px;
}
.team-card {
  text-align: center;
  padding: 0 12px;
}
.team-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  background: var(--cream);
  border: 3px solid var(--cream);
  box-shadow: 0 4px 18px rgba(15,37,71,.1);
}
.team-name {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 4px;
  color: var(--navy);
  letter-spacing: -.01em;
}
.team-title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.team-bio {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.process-card {
  text-align: center;
  padding: 8px 12px;
}
.process-num {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(244,239,227,.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--cream);
  font-weight: 600;
}
.process-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  margin: 0 0 6px;
  line-height: 1.25;
}
.process-time {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.process-body {
  color: rgba(244,239,227,.85);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* Section heads variant for centered + navy bg */
.section-head.center { text-align: center; max-width: 760px; margin: 0 auto; }
.eyebrow.on-navy, .section-title.on-navy, .section-sub.on-navy { color: var(--cream); }
.eyebrow.on-navy .dot { background: var(--gold); }
.section-title.on-navy { color: var(--cream); }
.section-sub.on-navy { color: rgba(244,239,227,.8); }

/* Video Embed (lite-youtube pattern) */
.video-wrap {
  max-width: 880px;
  margin: 40px auto 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15,37,71,.18);
}
lite-youtube {
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  max-width: 100%;
  aspect-ratio: 16/9;
}
lite-youtube::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}
lite-youtube > .lty-playbtn {
  width: 70px;
  height: 46px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  background: no-repeat center/70px 46px url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="%23212121" fill-opacity="0.8"/><path d="M45 24 27 14v20" fill="%23fff"/></svg>');
  border: 0;
  border-radius: inherit;
  cursor: pointer;
  z-index: 1;
}
lite-youtube:hover > .lty-playbtn { background-color: rgba(33,33,33,1); }
.lyt-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
lite-youtube.lyt-activated { cursor: unset; }
lite-youtube.lyt-activated::before, lite-youtube.lyt-activated > .lty-playbtn { opacity: 0; pointer-events: none; }
lite-youtube > iframe {
  width: 100%; height: 100%;
  position: absolute;
  top: 0; left: 0;
  border: 0;
}

/* FAQ Accordion */
.faq-list { max-width: 880px; margin: 36px auto 0; }
.faq-group-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 32px 0 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(15,37,71,.08);
}
.faq-group-label:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(15,37,71,.1);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(15,37,71,.25); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(244,239,227,.4); }
.faq-icon {
  font-size: 22px;
  color: var(--gold);
  font-weight: 400;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 24px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}
.faq-answer p:first-child { margin-top: 0; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--navy); font-weight: 600; }
.faq-answer ul { padding-left: 20px; }
.faq-answer li { margin-bottom: 8px; }

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .geo-block-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .savings-amount { font-size: 36px; }
  .savings-bar { font-size: 16px; }
  .team-grid { gap: 28px; }
  .geo-col h2 { font-size: 26px; }
}
@media (max-width: 560px) {
  .savings-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .savings-amount { font-size: 32px; }
  .savings-before, .savings-after { padding: 12px 10px; font-size: 15px; }
  .locations-strip { gap: 8px; }
  .locations-strip a { padding: 8px 14px; font-size: 13px; }
  .geo-stats { grid-template-columns: 1fr; }
}
