:root {
    --navy: #0d3a5b;
    --navy-deep: #082a43;
    --orange: #ff914c;
    --orange-dark: #b84a16;
    --ink: #14212b;
    --body: #3d4b55;
    --muted: #697780;
    --line: #d7dfe3;
    --surface: #eef2f4;
    --white: #fdfefe;
    --shadow: 0 24px 60px rgba(13, 58, 91, .16);
    --shell: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
address { font-style: normal; }
figure, p, h1, h2, h3 { margin-top: 0; }
h1, h2, h3, strong, .brand__type {
    font-family: "Arial Narrow", "Franklin Gothic Medium", "Roboto Condensed", Arial, sans-serif;
}
h1, h2, h3 {
    margin-bottom: .7em;
    line-height: .98;
    letter-spacing: -.035em;
    text-wrap: balance;
}
h1 { font-size: clamp(3.25rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2.35rem, 4.4vw, 4.25rem); }
h3 { font-size: clamp(1.55rem, 2.4vw, 2.15rem); }
p { color: var(--body); }
::selection { background: var(--orange); color: var(--ink); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section-space { padding-block: clamp(76px, 9vw, 126px); }
.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--navy);
    transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.utility-bar { color: #dbe7ed; background: var(--navy-deep); font-size: 12px; }
.utility-bar__inner { min-height: 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-bar__links { display: flex; gap: 24px; }
.utility-bar a { color: var(--white); }
.utility-bar a:hover { color: var(--orange); }

.site-header {
    position: sticky;
    z-index: 30;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(13, 58, 91, .12);
}
.site-header__inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 12px; color: var(--navy); }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand__type { display: grid; line-height: .88; text-transform: uppercase; }
.brand__type strong { font-size: 22px; letter-spacing: .015em; }
.brand__type span { margin-top: 7px; color: var(--orange-dark); font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 32px); font-size: 14px; font-weight: 700; }
.primary-nav > a { position: relative; padding-block: 26px; white-space: nowrap; }
.primary-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 19px;
    left: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .22s ease;
}
.primary-nav > a:hover::after, .primary-nav > a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 13px 18px !important; color: var(--white); background: var(--navy); border: 1px solid var(--navy); }
.nav-cta:hover { color: var(--navy); background: transparent; }
.nav-toggle { display: none; min-width: 48px; min-height: 48px; color: var(--navy); background: transparent; border: 1px solid var(--line); cursor: pointer; }

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(1px); }
.button--orange { color: #17232b; background: var(--orange); border-color: var(--orange); }
.button--orange:hover { color: var(--white); background: var(--orange-dark); border-color: var(--orange-dark); }
.button--navy { color: var(--white); background: var(--navy); border-color: var(--navy); }
.button--navy:hover { color: var(--navy); background: transparent; }
.button--light { color: var(--navy); background: var(--white); border-color: var(--white); }
.button--light:hover { color: var(--white); background: transparent; }
.button--line-light, .button--glass { color: var(--white); background: rgba(8, 42, 67, .3); border-color: rgba(255, 255, 255, .72); }
.button--line-light:hover, .button--glass:hover { color: var(--ink); background: var(--white); }
.button-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.kicker {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--orange-dark);
    font-family: "Arial Narrow", "Franklin Gothic Medium", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.2;
    text-transform: uppercase;
}
.kicker--light { color: var(--orange); }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.text-link::after { content: ">"; color: var(--orange-dark); font-size: 18px; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }
.stacked-heading { max-width: 760px; margin-bottom: 54px; }
.stacked-heading h2 { margin-bottom: 22px; color: var(--navy); }
.stacked-heading p { max-width: 650px; margin-bottom: 0; font-size: 18px; }
.stacked-heading--compact { margin-bottom: 36px; }
.stacked-heading--compact h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }

.home-hero {
    position: relative;
    min-height: clamp(570px, calc(100dvh - 106px), 790px);
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--navy);
}
.home-hero__image, .home-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.home-hero__image { object-fit: cover; object-position: center 42%; }
.home-hero__shade { background: linear-gradient(90deg, rgba(4, 26, 42, .72), rgba(4, 26, 42, .28) 55%, rgba(4, 26, 42, .58)), linear-gradient(0deg, rgba(4, 26, 42, .62), rgba(4, 26, 42, .1) 58%); }
.home-hero__content { position: relative; z-index: 1; max-width: 900px; padding-block: 68px; color: var(--white); text-align: center; }
.home-hero h1 { margin-bottom: 22px; color: var(--white); font-size: clamp(3.5rem, 8vw, 6.9rem); text-shadow: 0 4px 28px rgba(0, 0, 0, .28); }
.home-hero p { max-width: 660px; margin: 0 auto 30px; color: #edf4f7; font-size: 18px; }

.intro-story__grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(52px, 8vw, 110px); }
.intro-story__copy h2 { max-width: 550px; color: var(--navy); }
.intro-story__copy p { max-width: 580px; margin-bottom: 30px; font-size: 17px; }
.intro-collage { position: relative; min-height: 535px; }
.intro-collage__main { position: absolute; top: 0; right: 0; width: 72%; height: 440px; object-fit: cover; }
.intro-collage__small { position: absolute; bottom: 0; left: 0; width: 41%; height: 300px; object-fit: cover; box-shadow: var(--shadow); }
.intro-collage__card { position: absolute; right: 6%; bottom: 22px; width: min(310px, 58%); padding: 28px; color: var(--white); background: var(--navy); border-top: 5px solid var(--orange); box-shadow: var(--shadow); }
.intro-collage__card span, .intro-collage__card small { display: block; color: #dce9ef; font-size: 13px; }
.intro-collage__card a { display: block; margin-block: 5px 2px; color: var(--white); font-family: "Arial Narrow", "Franklin Gothic Medium", Arial, sans-serif; font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 800; }

.service-band { padding-block: 72px; color: var(--white); background: var(--navy); }
.service-band__grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(48px, 8vw, 100px); align-items: start; }
.service-band__intro h2 { margin-bottom: 18px; color: var(--white); font-size: clamp(2.5rem, 4vw, 3.8rem); }
.service-band__intro p { max-width: 420px; margin-bottom: 28px; color: #d8e5eb; }
.service-band__list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255, 255, 255, .24); border-left: 1px solid rgba(255, 255, 255, .24); }
.service-band__list a { min-height: 140px; padding: 25px; border-right: 1px solid rgba(255, 255, 255, .24); border-bottom: 1px solid rgba(255, 255, 255, .24); transition: background .2s ease; }
.service-band__list a:hover { background: var(--navy-deep); }
.service-band__list strong, .service-band__list span { display: block; }
.service-band__list strong { margin-bottom: 10px; color: var(--white); font-size: 22px; }
.service-band__list span { color: #c6d7e0; font-size: 14px; line-height: 1.5; }

.proof-bar-wrap { padding-block: 76px; background: var(--white); }
.proof-bar { display: grid; grid-template-columns: repeat(4, 1fr); color: var(--white); background: var(--ink); box-shadow: 0 20px 44px rgba(20, 33, 43, .13); }
.proof-bar div { min-height: 132px; display: grid; place-content: center; padding: 24px; border-right: 1px solid rgba(255, 255, 255, .16); text-align: center; }
.proof-bar div:last-child { border: 0; }
.proof-bar strong, .proof-bar span { display: block; }
.proof-bar strong { color: var(--orange); font-size: clamp(1.55rem, 2.7vw, 2.3rem); }
.proof-bar span { color: #ced6da; font-size: 12px; }

.work-showcase { padding-top: 30px; }
.work-mosaic { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 18px; }
.work-card { display: grid; grid-template-rows: 420px auto; background: var(--surface); }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.work-card { overflow: hidden; }
.work-card > span { position: relative; z-index: 1; display: block; min-height: 108px; padding: 20px 22px; color: var(--body); background: var(--white); border-bottom: 3px solid transparent; }
.work-card strong { display: block; margin-bottom: 4px; color: var(--navy); font-size: 21px; }
.work-card:hover img { transform: scale(1.035); }
.work-card:hover > span { border-bottom-color: var(--orange); }
.work-card--tall { grid-template-rows: 420px auto; transform: none; }

.image-banner { position: relative; min-height: 470px; display: grid; align-items: center; overflow: hidden; background: var(--ink); }
.image-banner > img, .image-banner__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.image-banner > img { object-fit: cover; object-position: center 58%; }
.image-banner__shade { background: linear-gradient(90deg, rgba(6, 28, 44, .92) 0%, rgba(6, 28, 44, .68) 45%, rgba(6, 28, 44, .26) 100%); }
.image-banner__content { position: relative; z-index: 1; color: var(--white); }
.image-banner__content h2 { max-width: 650px; margin-bottom: 20px; color: var(--white); }
.image-banner__content p { max-width: 570px; margin-bottom: 28px; color: #dbe6eb; font-size: 17px; }

.maintenance-feature__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(54px, 9vw, 120px); align-items: center; }
.maintenance-feature__copy h2 { color: var(--navy); }
.maintenance-feature__copy > p { max-width: 540px; }
.plain-service-list { margin: 30px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.plain-service-list li { position: relative; padding: 14px 0 14px 26px; border-bottom: 1px solid var(--line); color: var(--body); }
.plain-service-list li::before { content: "+"; position: absolute; left: 0; color: var(--orange-dark); font-weight: 900; }
.maintenance-feature__media { position: relative; padding: 0 70px 54px 0; }
.maintenance-feature__media img { width: 100%; height: 520px; object-fit: cover; }
.orange-note { position: absolute; right: 0; bottom: 0; width: 280px; padding: 30px; color: var(--ink); background: var(--orange); box-shadow: var(--shadow); }
.orange-note strong, .orange-note span { display: block; }
.orange-note strong { margin-bottom: 8px; font-size: 25px; }
.orange-note span { font-size: 14px; }

.process-band { padding-block: 76px; color: var(--white); background: var(--navy); }
.process-band__inner { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; }
.process-band h2 { margin-bottom: 0; color: var(--white); }
.process-flow { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; counter-reset: process; }
.process-flow li { position: relative; min-height: 190px; padding: 60px 24px 20px; border-left: 1px solid rgba(255, 255, 255, .22); counter-increment: process; }
.process-flow li::before { content: counter(process, decimal-leading-zero); position: absolute; top: 0; color: var(--orange); font-family: "Arial Narrow", Arial, sans-serif; font-size: 27px; font-weight: 800; }
.process-flow strong, .process-flow span { display: block; }
.process-flow strong { margin-bottom: 10px; color: var(--white); font-size: 20px; }
.process-flow span { color: #c7d7df; font-size: 14px; line-height: 1.5; }

.experience-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(56px, 9vw, 120px); align-items: center; }
.experience-section__image { position: relative; padding-left: 50px; }
.experience-section__image::before { content: ""; position: absolute; top: -32px; bottom: 32px; left: 0; width: 44%; background: var(--orange); }
.experience-section__image img { position: relative; width: 100%; height: 510px; object-fit: cover; }
.experience-section__copy h2 { color: var(--navy); }
.experience-section__copy p { max-width: 560px; margin-bottom: 30px; }

.project-strip { padding-block: 82px; background: var(--surface); }
.project-strip__heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.project-strip__heading h2 { margin-bottom: 0; color: var(--navy); font-size: clamp(2rem, 3.5vw, 3.25rem); }
.project-strip__grid { display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 16px; }
.project-strip figure { margin: 0; background: var(--white); }
.project-strip img { width: 100%; height: 285px; object-fit: cover; }
.project-strip figcaption { padding: 16px 18px; color: var(--navy); font-weight: 700; }

.inner-hero { position: relative; min-height: min(620px, calc(100dvh - 106px)); display: grid; align-items: center; overflow: hidden; background: var(--navy); }
.inner-hero__image, .inner-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.inner-hero__image { object-fit: cover; object-position: center 48%; }
.inner-hero__shade { background: linear-gradient(90deg, rgba(5, 33, 52, .94) 0%, rgba(5, 33, 52, .75) 44%, rgba(5, 33, 52, .14) 100%); }
.inner-hero__content { position: relative; z-index: 1; padding-block: 70px; color: var(--white); }
.inner-hero__content h1 { max-width: 780px; margin-bottom: 22px; color: var(--white); }
.inner-hero__content p { max-width: 560px; margin-bottom: 28px; color: #e5eef2; font-size: 18px; }
.inner-hero--services .inner-hero__image { object-position: center 62%; }

.about-story__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 10vw, 130px); align-items: start; }
.about-story__statement { padding: 45px; color: var(--white); background: var(--navy); border-left: 8px solid var(--orange); }
.about-story__statement span, .about-story__statement strong, .about-story__statement p { display: block; }
.about-story__statement span { color: #c7d8e0; text-transform: uppercase; letter-spacing: .12em; }
.about-story__statement strong { color: var(--orange); font-size: clamp(4rem, 8vw, 7rem); line-height: 1; }
.about-story__statement p { margin: 14px 0 0; color: var(--white); }
.about-story__copy h2 { color: var(--navy); }
.about-story__copy p { max-width: 700px; font-size: 17px; }

.values-band { padding-block: 88px; background: var(--surface); }
.values-band__inner { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.values-band__heading h2 { color: var(--navy); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #c6d1d7; border-left: 1px solid #c6d1d7; }
.values-grid article { min-height: 170px; padding: 28px; border-right: 1px solid #c6d1d7; border-bottom: 1px solid #c6d1d7; }
.values-grid strong, .values-grid span { display: block; }
.values-grid strong { margin-bottom: 10px; color: var(--navy); font-size: 25px; }
.values-grid span { color: var(--body); font-size: 14px; }

.about-work__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 100px); align-items: center; }
.about-work__copy h2 { color: var(--navy); }
.about-work__gallery { position: relative; min-height: 570px; }
.about-work__gallery img { position: absolute; object-fit: cover; }
.about-work__large { top: 0; right: 0; width: 66%; height: 480px; }
.about-work__gallery img:nth-child(2) { bottom: 0; left: 0; width: 43%; height: 310px; box-shadow: var(--shadow); }
.about-work__note { position: absolute; right: 0; bottom: 0; width: 43%; padding: 26px; color: var(--ink); background: var(--orange); }
.about-work__note strong, .about-work__note span { display: block; }
.about-work__note strong { font-size: 22px; }
.about-work__note span { margin-top: 6px; font-size: 13px; }
.photo-ribbon { display: grid; grid-template-columns: repeat(4, 1fr); height: 340px; overflow: hidden; }
.photo-ribbon img { width: 100%; height: 100%; object-fit: cover; }

.services-intro { padding-bottom: 90px; }
.primary-services { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: auto auto; gap: 18px; }
.primary-service { position: relative; overflow: hidden; background: var(--surface); }
.primary-service h3 { margin-bottom: 14px; color: var(--navy); }
.primary-service p { margin-bottom: 20px; }
.primary-service a { color: var(--navy); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; border-bottom: 2px solid var(--orange); }
.primary-service--image { grid-row: span 2; display: grid; grid-template-rows: 470px auto; }
.primary-service--image img { width: 100%; height: 100%; object-fit: cover; }
.primary-service--image div, .primary-service--split div { padding: 32px; }
.primary-service--navy { display: grid; min-height: 300px; align-items: center; padding: 42px; color: var(--white); background: var(--navy); border-top: 6px solid var(--orange); }
.primary-service--navy h3, .primary-service--navy p, .primary-service--navy a { color: var(--white); }
.primary-service--split { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 320px; }
.primary-service--split img { width: 100%; height: 100%; object-fit: cover; }

.property-services { padding-block: 92px; color: var(--white); background: var(--navy); }
.property-services__heading { max-width: 700px; margin-bottom: 50px; }
.property-services__heading h2 { color: var(--white); }
.property-services__heading p { color: #d3e0e7; }
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.property-grid article { min-height: 225px; padding: 30px; border-right: 1px solid rgba(255, 255, 255, .2); border-bottom: 1px solid rgba(255, 255, 255, .2); }
.property-grid strong { display: block; margin-bottom: 10px; color: var(--white); font-size: 25px; }
.property-grid p { margin: 0; color: #cedce3; font-size: 14px; }
.property-grid__image { padding: 0 !important; }
.property-grid__image img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-band__grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: center; }
.service-detail-band__copy h2 { color: var(--navy); }
.service-detail-band__copy p { margin-bottom: 28px; }
.service-detail-band__photos { display: grid; grid-template-columns: 1.3fr .7fr; gap: 16px; align-items: end; }
.service-detail-band__photos img:first-child { height: 420px; object-fit: cover; }
.service-detail-band__photos img:last-child { height: 330px; object-fit: cover; }

.faq-hero { color: var(--white); background: var(--navy); }
.faq-hero__grid { min-height: 520px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; }
.faq-hero__copy { align-self: center; padding: 70px 70px 70px 0; }
.faq-hero h1 { max-width: 650px; margin-bottom: 22px; color: var(--white); }
.faq-hero p { color: #d9e5eb; font-size: 18px; }
.faq-hero img { width: 100%; height: 520px; object-fit: cover; }
.faq-layout { display: grid; grid-template-columns: 340px 1fr; gap: clamp(50px, 8vw, 100px); align-items: start; }
.faq-contact { position: sticky; top: 126px; padding: 36px; color: var(--white); background: var(--navy); border-top: 6px solid var(--orange); }
.faq-contact h2 { color: var(--white); font-size: 2.4rem; }
.faq-contact p { color: #d4e1e7; }
.faq-contact__phone { display: block; margin: 24px 0; color: var(--orange); font-size: 25px; font-weight: 800; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 50px 25px 0; color: var(--navy); font-family: "Arial Narrow", Arial, sans-serif; font-size: 22px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 23px; right: 4px; color: var(--orange-dark); font-size: 26px; line-height: 1; }
.faq-list details[open] summary::after { content: "-"; }
.faq-list details div { max-width: 720px; padding: 0 50px 24px 0; }
.faq-list details p { margin: 0; }

.contact-hero { position: relative; min-height: 480px; display: grid; align-items: center; overflow: hidden; background: var(--navy); }
.contact-hero > img, .contact-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.contact-hero > img { object-fit: cover; object-position: center 52%; }
.contact-hero__shade { background: linear-gradient(90deg, rgba(5, 32, 51, .95), rgba(5, 32, 51, .73) 48%, rgba(5, 32, 51, .15)); }
.contact-hero__content { position: relative; z-index: 1; padding-block: 65px; color: var(--white); }
.contact-hero__content h1 { max-width: 780px; margin-bottom: 20px; color: var(--white); }
.contact-hero__content p { color: #e2ebef; font-size: 18px; }
.contact-methods-band { background: var(--surface); }
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); }
.contact-methods a { min-height: 130px; display: grid; align-content: center; padding: 26px 32px; border-right: 1px solid #cbd5da; transition: background .2s ease, color .2s ease; }
.contact-methods a:last-child { border: 0; }
.contact-methods a:hover { color: var(--white); background: var(--navy); }
.contact-methods span, .contact-methods strong { display: block; }
.contact-methods span { margin-bottom: 7px; color: var(--orange-dark); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.contact-methods strong { color: var(--navy); font-size: clamp(18px, 2vw, 24px); overflow-wrap: anywhere; }
.contact-methods a:hover strong { color: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: 22px; align-items: start; }
.contact-form-panel { padding: clamp(32px, 5vw, 60px); background: var(--surface); }
.contact-details-panel { color: var(--white); background: var(--navy); }
.contact-details-panel__copy { padding: clamp(32px, 5vw, 54px); }
.contact-details-panel h2 { color: var(--white); }
.contact-details-panel p, .contact-details-panel address { color: #d6e3e9; }
.map-frame { height: 420px; border-top: 8px solid var(--orange); }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(.7) contrast(.95); }
.contact-form { display: grid; gap: 22px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-field { display: grid; gap: 8px; }
.form-field label { color: var(--ink); font-size: 13px; font-weight: 800; }
.form-field label span { color: var(--muted); font-weight: 500; }
.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #aebdc5;
    border-radius: 0;
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #67747d; opacity: 1; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 3px solid rgba(255, 145, 76, .38); border-color: var(--orange-dark); }
.form-field--trap { position: absolute; left: -9999px; }
.consent-field { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; color: var(--body); font-size: 13px; }
.consent-field input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--navy); }
.consent-field a { color: var(--navy); text-decoration: underline; }
.form-alert { padding: 16px 18px; margin-bottom: 24px; border-left: 5px solid var(--navy); background: var(--white); }
.form-alert--success { border-color: #2c7a57; }
.form-alert--error { border-color: #b64035; }

.legal-hero { padding-block: 86px; color: var(--white); background: var(--navy); border-bottom: 10px solid var(--orange); }
.legal-hero__inner { max-width: 900px; }
.legal-hero h1 { margin-bottom: 14px; color: var(--white); }
.legal-hero p { margin: 0; color: #d7e4ea; }
.legal-content { padding-block: 86px; }
.legal-layout { display: grid; grid-template-columns: 280px 1fr; gap: clamp(50px, 8vw, 100px); align-items: start; }
.legal-layout aside { position: sticky; top: 126px; padding: 26px; background: var(--surface); border-top: 5px solid var(--orange); }
.legal-layout aside a { color: var(--navy); font-weight: 800; overflow-wrap: anywhere; }
.prose { max-width: 780px; }
.prose h2 { margin-top: 44px; margin-bottom: 15px; color: var(--navy); font-size: 1.75rem; letter-spacing: -.015em; line-height: 1.2; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 18px; }
.prose a { color: var(--navy); text-decoration: underline; }
.simple-hero { min-height: 520px; display: grid; place-items: center; text-align: center; background: var(--surface); }
.simple-hero__inner { max-width: 760px; }
.simple-hero h1 { color: var(--navy); }

.footer-cta { padding-block: 52px; color: var(--white); background: var(--navy); border-top: 8px solid var(--orange); }
.footer-cta__inner { display: grid; grid-template-columns: 1fr .8fr auto; align-items: center; gap: 42px; }
.footer-cta h2 { margin: 0; color: var(--white); font-size: clamp(2.3rem, 4vw, 3.6rem); }
.footer-cta p { margin: 0; color: #d3e0e6; }
.footer-cta__actions { display: flex; gap: 10px; }
.site-footer { padding-top: 76px; color: #cbd5da; background: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1.4fr .65fr .9fr 1fr; gap: 50px; padding-bottom: 64px; }
.brand--footer { color: var(--white); }
.brand--footer img { width: 66px; height: 66px; }
.brand--footer .brand__type strong { color: var(--white); }
.footer-brand p { max-width: 340px; margin: 24px 0 0; color: #aebbc1; font-size: 14px; }
.footer-column { display: grid; align-content: start; gap: 10px; }
.footer-column h2 { margin-bottom: 10px; color: var(--white); font-size: 16px; letter-spacing: .04em; }
.footer-column a, .footer-column address, .footer-column > span { color: #aebbc1; font-size: 14px; }
.footer-column a:hover { color: var(--orange); }
.footer-phone { color: var(--orange) !important; font-size: 22px !important; font-weight: 800; }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255, 255, 255, .13); font-size: 12px; }
.footer-bottom p { margin: 0; color: #93a2aa; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a { color: #b5c1c7; }
.mobile-contact-bar { display: none; }

.has-reveal .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s cubic-bezier(.16, 1, .3, 1), transform .65s cubic-bezier(.16, 1, .3, 1); }
.has-reveal .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
    .primary-nav { gap: 16px; }
    .primary-nav > a { font-size: 13px; }
    .nav-cta { padding-inline: 13px !important; }
    .intro-story__grid, .maintenance-feature__grid, .experience-section__grid, .about-work__grid, .service-detail-band__grid { gap: 54px; }
    .work-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .work-card:last-child { grid-column: 1 / -1; }
    .work-card--tall { grid-row: auto; }
    .process-band__inner { grid-template-columns: 1fr; gap: 44px; }
    .footer-cta__inner { grid-template-columns: 1fr auto; }
    .footer-cta__inner > p { grid-column: 1; }
    .footer-cta__actions { grid-column: 2; grid-row: 1 / span 2; }
    .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-contact { grid-column: 2 / span 2; }
}

@media (max-width: 860px) {
    .utility-bar__inner > span { display: none; }
    .utility-bar__inner { justify-content: flex-end; }
    .nav-toggle { display: inline-grid; place-items: center; }
    .nav-toggle i, .nav-toggle i::before, .nav-toggle i::after { display: block; width: 20px; height: 2px; background: var(--navy); }
    .nav-toggle i { position: relative; }
    .nav-toggle i::before, .nav-toggle i::after { content: ""; position: absolute; left: 0; }
    .nav-toggle i::before { top: -6px; }
    .nav-toggle i::after { top: 6px; }
    .nav-toggle span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
    .primary-nav {
        position: fixed;
        inset: 106px 0 auto;
        max-height: calc(100dvh - 106px);
        display: grid;
        gap: 0;
        padding: 20px 24px 30px;
        overflow-y: auto;
        background: var(--white);
        border-top: 1px solid var(--line);
        box-shadow: 0 24px 50px rgba(13, 58, 91, .18);
        transform: translateY(-130%);
        visibility: hidden;
        transition: transform .28s ease, visibility .28s ease;
    }
    .primary-nav.is-open { transform: translateY(0); visibility: visible; }
    .primary-nav > a { padding: 16px 4px; border-bottom: 1px solid var(--line); }
    .primary-nav > a::after { display: none; }
    .nav-cta { margin-top: 16px; padding: 15px 18px !important; text-align: center; }
    .intro-story__grid, .service-band__grid, .about-story__grid, .values-band__inner, .about-work__grid, .service-detail-band__grid { grid-template-columns: 1fr; }
    .intro-story__copy { max-width: 680px; }
    .proof-bar { grid-template-columns: repeat(2, 1fr); }
    .proof-bar div:nth-child(2) { border-right: 0; }
    .proof-bar div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
    .maintenance-feature__grid, .experience-section__grid { grid-template-columns: 1fr; }
    .maintenance-feature__copy, .experience-section__copy { max-width: 680px; }
    .maintenance-feature__media { max-width: 720px; }
    .experience-section__image { max-width: 650px; }
    .project-strip__grid { grid-template-columns: 1fr 1fr; }
    .project-strip figure:last-child { grid-column: 1 / -1; }
    .photo-ribbon { grid-template-columns: repeat(2, 1fr); height: 600px; }
    .primary-services { grid-template-columns: 1fr; grid-template-rows: auto; }
    .primary-service--image { grid-row: auto; }
    .property-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-contact { position: static; }
    .contact-layout { grid-template-columns: 1fr; }
    .legal-layout { grid-template-columns: 1fr; }
    .legal-layout aside { position: static; }
}

@media (max-width: 700px) {
    .shell { width: min(calc(100% - 32px), var(--shell)); }
    .section-space { padding-block: 72px; }
    .utility-bar__links { width: 100%; justify-content: space-between; gap: 12px; }
    .site-header__inner { min-height: 70px; }
    .brand img { width: 48px; height: 48px; }
    .brand__type strong { font-size: 19px; }
    .brand__type span { font-size: 10px; }
    .primary-nav { inset: 100px 0 auto; }
    .home-hero { min-height: 620px; }
    .home-hero__content { padding-block: 58px; }
    .home-hero h1 { font-size: clamp(3.35rem, 15vw, 5rem); }
    .home-hero p { font-size: 16px; }
    .button-row { display: grid; grid-template-columns: 1fr; width: min(100%, 300px); margin-inline: auto; }
    .intro-collage { min-height: 465px; }
    .intro-collage__main { width: 82%; height: 360px; }
    .intro-collage__small { width: 45%; height: 235px; }
    .intro-collage__card { right: 0; width: 66%; padding: 22px; }
    .service-band__list { grid-template-columns: 1fr; }
    .work-mosaic { grid-template-columns: 1fr; }
    .work-card, .work-card--tall { grid-column: auto !important; grid-row: auto; grid-template-rows: 340px auto; transform: none; }
    .image-banner { min-height: 540px; }
    .image-banner__shade { background: linear-gradient(90deg, rgba(6,28,44,.9), rgba(6,28,44,.62)); }
    .maintenance-feature__media { padding: 0 34px 48px 0; }
    .maintenance-feature__media img { height: 400px; }
    .orange-note { width: 250px; padding: 22px; }
    .process-flow { grid-template-columns: 1fr; }
    .process-flow li { min-height: 130px; padding: 25px 20px 25px 70px; border-left: 0; border-top: 1px solid rgba(255,255,255,.22); }
    .process-flow li::before { top: 23px; left: 0; }
    .experience-section__image { padding-left: 28px; }
    .experience-section__image img { height: 410px; }
    .project-strip__heading { align-items: start; flex-direction: column; }
    .project-strip__grid { grid-template-columns: 1fr; }
    .project-strip figure:last-child { grid-column: auto; }
    .inner-hero { min-height: 540px; }
    .inner-hero__shade { background: linear-gradient(90deg, rgba(5,33,52,.91), rgba(5,33,52,.53)); }
    .about-story__statement { padding: 32px; }
    .values-grid { grid-template-columns: 1fr; }
    .about-work__gallery { min-height: 500px; }
    .about-work__large { width: 76%; height: 390px; }
    .about-work__gallery img:nth-child(2) { width: 48%; height: 250px; }
    .about-work__note { width: 52%; }
    .photo-ribbon { height: 500px; }
    .primary-service--image { grid-template-rows: 330px auto; }
    .primary-service--split { grid-template-columns: 1fr; }
    .primary-service--split img { height: 300px; }
    .property-grid { grid-template-columns: 1fr; }
    .service-detail-band__photos { grid-template-columns: 1fr 1fr; }
    .service-detail-band__photos img:first-child, .service-detail-band__photos img:last-child { height: 300px; }
    .faq-hero__grid { grid-template-columns: 1fr; }
    .faq-hero__copy { padding: 60px 0; }
    .faq-hero img { height: 320px; }
    .contact-methods { grid-template-columns: 1fr; }
    .contact-methods a { min-height: 105px; border-right: 0; border-bottom: 1px solid #cbd5da; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-cta__inner { grid-template-columns: 1fr; gap: 24px; }
    .footer-cta__inner > p, .footer-cta__actions { grid-column: auto; grid-row: auto; }
    .footer-cta__actions { flex-wrap: wrap; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-contact { grid-column: 1 / -1; }
    .footer-bottom { padding-block: 20px 82px; align-items: start; flex-direction: column; }
    .mobile-contact-bar { position: fixed; z-index: 40; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 -10px 30px rgba(8,42,67,.2); }
    .mobile-contact-bar a { min-height: 58px; display: grid; place-items: center; color: var(--white); background: var(--navy); font-size: 14px; font-weight: 800; }
    .mobile-contact-bar a:last-child { color: var(--ink); background: var(--orange); }
}

@media (max-width: 460px) {
    h1 { font-size: 3.25rem; }
    h2 { font-size: 2.45rem; }
    .utility-bar__links a:first-child { display: none; }
    .utility-bar__links { justify-content: flex-end; }
    .brand__type { display: grid; }
    .brand__type strong { font-size: 15px; }
    .brand__type span { display: none; }
    .home-hero .button--hero-call { display: none; }
    .intro-collage__main { width: 100%; }
    .intro-collage__small { width: 48%; }
    .intro-collage__card { width: 72%; }
    .proof-bar { grid-template-columns: 1fr; }
    .proof-bar div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
    .photo-ribbon { grid-template-columns: 1fr; height: auto; }
    .photo-ribbon img { height: 280px; }
    .service-detail-band__photos { grid-template-columns: 1fr; }
    .service-detail-band__photos img:first-child, .service-detail-band__photos img:last-child { height: 310px; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-brand, .footer-contact { grid-column: auto; }
}

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