:root {
    --ink: #050505;
    --paper: #fff;
    --fog: #f5f5f5;
    --line: #dedede;
}

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

html {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    overflow-wrap: break-word;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg,
video,
iframe {
    display: block;
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: 16px;
}

main,
section,
header,
footer,
.container,
.header-inner,
.service-grid,
.area-grid,
.steps,
.reason-grid,
.footer-grid,
.two-col,
.contact-grid,
.cta-grid {
    min-width: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 10px;
}

.brand {
    min-width: 0;
    flex: 1 1 auto;
}

.brand a {
    display: inline-block;
}

.brand strong {
    display: block;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -.02em;
    overflow-wrap: normal;
}

.brand span {
    display: block;
    margin-top: 3px;
    color: rgba(0,0,0,.55);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.custom-logo {
    width: auto;
    max-height: 44px;
}

.nav,
.header-actions {
    display: none;
}

.nav {
    order: 5;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: 14px;
    font-weight: 700;
}

.nav.is-open {
    display: block;
}

.primary-menu {
    display: grid;
    width: 100%;
    max-width: 100%;
    gap: 0;
    margin: 0;
    padding: 8px 0 14px;
    list-style: none;
}

.primary-menu li {
    position: relative;
    min-width: 0;
}

.primary-menu a {
    display: block;
    border-top: 1px solid var(--line);
    padding: 13px 0;
    overflow-wrap: anywhere;
}

.primary-menu .sub-menu {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0 0 0 14px;
    list-style: none;
}

.primary-menu .sub-menu a {
    font-size: 13px;
}

.header-actions {
    flex: 0 0 auto;
    gap: 8px;
}

.mobile-call {
    flex: 0 0 auto;
    border-radius: 2px;
    background: var(--ink);
    color: var(--paper);
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 800;
}

.menu-toggle {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    border-radius: 2px;
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
}

.menu-toggle span[aria-hidden="true"],
.menu-toggle span[aria-hidden="true"]::before,
.menu-toggle span[aria-hidden="true"]::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    content: "";
}

.menu-toggle span[aria-hidden="true"] {
    position: relative;
}

.menu-toggle span[aria-hidden="true"]::before,
.menu-toggle span[aria-hidden="true"]::after {
    position: absolute;
    left: 0;
}

.menu-toggle span[aria-hidden="true"]::before {
    top: -6px;
}

.menu-toggle span[aria-hidden="true"]::after {
    top: 6px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    max-width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    border-radius: 2px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    white-space: normal;
}

.btn-dark {
    background: var(--ink);
    color: var(--paper);
}

.btn-light {
    background: var(--paper);
    color: var(--ink);
}

.btn-small {
    min-height: 40px;
    padding: 9px 15px;
}

.btn.invert {
    border-color: var(--paper);
    background: var(--paper);
    color: var(--ink);
}

.btn.invert-outline {
    border-color: var(--paper);
    background: transparent;
    color: var(--paper);
}

.hero {
    position: relative;
    min-height: calc(100svh - 64px);
    overflow: hidden;
    background: var(--ink);
    color: var(--paper);
}

.service-hero {
    min-height: 560px;
}

.hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: .48;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.5), rgba(0,0,0,.82));
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: inherit;
    flex-direction: column;
    justify-content: center;
    padding-block: 64px;
}

.eyebrow {
    margin: 0 0 14px;
    color: rgba(0,0,0,.5);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: rgba(255,255,255,.66);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 9vw, 76px);
    line-height: .98;
    letter-spacing: -.03em;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

h2 {
    font-size: clamp(32px, 6vw, 52px);
    line-height: 1;
    letter-spacing: -.03em;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

h1,
h2,
h3,
.service-card strong {
    font-weight: 900;
}

.hero p:not(.eyebrow) {
    max-width: 680px;
    color: rgba(255,255,255,.8);
    font-size: 19px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    max-width: 100%;
}

.section {
    padding: 58px 0;
}

.section > .container {
    display: block;
}

.muted {
    background: var(--fog);
}

.section-head {
    max-width: 760px;
    margin-bottom: 32px;
}

.section-head .eyebrow {
    margin-bottom: 12px;
}

.lead {
    max-width: 780px;
    margin-bottom: 32px;
    color: rgba(0,0,0,.7);
    font-size: 17px;
    line-height: 1.8;
}

.service-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

.service-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--paper);
}

.service-card .media {
    display: block;
    aspect-ratio: 4 / 3;
    background: var(--fog);
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: transform .45s ease, filter .45s ease;
}

.service-card:hover img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.service-body {
    display: block;
    min-width: 0;
    padding: 20px;
}

.service-body strong {
    display: block;
    margin-bottom: 8px;
    font-size: 19px;
}

.service-body span,
.mini-card span {
    display: block;
    color: rgba(0,0,0,.66);
    font-size: 14px;
    line-height: 1.65;
}

.area-group + .area-group {
    margin-top: 34px;
}

.area-group h3 {
    margin-bottom: 16px;
    font-size: 22px;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.area-grid a {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 13px 14px;
    background: var(--paper);
    font-size: 14px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.area-grid a:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
}

.steps,
.reason-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
}

.steps article,
.reason-grid article,
.mini-card,
.info-box,
.contact-card {
    min-width: 0;
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 22px;
}

.steps span {
    color: rgba(0,0,0,.4);
    font-size: 14px;
    font-weight: 900;
}

.steps h3 {
    margin: 44px 0 0;
    font-size: 22px;
}

.faq-list {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.faq-list details {
    padding: 20px 0;
}

.faq-list details + details {
    border-top: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    cursor: pointer;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-weight: 900;
    min-width: 0;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    font-size: 28px;
    line-height: 1;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list p,
.content p,
.content-narrow p,
.contact-card p {
    color: rgba(0,0,0,.72);
    line-height: 1.85;
}

.cta {
    background: var(--ink);
    color: var(--paper);
    padding: 58px 0;
}

.cta h2 {
    margin-bottom: 16px;
}

.cta p {
    max-width: 680px;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
}

.cta strong {
    color: rgba(255,255,255,.8);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    max-width: 100%;
}

.site-footer {
    padding: 48px 0 96px;
    background: var(--ink);
    color: var(--paper);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
}

.site-footer h2,
.site-footer h3 {
    margin-bottom: 16px;
}

.site-footer h3 {
    color: rgba(255,255,255,.55);
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.site-footer p,
.site-footer a {
    display: block;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.75;
}

.site-footer a {
    margin-top: 10px;
}

.social-links,
.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.social-links a,
.footer-social-links a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 800;
}

.footer-social-links a {
    border-color: rgba(255,255,255,.24);
    margin-top: 0;
}

.mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 8px;
    border-top: 1px solid var(--line);
    background: var(--paper);
    padding: 12px;
    box-shadow: 0 -10px 35px rgba(0,0,0,.12);
}

.mobile-sticky a {
    display: flex;
    min-width: 0;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    border-radius: 2px;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}

.mobile-sticky a:first-child {
    background: var(--ink);
    color: var(--paper);
}

.two-col,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
}

.content h2 {
    margin-bottom: 22px;
    font-size: clamp(30px, 5vw, 44px);
}

.content p,
.content-narrow p {
    margin-bottom: 18px;
}

.info-box {
    display: grid;
    min-width: 0;
    gap: 12px;
    align-content: start;
}

.info-box h2 {
    margin-bottom: 6px;
    font-size: 22px;
}

.info-box a {
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(0,0,0,.22);
    text-underline-offset: 4px;
}

.sidebar {
    display: grid;
    min-width: 0;
    gap: 20px;
    align-content: start;
}

.wide-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-top: 30px;
    filter: grayscale(1);
}

.contact-card {
    display: grid;
    gap: 12px;
    align-content: start;
    font-style: normal;
}

.map-section {
    padding: 0 0 58px;
}

.map-frame {
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--fog);
    aspect-ratio: 16 / 9;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.content-narrow {
    width: 100%;
    max-width: 820px;
}

.small-note {
    margin-top: 28px;
    color: rgba(0,0,0,.62);
    font-size: 14px;
}

@media (min-width: 640px) {
    .hero-actions,
    .cta-actions {
        flex-direction: row;
    }

    .service-grid,
    .reason-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .area-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 860px) {
    .header-inner {
        flex-wrap: nowrap;
    }

    .nav,
    .header-actions {
        display: flex;
    }

    .nav {
        order: 0;
        flex: 1 1 auto;
        width: auto;
        justify-content: center;
    }

    .primary-menu {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 18px;
        padding: 0;
    }

    .primary-menu a {
        border-top: 0;
        padding: 0;
        white-space: nowrap;
    }

    .primary-menu .sub-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        z-index: 60;
        display: none;
        min-width: 190px;
        max-width: 260px;
        border: 1px solid var(--line);
        padding: 8px 0;
        background: var(--paper);
        box-shadow: 0 16px 40px rgba(0,0,0,.12);
    }

    .primary-menu .sub-menu a {
        padding: 9px 14px;
        white-space: normal;
    }

    .primary-menu li:hover > .sub-menu,
    .primary-menu li:focus-within > .sub-menu {
        display: grid;
    }

    .primary-menu > li:last-child > .sub-menu {
        right: 0;
        left: auto;
    }

    .mobile-call,
    .mobile-sticky,
    .menu-toggle {
        display: none;
    }

    .section {
        padding: 80px 0;
    }

    .service-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .area-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .area-grid.compact {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .reason-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .cta-grid,
    .two-col,
    .contact-grid,
    .footer-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, .42fr);
        align-items: start;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    }
}
