:root {
  --navy: #0b2d63;
  --navy-deep: #071e43;
  --blue: #2163c3;
  --red: #d63235;
  --red-dark: #b92327;
  --ink: #162238;
  --muted: #5b6678;
  --soft: #f4f7fb;
  --line: #dce4ef;
  --white: #fff;
  --success: #148052;
  --container: 1180px;
  --radius: 20px;
  --shadow: 0 22px 55px rgba(11, 45, 99, .13);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(33, 99, 195, .38); outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(56px, 6vw, 76px) 0; }
.section-soft { background: var(--soft); }
.section-dark { color: var(--white); background: linear-gradient(135deg, var(--navy-deep), #10458f); overflow: hidden; }
.section-heading { max-width: 720px; margin: 0 auto 34px; text-align: center; }
.section-heading-left { margin: 0; text-align: left; }
.section-heading h2, .commercial-copy h2, .about-copy h2, .quote-copy h2 { margin: 0 0 16px; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.08; letter-spacing: -.04em; text-wrap: balance; }
.section-heading > p:last-child, .commercial-copy > p, .about-copy > p, .quote-copy > p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.section-dark .commercial-copy > p, .quote-copy > p { color: rgba(255,255,255,.76); }
.eyebrow { margin: 0 0 12px; color: var(--red); font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow-light { color: #ffd1d2; }
.skip-link { position: fixed; z-index: 9999; top: -100px; left: 12px; padding: 10px 14px; color: #fff; background: #000; border-radius: 8px; }
.skip-link:focus { top: 12px; }
.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; }

.utility-bar { color: rgba(255,255,255,.88); background: var(--navy-deep); font-size: .86rem; }
.utility-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-inner p { margin: 0; }
.utility-links { display: flex; align-items: center; gap: 22px; }
.utility-links a:hover { color: #fff; text-decoration: underline; }
.navbar { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(220,228,239,.9); backdrop-filter: blur(14px); }
.nav-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { flex: 0 0 auto; }
.brand img { width: 132px; height: 60px; object-fit: contain; object-position: left center; }
.nav-menu { display: flex; align-items: center; gap: 28px; color: #26364f; font-size: .95rem; font-weight: 750; }
.nav-menu > a:not(.button) { padding: 8px 0; border-bottom: 2px solid transparent; }
.nav-menu > a:not(.button):hover, .nav-menu > a:not(.button):focus-visible { color: var(--navy); border-color: var(--red); }
.nav-toggle { display: none; width: 46px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 11px; background: #fff; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { width: 22px; height: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; color: #fff; background: var(--red); border: 2px solid var(--red); border-radius: 10px; font-weight: 800; line-height: 1.2; cursor: pointer; box-shadow: 0 10px 24px rgba(214,50,53,.18); transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 14px 28px rgba(214,50,53,.25); }
.button-small { min-height: 43px; padding-inline: 18px; border-radius: 9px; }
.button-outline { color: var(--navy); background: transparent; border-color: var(--navy); box-shadow: none; }
.button-outline:hover { color: #fff; background: var(--navy); border-color: var(--navy); }
.button-light { color: var(--navy); background: #fff; border-color: #fff; box-shadow: none; }
.button-light:hover { color: #fff; background: transparent; border-color: #fff; }
.text-link { display: inline-flex; gap: 8px; margin-top: 30px; color: var(--navy); font-weight: 800; border-bottom: 2px solid rgba(214,50,53,.5); }

.hero { position: relative; overflow: hidden; padding: clamp(42px, 5vw, 64px) 0; background: #fff; }
.hero::after { display: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 5vw, 58px); align-items: center; }
.hero h1 { max-width: 600px; margin: 0 0 18px; color: var(--navy); font-size: clamp(2.8rem, 5vw, 4.25rem); line-height: 1; letter-spacing: -.055em; text-wrap: balance; }
.hero-lead { max-width: 620px; margin: 0 0 30px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 0; padding: 0; list-style: none; color: #3b4960; font-size: .92rem; font-weight: 700; }
.trust-list li { position: relative; padding-left: 20px; }
.trust-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.hero-visual { position: relative; padding-bottom: 0; }
.hero-image { padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.hero-image img { width: 100%; aspect-ratio: 1360 / 795; object-fit: contain; border-radius: 16px; }
.availability-card { position: absolute; right: 24px; bottom: 0; max-width: 340px; display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; color: #fff; background: var(--navy); border: 1px solid rgba(255,255,255,.15); border-radius: 14px; box-shadow: 0 16px 34px rgba(7,30,67,.25); }
.availability-card p, .availability-card strong, .availability-card span { display: block; margin: 0; }
.availability-card span { color: rgba(255,255,255,.72); font-size: .84rem; }
.status-dot { flex: 0 0 auto; width: 9px; height: 9px; margin-top: 8px; background: #58d39a; border-radius: 50%; box-shadow: 0 0 0 5px rgba(88,211,154,.14); }

.service-intro { color: #fff; background: var(--navy); }
.service-intro-grid { min-height: 104px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 44px; }
.service-intro-grid p { margin: 0; color: rgba(255,255,255,.62); font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.service-intro-grid div { display: flex; justify-content: space-between; gap: 22px; font-weight: 750; }
.service-intro-grid span { position: relative; padding-left: 16px; }
.service-intro-grid span::before { content: ""; position: absolute; top: .72em; left: 0; width: 5px; height: 5px; background: var(--red); border-radius: 50%; }

.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service-card { min-height: 100%; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(11,45,99,.055); }
.service-card-primary { border-top: 4px solid var(--red); }
.service-number { display: block; margin-bottom: 24px; color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .1em; }
.service-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.35rem; line-height: 1.25; }
.service-card p { margin: 0 0 16px; color: var(--muted); }
.service-card ul { margin: 0; padding: 0; list-style: none; color: #3a485d; font-size: .93rem; }
.service-card li { position: relative; padding: 7px 0 7px 19px; border-top: 1px solid #eef2f7; }
.service-card li::before { content: ""; position: absolute; top: 17px; left: 2px; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; }
.service-card-contact { display: flex; flex-direction: column; justify-content: center; color: #fff; background: var(--navy); border-color: var(--navy); }
.service-card-contact h3 { color: #fff; font-size: 1.7rem; }
.service-card-contact p:not(.eyebrow) { color: rgba(255,255,255,.74); }
.service-card-contact a { align-self: flex-start; margin-top: 8px; color: #fff; font-weight: 800; border-bottom: 2px solid var(--red); }

.commercial-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(50px, 7vw, 88px); align-items: center; }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin: 28px 0 32px; }
.check-grid span { position: relative; padding: 12px 12px 12px 34px; color: rgba(255,255,255,.9); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; font-size: .92rem; }
.check-grid span::before { content: "✓"; position: absolute; left: 12px; color: #74dda8; font-weight: 900; }
.commercial-image { margin: 0; padding: 10px; background: #fff; border-radius: 22px; box-shadow: 0 26px 55px rgba(0,0,0,.25); transform: rotate(1deg); }
.commercial-image img { width: 100%; aspect-ratio: 1586 / 894; object-fit: contain; border-radius: 14px; }
.commercial-image figcaption { padding: 12px 8px 4px; color: #506078; font-size: .82rem; }

.about-grid { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: clamp(50px, 8vw, 100px); align-items: center; }
.flyer-frame { max-width: 400px; justify-self: center; padding: 8px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 14px 34px rgba(11,45,99,.1); }
.flyer-frame img { width: 100%; aspect-ratio: 3477 / 4500; object-fit: contain; border-radius: 14px; }
.principles { margin-top: 30px; border-top: 1px solid var(--line); }
.principles article { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.principles article > span { color: var(--red); font-size: .8rem; font-weight: 900; }
.principles h3 { margin: 0 0 4px; color: var(--navy); font-size: 1.08rem; }
.principles p { margin: 0; color: var(--muted); }

.area-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 100px); align-items: start; }
.section-heading-left .button { margin-top: 28px; }
.area-list { border-top: 1px solid var(--line); }
.area-list article { display: grid; grid-template-columns: 150px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.area-list span { color: var(--navy); font-size: 1.15rem; font-weight: 850; }
.area-list p { margin: 0; color: var(--muted); }

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0; margin: 0; padding: 0; list-style: none; }
.process-grid li { position: relative; padding: 0 28px; border-left: 1px solid var(--line); }
.process-grid li:first-child { padding-left: 0; border-left: 0; }
.process-grid li:last-child { padding-right: 0; }
.process-grid li > span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 18px; color: #fff; background: var(--navy); border-radius: 50%; font-weight: 850; }
.process-grid h3 { margin: 0 0 7px; color: var(--navy); font-size: 1.08rem; }
.process-grid p { margin: 0; color: var(--muted); font-size: .93rem; }

.quote-section { color: #fff; background: linear-gradient(135deg, var(--navy-deep), #0e438d 64%, #185ab2); }
.quote-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(46px, 7vw, 84px); align-items: start; }
.contact-list { margin-top: 34px; border-top: 1px solid rgba(255,255,255,.16); }
.contact-list > * { display: block; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-list span, .contact-list strong { display: block; }
.contact-list span { color: rgba(255,255,255,.6); font-size: .77rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-list strong { color: #fff; overflow-wrap: anywhere; }
.contact-list a:hover strong { text-decoration: underline; }
.quote-form { padding: clamp(24px, 4vw, 38px); color: var(--ink); background: #fff; border-radius: 22px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: block; margin-bottom: 16px; color: #2b374a; font-size: .9rem; font-weight: 750; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: #fff; border: 1px solid #cbd6e5; border-radius: 9px; outline: none; transition: border-color .18s ease, box-shadow .18s ease; }
.quote-form label > input, .quote-form label > select, .quote-form label > textarea { margin-top: 7px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(33,99,195,.12); }
.quote-form textarea { min-height: 120px; resize: vertical; }
.consent { display: grid !important; grid-template-columns: auto 1fr; gap: 7px; align-items: start; font-weight: 500 !important; }
.quote-form .consent input { width: 18px; height: 18px; margin-top: 3px; }
.submit-button { width: 100%; }
.form-note { margin: 12px 0 0; color: var(--muted); text-align: center; font-size: .84rem; }
.form-note a { color: var(--navy); font-weight: 800; text-decoration: underline; }
.form-status { min-height: 24px; margin: 8px 0 0; text-align: center; font-size: .9rem; font-weight: 750; }
.form-status.success { color: var(--success); }
.form-status.error { color: #b42318; }

.cta-strip { color: #fff; background: var(--red); }
.cta-inner { min-height: 210px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta-inner h2 { max-width: 780px; margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.05; letter-spacing: -.04em; text-wrap: balance; }
.site-footer { color: rgba(255,255,255,.7); background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr 1fr 1.1fr; gap: 34px; padding: 48px 0 34px; }
.footer-brand img { width: 170px; height: 98px; object-fit: contain; background: #fff; border-radius: 10px; }
.footer-brand p { max-width: 300px; }
.footer-grid h3 { margin: 0 0 14px; color: #fff; font-size: 1rem; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid a:hover { color: #fff; text-decoration: underline; }
.footer-grid .footer-review { display: grid; grid-template-columns: 104px 1fr; align-items: center; gap: 14px; padding: 12px; color: var(--ink); background: #fff; border-radius: 12px; }
.footer-review img { width: 104px; height: 104px; }
.footer-review h3 { margin: 0 0 4px; color: var(--navy); }
.footer-review p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.4; }
.footer-review .review-link { color: var(--navy); }
.footer-review .review-link:hover { color: var(--red); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); font-size: .86rem; }
.footer-bottom > div { display: flex; gap: 24px; }

.legal-page { min-height: 70vh; padding: clamp(64px,8vw,100px) 0; }
.legal-page article { max-width: 820px; margin: auto; }
.legal-page h1 { margin: 0 0 24px; color: var(--navy); font-size: clamp(2.5rem,5vw,4rem); line-height: 1.05; letter-spacing: -.04em; }
.legal-page h2 { margin-top: 34px; color: var(--navy); }
.legal-page a:not(.button) { color: var(--blue); text-decoration: underline; }
.not-found { min-height: 100vh; display: grid; align-items: center; padding: 60px 0; background: linear-gradient(180deg,#fff,#f5f8fc); }
.not-found-grid { max-width: 760px; text-align: center; }
.not-found .brand { display: inline-block; margin-bottom: 42px; }
.not-found .brand img { width: 180px; height: auto; }
.not-found h1 { margin: 0 0 18px; color: var(--navy); font-size: clamp(3rem,7vw,5.5rem); line-height: .98; letter-spacing: -.055em; }
.not-found p:not(.eyebrow) { color: var(--muted); font-size: 1.12rem; }
.not-found .hero-actions { justify-content: center; margin-top: 30px; }

.nav-menu a[aria-current="page"]:not(.button) { color: var(--navy); border-color: var(--red); }
.nav-menu .button[aria-current="page"] { background: var(--red-dark); border-color: var(--red-dark); }

/* Home */
.home-services, .home-proof, .home-cta { padding: clamp(56px, 6vw, 76px) 0; }
.home-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 42px; }
.home-section-heading h2, .proof-copy h2, .home-cta h2 { max-width: 720px; margin: 0; color: var(--navy); font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.08; letter-spacing: -.04em; text-wrap: balance; }
.home-section-heading .text-link { flex: 0 0 auto; margin: 0 0 7px; }
.home-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.home-card-grid article { padding: 26px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 8px 22px rgba(11,45,99,.045); }
.home-card-grid article > span { display: block; margin-bottom: 20px; color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .1em; }
.home-card-grid h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.35rem; }
.home-card-grid p { margin: 0 0 22px; color: var(--muted); }
.home-card-grid a { color: var(--navy); font-weight: 800; border-bottom: 2px solid rgba(214,50,53,.5); }
.home-proof { background: var(--soft); }
.proof-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(48px, 7vw, 86px); align-items: center; }
.proof-image { padding: 9px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.proof-image img { width: 100%; border-radius: 14px; }
.proof-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.clean-list { margin: 26px 0 30px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.clean-list li { position: relative; padding: 14px 0 14px 28px; border-bottom: 1px solid var(--line); font-weight: 700; }
.clean-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.home-area { padding: 0 0 clamp(56px,6vw,76px); background: #fff; }
.area-banner { display: flex; align-items: center; justify-content: space-between; gap: 42px; padding: clamp(30px,4vw,46px); color: #fff; background: var(--navy); border-radius: 18px; }
.area-banner h2 { max-width: 760px; margin: 0 0 10px; font-size: clamp(1.8rem,3vw,2.55rem); line-height: 1.08; letter-spacing: -.035em; text-wrap: balance; }
.area-banner p:last-child { margin: 0; color: rgba(255,255,255,.75); }
.area-banner .button { flex: 0 0 auto; }
.home-cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 48px; }
.home-cta-inner > div:first-child > p:last-child { margin-bottom: 0; color: var(--muted); }
.home-cta-actions { display: flex; min-width: 230px; flex-direction: column; align-items: center; gap: 12px; }
.home-cta-actions > a:last-child { color: var(--navy); font-size: .9rem; font-weight: 750; text-decoration: underline; }

/* Interior pages */
.page-hero { padding: clamp(50px,6vw,72px) 0; background: var(--soft); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(40px,6vw,76px); align-items: center; }
.page-hero-simple { max-width: 820px; }
.page-hero h1, .contact-intro h1 { max-width: 800px; margin: 0 0 18px; color: var(--navy); font-size: clamp(2.7rem,5vw,4.25rem); line-height: 1; letter-spacing: -.055em; text-wrap: balance; }
.page-hero-grid > div:first-child > p:last-child, .about-hero-grid > div:first-child > p:last-child, .contact-heading > p:last-child { max-width: 720px; margin: 0; color: var(--muted); font-size: 1.15rem; }
.page-hero-note { padding: 22px; color: #fff; background: var(--navy); border-radius: 12px; box-shadow: 0 12px 28px rgba(11,45,99,.14); }
.page-hero-note strong { font-size: 1.08rem; }
.page-hero-note p { margin: 6px 0 18px; color: rgba(255,255,255,.72); }
.page-hero-note a { font-weight: 800; border-bottom: 2px solid var(--red); }

.service-detail { padding: clamp(56px,6vw,76px) 0; }
.service-detail-soft { background: var(--soft); }
.detail-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px,6vw,76px); align-items: start; }
.detail-title > span { display: block; margin-bottom: 20px; color: var(--red); font-size: .8rem; font-weight: 900; letter-spacing: .1em; }
.detail-title h2, .about-story h2, .values-section h2, .area-contact h2 { margin: 0; color: var(--navy); font-size: clamp(2rem,3.5vw,3rem); line-height: 1.08; letter-spacing: -.04em; text-wrap: balance; }
.detail-copy > p { margin: 0 0 30px; color: var(--muted); font-size: 1.08rem; }
.detail-list { border-top: 1px solid var(--line); }
.detail-list > div { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.detail-list strong { color: var(--navy); }
.detail-list span { color: var(--muted); }
.detail-copy > .button { margin-top: 30px; }
.service-visual { padding: 0 0 clamp(56px,6vw,76px); background: #fff; }
.service-visual img { width: 100%; max-height: 520px; object-fit: contain; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 14px 34px rgba(11,45,99,.1); }

.about-hero-grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(48px,8vw,100px); align-items: center; }
.about-logo-card { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.about-logo-card img { width: 100%; }
.about-story { padding: clamp(56px,6vw,76px) 0; }
.story-grid { display: grid; grid-template-columns: minmax(280px,.75fr) minmax(0,1.25fr); gap: clamp(50px,8vw,100px); align-items: center; }
.story-grid > div:last-child > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.values-section { padding: clamp(56px,6vw,76px) 0; background: var(--soft); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.values-grid article { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.values-grid h3 { margin: 0 0 8px; color: var(--navy); }
.values-grid p { margin: 0; color: var(--muted); }
.page-cta { color: #fff; background: var(--red); }
.page-cta-inner { min-height: 170px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.page-cta h2 { margin: 0; font-size: clamp(2.1rem,4vw,3.35rem); line-height: 1.05; letter-spacing: -.04em; }

.county-section { padding: clamp(56px,6vw,76px) 0; }
.county-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.county-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 8px 22px rgba(11,45,99,.045); }
.county-grid span { color: var(--red); font-size: .8rem; font-weight: 900; }
.county-grid h2 { margin: 28px 0 10px; color: var(--navy); font-size: 1.5rem; }
.county-grid p { margin: 0; color: var(--muted); }
.area-contact { padding: clamp(56px,6vw,76px) 0; background: var(--soft); }
.area-contact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(50px,8vw,100px); align-items: center; }
.area-contact-grid > div:first-child > p:last-child { color: var(--muted); font-size: 1.08rem; }
.area-contact-card { display: grid; padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.area-contact-card span { margin-top: 16px; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.area-contact-card strong, .area-contact-card > a:not(.button) { color: var(--navy); font-size: 1.2rem; font-weight: 800; }
.area-contact-card .button { margin-top: 26px; }

.contact-page { padding: clamp(50px,6vw,72px) 0; background: var(--soft); }
.contact-page-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(46px,7vw,84px); align-items: start; }
.direct-contact { margin-top: 34px; border-top: 1px solid var(--line); }
.direct-contact > * { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); }
.direct-contact span, .direct-contact strong { display: block; }
.direct-contact span { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.direct-contact strong { color: var(--navy); overflow-wrap: anywhere; }
.direct-contact a:hover strong { text-decoration: underline; }
.direct-contact .direct-schedule strong { color: var(--red); }
.footer-grid .schedule-link { color: #ffd1d2; font-weight: 800; }
.contact-page .quote-form { border: 1px solid var(--line); }
.contact-expect { padding: clamp(56px,6vw,76px) 0; }

@media (max-width: 1000px) {
  .nav-toggle { display: flex; }
  .nav-menu { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; max-height: calc(100vh - 120px); overflow: auto; padding: 18px max(20px, calc((100% - var(--container))/2)); background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 20px 35px rgba(11,45,99,.14); flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-menu.open { display: flex; }
  .nav-menu > a { padding: 11px 0 !important; }
  .nav-menu .button { margin-top: 8px; }
  .hero-grid, .commercial-grid, .about-grid, .area-layout, .quote-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 820px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-intro-grid { grid-template-columns: 1fr; gap: 8px; padding: 25px 0; }
  .service-intro-grid div { justify-content: flex-start; flex-wrap: wrap; }
  .commercial-image { max-width: 820px; transform: none; }
  .about-grid { grid-template-columns: .8fr 1.2fr; gap: 48px; }
  .area-layout { grid-template-columns: .85fr 1.15fr; gap: 48px; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 32px 0; }
  .process-grid li:nth-child(3) { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid, .page-hero-grid, .detail-grid, .about-hero-grid, .story-grid, .area-contact-grid, .contact-page-grid { grid-template-columns: 1fr; }
  .proof-image, .service-visual img { max-width: 820px; }
  .about-logo-card { max-width: 620px; }
  .values-grid, .county-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .utility-inner { min-height: 42px; justify-content: center; }
  .utility-inner p, .utility-links a:last-child { display: none; }
  .utility-links { gap: 0; }
  .utility-links a:first-child::before { content: "Call "; }
  .nav-inner { min-height: 72px; }
  .brand img { width: 132px; height: 60px; }
  .hero { padding: 40px 0 46px; }
  .hero h1 { font-size: clamp(2.5rem,11vw,3.3rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { padding-bottom: 0; }
  .hero-image { padding: 6px; border-radius: 17px; }
  .hero-image img { border-radius: 11px; }
  .availability-card { position: relative; right: auto; bottom: auto; max-width: none; margin: -8px 10px 0; border-radius: 0 0 13px 13px; }
  .trust-list { display: grid; gap: 8px; }
  .service-intro-grid div { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
  .services-grid, .about-grid, .area-layout, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-review { max-width: 340px; }
  .service-card { padding: 26px; }
  .about-copy { order: -1; }
  .flyer-frame { max-width: 420px; }
  .area-list article { grid-template-columns: 1fr; gap: 6px; }
  .process-grid { gap: 0; }
  .process-grid li, .process-grid li:first-child, .process-grid li:nth-child(3) { display: grid; grid-template-columns: 44px 1fr; column-gap: 16px; padding: 20px 0; border-left: 0; border-top: 1px solid var(--line); }
  .process-grid li > span { grid-row: 1 / span 2; margin: 0; }
  .process-grid h3 { margin-top: 5px; }
  .process-grid p { grid-column: 2; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 24px 18px; }
  .check-grid { grid-template-columns: 1fr; }
  .cta-inner, .footer-bottom { align-items: flex-start; flex-direction: column; padding-top: 34px; padding-bottom: 34px; }
  .footer-bottom > div { flex-wrap: wrap; }
  .home-section-heading, .home-cta-inner, .area-banner, .page-cta-inner { align-items: flex-start; flex-direction: column; }
  .home-section-heading .text-link { margin: 0; }
  .home-card-grid, .values-grid, .county-grid { grid-template-columns: 1fr; }
  .home-cta-actions { width: 100%; align-items: stretch; }
  .home-cta-actions .button { width: 100%; }
  .area-banner { border-radius: 20px; }
  .area-banner .button, .page-cta .button { width: 100%; }
  .detail-list > div { grid-template-columns: 1fr; gap: 4px; }
  .page-hero h1, .contact-intro h1 { font-size: clamp(2.55rem,11vw,3.5rem); }
  .county-grid article { min-height: auto; }
  .county-grid h2 { margin-top: 36px; }
  .contact-intro { display: contents; }
  .contact-heading { order: 1; }
  .contact-page .quote-form { order: 2; }
  .direct-contact { order: 3; margin-top: 8px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 2.5rem; }
  .service-intro-grid div { grid-template-columns: 1fr; }
  .section-heading h2, .commercial-copy h2, .about-copy h2, .quote-copy h2 { font-size: 2rem; }
}

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