:root {
    --brand: #003334;
    --brand-light: #0c5a5c;
    --accent: #ef9f1d;
    --ink: #172322;
    --muted: #62716f;
    --line: #d8e1df;
    --canvas: #f4f7f6;
    --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, "Segoe UI", Arial, sans-serif; letter-spacing: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header { position: relative; z-index: 10; border-bottom: 1px solid rgba(0, 51, 52, .1); background: var(--white); }
.header-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 174px; height: 60px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: #304644; font-size: .9rem; font-weight: 700; text-decoration: none; }
.site-nav a:hover { color: var(--brand-light); }
.site-nav .portal-link { min-height: 40px; padding: 11px 16px; border-radius: 6px; color: var(--white); background: var(--brand); }
.site-nav .portal-link:hover { color: var(--white); background: var(--brand-light); }

.service-hero { position: relative; min-height: clamp(560px, 76vh, 700px); overflow: hidden; color: var(--white); background-image: var(--hero-image); background-position: center; background-size: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0, 35, 36, .78); }
.hero-inner { position: relative; z-index: 1; display: flex; min-height: inherit; flex-direction: column; justify-content: center; padding: 68px 0 78px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; color: rgba(255, 255, 255, .72); font-size: .76rem; font-weight: 700; }
.breadcrumbs a { text-decoration: none; }
.eyebrow, .section-label { margin: 0 0 13px; color: var(--brand-light); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.service-hero .eyebrow { color: var(--accent); }
.service-hero h1 { max-width: 900px; margin: 0; font-size: clamp(2.5rem, 5.4vw, 4.8rem); line-height: 1.03; font-weight: 820; }
.hero-lead { max-width: 760px; margin: 26px 0 0; color: rgba(255, 255, 255, .88); font-size: 1.12rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 6px; padding: 12px 19px; font-size: .88rem; font-weight: 800; text-decoration: none; }
.button-accent { color: #102c2b; background: var(--accent); }
.button-accent:hover { background: #f4b33f; }
.button-ghost { border-color: rgba(255, 255, 255, .52); color: var(--white); background: rgba(0, 0, 0, .08); }
.button-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .1); }

.local-strip { border-bottom: 1px solid var(--line); background: var(--canvas); }
.local-strip-inner { display: grid; min-height: 82px; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 20px; }
.local-strip strong { color: var(--brand); }
.local-strip span { padding-left: 22px; border-left: 1px solid #c9d5d2; color: #50615f; font-size: .9rem; }

.content-band { padding: 96px 0; }
.overview-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 90px; align-items: start; }
.content-band h2, .deliverables-band h2, .faq-band h2, .related-band h2, .cta-band h2 { margin: 0; color: var(--brand); font-size: clamp(2rem, 3.4vw, 3.25rem); line-height: 1.12; }
.prose p { margin: 0; color: var(--muted); font-size: 1.03rem; line-height: 1.8; }
.prose p + p { margin-top: 20px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; margin-top: 72px; }
.benefit { padding-top: 22px; border-top: 3px solid var(--accent); }
.benefit > span, .process-grid article > span { color: var(--brand-light); font-size: .77rem; font-weight: 800; }
.benefit h3, .process-grid h3 { margin: 22px 0 10px; color: var(--ink); font-size: 1.15rem; }
.benefit p, .process-grid p { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.65; }

.deliverables-band { padding: 88px 0; color: var(--white); background: var(--brand); }
.deliverables-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr); gap: 90px; align-items: center; }
.deliverables-band h2, .cta-band h2 { color: var(--white); }
.deliverables-band p { max-width: 650px; color: rgba(255, 255, 255, .74); line-height: 1.7; }
.section-label-light { color: var(--accent); }
.deliverables-band ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, .2); list-style: none; }
.deliverables-band li { padding: 18px 8px 18px 0; border-bottom: 1px solid rgba(255, 255, 255, .2); color: rgba(255, 255, 255, .9); font-size: .92rem; font-weight: 700; }
.deliverables-band li:nth-child(even) { padding-left: 22px; border-left: 1px solid rgba(255, 255, 255, .2); }

.process-band { background: var(--canvas); }
.process-band h2 { max-width: 780px; }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px; margin-top: 60px; }
.process-grid article { padding-top: 22px; border-top: 1px solid #b9c7c4; }

.faq-band { padding: 96px 0; }
.faq-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 100px; }
.faq-intro { max-width: 430px; color: var(--muted); line-height: 1.7; }
.faq-band details { border-top: 1px solid var(--line); }
.faq-band details:last-child { border-bottom: 1px solid var(--line); }
.faq-band summary { padding: 24px 38px 24px 0; color: var(--ink); font-weight: 800; cursor: pointer; }
.faq-band details p { margin: -8px 0 24px; color: var(--muted); line-height: 1.7; }

.related-band { padding: 88px 0; border-top: 1px solid var(--line); background: #fbfcfc; }
.related-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 44px; border-top: 1px solid var(--line); }
.related-links a { display: flex; min-height: 190px; flex-direction: column; justify-content: space-between; padding: 26px 28px; border-bottom: 1px solid var(--line); text-decoration: none; }
.related-links a + a { border-left: 1px solid var(--line); }
.related-links span { color: var(--brand-light); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.related-links strong { color: var(--ink); font-size: 1.15rem; line-height: 1.35; }
.related-links small { color: var(--brand-light); font-weight: 800; }
.related-links a:hover { background: var(--white); }

.cta-band { padding: 66px 0; background: #1d2928; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 42px; }
.cta-inner h2 { max-width: 760px; }
.cta-inner .button { flex: 0 0 auto; }

.site-footer { padding: 70px 0 22px; color: rgba(255, 255, 255, .74); background: #082827; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .9fr .7fr; gap: 70px; }
.footer-grid img { width: 174px; height: 60px; object-fit: contain; object-position: left; }
.footer-grid p { max-width: 430px; line-height: 1.7; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-grid strong { color: var(--white); }
.footer-grid a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { margin-top: 52px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .78rem; }

@media (max-width: 900px) {
    .site-nav > a:not(.portal-link) { display: none; }
    .overview-grid, .deliverables-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .benefit-grid, .process-grid { grid-template-columns: 1fr 1fr; }
    .related-links { grid-template-columns: 1fr; }
    .related-links a + a { border-left: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .shell { width: min(100% - 28px, 1180px); }
    .header-inner { min-height: 68px; }
    .brand img { width: 142px; height: 49px; }
    .site-nav .portal-link { padding: 10px 12px; font-size: .78rem; }
    .service-hero { min-height: 74svh; }
    .hero-inner { padding: 48px 0 58px; }
    .breadcrumbs { margin-bottom: 26px; }
    .service-hero h1 { font-size: 2.42rem; }
    .hero-lead { font-size: 1rem; line-height: 1.6; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .local-strip-inner { min-height: auto; grid-template-columns: 1fr; gap: 0; padding: 18px 0; }
    .local-strip span { margin-top: 10px; padding: 10px 0 0; border-top: 1px solid #c9d5d2; border-left: 0; }
    .content-band, .faq-band, .related-band { padding: 68px 0; }
    .content-band h2, .deliverables-band h2, .faq-band h2, .related-band h2, .cta-band h2 { font-size: 2rem; }
    .benefit-grid, .process-grid, .deliverables-band ul { grid-template-columns: 1fr; }
    .benefit-grid { margin-top: 52px; }
    .deliverables-band { padding: 68px 0; }
    .deliverables-band li:nth-child(even) { padding-left: 0; border-left: 0; }
    .cta-inner { align-items: stretch; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }
}
