@font-face { font-family: "Plus Jakarta Sans"; src: url("../fonts/plus-jakarta-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Plus Jakarta Sans"; src: url("../fonts/plus-jakarta-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Plus Jakarta Sans"; src: url("../fonts/plus-jakarta-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Plus Jakarta Sans"; src: url("../fonts/plus-jakarta-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Plus Jakarta Sans"; src: url("../fonts/plus-jakarta-800.ttf") format("truetype"); font-style: normal; font-weight: 800; font-display: swap; }

:root {
	--blue: #1479c9;
	--blue-dark: #075391;
	--blue-deep: #062b47;
	--blue-soft: #eaf5fd;
	--orange: #e85d04;
	--orange-hover: #c94f00;
	--ink: #112a39;
	--muted: #617381;
	--line: #dbe5eb;
	--off-white: #f6f9fb;
	--white: #ffffff;
	--shadow: 0 18px 60px rgba(6, 43, 71, 0.13);
	--radius: 18px;
	--font: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 110px; }
body { max-width: 100%; margin: 0; overflow-x: clip; background: var(--white); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overscroll-behavior: none; }
body.menu-open .mobile-actions { opacity: 0; visibility: hidden; pointer-events: none; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible { outline: 3px solid #ff8a3d; outline-offset: 3px; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 12px 18px; background: var(--white); color: var(--blue-deep); transform: translateY(-150%); box-shadow: var(--shadow); }
.skip-link:focus { transform: translateY(0); }

.scroll-progress { position: fixed; z-index: 90; top: 24%; right: 20px; width: 3px; height: 52vh; background: rgba(20, 121, 201, 0.16); border-radius: 4px; pointer-events: none; }
.scroll-progress::before, .scroll-progress::after { position: absolute; right: 10px; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .12em; writing-mode: vertical-rl; }
.scroll-progress::before { content: "START"; top: 0; transform: translateY(-115%); }
.scroll-progress::after { content: "FRIS"; bottom: 0; transform: translateY(115%); }
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--orange); border-radius: 4px; transform: scaleY(0); transform-origin: top; }

.topbar { min-height: 38px; background: var(--blue-deep); color: #dbeef9; font-size: 12px; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; gap: 28px; }
.topbar__region { margin-left: auto; }
.topbar a { color: var(--white); font-weight: 800; }
.topbar a:hover { color: #ffd6bb; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #4ad37b; box-shadow: 0 0 0 4px rgba(74, 211, 123, .12); }

.site-header { position: sticky; z-index: 80; top: 0; min-height: 82px; background: rgba(255, 255, 255, .97); border-bottom: 1px solid rgba(219, 229, 235, .8); transition: box-shadow .2s, min-height .2s; }
.site-header.is-scrolled { min-height: 70px; box-shadow: 0 10px 36px rgba(6, 43, 71, .08); }
.site-header__inner { min-height: inherit; display: flex; align-items: center; gap: 28px; }
.site-logo { display: flex; width: 235px; flex: 0 0 auto; }
.site-logo img { width: 100%; display: block; }
.main-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; font-size: 13px; font-weight: 750; }
.main-nav a { position: relative; padding: 28px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--orange); transition: right .2s; }
.main-nav a:hover { color: var(--blue); }
.main-nav a:hover::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .2s, opacity .2s; }

.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 26px; padding: 14px 21px; border: 1px solid var(--orange); border-radius: 8px; background: var(--orange); color: var(--white); font-weight: 800; line-height: 1.2; box-shadow: 0 10px 24px rgba(232, 93, 4, .2); cursor: pointer; transition: background .2s, border-color .2s, transform .2s, box-shadow .2s; }
.button:hover { background: var(--orange-hover); border-color: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(201, 79, 0, .24); }
.button span { font-size: 20px; }
.button--small { min-height: 46px; padding: 12px 17px; gap: 12px; font-size: 13px; }
.button--white { background: var(--white); border-color: var(--white); color: var(--blue-deep); box-shadow: none; }
.button--white:hover { background: var(--blue-soft); border-color: var(--blue-soft); color: var(--blue-deep); }
.text-link, .arrow-link { display: inline-flex; align-items: center; gap: 16px; padding: 10px 0; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 800; }
.text-link:hover, .arrow-link:hover { color: var(--orange); }

.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 22px; color: #bee5ff; font-size: 11px; font-weight: 800; letter-spacing: .17em; line-height: 1.35; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 2px; background: var(--orange); }
.eyebrow--blue { color: var(--blue); }
h1, h2, h3, p { position: relative; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.045em; }
h1 { max-width: 680px; margin-bottom: 26px; font-size: clamp(48px, 6.2vw, 86px); font-weight: 800; }
h1 strong, h2 em { color: var(--orange); font-style: normal; font-weight: inherit; }
h2 { margin-bottom: 25px; font-size: clamp(40px, 4.6vw, 64px); font-weight: 770; }
h3 { font-size: 24px; }
.section { padding: 118px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 70px; margin-bottom: 54px; }
.section-heading > div { max-width: 780px; }
.section-heading > p { max-width: 390px; margin: 0; color: var(--muted); }

.hero { position: relative; min-height: 690px; overflow: hidden; background: var(--blue); color: var(--white); }
.hero__wash { position: absolute; inset: auto auto -190px -140px; width: 520px; height: 520px; border: 90px solid rgba(255, 255, 255, .06); border-radius: 49% 51% 42% 58%; transform: rotate(-17deg); }
.hero__grid { min-height: 690px; display: grid; grid-template-columns: 52% 48%; align-items: center; }
.hero__copy { position: relative; z-index: 2; padding: 92px 70px 92px 0; }
.hero__lead { max-width: 610px; margin: 0 0 31px; color: #e5f4fd; font-size: 18px; line-height: 1.7; }
.hero__actions { display: flex; align-items: center; gap: 27px; }
.hero .text-link { color: var(--white); }
.trust-list { display: flex; flex-wrap: wrap; gap: 13px 28px; padding: 0; margin: 44px 0 0; list-style: none; color: #f1f8fd; font-size: 14px; font-weight: 800; }
.trust-list li { display: flex; align-items: center; gap: 9px; }
.trust-list .dashicons { width: 22px; height: 22px; color: #8bf1aa; font-size: 22px; }
.hero__visual { position: relative; align-self: stretch; min-height: 690px; }
.hero__photo-wrap { position: absolute; inset: 42px -12vw 42px 0; overflow: hidden; border-radius: 28px 0 0 28px; background: #dfeaf0; box-shadow: -25px 26px 0 rgba(6, 43, 71, .18); }
.hero__photo-wrap::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, .24); border-radius: inherit; }
.hero__photo-wrap img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 52% center; }
.temporary-chip { position: absolute; z-index: 2; top: 18px; left: 18px; padding: 7px 10px; border-radius: 4px; background: rgba(255, 255, 255, .9); color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.temporary-chip--dark { background: rgba(6, 43, 71, .88); color: var(--white); }
.hero__stamp { position: absolute; z-index: 3; right: -12px; top: 85px; width: 128px; height: 128px; display: grid; place-items: center; align-content: center; row-gap: 2px; padding: 16px; border: 2px solid var(--white); border-radius: 50%; background: var(--orange); color: var(--white); text-align: center; transform: rotate(8deg); }
.hero__stamp strong { display: block; font-size: 30px; line-height: 1; }
.hero__stamp span { display: block; margin-top: 3px; font-size: 11px; font-weight: 800; line-height: 1.1; text-transform: uppercase; }
.hero__stamp small { display: block; margin-top: 1px; font-size: 8px; font-weight: 800; letter-spacing: .06em; line-height: 1.1; text-transform: uppercase; }
.hero__review { position: absolute; z-index: 3; left: -48px; bottom: 82px; width: 270px; padding: 19px 22px; border-radius: 12px; background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.hero__review-stars, .hero__review-kicker { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero__review p { margin: 7px 0 0; font-size: 13px; font-weight: 750; line-height: 1.45; }
.hero__scroll { position: absolute; z-index: 3; bottom: 17px; left: 50%; display: flex; align-items: center; gap: 11px; color: #dff1fc; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.hero__scroll > span { width: 34px; height: 1px; background: currentColor; }

.service-ticker { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--white); }
.service-ticker__track { width: max-content; min-height: 78px; display: flex; align-items: center; animation: hto-ticker 34s linear infinite; }
.service-ticker span { display: inline-flex; align-items: center; gap: 28px; padding-right: 28px; font-size: 14px; font-weight: 800; white-space: nowrap; }
.service-ticker b { color: var(--orange); font-size: 17px; }
@keyframes hto-ticker { to { transform: translateX(-50%); } }

.intro { background: var(--white); }
.intro__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 10vw; }
.intro__copy .lead, .about__copy .lead { margin-top: 0; color: var(--ink); font-size: 21px; font-weight: 760; line-height: 1.5; }
.intro__copy > p:not(.lead), .about__copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.intro__copy .arrow-link { margin-top: 16px; }

.services { background: var(--off-white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 375px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 5px 0 rgba(6, 43, 71, .03); transition: transform .25s, box-shadow .25s, border-color .25s; scroll-margin-top: 120px; }
.service-card:hover { border-color: #b9d8ed; transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card--featured { grid-column: span 2; color: var(--white); background: var(--blue); border-color: var(--blue); }
.service-card__top { display: flex; align-items: start; justify-content: space-between; }
.service-card__icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-soft); color: var(--blue); font-size: 25px; }
.service-card--featured .service-card__icon { background: var(--white); }
.service-card__number { color: #9fb2be; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.service-card--featured .service-card__number { color: #c4e7fd; }
.service-card__tag { margin: 30px 0 8px; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-card--featured .service-card__tag { color: #ffd4b7; }
.service-card h3 { margin-bottom: 13px; }
.service-card > p:not(.service-card__tag) { margin-top: 0; color: var(--muted); font-size: 14px; }
.service-card--featured > p:not(.service-card__tag) { max-width: 620px; color: #e5f4fd; }
.service-card > a { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 19px; border-top: 1px solid var(--line); color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.service-card--featured > a { border-color: rgba(255, 255, 255, .23); color: var(--white); }
.service-card > a span { color: var(--orange); font-size: 20px; }

.softwash { display: grid; grid-template-columns: 50% 50%; min-height: 790px; background: var(--blue-deep); color: var(--white); }
.softwash__photo { position: relative; min-height: 720px; overflow: hidden; }
.softwash__photo::after { content: ""; position: absolute; inset: 0; border-right: 1px solid rgba(255, 255, 255, .12); }
.softwash__photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; opacity: .82; }
.softwash__word { position: absolute; z-index: 2; right: -5px; bottom: 28px; color: var(--white); font-size: clamp(70px, 9vw, 142px); font-weight: 800; letter-spacing: -.09em; line-height: .72; text-align: right; opacity: .19; }
.softwash__copy { display: flex; flex-direction: column; justify-content: center; padding: 90px max(7vw, 60px); }
.softwash h2 em { color: #82cbff; }
.softwash__copy > p:not(.eyebrow) { margin: 0 0 24px; color: #cbdfea; }
.softwash__benefits { margin: 14px 0 34px; border-top: 1px solid rgba(255, 255, 255, .17); }
.softwash__benefits > div { display: grid; grid-template-columns: 42px 1fr; gap: 17px; padding: 17px 0; border-bottom: 1px solid rgba(255, 255, 255, .17); }
.softwash__benefits strong { color: #82cbff; font-size: 11px; letter-spacing: .12em; }
.softwash__benefits span { display: flex; flex-direction: column; color: #9eb9c7; font-size: 13px; }
.softwash__benefits b { margin-bottom: 3px; color: var(--white); font-size: 15px; }

.results { background: var(--white); }
.section-heading--results > p { max-width: 430px; }
.comparison { position: relative; height: min(62vw, 650px); min-height: 420px; overflow: hidden; border-radius: 24px; background: var(--blue-deep); box-shadow: var(--shadow); touch-action: pan-y; }
.comparison__base, .comparison__after { position: absolute; inset: 0; overflow: hidden; }
.comparison__base img, .comparison__after img { width: 100%; height: 100%; max-width: none; display: block; object-fit: cover; }
.comparison__base img { object-position: center; }
.comparison__after { width: 52%; border-right: 3px solid var(--white); }
.comparison__after img { width: min(1180px, calc(100vw - 48px)); object-position: center; }
.comparison__label { position: absolute; top: 22px; padding: 9px 13px; border-radius: 5px; color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.comparison__label--before { right: 22px; background: var(--blue-deep); }
.comparison__label--after { left: 22px; background: var(--orange); }
.comparison__handle { position: absolute; z-index: 2; top: 50%; left: 52%; width: 58px; height: 58px; display: grid; place-items: center; border: 4px solid var(--white); border-radius: 50%; background: var(--orange); color: var(--white); box-shadow: 0 10px 30px rgba(0, 0, 0, .23); transform: translate(-50%, -50%); pointer-events: none; }
.comparison__handle span { font-size: 25px; line-height: 1; }
.comparison input { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.temporary-note { display: flex; align-items: center; gap: 8px; margin: 15px 0 0; color: var(--muted); font-size: 11px; }
.temporary-note .dashicons { color: var(--blue); }

.roof-inspection { background: var(--blue); color: var(--white); }
.roof-inspection__grid { display: grid; grid-template-columns: 90px 1fr .8fr; align-items: start; gap: 52px; }
.roof-inspection__number { color: rgba(255, 255, 255, .2); font-size: 82px; font-weight: 800; letter-spacing: -.08em; line-height: .8; }
.roof-inspection h2 { margin-bottom: 0; }
.roof-inspection h2 em { color: #ffd1b1; }
.roof-inspection__copy > p { margin-top: 0; color: #e0f0fa; }
.roof-inspection__copy ul { padding: 0; margin: 24px 0 30px; list-style: none; }
.roof-inspection__copy li { position: relative; padding: 10px 0 10px 28px; border-bottom: 1px solid rgba(255, 255, 255, .18); font-size: 13px; font-weight: 700; }
.roof-inspection__copy li::before { content: "✓"; position: absolute; left: 0; color: #92f0ad; }

.process { background: var(--off-white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-steps article { min-height: 310px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.process-steps article > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-soft); color: var(--blue); font-size: 13px; font-weight: 800; }
.process-steps article > div { margin-top: 60px; }
.process-steps h3 { margin-bottom: 12px; font-size: 20px; }
.process-steps p { margin: 0; color: var(--muted); font-size: 13px; }

.about { overflow: hidden; background: var(--white); }
.about__grid { display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: 9vw; }
.about__portrait { position: relative; }
.about__portrait::before { content: "5+"; position: absolute; z-index: 2; right: -28px; top: -36px; color: var(--blue); font-size: 112px; font-weight: 800; letter-spacing: -.1em; opacity: .11; }
.about__portrait-frame { min-height: 500px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 48% 48% 18px 18px; background: var(--blue-soft); }
.about__portrait img { width: 70%; filter: grayscale(1); mix-blend-mode: multiply; }
.about__portrait > span { position: absolute; right: 20px; bottom: 20px; padding: 8px 11px; border-radius: 5px; background: var(--white); color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.about__copy { max-width: 650px; }
.about__signature { display: flex; flex-direction: column; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.about__signature strong { color: var(--blue); }
.about__signature span { margin-top: 4px; color: var(--muted); font-size: 12px; }

.faq { background: var(--off-white); }
.faq__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; }
.faq__intro { align-self: start; position: sticky; top: 110px; }
.faq__intro > p:not(.eyebrow) { color: var(--muted); }
.faq__list { border-top: 1px solid #cfdce3; }
.faq details { border-bottom: 1px solid #cfdce3; }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 26px 0; list-style: none; cursor: pointer; font-size: 17px; font-weight: 800; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary b { width: 32px; height: 32px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--white); color: var(--blue); font-size: 19px; transition: transform .2s, background .2s, color .2s; }
.faq details[open] summary b { background: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq details > p { max-width: 670px; margin: -7px 58px 27px 0; color: var(--muted); }

.quote { padding: 118px 0; background: var(--blue-deep); color: var(--white); }
.quote__grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 7vw; }
.quote h2 em { color: #82cbff; }
.quote__intro > p:not(.eyebrow) { color: #bfd4df; }
.quote__contact { margin-top: 34px; border-top: 1px solid rgba(255, 255, 255, .17); }
.quote__contact a { display: flex; flex-direction: column; padding: 17px 0; border-bottom: 1px solid rgba(255, 255, 255, .17); }
.quote__contact span { color: #8faeba; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.quote__contact strong { margin-top: 4px; color: var(--white); font-size: 15px; overflow-wrap: anywhere; }
.quote__form { min-width: 0; }
.form-placeholder { padding: 40px; border-radius: var(--radius); background: var(--white); color: var(--ink); }

.site-footer { padding: 78px 0 24px; background: #041c2c; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .9fr 1.1fr .9fr; gap: 6vw; padding-bottom: 60px; }
.footer-grid h2 { margin: 5px 0 22px; color: #82cbff; font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid p, .footer-grid li { color: #9eb7c5; font-size: 13px; }
.footer-grid ul { padding: 0; margin: 0; list-style: none; }
.footer-grid li { margin: 8px 0; }
.footer-grid a:hover { color: #ffd1b1; }
.footer-brand > img { width: 250px; height: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 330px; }
.footer-pill { display: inline-flex; margin-top: 10px; padding: 7px 11px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 20px; color: #d9eaf3; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-cert { display: flex; align-items: center; gap: 11px; margin-top: 18px; }
.footer-cert > span:last-child { display: flex; flex-direction: column; }
.footer-cert strong { color: var(--white); font-size: 11px; }
.footer-cert small { margin-top: 2px; color: #7f9baa; font-size: 9px; }
.footer-contact li:nth-child(2) { overflow-wrap: anywhere; }
.footer-link { display: inline-flex; gap: 10px; margin-top: 14px; color: var(--white); font-size: 12px; font-weight: 800; }
.footer-link span { color: var(--orange); }
.footer-social-bar { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.13); }
.footer-social-bar > div { display: flex; flex-direction: column; }
.footer-social-bar > div span { color: #82cbff; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-social-bar > div strong { margin-top: 4px; font-size: 13px; }
.footer-social-bar nav { display: flex; flex-wrap: wrap; gap: 9px; }
.footer-social-link { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px 7px 8px; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; color: var(--white); font-size: 11px; font-weight: 800; transition: border-color .2s, background .2s, transform .2s; }
.footer-social-link i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: var(--blue-deep); font-size: 15px; font-style: normal; font-weight: 800; }
a.footer-social-link:hover { border-color: var(--orange); background: rgba(232,93,4,.13); color: var(--white); transform: translateY(-2px); }
.footer-social-link.is-pending { opacity: .54; cursor: default; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .13); color: #6f8d9d; font-size: 10px; }
.mobile-actions { display: none; }
.content-page { min-height: 60vh; padding-block: 90px; }

.service-hero, .archive-hero { overflow: hidden; background: var(--blue); color: var(--white); }
.service-hero__grid { min-height: 550px; display: grid; grid-template-columns: 1fr 300px; align-items: center; gap: 8vw; }
.service-hero__back { display: inline-flex; margin-bottom: 40px; color: #d8effe; font-size: 12px; font-weight: 800; }
.service-hero h1, .archive-hero h1 { margin-bottom: 22px; }
.service-hero__grid > div:first-child > p:not(.eyebrow) { max-width: 720px; margin: 0 0 30px; color: #e1f1fb; font-size: 18px; }
.service-hero__mark { width: 260px; height: 260px; display: grid; place-items: center; align-content: center; gap: 20px; border: 2px solid rgba(255, 255, 255, .36); border-radius: 50%; background: var(--blue-dark); transform: rotate(4deg); }
.service-hero__mark .dashicons { width: 72px; height: 72px; color: var(--white); font-size: 72px; }
.service-hero__mark b { color: #cce9fc; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.service-content__grid { display: grid; grid-template-columns: 1fr 360px; align-items: start; gap: 8vw; }
.service-content__article { max-width: 760px; }
.service-content__article > h2, .service-method h2 { margin-top: 50px; font-size: clamp(32px, 3.2vw, 46px); }
.service-content__article > h2:first-child { margin-top: 0; }
.service-content__article > p, .service-content__article > ul { color: var(--muted); }
.service-method { margin-top: 60px; padding: 38px; border: 1px solid var(--line); border-top: 5px solid var(--blue); border-radius: 14px; background: var(--off-white); }
.service-method--orange { border-top-color: var(--orange); }
.service-method h2 { margin-top: 0; }
.service-method ol, .service-method ul { padding: 0; margin: 30px 0 0; list-style: none; }
.service-method li { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 16px 0; border-top: 1px solid var(--line); }
.service-method li strong, .service-method li::marker { color: var(--blue); }
.service-method li span, .service-method li { color: var(--muted); }
.service-method--orange li { position: relative; display: block; padding-left: 27px; }
.service-method--orange li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.service-aside { position: sticky; top: 110px; padding: 32px; border-radius: var(--radius); background: var(--blue-deep); color: var(--white); box-shadow: var(--shadow); }
.service-aside__label { color: #82cbff; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.service-aside h2 { margin: 10px 0 15px; font-size: 31px; }
.service-aside > p { color: #b8d0dd; font-size: 13px; }
.service-aside > a { display: flex; flex-direction: column; padding: 14px 0; border-top: 1px solid rgba(255, 255, 255, .15); }
.service-aside > a small { color: #8eacba; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-aside > a strong { margin-top: 2px; overflow-wrap: anywhere; font-size: 14px; }
.service-aside ul { padding: 16px 0 0; margin: 0; border-top: 1px solid rgba(255, 255, 255, .15); list-style: none; }
.service-aside li { position: relative; padding: 5px 0 5px 22px; color: #c6dbe5; font-size: 11px; }
.service-aside li::before { content: "✓"; position: absolute; left: 0; color: #7ee69c; }
.quote--service { padding-top: 95px; }
.archive-hero { padding: 110px 0; }
.archive-hero p:not(.eyebrow) { max-width: 630px; color: #dceefa; font-size: 18px; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-grid article { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.project-grid img { width: 100%; aspect-ratio: 4 / 3; display: block; object-fit: cover; }
.project-grid span { display: block; margin: 20px 23px 8px; color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-grid h2 { margin: 0 23px 8px; font-size: 24px; }
.project-grid p { margin: 0 23px 23px; color: var(--muted); font-size: 12px; }
.project-empty { max-width: 720px; margin: auto; padding: 60px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--off-white); text-align: center; }
.project-empty > .dashicons { width: 58px; height: 58px; color: var(--blue); font-size: 58px; }
.project-empty h2 { margin: 20px auto 10px; font-size: 42px; }
.project-empty p { color: var(--muted); }
.prose { max-width: 850px; }
.prose h2 { margin-top: 55px; font-size: 40px; }
.prose p, .prose li { color: var(--muted); }

.section-heading__action { max-width: 420px; }
.section-heading__action > p { margin: 0 0 15px; color: var(--muted); }
.home-routes { position: relative; z-index: 4; width: min(1180px, calc(100% - 48px)); display: grid; grid-template-columns: repeat(4, 1fr); margin: -1px auto 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); box-shadow: 0 20px 60px rgba(6, 43, 71, .08); }
.home-routes a { position: relative; min-height: 126px; display: grid; grid-template-columns: 30px 1fr 22px; align-content: center; column-gap: 10px; padding: 25px 22px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); transition: background .2s, color .2s; }
.home-routes a:hover { background: var(--blue); color: var(--white); }
.home-routes span { grid-row: 1 / span 2; color: var(--orange); font-size: 10px; font-weight: 800; }
.home-routes b { align-self: end; font-size: 16px; }
.home-routes em { align-self: start; color: var(--muted); font-size: 10px; font-style: normal; }
.home-routes a:hover em { color: #d8edfa; }
.home-routes i { grid-column: 3; grid-row: 1 / span 2; align-self: center; color: var(--orange); font-style: normal; font-size: 20px; }
.service-grid--home .service-card:nth-child(n+6) { min-height: 330px; }
.service-carousel-nav { display: none; }
.softwash--preview { min-height: 720px; }
.softwash--preview .softwash__photo { min-height: 650px; }
.roof-banner { padding: 92px 0; overflow: hidden; background: var(--blue); color: var(--white); }
.roof-banner__grid { display: grid; grid-template-columns: 80px 1fr .7fr; align-items: center; gap: 45px; }
.roof-banner__number { color: rgba(255, 255, 255, .17); font-size: 82px; font-weight: 800; letter-spacing: -.1em; }
.roof-banner h2 { margin-bottom: 0; font-size: clamp(38px, 4vw, 58px); }
.roof-banner h2 em { color: #ffd0b1; }
.roof-banner__grid > div:last-child > p { margin-top: 0; color: #e0f1fb; }
.home-process { background: var(--off-white); }
.home-process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.home-process__steps article { min-height: 260px; padding: 27px; border-top: 5px solid var(--blue); background: var(--white); box-shadow: 0 12px 35px rgba(6, 43, 71, .06); }
.home-process__steps article:nth-child(even) { transform: translateY(28px); border-top-color: var(--orange); }
.home-process__steps span { display: block; color: #9aafbb; font-size: 11px; font-weight: 800; }
.home-process__steps h3 { margin: 65px 0 10px; font-size: 20px; }
.home-process__steps p { margin: 0; color: var(--muted); font-size: 13px; }
.home-final-cta { padding: 105px 0; background: var(--blue-deep); color: var(--white); }
.home-final-cta__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 9vw; }
.home-final-cta h2 { margin-bottom: 0; }
.home-final-cta h2 em { color: #82cbff; }
.home-final-cta__grid > div:last-child > p { color: #bcd3df; }
.home-final-cta__grid > div:last-child > div { display: flex; align-items: center; gap: 25px; margin-top: 25px; }
.home-final-cta .text-link { color: var(--white); }

.inner-hero { padding: 110px 0; overflow: hidden; background: var(--blue); color: var(--white); }
.inner-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 9vw; }
.inner-hero__grid h1, .inner-hero__photo-grid h1, .inner-hero__narrow h1 { margin-bottom: 0; }
.inner-hero h1 strong, .form-page-hero h1 strong, .roof-page-hero h1 strong { color: #ffd1b1; }
.inner-hero__grid > div:last-child > p { margin-top: 0; color: #deeffa; font-size: 17px; }
.inner-hero__narrow { max-width: 1050px; }
.inner-hero__narrow > p:not(.eyebrow) { max-width: 720px; margin: 25px 0 0; color: #deeffa; font-size: 18px; }
.inner-hero__photo-grid { min-height: 520px; display: grid; grid-template-columns: 1fr .88fr; align-items: center; gap: 8vw; }
.inner-hero__photo-grid > div:first-child > p:not(.eyebrow) { max-width: 650px; color: #deeffa; font-size: 17px; }
.inner-hero__image { position: relative; align-self: stretch; min-height: 520px; margin-block: -55px; overflow: hidden; border-left: 10px solid rgba(255, 255, 255, .12); }
.inner-hero__image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.page-services__intro { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.page-services__intro span { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.page-services__intro p { max-width: 600px; margin: 0; color: var(--muted); }
.service-grid--page .service-card h2 { margin: 28px 0 13px; font-size: 27px; }
.choice-guide { padding: 90px 0; background: var(--blue-deep); color: var(--white); }
.choice-guide__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 9vw; }
.choice-guide h2 { margin-bottom: 0; }
.choice-guide h2 em { color: #82cbff; }
.choice-guide__grid > div:last-child > p { color: #bdd4df; }
.method-story__grid, .about-story__grid { display: grid; grid-template-columns: 1fr .9fr; align-items: end; gap: 10vw; }
.method-story__grid .lead, .about-story__grid .lead { color: var(--ink); font-size: 21px; font-weight: 750; }
.method-story__grid > div:last-child p:not(.lead), .about-story__grid > div:last-child p:not(.lead) { color: var(--muted); }
.method-steps { padding: 95px 0; background: var(--blue-deep); color: var(--white); }
.method-steps__line { display: grid; grid-template-columns: repeat(4, 1fr); }
.method-steps article { position: relative; min-height: 310px; padding: 30px; border-left: 1px solid rgba(255, 255, 255, .17); }
.method-steps article:last-child { border-right: 1px solid rgba(255, 255, 255, .17); }
.method-steps article > b { color: #82cbff; font-size: 10px; letter-spacing: .14em; }
.method-steps article > .dashicons { width: 48px; height: 48px; display: block; margin: 45px 0 25px; color: var(--orange); font-size: 48px; }
.method-steps h2 { margin-bottom: 12px; font-size: 25px; }
.method-steps p { color: #a9c2cf; font-size: 13px; }
.suitable { background: var(--off-white); }
.suitable__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.suitable__panel { padding: 45px; border: 1px solid var(--line); background: var(--white); }
.suitable__panel--yes { border-top: 6px solid var(--blue); }
.suitable__panel:not(.suitable__panel--yes) { border-top: 6px solid var(--orange); }
.suitable__panel > span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.suitable__panel h2 { margin: 10px 0 25px; font-size: 38px; }
.suitable__panel ul { padding: 0; margin: 0; list-style: none; }
.suitable__panel li { position: relative; padding: 11px 0 11px 28px; border-top: 1px solid var(--line); color: var(--muted); }
.suitable__panel li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.page-cta { padding: 95px 0; background: var(--blue); color: var(--white); }
.page-cta__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 9vw; }
.page-cta h2 { margin-bottom: 0; }
.page-cta__grid > div:last-child > p { color: #deeffa; }

.workflow { background: var(--off-white); }
.workflow__list { counter-reset: flow; }
.workflow__list article { display: grid; grid-template-columns: 100px 1fr .65fr; align-items: start; gap: 55px; padding: 70px 0; border-bottom: 1px solid #cddce4; }
.workflow__list article:first-child { padding-top: 0; }
.workflow__list article > span { color: rgba(20, 121, 201, .2); font-size: 75px; font-weight: 800; letter-spacing: -.08em; line-height: .8; }
.workflow__list article h2 { font-size: 43px; }
.workflow__list article > div > p:last-child { color: var(--muted); }
.workflow__list aside { padding: 25px; border-left: 4px solid var(--orange); background: var(--white); color: var(--blue); font-size: 12px; font-weight: 800; }
.workflow__list aside ul { padding-left: 17px; margin-bottom: 0; color: var(--muted); font-weight: 500; }
.workflow__list aside li { margin-top: 7px; }

.about-hero-card { position: relative; align-self: end; min-height: 440px; display: grid; place-items: end center; overflow: hidden; border-radius: 48% 48% 0 0; background: var(--blue-soft); }
.about-hero-card img { width: 75%; filter: grayscale(1); mix-blend-mode: multiply; }
.about-hero-card span { position: absolute; right: 18px; bottom: 18px; padding: 8px 11px; background: var(--white); color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.values { padding: 95px 0; background: var(--blue-deep); color: var(--white); }
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.values article { min-height: 310px; padding: 38px; border-left: 1px solid rgba(255, 255, 255, .16); }
.values article:last-child { border-right: 1px solid rgba(255, 255, 255, .16); }
.values .dashicons { width: 48px; height: 48px; color: var(--orange); font-size: 48px; }
.values h2 { margin: 75px 0 15px; font-size: 28px; }
.values p { color: #a9c2cf; font-size: 13px; }
.service-area { background: var(--off-white); }
.service-area__grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 9vw; }
.service-area__map { aspect-ratio: 1; display: grid; place-items: center; align-content: center; border: 1px solid var(--line); border-radius: 50% 50% 44% 56%; background: var(--blue); color: var(--white); transform: rotate(-5deg); }
.service-area__map strong { font-size: 110px; letter-spacing: -.1em; line-height: 1; }
.service-area__map span { font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.service-area__grid > div:last-child > p:not(.eyebrow) { color: var(--muted); }
.service-area address { margin: 25px 0; color: var(--blue); font-style: normal; font-weight: 750; }

.faq-page { background: var(--off-white); }
.faq-page__grid { display: grid; grid-template-columns: 250px 1fr; align-items: start; gap: 8vw; }
.faq-page aside { position: sticky; top: 110px; display: flex; flex-direction: column; padding: 25px; border-left: 4px solid var(--blue); background: var(--white); }
.faq-page aside > strong { margin-bottom: 15px; color: var(--blue); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.faq-page aside > a:not(.button) { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 700; }
.faq-page aside .button { margin-top: 20px; }
.faq-group { margin-bottom: 70px; scroll-margin-top: 120px; }
.faq-group details { border-bottom: 1px solid #cbd9e0; }
.faq-group summary { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 25px 0; list-style: none; cursor: pointer; font-size: 18px; font-weight: 800; }
.faq-group summary::-webkit-details-marker { display: none; }
.faq-group summary b { width: 32px; height: 32px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--white); color: var(--blue); transition: transform .2s, background .2s, color .2s; }
.faq-group details[open] summary b { background: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-group details > p { max-width: 720px; margin: -5px 60px 25px 0; color: var(--muted); }

.form-page-hero, .roof-form-section { padding: 95px 0; background: var(--blue-deep); color: var(--white); }
.form-page-hero__grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 7vw; }
.form-page-hero__grid > div:first-child { position: sticky; top: 120px; }
.form-page-hero h1 { font-size: clamp(46px, 5vw, 70px); }
.form-page-hero__grid > div:first-child > p:not(.eyebrow) { color: #bdd4df; }
.form-page-hero ul { padding: 20px 0 0; margin: 30px 0 0; border-top: 1px solid rgba(255, 255, 255, .17); list-style: none; }
.form-page-hero li { display: flex; align-items: center; gap: 8px; padding: 8px 0; color: #d6e8f1; font-size: 12px; }
.form-page-hero li .dashicons { color: #75df94; }
.form-support { padding: 35px 0; background: var(--blue); color: var(--white); }
.form-support__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.form-support__grid > div { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 12px; padding: 12px 25px; border-left: 1px solid rgba(255, 255, 255, .2); }
.form-support__grid > div:last-child { border-right: 1px solid rgba(255, 255, 255, .2); }
.form-support .dashicons { width: 34px; height: 34px; color: #ffd1b1; font-size: 34px; }
.form-support small { display: block; color: #b9ddf5; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-support a, .form-support strong { display: block; font-size: 13px; overflow-wrap: anywhere; }

.roof-page-hero { padding: 105px 0; overflow: hidden; background: var(--blue); color: var(--white); }
.roof-page-hero__grid { display: grid; grid-template-columns: 1fr 340px; align-items: center; gap: 8vw; }
.roof-page-hero__grid > div:first-child > p:not(.eyebrow) { max-width: 720px; color: #deeffa; font-size: 18px; }
.roof-page-hero__facts { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.roof-page-hero__facts span { padding: 9px 13px; border: 1px solid rgba(255, 255, 255, .25); color: #dceffa; font-size: 10px; }
.roof-page-hero__facts b { color: var(--white); }
.roof-page-hero__badge { width: 310px; height: 310px; display: grid; place-items: center; align-content: center; border: 3px solid var(--white); border-radius: 50%; background: var(--orange); transform: rotate(5deg); box-shadow: 20px 20px 0 rgba(6, 43, 71, .18); }
.roof-page-hero__badge .dashicons { width: 65px; height: 65px; margin-bottom: 18px; font-size: 65px; }
.roof-page-hero__badge strong { font-size: 23px; }
.roof-page-hero__badge small { color: #ffe2cf; }
.roof-check { background: var(--off-white); }
.roof-check__grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.roof-check__grid article { min-height: 230px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.roof-check__grid b { color: var(--orange); font-size: 10px; letter-spacing: .13em; }
.roof-check__grid h3 { margin: 60px 0 9px; font-size: 20px; }
.roof-check__grid p { color: var(--muted); font-size: 12px; }

.inner-hero--contact { background: var(--blue-dark); }
.contact-page__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; }
.contact-cards { display: grid; gap: 14px; }
.contact-cards > * { min-height: 155px; display: grid; grid-template-columns: 56px 1fr; align-content: center; column-gap: 18px; padding: 27px; border: 1px solid var(--line); background: var(--off-white); transition: transform .2s, border-color .2s; }
.contact-cards > a:hover { border-color: var(--blue); transform: translateX(5px); }
.contact-cards .dashicons { grid-row: 1 / span 3; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: var(--white); font-size: 25px; }
.contact-cards small { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-cards strong { overflow-wrap: anywhere; font-size: 17px; }
.contact-cards em { color: var(--muted); font-size: 10px; font-style: normal; }
.contact-hours h2 { font-size: 42px; }
.contact-hours dl { margin: 30px 0; border-top: 1px solid var(--line); }
.contact-hours dl div { display: flex; justify-content: space-between; gap: 25px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.contact-hours dt { font-weight: 750; }
.contact-hours dd { margin: 0; color: var(--muted); }
.contact-choice { padding: 90px 0; background: var(--off-white); }
.contact-choice__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-choice__grid > div { padding: 42px; background: var(--blue-deep); color: var(--white); }
.contact-choice__grid > div:last-child { background: var(--blue); }
.contact-choice span { color: #ffd1b1; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-choice h2 { margin: 15px 0; font-size: 37px; }
.contact-choice p { color: #bfd5e0; }
.contact-choice a { color: var(--white); font-size: 13px; font-weight: 800; }
.footer-hours { margin-top: 18px !important; color: #d1e2eb !important; }

@media (max-width: 1180px) {
	.scroll-progress { display: none; }
	.main-nav { gap: 17px; }
	.site-logo { width: 205px; }
	.hero__copy { padding-right: 50px; }
	.process-steps { grid-template-columns: repeat(2, 1fr); }
	.home-routes { grid-template-columns: repeat(2, 1fr); }
	.roof-check__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
	.section { padding: 90px 0; }
	.header-cta, .main-nav { display: none; }
	.menu-toggle { display: block; margin-left: auto; }
	.main-nav.is-open { position: fixed; z-index: 95; top: var(--mobile-menu-top, 82px); right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 20px 24px 80px; border-top: 1px solid var(--line); background: var(--white); overflow-y: auto; overscroll-behavior: contain; }
	.main-nav.is-open a { padding: 20px 5px; border-bottom: 1px solid var(--line); font-size: 18px; }
	.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
	.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	.hero__grid { grid-template-columns: 1fr; padding-top: 15px; }
	.hero__copy { padding: 70px 0 55px; }
	.hero__visual { min-height: 580px; }
	.hero__photo-wrap { inset: 0 -24px 60px 12vw; border-radius: 28px 0 0 28px; }
	.hero__review { left: 3vw; bottom: 85px; }
	.hero__stamp { right: 10px; }
	.intro__grid, .about__grid, .faq__grid, .quote__grid { grid-template-columns: 1fr; gap: 55px; }
	.service-grid { grid-template-columns: repeat(2, 1fr); }
	.softwash { grid-template-columns: 1fr; }
	.softwash__photo { min-height: 600px; }
	.softwash__copy { padding: 85px 7vw; }
	.roof-inspection__grid { grid-template-columns: 70px 1fr; }
	.roof-inspection__copy { grid-column: 2; }
	.about__portrait { max-width: 600px; }
	.faq__intro { position: static; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.service-hero__grid { grid-template-columns: 1fr 220px; }
	.service-hero__mark { width: 210px; height: 210px; }
	.service-content__grid { grid-template-columns: 1fr; }
	.service-aside { position: static; max-width: 620px; }
	.project-grid { grid-template-columns: repeat(2, 1fr); }
	.roof-banner__grid { grid-template-columns: 70px 1fr; }
	.roof-banner__grid > div:last-child { grid-column: 2; }
	.home-process__steps { grid-template-columns: repeat(2, 1fr); }
	.home-final-cta__grid, .inner-hero__grid, .method-story__grid, .about-story__grid, .page-cta__grid, .choice-guide__grid, .service-area__grid, .contact-page__grid { grid-template-columns: 1fr; }
	.inner-hero__photo-grid { grid-template-columns: 1fr; }
	.inner-hero__image { min-height: 560px; margin: 20px 0 -110px 12vw; }
	.method-steps__line { grid-template-columns: repeat(2, 1fr); }
	.workflow__list article { grid-template-columns: 75px 1fr; }
	.workflow__list aside { grid-column: 2; }
	.form-page-hero__grid, .roof-page-hero__grid { grid-template-columns: 1fr; }
	.form-page-hero__grid > div:first-child { position: static; }
	.roof-page-hero__badge { display: none; }
	.form-support__grid { grid-template-columns: 1fr; }
	.form-support__grid > div { border-right: 1px solid rgba(255, 255, 255, .2); border-bottom: 1px solid rgba(255, 255, 255, .2); }
	.faq-page__grid { grid-template-columns: 1fr; }
	.faq-page aside { position: static; }
}

@media (max-width: 680px) {
	.shell { width: min(100% - 34px, 1180px); }
	.topbar__inner { justify-content: center; min-height: 36px; }
	.topbar__inner > span { display: none; }
	.site-header { min-height: 70px; }
	.site-logo { width: 190px; }
	h1 { font-size: clamp(44px, 14vw, 63px); }
	h2 { font-size: clamp(37px, 11vw, 50px); }
	.section { padding: 72px 0; }
	.section-heading { align-items: start; flex-direction: column; gap: 10px; margin-bottom: 36px; }
	.hero, .hero__grid { min-height: auto; }
	.hero__copy { padding: 58px 0 45px; }
	.hero__lead { font-size: 16px; }
	.hero__actions { align-items: stretch; flex-direction: column; }
	.hero .text-link { align-self: center; }
	.trust-list { align-items: start; flex-direction: column; margin-top: 34px; }
	.hero__visual { min-height: 480px; }
	.hero__photo-wrap { inset: 0 -17px 55px 6vw; }
	.hero__stamp { top: 18px; right: 0; width: 102px; height: 102px; }
	.hero__review { left: 0; right: 22px; bottom: 72px; width: auto; }
	.hero__scroll { display: none; }
	.service-ticker__track { min-height: 62px; }
	.intro__grid { grid-template-columns: 1fr; gap: 28px; }
	.service-grid { grid-template-columns: 1fr; }
	.service-card--featured { grid-column: auto; }
	.service-card { min-height: 340px; padding: 25px; }
	.services { overflow: hidden; }
	.service-carousel-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: -12px 0 18px; }
	.service-carousel-nav > p { display: flex; align-items: center; gap: 8px; margin: 0; color: var(--muted); font-size: 12px; font-weight: 700; }
	.service-carousel-nav > p span { color: var(--orange); font-size: 18px; }
	.service-carousel-nav__controls { display: flex; align-items: center; gap: 7px; }
	.service-carousel-nav__counter { min-width: 48px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
	.service-carousel-nav button { width: 40px; height: 40px; display: grid; place-items: center; padding: 0; border: 1px solid #bad5e6; border-radius: 50%; background: var(--white); color: var(--blue-deep); font-size: 19px; cursor: pointer; }
	.service-carousel-nav button:disabled { opacity: .35; cursor: default; }
	.service-grid--home { display: flex; gap: 14px; max-width: 100%; padding: 2px 2px 16px; overflow-x: auto; overflow-y: hidden; overscroll-behavior-inline: contain; scroll-behavior: smooth; scroll-padding-inline: 2px; scroll-snap-type: inline mandatory; scrollbar-width: none; }
	.service-grid--home::-webkit-scrollbar { display: none; }
	.service-grid--home .service-card { flex: 0 0 calc(100% - 32px); min-width: 0; scroll-snap-align: start; scroll-snap-stop: always; }
	.service-grid--home .service-card--featured { transform: none; }
	.service-grid--home .service-card__media, .service-grid--home .service-card--featured .service-card__media { height: 205px; }
	.service-grid--home .service-card__body, .service-grid--home .service-card--featured .service-card__body { min-height: 268px; padding: 21px; }
	.service-grid--home .service-card__body h3 { margin: 15px 0 8px; font-size: 24px; }
	.service-grid--home .service-card__body > p { display: -webkit-box; margin-bottom: 18px; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
	.service-grid--home [data-image-reveal].is-revealed { animation-duration: .32s; animation-timing-function: ease-out; }
	.softwash__photo { min-height: 460px; }
	.softwash__copy { padding: 70px 18px; }
	.comparison { min-height: 420px; height: 78vh; max-height: 590px; border-radius: 16px; }
	.comparison__after img { width: calc(100vw - 34px); }
	.roof-inspection__grid { grid-template-columns: 1fr; gap: 24px; }
	.roof-inspection__number { font-size: 65px; }
	.roof-inspection__copy { grid-column: auto; }
	.process-steps { grid-template-columns: 1fr; }
	.process-steps article { min-height: auto; }
	.process-steps article > div { margin-top: 35px; }
	.about__portrait-frame { min-height: 420px; }
	.about__portrait::before { right: 0; top: -28px; font-size: 80px; }
	.quote { padding: 75px 0; }
	.footer-grid { grid-template-columns: 1fr; gap: 34px; }
	.footer-bottom { align-items: start; flex-direction: column; }
	.site-footer { padding-bottom: 104px; }
	.mobile-actions { position: fixed; z-index: 85; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); left: 10px; display: grid; grid-template-columns: .78fr 1.22fr; gap: 7px; padding: 7px; border: 1px solid rgba(255,255,255,.72); border-radius: 15px; background: rgba(255,255,255,.94); box-shadow: 0 16px 42px rgba(6,43,71,.27); opacity: 0; visibility: hidden; transform: translateY(calc(100% + 28px)); pointer-events: none; transition: opacity .22s ease, transform .28s cubic-bezier(.2,.75,.2,1), visibility .28s; backdrop-filter: blur(12px); }
	.mobile-actions.is-visible { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
	.mobile-actions a { min-width: 0; min-height: 53px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 8px 10px; border-radius: 10px; line-height: 1.05; }
	.mobile-actions a > span:not(.dashicons) { min-width: 0; display: flex; flex-direction: column; }
	.mobile-actions small { margin-bottom: 3px; font-size: 8px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
	.mobile-actions strong { overflow: hidden; font-size: 12px; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
	.mobile-actions__call { border: 1px solid #c8e0ef; background: #eff8fd; color: var(--blue-deep); }
	.mobile-actions__call .dashicons { width: 20px; height: 20px; color: var(--blue); font-size: 20px; }
	.mobile-actions__call small { color: var(--muted); }
	.mobile-actions__primary { background: var(--orange); color: var(--white); box-shadow: 0 7px 18px rgba(232,93,4,.25); }
	.mobile-actions__primary small { color: #ffe3d1; }
	.mobile-actions__primary > span:last-child { flex: 0 0 auto; font-size: 17px; }
	.service-hero__grid { min-height: auto; grid-template-columns: 1fr; padding: 70px 0; }
	.service-hero__mark { display: none; }
	.service-method { padding: 25px 20px; }
	.service-method li { grid-template-columns: 1fr; gap: 4px; }
	.archive-hero { padding: 75px 0; }
	.project-grid { grid-template-columns: 1fr; }
	.project-empty { padding: 40px 22px; }
	.home-routes { width: 100%; grid-template-columns: 1fr 1fr; }
	.home-routes a { min-height: 105px; padding: 18px 15px; grid-template-columns: 23px 1fr 16px; }
	.home-routes em { display: none; }
	.section-heading__action { max-width: none; }
	.roof-banner { padding: 70px 0; }
	.roof-banner__grid { grid-template-columns: 1fr; gap: 20px; }
	.roof-banner__grid > div:last-child { grid-column: auto; }
	.home-process__steps { grid-template-columns: 1fr; }
	.home-process__steps article:nth-child(even) { transform: none; }
	.home-process__steps article { min-height: 220px; }
	.home-final-cta { padding: 75px 0; }
	.home-final-cta__grid { grid-template-columns: 1fr; align-items: start; gap: 35px; }
	.home-final-cta__grid > div:last-child > div { align-items: stretch; flex-direction: column; }
	.inner-hero { padding: 75px 0; }
	.inner-hero__photo-grid { min-height: auto; }
	.inner-hero__image { min-height: 430px; margin: 30px -17px -75px 8vw; }
	.page-services__intro { flex-direction: column; gap: 10px; }
	.method-steps__line, .suitable__grid, .values__grid, .contact-choice__grid { grid-template-columns: 1fr; }
	.method-steps article, .values article { min-height: auto; border-right: 1px solid rgba(255, 255, 255, .17); border-bottom: 1px solid rgba(255, 255, 255, .17); }
	.method-steps article > .dashicons, .values h2 { margin-top: 35px; }
	.suitable__panel { padding: 30px 22px; }
	.workflow__list article { grid-template-columns: 1fr; gap: 20px; padding: 50px 0; }
	.workflow__list article > span { font-size: 58px; }
	.workflow__list aside { grid-column: auto; }
	.about-hero-card { min-height: 380px; }
	.service-area__map { max-width: 360px; }
	.faq-page aside { overflow-x: auto; }
	.form-page-hero, .roof-form-section { padding: 72px 0; }
	.roof-page-hero { padding: 75px 0; }
	.roof-check__grid { grid-template-columns: 1fr 1fr; }
	.roof-check__grid article { min-height: 190px; }
	.contact-choice__grid > div { padding: 32px 24px; }
}

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

/* Visual service system */
.hto-service-icon { width: 58px; height: 58px; display: inline-block; flex: 0 0 auto; background: currentColor; -webkit-mask: var(--hto-icon) center / contain no-repeat; mask: var(--hto-icon) center / contain no-repeat; }
.service-card--visual { position: relative; min-height: 0; padding: 0; overflow: hidden; background: var(--white); color: var(--ink); }
.service-card--visual.service-card--featured { background: var(--blue-deep); color: var(--white); }
.service-card__media { position: relative; height: 245px; display: block; overflow: hidden; border: 0 !important; padding: 0 !important; }
.service-card--featured .service-card__media { height: 315px; }
.service-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6, 43, 71, .5)); pointer-events: none; }
.service-card__media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.service-card--visual:hover .service-card__media img { transform: scale(1.055); }
.service-card__media .service-card__number { position: absolute; z-index: 2; right: 20px; bottom: 15px; color: var(--white); font-size: 13px; }
.service-card__media .temporary-chip { top: 12px; left: 12px; }
.service-card__body { min-height: 315px; display: flex; flex-direction: column; padding: 25px 28px 29px; }
.service-card--featured .service-card__body { min-height: 290px; }
.service-card__body .service-card__top { align-items: center; justify-content: flex-start; gap: 18px; }
.service-card__body .hto-service-icon { width: 44px; height: 44px; color: var(--blue); }
.service-card--featured .service-card__body .hto-service-icon { color: #82cbff; }
.service-card__body .service-card__tag { margin: 0; }
.service-card__body h2, .service-card__body h3 { margin: 20px 0 12px; font-size: 25px; }
.service-card__body > p { margin: 0 0 24px; color: var(--muted); font-size: 13px; }
.service-card--featured .service-card__body > p { color: #c7dce7; }
.service-card__body > a { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line); color: var(--blue); font-size: 12px; font-weight: 800; }
.service-card--featured .service-card__body > a { border-color: rgba(255,255,255,.2); color: var(--white); }
.service-card__body > a span { color: var(--orange); font-size: 20px; }

/* Homepage imagery */
.work-mosaic { overflow: hidden; background: var(--off-white); }
.work-mosaic__grid { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: repeat(2, 290px); gap: 16px; }
.work-mosaic figure { position: relative; margin: 0; overflow: hidden; border-radius: 18px; background: var(--blue-deep); }
.work-mosaic__large { grid-row: 1 / 3; }
.work-mosaic img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.work-mosaic figure:hover img { transform: scale(1.04); }
.work-mosaic figure::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(6,43,71,.84)); }
.work-mosaic figcaption { position: absolute; z-index: 2; right: 25px; bottom: 23px; left: 25px; display: flex; align-items: end; justify-content: space-between; gap: 20px; color: var(--white); }
.work-mosaic figcaption span { color: #b9ddf5; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.work-mosaic figcaption strong { font-size: 20px; }
.home-area { padding: 105px 0; overflow: hidden; background: var(--blue); color: var(--white); }
.home-area__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 9vw; }
.home-area h2 em { color: #a5ddff; }
.home-area__grid > div:first-child > p:not(.eyebrow) { max-width: 690px; color: #d6ebf8; }
.home-area__orbit { position: relative; width: min(410px, 100%); aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; }
.home-area__orbit::before, .home-area__orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.home-area__orbit::before { inset: 14%; }
.home-area__orbit::after { inset: 29%; }
.home-area__orbit b { font-size: 86px; letter-spacing: -.1em; }
.home-area__orbit span { position: absolute; top: 9%; right: 2%; padding: 8px 12px; border-radius: 20px; background: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; animation: hto-float 4s ease-in-out infinite; }
.home-area__orbit i { position: absolute; left: 13%; bottom: 13%; width: 13px; height: 13px; border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 9px rgba(255,255,255,.12); }

/* Service detail */
.breadcrumbs { padding-top: 18px; padding-bottom: 18px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; color: var(--muted); font-size: 10px; font-weight: 700; }
.breadcrumbs li { display: flex; gap: 8px; }
.breadcrumbs a:hover { color: var(--orange); }
.service-hero__visual { position: relative; align-self: stretch; min-height: 510px; margin: 34px 0; overflow: hidden; border-radius: 22px; background: var(--blue-deep); box-shadow: -20px 22px 0 rgba(6,43,71,.12); }
.service-hero__visual img { width: 100%; height: 100%; display: block; object-fit: cover; }
.service-hero__visual::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(6,43,71,.86)); }
.service-hero__visual figcaption { position: absolute; z-index: 2; right: 24px; bottom: 22px; left: 24px; display: flex; align-items: center; gap: 15px; color: var(--white); }
.service-hero__visual figcaption .hto-service-icon { width: 42px; height: 42px; color: #9ad8ff; }
.service-hero__visual figcaption span { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-gallery { padding: 0 0 115px; background: var(--white); }
.service-gallery__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 16px; }
.service-gallery figure { position: relative; min-height: 470px; margin: 0; overflow: hidden; border-radius: 18px; background: var(--blue-deep); }
.service-gallery img { width: 100%; height: 100%; display: block; object-fit: cover; }
.service-gallery figure::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(6,43,71,.82)); }
.service-gallery figcaption { position: absolute; z-index: 2; right: 24px; bottom: 23px; left: 24px; display: flex; flex-direction: column; color: var(--white); }
.service-gallery figcaption span { color: #9ad8ff; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-gallery figcaption strong { margin-top: 5px; font-size: 19px; }
.service-locations { background: var(--off-white); }
.location-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 28px; }
.location-link-grid a { min-height: 78px; display: grid; grid-template-columns: 30px 1fr 20px; align-items: center; gap: 12px; padding: 18px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); transition: border-color .2s, transform .2s; }
.location-link-grid a:hover { border-color: var(--blue); transform: translateY(-3px); }
.location-link-grid .dashicons { color: var(--orange); }
.location-link-grid b { font-size: 13px; }
.location-link-grid i { color: var(--blue); font-style: normal; }

/* Softwash and workflow proof */
.softwash-proof { padding: 85px 0; overflow: hidden; background: var(--blue-deep); color: var(--white); }
.softwash-proof__grid { display: grid; grid-template-columns: 1fr .68fr 1fr; align-items: center; gap: 18px; }
.softwash-proof figure { position: relative; min-height: 510px; margin: 0; overflow: hidden; border-radius: 18px; }
.softwash-proof figure:first-child { transform: rotate(-2deg); }
.softwash-proof figure:last-child { transform: rotate(2deg); }
.softwash-proof figure img { width: 100%; height: 100%; display: block; object-fit: cover; }
.softwash-proof figcaption { position: absolute; right: 15px; bottom: 15px; padding: 7px 10px; background: var(--white); color: var(--blue-deep); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.softwash-proof__grid > div { position: relative; z-index: 2; text-align: center; }
.softwash-proof h2 { font-size: clamp(35px,4vw,55px); }
.softwash-proof h2 em { color: #82cbff; }
.softwash-proof__grid > div > p:not(.eyebrow) { color: #bcd4e1; font-size: 13px; }
.softwash-proof .temporary-chip { position: static; display: inline-flex; margin-top: 12px; }
.workflow-gallery { position: relative; padding: 0 0 105px; background: var(--off-white); }
.workflow-gallery__grid { display: grid; grid-template-columns: .75fr 1.5fr .75fr; gap: 14px; }
.workflow-gallery figure { position: relative; height: 400px; margin: 0; overflow: hidden; border-radius: 16px; background: var(--blue-deep); }
.workflow-gallery figure:nth-child(2) { height: 485px; margin-top: -42px; }
.workflow-gallery img { width: 100%; height: 100%; display: block; object-fit: cover; }
.workflow-gallery figcaption { position: absolute; right: 14px; bottom: 14px; left: 14px; padding: 10px 12px; background: rgba(6,43,71,.86); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.workflow-gallery > .shell:last-child { position: relative; }
.workflow-gallery .temporary-chip { top: auto; bottom: 14px; }
.roof-page-hero__photo { position: relative; height: 420px; margin: 0; overflow: hidden; border-radius: 50% 50% 18px 18px; background: var(--blue-deep); box-shadow: 18px 18px 0 rgba(6,43,71,.2); }
.roof-page-hero__photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.roof-page-hero__photo::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(6,43,71,.9)); }
.roof-page-hero__photo figcaption { position: absolute; z-index: 2; right: 22px; bottom: 20px; left: 22px; display: flex; flex-direction: column; }
.roof-page-hero__photo figcaption strong { font-size: 18px; }
.roof-page-hero__photo figcaption small { color: #b9d9e9; }

/* Work area */
.area-hero, .location-hero { overflow: hidden; background: var(--blue); color: var(--white); }
.area-hero__grid, .location-hero__grid { min-height: 610px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 8vw; padding-top: 70px; padding-bottom: 70px; }
.area-hero__grid > div:first-child > p:not(.eyebrow), .location-hero__grid > div:first-child > p:not(.eyebrow) { max-width: 680px; color: #dceefa; font-size: 17px; }
.area-hero .text-link, .location-hero .text-link { color: var(--white); }
.area-hero__map { position: relative; width: min(440px,100%); aspect-ratio: 1; display: grid; place-items: center; align-content: center; border: 1px solid rgba(255,255,255,.4); border-radius: 48% 52% 45% 55%; transform: rotate(-4deg); }
.area-hero__map::before, .area-hero__map::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.17); border-radius: inherit; }
.area-hero__map::before { inset: 13%; }
.area-hero__map::after { inset: 28%; }
.area-hero__map b, .area-hero__map small { position: relative; z-index: 2; }
.area-hero__map b { font-size: 28px; }
.area-hero__map small { color: #bcdcec; }
.area-hero__map i { position: absolute; z-index: 2; right: 12%; top: 10%; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: var(--white); font-size: 26px; font-style: normal; animation: hto-float 4s ease-in-out infinite; }
.area-hero__pulse { position: absolute; z-index: 2; left: 19%; bottom: 17%; width: 14px; height: 14px; border-radius: 50%; background: var(--white); box-shadow: 0 0 0 0 rgba(255,255,255,.5); animation: hto-pulse-map 2.6s ease-out infinite; }
.area-index { background: var(--off-white); }
.area-card-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.area-card { min-height: 235px; display: grid; grid-template-columns: 48px 1fr 30px; gap: 20px; padding: 32px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); transition: border-color .25s, transform .25s, box-shadow .25s; }
.area-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.area-card__number { color: rgba(20,121,201,.32); font-size: 25px; font-weight: 800; }
.area-card small { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.area-card h2 { margin: 12px 0; font-size: 30px; }
.area-card p { margin: 0; color: var(--muted); font-size: 13px; }
.area-card > i { color: var(--blue); font-size: 24px; font-style: normal; }
.area-services { padding: 95px 0; background: var(--blue-deep); color: var(--white); }
.area-services__grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 8vw; }
.area-services h2 { font-size: clamp(38px,4.5vw,60px); }
.area-services p { color: #bfd5e0; }
.area-services figure { position: relative; height: 470px; margin: 0; overflow: hidden; border-radius: 20px; }
.area-services figure img { width: 100%; height: 100%; display: block; object-fit: cover; }
.location-hero figure { position: relative; height: 500px; margin: 0; overflow: hidden; border-radius: 24px; box-shadow: -22px 24px 0 rgba(6,43,71,.18); }
.location-hero figure img { width: 100%; height: 100%; display: block; object-fit: cover; }
.location-hero figure::after { content: ""; position: absolute; inset: 48% 0 0; background: linear-gradient(transparent,rgba(6,43,71,.9)); }
.location-hero figcaption { position: absolute; z-index: 2; right: 22px; bottom: 21px; left: 22px; display: grid; grid-template-columns: 35px 1fr; column-gap: 10px; color: var(--white); }
.location-hero figcaption .dashicons { grid-row: 1 / 3; color: #a9ddff; font-size: 31px; }
.location-hero figcaption small { color: #bad7e6; }
.location-story { background: var(--white); }
.location-story__grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: start; gap: 8vw; }
.location-story__grid aside { position: sticky; top: 115px; padding: 35px; border-top: 6px solid var(--orange); border-radius: 8px; background: var(--blue-soft); }
.location-story__grid aside > span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.location-story__grid aside > strong { display: block; margin: 16px 0 24px; font-size: 20px; line-height: 1.45; }
.location-story__grid aside ul { padding: 0; margin: 0; list-style: none; color: var(--muted); font-size: 12px; }
.location-story__grid aside li { padding: 9px 0; border-top: 1px solid rgba(20,121,201,.16); }
.local-services { padding: 105px 0; background: var(--blue-deep); color: var(--white); }
.local-services .section-heading p { color: #b7cfdb; }
.arrow-link--light { color: var(--white); }
.local-services__grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.local-services__grid a { min-height: 190px; display: flex; flex-direction: column; padding: 24px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); transition: background .2s; }
.local-services__grid a:hover { background: var(--blue); }
.local-services__grid .hto-service-icon { width: 44px; height: 44px; color: #82cbff; }
.local-services__grid b { margin-top: 40px; font-size: 14px; }
.local-services__grid a > span:last-child { margin: auto 0 0 auto; color: var(--orange); }
.local-faq { background: var(--off-white); }
.local-faq__grid, .ad-faq__grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 8vw; }
.local-faq details, .ad-faq details { border-bottom: 1px solid #c9d9e1; }
.local-faq summary, .ad-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 0; list-style: none; cursor: pointer; font-weight: 800; }
.local-faq summary::-webkit-details-marker, .ad-faq summary::-webkit-details-marker { display: none; }
.local-faq summary b, .ad-faq summary b { width: 32px; height: 32px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--white); color: var(--blue); transition: transform .2s; }
.local-faq details[open] summary b, .ad-faq details[open] summary b { transform: rotate(45deg); }
.local-faq details p, .ad-faq details p { margin: -3px 50px 24px 0; color: var(--muted); }
.quote--location { padding-top: 95px; }
.quote__phone { display: flex; flex-direction: column; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); }
.quote__phone small { color: #90adbc; }
.quote__phone strong { font-size: 21px; }

.project-placeholder-head { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 8vw; margin-bottom: 45px; }
.project-placeholder-head > p { color: var(--muted); }
.project-placeholder-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.project-placeholder-grid figure { position: relative; height: 390px; margin: 0; overflow: hidden; border-radius: 15px; background: var(--blue-deep); }
.project-placeholder-grid figure:nth-child(2), .project-placeholder-grid figure:nth-child(5) { height: 470px; }
.project-placeholder-grid img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.project-placeholder-grid figure:hover img { transform: scale(1.045); }
.project-placeholder-grid figure::after { content: ""; position: absolute; inset: 52% 0 0; background: linear-gradient(transparent,rgba(6,43,71,.88)); }
.project-placeholder-grid figcaption { position: absolute; z-index: 2; right: 20px; bottom: 18px; left: 20px; display: flex; flex-direction: column; color: var(--white); }
.project-placeholder-grid figcaption span { color: #a9daf8; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.project-placeholder-grid figcaption strong { font-size: 18px; }
.project-placeholder-cta { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 35px; padding: 27px; border-left: 5px solid var(--orange); background: var(--blue-soft); }
.project-placeholder-cta p { margin: 0; font-weight: 800; }

/* Google Ads landing pages */
.ad-hero { overflow: hidden; background: var(--blue); color: var(--white); }
.ad-hero__grid { min-height: 650px; display: grid; grid-template-columns: 1fr .9fr; align-items: stretch; gap: 7vw; }
.ad-hero__copy { align-self: center; padding: 70px 0; }
.ad-hero h1 { font-size: clamp(46px,5.4vw,75px); }
.ad-hero__copy > p:not(.eyebrow) { max-width: 690px; color: #dceefa; font-size: 17px; }
.ad-hero__actions { display: flex; align-items: center; gap: 25px; margin-top: 31px; }
.ad-hero__actions > a:last-child { display: flex; flex-direction: column; }
.ad-hero__actions small { color: #acd2e9; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ad-hero__actions strong { margin-top: 2px; font-size: 15px; }
.ad-hero ul { display: flex; flex-wrap: wrap; gap: 12px 22px; padding: 0; margin: 35px 0 0; list-style: none; color: #d9edf8; font-size: 11px; font-weight: 700; }
.ad-hero li span { color: #84eea7; }
.ad-hero figure { position: relative; min-height: 650px; margin: 0 -12vw 0 0; overflow: hidden; background: var(--blue-deep); }
.ad-hero figure img { width: 100%; height: 100%; display: block; object-fit: cover; }
.ad-hero figure::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent,rgba(6,43,71,.88)); }
.ad-hero figcaption { position: absolute; z-index: 2; left: 28px; bottom: 27px; display: flex; flex-direction: column; }
.ad-hero figcaption b { font-size: 19px; }
.ad-hero figcaption span { color: #badbe9; font-size: 11px; }
.ad-proof { background: var(--blue-deep); color: var(--white); }
.ad-proof__grid { display: grid; grid-template-columns: repeat(3,1fr); }
.ad-proof article { min-height: 215px; padding: 32px; border-left: 1px solid rgba(255,255,255,.15); }
.ad-proof article:last-child { border-right: 1px solid rgba(255,255,255,.15); }
.ad-proof article > b { color: var(--orange); font-size: 10px; letter-spacing: .14em; }
.ad-proof h2 { margin: 42px 0 9px; font-size: 23px; }
.ad-proof p { margin: 0; color: #a9c0cc; font-size: 12px; }
.ad-explanation { background: var(--off-white); }
.ad-explanation__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 8vw; }
.ad-explanation__grid > div > p:not(.eyebrow) { color: var(--muted); }
.ad-explanation figure { position: relative; height: 530px; margin: 0; overflow: hidden; border-radius: 20px; box-shadow: var(--shadow); }
.ad-explanation figure img { width: 100%; height: 100%; display: block; object-fit: cover; }
.ad-business { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 15px; margin-top: 30px; padding: 21px; border-left: 4px solid var(--orange); background: var(--white); }
.ad-business .dashicons { width: 42px; height: 42px; color: var(--blue); font-size: 42px; }
.ad-business p { margin: 3px 0 0; color: var(--muted); font-size: 11px; }
.ad-form { padding: 105px 0; background: var(--blue-deep); color: var(--white); }
.ad-form__grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 7vw; }
.ad-form__grid > div:first-child { position: sticky; top: 120px; }
.ad-form h2 { font-size: clamp(38px,4.5vw,61px); }
.ad-form h2 em { color: #82cbff; }
.ad-form__grid > div:first-child > p:not(.eyebrow) { color: #bdd3df; }
.ad-form__grid > div:first-child > a { display: inline-flex; margin-top: 20px; color: #9cd6fb; font-size: 13px; font-weight: 800; }
.ad-faq { background: var(--white); }

/* Personal founders story */
.about-personal-hero { position: relative; overflow: hidden; background: var(--blue); color: var(--white); }
.about-personal-hero::before { content: "C + T"; position: absolute; right: -2vw; bottom: -10vw; color: rgba(255,255,255,.055); font-size: clamp(170px,27vw,430px); font-weight: 800; letter-spacing: -.13em; line-height: .7; white-space: nowrap; }
.about-personal-hero__grid { min-height: 790px; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 6vw; }
.about-personal-hero__copy { position: relative; z-index: 3; padding: 110px 0; }
.about-personal-hero__copy h1 { max-width: 660px; margin: 22px 0; font-size: clamp(52px,5.4vw,78px); }
.about-personal-hero__copy h1 strong { display: block; color: #bce4ff; }
.about-personal-hero__copy > p:not(.eyebrow) { max-width: 610px; color: #d6eaf6; font-size: 17px; }
.about-personal-hero__names { display: flex; align-items: center; gap: 14px; margin: 34px 0; font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.about-personal-hero__names i { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; color: var(--orange); font-style: normal; }
.about-personal-hero__visual { position: relative; z-index: 2; min-height: 720px; }
.about-personal-hero__visual figure { position: absolute; margin: 0; overflow: hidden; background: var(--blue-deep); box-shadow: 0 28px 70px rgba(4,32,50,.3); }
.about-personal-hero__visual figure img { width: 100%; height: 100%; display: block; object-fit: cover; }
.about-personal-hero__main { inset: 70px -12vw 50px 0; border-radius: 26px 0 0 26px; }
.about-personal-hero__detail { z-index: 2; right: -3vw; bottom: 42px; width: 42%; height: 285px; border: 9px solid var(--blue); border-radius: 16px; }
.about-personal-hero__seal { position: absolute; z-index: 4; top: 38px; right: -4px; width: 145px; height: 145px; display: grid; place-items: center; align-content: center; border: 2px solid var(--white); border-radius: 50%; background: var(--orange); color: var(--white); transform: rotate(6deg); box-shadow: 0 14px 35px rgba(4,32,50,.25); }
.about-personal-hero__seal strong { font-size: 42px; line-height: 1; }
.about-personal-hero__seal span { font-size: 9px; font-weight: 800; letter-spacing: .08em; line-height: 1.25; text-align: center; text-transform: uppercase; }
.about-origin { background: var(--white); }
.about-origin__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: start; }
.about-origin__copy > p:not(.lead,.about-origin__signature) { color: var(--muted); }
.about-origin__signature { margin-top: 35px; color: var(--blue); font-size: 22px; font-style: italic; font-weight: 700; }
.about-origin__signature span { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; font-style: normal; letter-spacing: .11em; text-transform: uppercase; }
.team-brothers { padding: 110px 0; overflow: hidden; background: var(--blue-deep); color: var(--white); }
.team-brothers__heading { align-items: end; }
.team-brothers__heading > p { max-width: 390px; color: #b7ccd7; }
.team-brothers__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.team-person { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: var(--white); color: var(--ink); box-shadow: 0 30px 80px rgba(1,18,29,.25); }
.team-portrait { position: relative; height: 510px; overflow: hidden; background: #dceef7; }
.team-portrait__image { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; }
.team-portrait__placeholder { position: relative; width: 100%; height: 100%; min-height: inherit; display: grid; place-items: center; align-content: center; overflow: hidden; background: linear-gradient(145deg,#d8effd 0%,#5aaae0 54%,#0a527f 100%); color: var(--white); }
.team-portrait__placeholder::before, .team-portrait__placeholder::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.13); }
.team-portrait__placeholder::before { width: 410px; height: 410px; right: -145px; top: -100px; }
.team-portrait__placeholder::after { width: 270px; height: 270px; left: -105px; bottom: -100px; }
.team-portrait__placeholder span { position: relative; z-index: 2; font-size: 165px; font-weight: 800; letter-spacing: -.09em; line-height: .8; text-shadow: 0 14px 30px rgba(4,38,61,.2); }
.team-portrait__placeholder small { position: relative; z-index: 2; margin-top: 22px; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.team-person--tygo .team-portrait__placeholder { background: linear-gradient(145deg,#ffe5d2 0%,#ed8748 53%,#9b3500 100%); }
.team-person__number { position: absolute; right: 22px; bottom: 18px; color: rgba(255,255,255,.9); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.team-person__body { padding: 30px 34px 36px; }
.team-person__body > span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.team-person__body h3 { margin: 6px 0 8px; font-size: 34px; }
.team-person__body p { margin: 0; color: var(--muted); font-size: 13px; }
.team-person__cert { display: inline-flex; align-items: center; gap: 8px; margin: 4px 0 18px; padding: 6px 10px 6px 7px; border-radius: 20px; background: #e9f7f8; color: #005258; }
.team-person__cert b { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: #005258; color: var(--white); font-size: 8px; letter-spacing: .03em; }
.team-person__cert span { font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.team-brothers__note { max-width: 820px; margin: 35px 0 0 auto; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.18); color: #b7ccd7; }
.team-brothers__note span { color: var(--white); font-weight: 800; }
.brother-timeline { background: var(--off-white); }
.brother-timeline__grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); }
.brother-timeline__grid::before { content: ""; position: absolute; top: 26px; right: 8%; left: 8%; height: 1px; background: #b9d7e8; }
.brother-timeline article { position: relative; min-height: 330px; padding: 0 34px 34px; border-left: 1px solid var(--line); }
.brother-timeline article:last-child { border-right: 1px solid var(--line); }
.brother-timeline article > span { position: relative; z-index: 2; width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 60px; border: 7px solid var(--off-white); border-radius: 50%; background: var(--blue); color: var(--white); font-size: 10px; font-weight: 800; }
.brother-timeline small { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.brother-timeline h3 { margin: 11px 0; font-size: 25px; }
.brother-timeline p { color: var(--muted); font-size: 13px; }
.brother-belief { padding: 110px 0; background: var(--blue); color: var(--white); }
.brother-belief__grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 8vw; }
.brother-belief__photos { position: relative; min-height: 640px; }
.brother-belief__photos figure { position: absolute; margin: 0; overflow: hidden; border-radius: 20px; background: var(--blue-deep); box-shadow: 0 26px 70px rgba(4,34,54,.32); }
.brother-belief__photos img { width: 100%; height: 100%; display: block; object-fit: cover; }
.brother-belief__large { inset: 0 17% 70px 0; }
.brother-belief__photos figure:last-child { z-index: 2; right: 0; bottom: 0; width: 45%; height: 330px; border: 8px solid var(--blue); }
.brother-belief__copy > p:not(.eyebrow) { color: #d0e5f0; }
.brother-belief blockquote { margin: 38px 0 0; padding: 28px 0 0 28px; border-top: 1px solid rgba(255,255,255,.2); border-left: 4px solid var(--orange); color: var(--white); font-size: 21px; font-weight: 700; line-height: 1.45; }
.brother-belief cite { display: block; margin-top: 18px; color: #9cd4f7; font-size: 10px; font-style: normal; letter-spacing: .13em; text-transform: uppercase; }
.values--personal { background: var(--blue-deep); }
.home-brothers { padding: 105px 0; overflow: hidden; background: var(--blue-deep); color: var(--white); }
.home-brothers__grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 8vw; }
.home-brothers__portraits { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 12px; }
.home-brothers__portraits figure { margin: 0; overflow: hidden; border-radius: 18px; background: var(--white); color: var(--ink); box-shadow: 0 25px 70px rgba(1,17,28,.3); }
.home-brothers__portraits figure:first-child { transform: translateY(-22px) rotate(-2deg); }
.home-brothers__portraits figure:last-child { transform: translateY(22px) rotate(2deg); }
.home-brothers__portraits .team-portrait { height: 380px; }
.home-brothers__portraits figcaption { display: flex; align-items: end; justify-content: space-between; padding: 17px 19px; }
.home-brothers__portraits figcaption strong { font-size: 20px; }
.home-brothers__portraits figcaption span { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.home-brothers__copy > p:not(.eyebrow) { color: #bad0dc; }
.home-brothers__copy h2 em { color: #91d2ff; }
.home-brothers__copy .button { margin-top: 20px; }

/* Conversion proof and reviews */
.vca-logo-frame { position: relative; width: 84px; height: 40px; display: block; flex: 0 0 auto; overflow: hidden; border-radius: 7px; background: var(--white); }
.vca-logo-frame img { position: absolute; top: -12px; left: -24px; width: 132px; max-width: none; height: auto; margin: 0; filter: none; }
.review-stars { color: #f5a000; font-size: 17px; letter-spacing: .06em; line-height: 1; }
.home-review-strip { border-bottom: 1px solid var(--line); background: #f4faff; }
.home-review-strip__inner { min-height: 92px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; }
.home-review-strip__inner > a:first-child { display: grid; grid-template-columns: auto auto; align-items: center; gap: 5px 12px; }
.home-review-strip__inner > a:first-child .review-stars { grid-column: 1 / -1; }
.home-review-strip__inner > a:first-child strong { color: var(--blue-deep); font-size: 20px; }
.home-review-strip__inner > a:first-child span:last-child { color: var(--muted); font-size: 10px; }
.home-review-strip__inner p { margin: 0; color: var(--muted); font-size: 12px; text-align: center; }
.home-review-strip__inner p b { color: var(--ink); }
.home-review-strip__vca { display: flex; align-items: center; gap: 11px; padding-left: 20px; border-left: 1px solid var(--line); }
.home-review-strip__vca > span:last-child { display: flex; flex-direction: column; }
.home-review-strip__vca strong { color: #005258; font-size: 11px; }
.home-review-strip__vca small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.home-reviews { overflow: hidden; background: var(--off-white); }
.home-reviews__heading { align-items: end; }
.home-reviews__score { min-width: 210px; padding-left: 25px; border-left: 1px solid var(--line); }
.home-reviews__score img { width: 112px; height: auto; display: block; margin-bottom: 15px; }
.home-reviews__score .review-stars { display: block; margin-bottom: 5px; }
.home-reviews__score strong { display: block; color: var(--blue); font-size: 58px; line-height: .95; letter-spacing: -.06em; }
.home-reviews__score small { display: block; margin-top: 7px; color: var(--muted); font-size: 10px; font-weight: 700; }
.home-reviews__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.home-reviews__cards article { min-height: 275px; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 18px 55px rgba(6,43,71,.07); }
.home-reviews__cards blockquote { margin: 35px 0 25px; color: var(--ink); font-size: 22px; font-weight: 700; line-height: 1.42; }
.home-reviews__cards footer { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.home-reviews__cards footer strong { font-size: 14px; }
.home-reviews__cards footer span { color: var(--muted); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.home-reviews__widget { min-height: 260px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 18px 55px rgba(6,43,71,.07); }
.home-reviews__actions { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 30px; }

/* Consent */
.cookie-banner { position: fixed; z-index: 150; right: 22px; bottom: 22px; left: 22px; max-width: 1160px; margin: 0 auto; padding: 20px 22px; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: #041c2cf2; color: var(--white); box-shadow: 0 24px 80px rgba(4,28,44,.35); backdrop-filter: blur(12px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner, .cookie-banner > div:first-child { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.cookie-banner__mark { width: 48px; height: 48px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--blue); font-weight: 800; }
.cookie-banner strong { display: block; font-size: 14px; }
.cookie-banner p { max-width: 680px; margin: 3px 0; color: #b8d0dc; font-size: 11px; line-height: 1.5; }
.cookie-banner a { color: #9bd8ff; font-size: 10px; text-decoration: underline; }
.cookie-banner__actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.cookie-deny { min-height: 45px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 7px; background: transparent; color: var(--white); font-size: 11px; font-weight: 800; cursor: pointer; }

/* Motion language */
@keyframes hto-float { 0%,100% { transform: translateY(0) rotate(3deg); } 50% { transform: translateY(-10px) rotate(-2deg); } }
@keyframes hto-breathe { 0%,100% { transform: scale(1) rotate(-17deg); } 50% { transform: scale(1.07) rotate(-12deg); } }
@keyframes hto-pulse-map { 70% { box-shadow: 0 0 0 22px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }
@keyframes hto-handle-pulse { 0%,100% { box-shadow: 0 10px 30px rgba(0,0,0,.23),0 0 0 0 rgba(232,93,4,.32); } 50% { box-shadow: 0 10px 30px rgba(0,0,0,.23),0 0 0 13px rgba(232,93,4,0); } }
.hero__wash { animation: hto-breathe 10s ease-in-out infinite; }
.hero__stamp { animation: hto-float 4.5s ease-in-out infinite; }
.comparison__handle { animation: hto-handle-pulse 2.3s ease-in-out infinite; }
.button { position: relative; overflow: hidden; isolation: isolate; }
.button::before { content: ""; position: absolute; z-index: -1; top: -50%; bottom: -50%; left: -55%; width: 35%; background: rgba(255,255,255,.18); transform: skewX(-22deg); transition: left .65s ease; }
.button:hover::before { left: 125%; }
[data-reveal] { opacity: 1; transform: none; }
[data-reveal].is-revealed { animation: hto-reveal-up .75s cubic-bezier(.2,.7,.2,1) both; animation-delay: var(--reveal-delay, 0ms); }
[data-reveal="left"].is-revealed { animation-name: hto-reveal-left; }
[data-reveal="right"].is-revealed { animation-name: hto-reveal-right; }
[data-reveal="zoom"].is-revealed { animation-name: hto-reveal-zoom; }
@keyframes hto-reveal-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes hto-reveal-left { from { opacity: 0; transform: translateX(-34px); } to { opacity: 1; transform: none; } }
@keyframes hto-reveal-right { from { opacity: 0; transform: translateX(34px); } to { opacity: 1; transform: none; } }
@keyframes hto-reveal-zoom { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }
[data-image-reveal] { clip-path: none; }
[data-image-reveal].is-revealed { animation: hto-image-reveal 1.05s cubic-bezier(.2,.7,.2,1) both; }
@keyframes hto-image-reveal {
	from { clip-path: inset(0 100% 0 0 round 18px); }
	to { clip-path: inset(0 0 0 0 round 18px); }
}
[data-parallax] img { transform: translate3d(0,var(--parallax-y,0),0) scale(1.045); will-change: transform; }

@media (max-width: 980px) {
	.service-card--featured .service-card__media { height: 270px; }
	.about-personal-hero__grid { grid-template-columns: 1fr; padding-top: 30px; }
	.about-personal-hero__copy { max-width: 720px; padding: 80px 0 25px; }
	.about-personal-hero__visual { min-height: 650px; }
	.about-personal-hero__main { inset: 35px -24px 45px 8vw; }
	.about-origin__grid, .brother-belief__grid, .home-brothers__grid { grid-template-columns: 1fr; }
	.about-origin__grid { gap: 40px; }
	.brother-belief__copy { max-width: 720px; }
	.home-brothers__grid { gap: 75px; }
	.home-brothers__portraits { max-width: 690px; }
	.work-mosaic__grid, .home-area__grid, .service-gallery__grid, .softwash-proof__grid, .area-hero__grid, .area-services__grid, .location-hero__grid, .location-story__grid, .ad-hero__grid, .ad-explanation__grid, .ad-form__grid { grid-template-columns: 1fr; }
	.home-area__orbit { max-width: 370px; margin: 25px auto 0; }
	.service-gallery figure { min-height: 430px; }
	.softwash-proof__grid > div { padding: 45px 0; }
	.softwash-proof figure { min-height: 440px; }
	.workflow-gallery__grid { grid-template-columns: repeat(3,1fr); }
	.workflow-gallery figure, .workflow-gallery figure:nth-child(2) { height: 360px; margin-top: 0; }
	.area-hero__map { max-width: 390px; margin: 0 auto; }
	.area-card-grid { grid-template-columns: 1fr; }
	.location-hero figure { height: 520px; }
	.location-story__grid aside, .ad-form__grid > div:first-child { position: static; }
	.local-services__grid { grid-template-columns: repeat(2,1fr); }
	.ad-hero figure { min-height: 560px; margin: 0 -24px; }
	.ad-proof__grid { grid-template-columns: 1fr; }
	.ad-proof article { min-height: auto; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
	.ad-proof h2 { margin-top: 20px; }
	.cookie-banner { align-items: stretch; flex-direction: column; }
	.cookie-banner__actions { justify-content: flex-end; }
	.project-placeholder-head { grid-template-columns: 1fr; gap: 10px; }
	.project-placeholder-grid { grid-template-columns: repeat(2,1fr); }
	.home-review-strip__inner { grid-template-columns: auto 1fr; gap: 25px; padding-top: 18px; padding-bottom: 18px; }
	.home-review-strip__vca { grid-column: 1 / -1; justify-self: end; padding-left: 0; border-left: 0; }
	.home-review-strip__inner p { text-align: right; }
	.home-reviews__cards { grid-template-columns: 1fr 1fr; }
	.home-reviews__cards article:last-child { grid-column: 1 / -1; min-height: 230px; }
}

@media (max-width: 680px) {
	.service-card__media, .service-card--featured .service-card__media { height: 225px; }
	.about-personal-hero__grid { padding-top: 0; }
	.about-personal-hero__copy { padding: 65px 0 25px; }
	.about-personal-hero__copy h1 { font-size: clamp(43px,13.2vw,58px); }
	.about-personal-hero__copy > p:not(.eyebrow) { font-size: 15px; }
	.about-personal-hero__names { margin: 26px 0; }
	.about-personal-hero__visual { min-height: 530px; }
	.about-personal-hero__main { inset: 25px -17px 45px 0; border-radius: 20px 0 0 20px; }
	.about-personal-hero__detail { right: -17px; bottom: 20px; width: 48%; height: 205px; border-width: 6px; }
	.about-personal-hero__seal { top: 0; right: 0; width: 108px; height: 108px; }
	.about-personal-hero__seal strong { font-size: 31px; }
	.about-origin__signature { font-size: 19px; }
	.team-brothers { padding: 75px 0; }
	.team-brothers__grid { grid-template-columns: 1fr; }
	.team-portrait { height: 405px; }
	.team-portrait__placeholder span { font-size: 125px; }
	.team-person__body { padding: 25px; }
	.team-brothers__note { margin-top: 28px; }
	.brother-timeline__grid { grid-template-columns: 1fr; }
	.brother-timeline__grid::before { top: 0; right: auto; bottom: 0; left: 26px; width: 1px; height: auto; }
	.brother-timeline article, .brother-timeline article:last-child { min-height: 0; padding: 0 0 48px 82px; border: 0; }
	.brother-timeline article > span { position: absolute; left: 0; margin: 0; }
	.brother-belief { padding: 75px 0; }
	.brother-belief__grid { gap: 45px; }
	.brother-belief__photos { min-height: 490px; }
	.brother-belief__large { inset: 0 12% 55px 0; }
	.brother-belief__photos figure:last-child { width: 48%; height: 235px; border-width: 6px; }
	.brother-belief blockquote { padding-left: 20px; font-size: 18px; }
	.home-brothers { padding: 75px 0; }
	.home-brothers__grid { gap: 48px; }
	.home-brothers__copy { grid-row: 1; }
	.home-brothers__portraits { grid-row: 2; gap: 8px; }
	.home-brothers__portraits .team-portrait { height: 245px; }
	.home-brothers__portraits .team-portrait__placeholder span { font-size: 83px; }
	.home-brothers__portraits figure:first-child { transform: translateY(-9px) rotate(-1deg); }
	.home-brothers__portraits figure:last-child { transform: translateY(9px) rotate(1deg); }
	.home-brothers__portraits figcaption { align-items: start; flex-direction: column; padding: 13px; }
	.home-brothers__portraits figcaption strong { font-size: 17px; }
	.service-card__body, .service-card--featured .service-card__body { min-height: 300px; padding: 23px; }
	.work-mosaic__grid { display: flex; flex-direction: column; }
	.work-mosaic figure { height: 350px; }
	.home-area { padding: 75px 0; }
	.home-area__orbit { max-width: 300px; }
	.service-hero__visual { min-height: 410px; margin-bottom: 5px; }
	.service-gallery { padding-bottom: 75px; }
	.service-gallery figure { min-height: 390px; }
	.location-link-grid { grid-template-columns: 1fr; }
	.softwash-proof { padding: 70px 0; }
	.softwash-proof figure { min-height: 390px; }
	.softwash-proof figure:first-child, .softwash-proof figure:last-child { transform: none; }
	.workflow-gallery__grid { grid-template-columns: 1fr; }
	.workflow-gallery figure, .workflow-gallery figure:nth-child(2) { height: 350px; }
	.roof-page-hero__photo { height: 410px; border-radius: 18px; }
	.area-hero__grid, .location-hero__grid { min-height: auto; padding-top: 55px; padding-bottom: 70px; }
	.area-hero__map { max-width: 300px; }
	.area-card { grid-template-columns: 38px 1fr 20px; gap: 10px; padding: 25px 20px; }
	.area-card h2 { font-size: 27px; }
	.area-services figure, .location-hero figure { height: 420px; }
	.local-services__grid { grid-template-columns: 1fr 1fr; }
	.local-services__grid a { min-height: 165px; padding: 19px; }
	.local-faq__grid, .ad-faq__grid { grid-template-columns: 1fr; gap: 25px; }
	.ad-hero__grid { min-height: auto; }
	.ad-hero__copy { padding: 58px 0 45px; }
	.ad-hero__actions { align-items: stretch; flex-direction: column; }
	.ad-hero figure { min-height: 470px; margin: 0 -17px; }
	.ad-explanation figure { height: 430px; }
	.cookie-banner { right: 12px; bottom: 76px; left: 12px; padding: 17px; }
	.cookie-banner > div:first-child { align-items: flex-start; }
	.cookie-banner__actions { align-items: stretch; flex-direction: column-reverse; }
	.cookie-banner__actions .button, .cookie-deny { width: 100%; }
	.project-placeholder-grid { grid-template-columns: 1fr; }
	.project-placeholder-grid figure, .project-placeholder-grid figure:nth-child(2), .project-placeholder-grid figure:nth-child(5) { height: 370px; }
	.project-placeholder-cta { align-items: stretch; flex-direction: column; }
	.home-review-strip__inner { grid-template-columns: 1fr; gap: 12px; }
	.home-review-strip__inner > a:first-child { grid-template-columns: auto auto 1fr; gap: 7px; }
	.home-review-strip__inner > a:first-child .review-stars { grid-column: auto; }
	.home-review-strip__inner > a:first-child strong { font-size: 18px; }
	.home-review-strip__inner p { text-align: left; }
	.home-review-strip__vca { grid-column: auto; justify-self: stretch; padding-top: 12px; border-top: 1px solid var(--line); }
	.footer-social-bar { align-items: start; flex-direction: column; }
	.footer-social-bar nav { width: 100%; }
	.footer-social-link { flex: 1 1 calc(50% - 9px); }
	.home-reviews__heading { align-items: start; }
	.home-reviews__score { min-width: 0; display: grid; grid-template-columns: auto auto; align-items: end; column-gap: 12px; padding: 18px 0 0; border-top: 1px solid var(--line); border-left: 0; }
	.home-reviews__score img { grid-column: 1 / -1; width: 104px; margin-bottom: 13px; }
	.home-reviews__score .review-stars { grid-column: 1 / -1; }
	.home-reviews__score strong { font-size: 48px; }
	.home-reviews__score small { padding-bottom: 5px; }
	.home-reviews__cards { display: flex; gap: 10px; margin-right: -17px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
	.home-reviews__cards::-webkit-scrollbar { display: none; }
	.home-reviews__cards article, .home-reviews__cards article:last-child { min-height: 255px; flex: 0 0 87%; padding: 27px; scroll-snap-align: start; }
	.home-reviews__cards blockquote { margin-top: 28px; font-size: 20px; }
	.home-reviews__actions { align-items: stretch; flex-direction: column; }
	.home-reviews__actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.hero__wash, .hero__stamp, .comparison__handle, .home-area__orbit span, .area-hero__map i, .area-hero__pulse { animation: none !important; }
	[data-reveal], [data-image-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
	[data-parallax] img { transform: none !important; }
}
