/* ═══════════════════════════════════════════════════
   PALMETTO DRY, SHARED STYLES
   ═══════════════════════════════════════════════════ */

/* ── RESET + BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px; line-height: 1.65; color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── TOKENS ── */
:root {
  --navy: #254B8B;
  --navy-deep: #1A3A6B;
  --blue-light: #4B5FA5;
  --blue-lighter: #597AB6;
  --orange: #E4572B;
  --orange-dark: #C24622;
  --cream: #F7F5F0;
  --gray-50: #f5f5f5;
  --gray-100: #ebebeb;
  --gray-300: #cfcfcf;
  --gray-500: #6b6b6b;
  --gray-700: #3d3d3d;
  --text: #1a1a1a;
  --text-muted: #5b5b5b;
  --border: rgba(0,0,0,0.08);
  --border-light: rgba(255,255,255,0.12);
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
}

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 880px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: #fff; }
.section--white { background: #fff; }
.eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 12px; display: inline-block; }
.section--navy .eyebrow { color: #f4b478; }
.section-heading { font-size: 36px; line-height: 1.18; letter-spacing: -0.01em; font-weight: 700; margin-bottom: 16px; color: var(--navy); }
.section--navy .section-heading { color: #fff; }
.section-sub { font-size: 17px; color: var(--text-muted); max-width: 640px; line-height: 1.65; }
.section--navy .section-sub { color: rgba(255,255,255,0.75); }
.section-header { margin-bottom: 56px; max-width: 720px; }
.section-header.center { margin: 0 auto 56px; text-align: center; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: var(--radius); border: 1px solid transparent; transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease; white-space: nowrap; cursor: pointer; }
.btn:hover { transform: translateY(-1px); }
.btn--orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn--orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn--navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn--white { background: #fff; color: var(--navy); border-color: #fff; }
.btn--white:hover { background: var(--cream); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn--outline-navy { background: transparent; color: var(--navy); border-color: rgba(14,42,71,0.25); }
.btn--outline-navy:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn--lg { font-size: 17px; padding: 18px 36px; }
.btn--block { display: flex; width: 100%; }

/* ── HEADER / NAV ── */
.topbar { background: var(--navy-deep); color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 8px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar-inner a { color: rgba(255,255,255,0.85); }
.topbar-inner a:hover { color: #fff; }
.topbar-left, .topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-pulse { display: inline-flex; align-items: center; gap: 6px; }
.topbar-pulse::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #f4b478; box-shadow: 0 0 0 0 rgba(244,180,120,0.6); animation: pulse 1.6s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(244,180,120,0.6); } 70% { box-shadow: 0 0 0 8px rgba(244,180,120,0); } 100% { box-shadow: 0 0 0 0 rgba(244,180,120,0); } }

.nav { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); transition: box-shadow .2s ease; }
.nav.is-scrolled { box-shadow: var(--shadow-md); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand-img { display: block; height: 64px; width: auto; }

.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--gray-700); transition: color .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--navy); }
.nav-links a[aria-current="page"] { position: relative; }
.nav-links a[aria-current="page"]::after { content: ''; position: absolute; bottom: -10px; left: 0; right: 0; height: 2px; background: var(--orange); border-radius: 2px; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 700; font-size: 16px; }
.nav-phone svg { width: 18px; height: 18px; }

.nav-toggle { display: none; background: transparent; border: 1px solid var(--border); border-radius: var(--radius); width: 44px; height: 44px; padding: 0; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: var(--navy); transition: transform .25s ease; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav.is-open .nav-toggle span { background: transparent; }
.nav.is-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer, hidden by default at all sizes; shown only inside the mobile media query when .nav.is-open */
.nav-mobile { display: none; }

/* ── BREADCRUMBS ── */
.crumbs { background: var(--cream); border-bottom: 1px solid var(--border); }
.crumbs-inner { max-width: 1200px; margin: 0 auto; padding: 14px 32px; font-size: 13.5px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.crumbs-inner a { color: var(--text-muted); transition: color .2s ease; }
.crumbs-inner a:hover { color: var(--navy); }
.crumbs-inner span[aria-current] { color: var(--navy); font-weight: 600; }
.crumbs-sep { color: var(--gray-300); }

/* ── HERO (homepage) ── */
.hero { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; padding: 96px 0 112px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 20%, rgba(228,87,43,0.18), transparent 45%), radial-gradient(circle at 10% 90%, rgba(224,122,31,0.12), transparent 50%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px; background: rgba(228,87,43,0.18); border: 1px solid rgba(228,87,43,0.35); border-radius: 999px; font-size: 13px; font-weight: 600; color: #f4b478; letter-spacing: 0.04em; margin-bottom: 24px; }
.hero-eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #f4b478; animation: pulse 1.6s infinite; }
.hero h1 { font-size: 56px; line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: #f4b478; }
.hero-sub { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,0.78); margin-bottom: 36px; max-width: 560px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; padding-top: 28px; border-top: 1px solid var(--border-light); font-size: 14px; color: rgba(255,255,255,0.7); }
.hero-trust div { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 16px; height: 16px; color: #6cd86c; flex-shrink: 0; }

.hero-photo { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, #1a3a5e, #0E2A47); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: flex-end; padding: 28px; }
.hero-photo::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=900&q=80&auto=format&fit=crop') center/cover; opacity: 0.55; }
.hero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(9,27,46,0.92)); }
.hero-photo-card { position: relative; z-index: 1; background: rgba(9,27,46,0.85); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 18px 20px; width: 100%; }
.hero-photo-card-stat { font-size: 28px; font-weight: 700; color: #f4b478; line-height: 1; margin-bottom: 4px; }
.hero-photo-card-label { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ── PAGE HERO (inner pages, shorter) ── */
.page-hero { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; padding: 72px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 20%, rgba(58,125,68,0.16), transparent 45%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; max-width: 880px; }
.page-hero h1 { font-size: 48px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; margin-bottom: 18px; }
.page-hero h1 em { font-style: normal; color: #f4b478; }
.page-hero p { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,0.78); margin-bottom: 32px; max-width: 720px; }
.page-hero .hero-ctas { margin-bottom: 0; }

/* ── TRUSTBAR ── */
.trustbar { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.trustbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.trustbar-item { display: flex; align-items: center; gap: 14px; }
.trustbar-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: rgba(228,87,43,0.12); color: var(--orange); display: flex; align-items: center; justify-content: center; }
.trustbar-icon svg { width: 22px; height: 22px; }
.trustbar-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 2px; }
.trustbar-text span { display: block; font-size: 13px; color: var(--text-muted); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.services-grid--2col { grid-template-columns: repeat(2, 1fr); }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(14,42,71,0.18); }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.25; }
.service-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.service-link { font-size: 14px; font-weight: 600; color: var(--orange); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s ease; }
.service-link:hover { gap: 10px; color: var(--orange-dark); }

/* ── SERVICE AREAS ── */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 8px; }
.areas-col { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.areas-col h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.areas-col-state { font-size: 13px; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 22px; }
.areas-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.areas-list li a { display: inline-block; padding: 8px 14px; background: var(--cream); border: 1px solid var(--border); border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--text); transition: all .2s ease; }
.areas-list li a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.areas-note { margin-top: 32px; padding: 20px 24px; background: rgba(228,87,43,0.08); border-left: 3px solid var(--orange); border-radius: var(--radius); font-size: 15px; color: var(--text); }
.areas-note strong { color: var(--orange-dark); font-weight: 700; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { padding: 28px; border-left: 3px solid var(--orange); background: #fff; border-radius: var(--radius); border-top: 1px solid var(--border); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-card svg { width: 28px; height: 28px; color: var(--orange); margin-bottom: 16px; }
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.why-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps::before { content: ''; position: absolute; top: 32px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 50%, var(--navy) 100%); opacity: 0.25; z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: #fff; border: 2px solid var(--orange); color: var(--orange); font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step:nth-child(2) .step-num { border-color: var(--orange); color: var(--orange); }
.step:nth-child(3) .step-num { border-color: var(--navy); color: var(--navy); }
.step h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 280px; margin: 0 auto; }

/* ── REVIEWS ── */
.reviews-rating { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }
.stars { display: inline-flex; gap: 2px; color: #f4b13a; }
.stars svg { width: 22px; height: 22px; fill: currentColor; }
.reviews-rating-text { font-size: 15px; color: var(--text-muted); }
.reviews-rating-text strong { color: var(--navy); font-weight: 700; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reviews-grid--2col { grid-template-columns: repeat(2, 1fr); }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; }
.review-card .stars { margin-bottom: 14px; }
.review-card .stars svg { width: 16px; height: 16px; }
.review-card blockquote { font-size: 15px; line-height: 1.65; color: var(--text); margin-bottom: 20px; flex-grow: 1; font-style: normal; }
.review-meta { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.review-name { font-size: 14.5px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.review-loc { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ── INSURANCE ── */
.insurance { background: var(--cream); }
.insurance-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
.insurance-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; list-style: none; }
.insurance-list li { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 16px; text-align: center; font-size: 14px; font-weight: 600; color: var(--navy); }

/* ── FAQ ── */
.faq-list { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-q { width: 100%; padding: 22px 26px; background: transparent; border: 0; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 16.5px; font-weight: 600; color: var(--navy); line-height: 1.4; cursor: pointer; }
.faq-q-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--cream); color: var(--navy); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: transform .25s ease, background .25s ease; }
.faq-q-icon svg { width: 14px; height: 14px; }
.faq-item.is-open .faq-q-icon { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-a-inner { padding: 0 26px 24px; font-size: 15px; line-height: 1.7; color: var(--text-muted); }
.faq-item.is-open .faq-a { max-height: 520px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary { list-style: none; }

/* ── FINAL CTA ── */
.final-cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; text-align: center; padding: 80px 32px; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 50% 0%, rgba(224,122,31,0.18), transparent 60%); }
.final-cta-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.final-cta h2 { font-size: 42px; line-height: 1.15; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.01em; }
.final-cta p { font-size: 18px; color: rgba(255,255,255,0.78); margin-bottom: 36px; }
.final-cta-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta-phone { font-size: 36px; font-weight: 700; color: #f4b478; display: block; margin-bottom: 12px; letter-spacing: -0.01em; }

/* ── FOOTER ── */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 64px 0 28px; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { display: block; margin-bottom: 20px; }
.footer-brand img { display: block; height: 80px; width: auto; }
.footer-about { line-height: 1.65; max-width: 320px; margin-bottom: 18px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a, .footer-contact span { display: inline-flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.85); }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; color: #f4b478; margin-top: 2px; }
.footer-contact a:hover { color: #fff; }
.footer h4 { color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,255,255,0.7); transition: color .2s ease; }
.footer ul a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #fff; }

/* ── MOBILE CALL BAR ── */
.mobile-call-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: var(--orange); color: #fff; padding: 14px 16px; box-shadow: 0 -4px 16px rgba(0,0,0,0.16); }
.mobile-call-bar a { display: flex; align-items: center; justify-content: center; gap: 10px; color: #fff; font-size: 17px; font-weight: 700; }
.mobile-call-bar svg { width: 22px; height: 22px; }

/* ═══════════════════════════════════════════════════
   INNER PAGE COMPONENTS
   ═══════════════════════════════════════════════════ */

/* ── PROSE BLOCK (about, service detail copy) ── */
.prose { max-width: 760px; }
.prose p { font-size: 17px; line-height: 1.75; color: var(--text); margin-bottom: 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { font-size: 28px; line-height: 1.2; font-weight: 700; color: var(--navy); margin: 48px 0 16px; letter-spacing: -0.01em; }
.prose h3 { font-size: 21px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.prose ul, .prose ol { margin: 0 0 20px 24px; }
.prose li { font-size: 17px; line-height: 1.7; color: var(--text); margin-bottom: 8px; }
.prose strong { font-weight: 700; color: var(--navy); }
.prose blockquote { border-left: 3px solid var(--orange); padding: 14px 20px; margin: 24px 0; background: var(--cream); border-radius: var(--radius); font-size: 17px; color: var(--text); line-height: 1.65; }

/* ── 2-COL SPLIT (image + copy) ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse > *:first-child { order: 2; }
.split-media { aspect-ratio: 4/3; background: linear-gradient(135deg, #1a3a5e, var(--navy)); border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.split-media::before { content: ''; position: absolute; inset: 0; opacity: 0.5; }
.split-media--restoration::before { background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=900&q=80&auto=format&fit=crop') center/cover; }
.split-media--team::before { background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=900&q=80&auto=format&fit=crop') center/cover; }
.split-media--house::before { background: url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=900&q=80&auto=format&fit=crop') center/cover; }
.split-media--worker::before { background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=900&q=80&auto=format&fit=crop') center/cover; }
.split-media-card { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(9,27,46,0.88); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 16px 20px; color: #fff; z-index: 1; }
.split-media-card strong { display: block; color: #f4b478; font-size: 22px; font-weight: 700; }
.split-media-card span { display: block; font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ── FEATURE LIST (service detail) ── */
.feature-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.feature-list li svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; }
.feature-list li strong { display: block; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.feature-list li span { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ── PROCESS / TIMELINE (service detail) ── */
.timeline { position: relative; padding-left: 36px; }
.timeline::before { content: ''; position: absolute; top: 8px; bottom: 8px; left: 11px; width: 2px; background: linear-gradient(180deg, var(--orange), var(--orange), var(--navy)); opacity: 0.4; }
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; top: 4px; left: -30px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--navy); }
.timeline-item:nth-child(1)::before { border-color: var(--orange); }
.timeline-item:nth-child(2)::before { border-color: var(--orange); }
.timeline-item h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.timeline-item p { font-size: 15px; line-height: 1.65; color: var(--text-muted); }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.form-row--single { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.01em; }
.form-field input, .form-field select, .form-field textarea { font-family: inherit; font-size: 15px; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; color: var(--text); transition: border-color .15s ease, box-shadow .15s ease; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(14,42,71,0.12); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-required::after { content: ' *'; color: var(--orange); }
.form-consent { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 8px 0 16px; }
.form-consent a { color: var(--navy); text-decoration: underline; }

.contact-info h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 18px; }
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.contact-info-item { display: flex; gap: 14px; }
.contact-info-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--cream); color: var(--navy); display: flex; align-items: center; justify-content: center; }
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-item strong { display: block; color: var(--navy); font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.contact-info-item span, .contact-info-item a { display: block; font-size: 15px; color: var(--text); line-height: 1.55; }
.contact-info-item a:hover { color: var(--navy); text-decoration: underline; }
.contact-info-emergency { margin-top: 28px; padding: 22px 24px; background: var(--navy); color: #fff; border-radius: var(--radius-lg); }
.contact-info-emergency strong { display: block; color: #f4b478; text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; margin-bottom: 8px; }
.contact-info-emergency .phone { font-size: 28px; font-weight: 700; color: #fff; line-height: 1.1; display: block; }
.contact-info-emergency span { display: block; margin-top: 6px; font-size: 14px; color: rgba(255,255,255,0.75); }

/* ── MAP PLACEHOLDER ── */
.map-embed { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, #c7d3df 0%, #e9eef3 100%); border-radius: var(--radius-lg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--navy); font-weight: 600; font-size: 15px; position: relative; overflow: hidden; }
.map-embed::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(14,42,71,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(14,42,71,0.08) 1px, transparent 1px); background-size: 32px 32px; }
.map-embed-pin { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; background: #fff; padding: 10px 16px; border-radius: 999px; box-shadow: var(--shadow-md); }
.map-embed-pin svg { width: 18px; height: 18px; color: var(--orange); }

/* ── CITY PAGE LOCAL BLOCK ── */
.local-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.local-stat { background: var(--cream); border-left: 3px solid var(--orange); border-radius: var(--radius); padding: 22px 24px; }
.local-stat-num { font-size: 32px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; letter-spacing: -0.01em; }
.local-stat-label { font-size: 14px; color: var(--text-muted); }

.nearby-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.nearby-grid a { display: block; padding: 16px 18px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); color: var(--navy); font-weight: 600; font-size: 14.5px; transition: all .2s ease; }
.nearby-grid a:hover { border-color: var(--navy); background: var(--navy); color: #fff; transform: translateY(-1px); }
.nearby-grid a small { display: block; font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.nearby-grid a:hover small { color: rgba(255,255,255,0.7); }

/* ── CTA PILL ROW (light, used inside content) ── */
.cta-pill { display: flex; align-items: center; gap: 16px; padding: 24px 28px; background: var(--cream); border-left: 3px solid var(--orange); border-radius: var(--radius); margin: 32px 0; flex-wrap: wrap; }
.cta-pill p { flex-grow: 1; font-size: 16px; color: var(--text); line-height: 1.55; margin: 0; }
.cta-pill strong { color: var(--navy); font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 44px; }
  .page-hero h1 { font-size: 36px; }
  .services-grid, .insurance-list { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .reviews-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .insurance-grid, .areas-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse > *:first-child { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trustbar-inner { grid-template-columns: 1fr 1fr; gap: 18px; }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  body { padding-bottom: 64px; }
  .container { padding: 0 20px; }
  .topbar { display: none; }
  .nav-inner { padding: 0 20px; height: 68px; }
  .brand-img { height: 44px; }
  .nav-links { display: none; }
  .nav-actions .btn--orange, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-mobile { display: none; position: fixed; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 24px 20px; z-index: 99; flex-direction: column; gap: 16px; box-shadow: var(--shadow-md); }
  .nav.is-open .nav-mobile { display: flex; }
  .nav-mobile a { font-size: 17px; font-weight: 600; color: var(--navy); padding: 10px 0; border-bottom: 1px solid var(--border); }
  .nav-mobile .btn { margin-top: 8px; }
  .section { padding: 64px 0; }
  .section-heading { font-size: 28px; }
  .hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 36px; }
  .page-hero { padding: 48px 0 56px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero p { font-size: 17px; }
  .hero-sub { font-size: 17px; }
  .hero-photo { aspect-ratio: 5/4; max-height: 320px; }
  .services-grid, .why-grid, .reviews-grid, .steps, .insurance-list, .feature-list, .local-stats { grid-template-columns: 1fr; }
  .trustbar-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .final-cta { padding: 56px 24px; }
  .final-cta h2 { font-size: 30px; }
  .final-cta-phone { font-size: 30px; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .prose h2 { font-size: 24px; }
  .mobile-call-bar { display: block; }
  .nearby-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
