:root {
    --ink: #071b2e;
    --ink-soft: #153249;
    --aqua: #2dd4bf;
    --aqua-bright: #54ead3;
    --aqua-pale: #dffbf5;
    --sky: #dceff4;
    --paper: #f7faf8;
    --white: #ffffff;
    --muted: #647583;
    --line: #dce5e4;
    --danger: #b42318;
    --shadow: 0 24px 70px rgba(4, 28, 46, .14);
    --radius: 24px;
    --shell: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Segoe UI Variable Text", "Segoe UI", Aptos, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
    font-family: "Segoe UI Variable Display", "Segoe UI", Aptos, Arial, sans-serif;
    font-weight: 760;
    letter-spacing: -.045em;
    line-height: 1.02;
}
h1 em, h2 em { color: var(--aqua); font-family: inherit; font-style: normal; font-weight: 760; }
h1:focus { outline: none; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section { padding: 112px 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; padding: 10px 16px; background: var(--white); transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #167f74; font-size: .73rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: var(--aqua); }
.eyebrow-light { color: var(--aqua-bright); }
.section-heading h2, .quality-copy h2, .process-copy h2, .booking-intro h2 { margin: 15px 0 24px; font-size: clamp(2.35rem, 5vw, 4.45rem); }
.section-heading > p, .split-heading > p, .quality-copy > p { color: var(--muted); font-size: 1.08rem; }
.split-heading { display: grid; grid-template-columns: 1.15fr .65fr; gap: 100px; align-items: end; margin-bottom: 52px; }
.split-heading > p { margin-bottom: 8px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 50px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; line-height: 1; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid #f9c74f; outline-offset: 3px; }
.button-primary { background: var(--aqua); color: var(--ink); box-shadow: 0 12px 35px rgba(45, 212, 191, .22); }
.button-primary:hover { background: var(--aqua-bright); box-shadow: 0 16px 40px rgba(45, 212, 191, .3); }
.button-ghost { border-color: rgba(255, 255, 255, .5); color: var(--white); background: rgba(255, 255, 255, .06); backdrop-filter: blur(8px); }
.button-white { background: var(--white); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); }
.button-large { min-height: 60px; padding-inline: 30px; }
.button-block { width: 100%; }
.text-link { display: inline-flex; gap: 14px; align-items: center; color: var(--ink); font-weight: 800; }
.text-link b { color: #159d8d; transition: transform .2s ease; }
.text-link:hover b { transform: translateX(4px); }
.content-note { color: var(--muted); font-size: .86rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; height: 82px; background: rgba(247, 250, 248, .92); border-bottom: 1px solid rgba(7, 27, 46, .08); backdrop-filter: blur(16px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-logo { display: block; width: 224px; height: auto; }
.brand-mark { display: grid; place-items: center; width: 46px; height: 46px; color: var(--ink); background: var(--aqua); border-radius: 50% 50% 48% 52% / 62% 62% 38% 38%; transform: rotate(3deg); }
.brand-mark span { transform: rotate(-3deg); font-size: .82rem; font-weight: 900; letter-spacing: -.04em; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 1rem; text-transform: uppercase; letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.desktop-nav a { position: relative; color: #344a59; font-size: .9rem; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; background: var(--aqua); transition: right .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-cta { min-height: 46px; padding-inline: 20px; font-size: .86rem; }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { display: grid; gap: 5px; padding: 10px; list-style: none; cursor: pointer; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 24px; height: 2px; background: var(--ink); }
.mobile-menu nav { position: absolute; right: 0; top: 48px; display: grid; gap: 4px; width: min(300px, calc(100vw - 32px)); padding: 18px; background: var(--white); border-radius: 18px; box-shadow: var(--shadow); }
.mobile-menu nav > a:not(.button) { padding: 12px 10px; font-weight: 750; }

/* Home hero */
.hero { position: relative; min-height: 760px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--ink); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; transform: scale(1.01); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3, 19, 33, .94) 0%, rgba(3, 19, 33, .82) 35%, rgba(3, 19, 33, .18) 72%, rgba(3, 19, 33, .08) 100%), linear-gradient(0deg, rgba(3, 19, 33, .55) 0%, transparent 35%); }
.hero-content { position: relative; z-index: 2; padding: 110px 0 135px; }
.hero-copy { width: min(675px, 65%); }
.hero h1 { margin: 18px 0 26px; color: var(--white); font-size: clamp(4rem, 7.4vw, 7rem); letter-spacing: -.07em; }
.hero h1 em { display: inline-block; font-size: 1.02em; }
.hero-copy > p { max-width: 600px; margin-bottom: 34px; color: rgba(255, 255, 255, .78); font-size: 1.17rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 42px; color: rgba(255,255,255,.78); font-size: .82rem; font-weight: 700; }
.hero-trust span { display: flex; gap: 8px; align-items: center; }
.hero-trust b { display: grid; place-items: center; width: 20px; height: 20px; color: var(--ink); background: var(--aqua); border-radius: 50%; font-size: .72rem; }
.hero-price-card { position: absolute; right: 5%; bottom: 0; z-index: 3; display: flex; flex-direction: column; width: 280px; padding: 25px 30px; color: var(--ink); background: var(--aqua); border-radius: 22px 22px 0 0; }
.price-card-label { font-size: .68rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.hero-price-card strong { margin: 3px 0 10px; font-size: 1.25rem; }
.hero-price-card a { display: flex; justify-content: space-between; font-size: .85rem; font-weight: 800; }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid > div { display: flex; gap: 22px; align-items: center; min-height: 126px; padding: 24px 36px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-number { color: #1ea995; font-size: 1.25rem; font-style: normal; font-weight: 800; }
.trust-grid p { display: flex; flex-direction: column; margin: 0; }
.trust-grid strong { font-size: .96rem; }
.trust-grid small { margin-top: 3px; color: var(--muted); font-size: .77rem; }

/* Services cards */
.services-preview { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 28px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 22px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.service-featured { color: var(--white); background: var(--ink); border-color: var(--ink); }
.service-index { position: absolute; top: 23px; right: 25px; color: #91a0aa; font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.service-icon { position: relative; display: grid; place-items: center; width: 82px; height: 82px; margin: 42px 0 39px; color: var(--ink); background: var(--aqua-pale); border: 1px solid rgba(15,148,134,.12); border-radius: 22px; transition: transform .25s ease, background-color .25s ease; }
.service-icon::before { content: ""; width: 52px; height: 52px; background: currentColor; -webkit-mask: var(--service-icon) center / contain no-repeat; mask: var(--service-icon) center / contain no-repeat; }
.service-card:hover .service-icon { transform: translateY(-3px) rotate(-2deg); background: #d9f8f3; }
.service-featured .service-icon { color: var(--aqua); background: rgba(45,212,191,.11); border-color: rgba(45,212,191,.16); }
.service-featured:hover .service-icon { background: rgba(45,212,191,.18); }
.window-icon { --service-icon: url('/images/service-icons/window-cleaning.png'); }
.gutter-icon { --service-icon: url('/images/service-icons/gutter-clearing.png'); }
.paving-icon { --service-icon: url('/images/service-icons/pressure-washing.png'); }
.fascia-icon { --service-icon: url('/images/service-icons/fascias-soffits.png'); }
.service-card h3 { margin-bottom: 14px; font-size: 1.35rem; }
.service-card p { color: var(--muted); font-size: .9rem; }
.service-featured p { color: rgba(255,255,255,.66); }
.service-card .text-link { margin-top: auto; padding-top: 24px; font-size: .82rem; }
.service-featured .text-link { color: var(--white); }
.service-card-centered { grid-column: 2 / span 2; min-height: 340px; }

/* Process */
.process-section { color: var(--white); background: var(--ink); }
.process-layout { display: grid; grid-template-columns: .88fr 1fr; gap: 120px; align-items: center; }
.process-copy h2 { margin-bottom: 26px; }
.process-copy p { max-width: 500px; margin-bottom: 34px; color: rgba(255,255,255,.64); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.13); }
.process-list li { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 33px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.process-list > li > span { color: var(--aqua); font-size: 1.1rem; font-style: normal; font-weight: 800; }
.process-list h3 { margin-bottom: 8px; font-size: 1.25rem; }
.process-list p { margin: 0; color: rgba(255,255,255,.6); font-size: .9rem; }

/* Quality */
.quality-section { background: var(--white); }
.quality-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 100px; align-items: center; }
.quality-visual { position: relative; min-height: 570px; }
.quality-photo { position: absolute; inset: 0 52px 0 0; background: linear-gradient(150deg, rgba(7,27,46,.05), rgba(7,27,46,.45)), url('/images/sr-hero-home.webp') 73% center / cover; border-radius: 28px; }
.quality-visual::before { content: ""; position: absolute; left: -25px; bottom: -25px; z-index: 0; width: 180px; height: 180px; border: 1px solid var(--aqua); border-radius: 50%; opacity: .5; }
.quality-badge { position: absolute; right: 0; bottom: 38px; display: flex; flex-direction: column; width: 215px; padding: 28px; color: var(--ink); background: var(--aqua); border-radius: 20px; box-shadow: var(--shadow); }
.quality-badge strong { font-size: 1.15rem; }
.quality-badge span { font-size: 1.12rem; font-style: normal; font-weight: 650; }
.quality-copy > p { margin-bottom: 30px; }
.tick-list { display: grid; gap: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.tick-list li { display: grid; grid-template-columns: 40px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.tick-list > li > span { display: grid; place-items: center; width: 30px; height: 30px; color: var(--ink); background: var(--aqua-pale); border-radius: 50%; font-weight: 900; }
.tick-list div { display: flex; flex-direction: column; }
.tick-list small { color: var(--muted); }

/* Testimonial + FAQ */
.testimonial-section { padding: 90px 0; color: var(--white); text-align: center; background: #0d2a3e; }
.testimonial-shell { max-width: 880px; }
.quote-mark { color: var(--aqua); font-family: Georgia, serif; font-size: 5rem; line-height: .7; }
.testimonial-section blockquote { margin: 20px 0; }
.testimonial-section blockquote p { font-family: "Segoe UI Variable Display", "Segoe UI", Aptos, Arial, sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-style: normal; font-weight: 650; line-height: 1.3; letter-spacing: -.035em; }
.testimonial-section blockquote footer { display: flex; flex-direction: column; }
.testimonial-section blockquote footer span, .testimonial-section .content-note { color: rgba(255,255,255,.55); font-size: .78rem; }
.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .65fr 1fr; gap: 110px; }
.faq-layout .section-heading p { max-width: 380px; margin-bottom: 24px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 27px 4px; list-style: none; cursor: pointer; font-size: 1.05rem; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: #159d8d; font-size: 1.5rem; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; padding: 0 45px 26px 4px; color: var(--muted); }

.final-cta { padding: 78px 0; color: var(--white); background: linear-gradient(115deg, #146f67, #0b3943 75%); }
.final-cta-inner { display: flex; justify-content: space-between; gap: 45px; align-items: center; }
.final-cta h2 { max-width: 760px; margin: 13px 0 0; font-size: clamp(2.25rem, 5vw, 4.4rem); }
.compact-cta h2 { font-size: clamp(2rem, 4vw, 3.6rem); }

/* Inner pages */
.page-hero, .quote-hero { padding: 105px 0 95px; color: var(--white); background: var(--ink); }
.page-hero { position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -15%; bottom: -320px; width: 650px; height: 650px; border: 100px solid rgba(45,212,191,.09); border-radius: 50%; }
.narrow-page-hero { position: relative; z-index: 1; }
.narrow-page-hero h1, .quote-hero h1 { margin: 18px 0 24px; font-size: clamp(3.3rem, 7vw, 6rem); }
.narrow-page-hero p { max-width: 670px; color: rgba(255,255,255,.65); font-size: 1.1rem; }
.service-detail-list { background: var(--white); }
.service-detail { display: grid; grid-template-columns: 90px .7fr 1fr; gap: 42px; padding: 55px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 110px; }
.service-detail-number { color: #1aa18f; font-size: 1.4rem; font-style: normal; font-weight: 800; }
.service-detail h2 { margin-top: 15px; font-size: clamp(2rem, 4vw, 3rem); }
.service-detail p { color: var(--muted); }
.service-detail ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 25px; padding: 0; list-style: none; }
.service-detail li, .service-pill { display: inline-flex; padding: 7px 12px; color: #0c766d; background: var(--aqua-pale); border-radius: 999px; font-size: .72rem; font-weight: 800; }
.service-pill { text-transform: uppercase; letter-spacing: .08em; }
.service-pill-dark { color: var(--ink); background: #e9efef; }
.values-section { background: var(--paper); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.values-grid article { min-height: 310px; padding: 35px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; }
.values-grid article > span { color: #159d8d; font-size: 1.3rem; font-style: normal; font-weight: 800; }
.values-grid h3 { margin-top: 90px; font-size: 1.4rem; }
.values-grid p { color: var(--muted); font-size: .9rem; }
.story-placeholder { background: var(--white); }
.story-grid { display: grid; grid-template-columns: .9fr 1fr; gap: 90px; align-items: center; }
.story-art { min-height: 520px; display: grid; place-content: center; text-align: center; color: var(--white); background: linear-gradient(145deg, #0f384d, #071b2e); border-radius: 28px; }
.story-art span { color: var(--aqua); font-size: 8rem; font-style: normal; font-weight: 800; letter-spacing: -.08em; }
.story-art small { color: rgba(255,255,255,.5); }
.story-grid h2 { margin: 15px 0 25px; font-size: clamp(2.8rem, 5vw, 4.7rem); }
.story-grid p { color: var(--muted); }
.contact-section { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-card { min-height: 300px; padding: 38px; background: var(--white); border: 1px solid var(--line); border-radius: 24px; }
.contact-card-primary { color: var(--white); background: #0e766e; border: 0; }
.contact-label { color: #168579; font-size: .7rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.contact-card-primary .contact-label { color: var(--aqua-bright); }
.contact-card h2 { margin: 75px 0 15px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.contact-card p { color: var(--muted); }
.contact-card-primary p { color: rgba(255,255,255,.68); }
.legal-page { max-width: 820px; padding-top: 100px; padding-bottom: 120px; }
.legal-page h1 { margin: 15px 0 25px; font-size: clamp(3rem, 7vw, 5rem); }
.legal-page h2 { margin-top: 45px; font-size: 1.5rem; }
.legal-page h3 { margin: 0 0 10px; font-size: 1rem; }
.legal-page p, .legal-page li { color: var(--muted); line-height: 1.75; }
.legal-page li + li { margin-top: 8px; }
.legal-page a { color: #087b70; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.legal-updated { margin: -16px 0 30px; font-size: .75rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.legal-intro { padding: 22px 24px; color: #28564f !important; background: var(--aqua-pale); border-left: 4px solid #20b7a4; border-radius: 4px 12px 12px 4px; }
.legal-callout { margin-top: 25px; padding: 23px 25px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; }
.legal-callout p:last-child { margin-bottom: 0; }
.legal-table { margin-top: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; }
.legal-table > div { display: grid; grid-template-columns: 1.35fr 1fr; }
.legal-table > div + div { border-top: 1px solid var(--line); }
.legal-table span, .legal-table strong { padding: 15px 17px; font-size: .76rem; line-height: 1.55; }
.legal-table strong { color: var(--ink); background: var(--aqua-pale); }
.legal-table span { color: var(--muted); }
.legal-table span + span, .legal-table strong + strong { border-left: 1px solid var(--line); }

/* Quote */
.quote-hero { padding: 85px 0 75px; background: linear-gradient(115deg, var(--ink), #0c3c50); }
.quote-hero-inner { display: grid; grid-template-columns: 1fr .55fr; gap: 70px; align-items: end; }
.quote-hero h1 { margin-bottom: 0; }
.quote-hero p { margin-bottom: 12px; color: rgba(255,255,255,.65); font-size: 1.05rem; }
.quote-journey-wrap { position: sticky; z-index: 46; top: 82px; padding: 11px 0; background: rgba(247,250,248,.96); border-bottom: 1px solid var(--line); box-shadow: 0 10px 30px rgba(4,28,46,.06); backdrop-filter: blur(16px); }
.quote-journey { position: relative; display: grid; grid-template-columns: repeat(3,1fr); width: min(100%, 700px); margin: 0 auto; }
.quote-journey::before { content: ""; position: absolute; z-index: 0; top: 18px; left: 16.66%; right: 16.66%; height: 2px; background: #cbd8d6; }
.quote-journey a { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; color: var(--muted); font-size: .7rem; font-weight: 800; }
.quote-journey a span { display: grid; place-items: center; width: 36px; height: 36px; color: #5c6f7c; background: var(--white); border: 2px solid #cbd8d6; border-radius: 50%; transition: color .25s ease, border-color .25s ease, background-color .25s ease, transform .25s ease; }
.quote-journey a small { font-size: .65rem; letter-spacing: .04em; }
.quote-journey a.active { color: var(--ink); }
.quote-journey a.active span { color: var(--ink); background: var(--aqua); border-color: var(--aqua); transform: scale(1.08); box-shadow: 0 7px 18px rgba(45,212,191,.28); }
.quote-journey a.complete span { color: var(--white); background: #168579; border-color: #168579; }
.quote-section { padding: 75px 0 105px; background: var(--paper); }
.quote-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 44px; align-items: start; }
.quote-builder { min-width: 0; }
.quote-step { margin-bottom: 22px; padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: 24px; scroll-margin-top: 172px; }
.step-heading { display: grid; grid-template-columns: 45px 1fr; gap: 12px; margin-bottom: 27px; }
.step-heading > span { display: grid; place-items: center; width: 36px; height: 36px; color: #0d796e; background: var(--aqua-pale); border-radius: 50%; font-style: normal; font-weight: 800; }
.step-heading p { margin: 0 0 3px; color: #168579; font-size: .67rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.step-heading h2 { margin: 0; font-size: 1.45rem; }
.service-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.option-card { position: relative; display: grid; grid-template-columns: 22px 1fr; gap: 0 10px; padding: 17px; text-align: left; background: var(--paper); border: 1px solid transparent; border-radius: 14px; cursor: pointer; }
.option-card-wide { grid-column: span 2; }
.option-card:hover { border-color: #9cddd5; }
.option-card.selected { background: var(--aqua-pale); border-color: #55cabb; }
.option-dot { grid-row: span 2; width: 17px; height: 17px; margin-top: 2px; border: 2px solid #9dacab; border-radius: 50%; }
.selected .option-dot { border: 5px solid #159d8d; }
.option-card strong { font-size: .86rem; }
.option-card small { color: var(--muted); font-size: .7rem; }
.property-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.property-card { min-height: 118px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; background: var(--paper); border: 1px solid transparent; border-radius: 14px; cursor: pointer; }
.property-card:hover { border-color: #9cddd5; }
.property-card.selected { color: #0a7168; background: var(--aqua-pale); border-color: #55cabb; }
.property-card strong { font-size: .76rem; }
.house-shape { position: relative; width: 45px; height: 31px; margin-top: 8px; background: currentColor; border-radius: 3px; opacity: .75; }
.house-shape::before { content: ""; position: absolute; left: -4px; top: -15px; width: 37px; height: 37px; background: currentColor; transform: rotate(45deg); border-radius: 3px; }
.house-shape::after { content: ""; position: absolute; inset: 4px 6px; background: var(--paper); box-shadow: 20px 0 0 var(--paper); }
.selected .house-shape::after { background: var(--aqua-pale); box-shadow: 20px 0 0 var(--aqua-pale); }
.house-bungalow { height: 22px; width: 52px; }
.house-bungalow::before { top: -13px; width: 34px; height: 34px; }
.house-flat::before { display: none; }
.house-flat { height: 45px; }
.house-other { border-radius: 50%; width: 42px; height: 42px; background: transparent; border: 3px dashed currentColor; }
.house-other::before, .house-other::after { display: none; }
.inline-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.inline-fields label, .form-field { display: flex; flex-direction: column; gap: 7px; }
.inline-fields label > span, .form-field > span { color: #344a59; font-size: .72rem; font-weight: 800; }
select, input[type=text], input[type=email], input[type=tel], input[type=date], .form-field > input:not([type=file]):not([type=checkbox]):not([type=radio]), textarea { width: 100%; min-height: 52px; padding: 12px 15px; color: var(--ink); background: var(--white); border: 1px solid #cfdad9; border-radius: 11px; }
.inline-fields select { background-color: var(--paper); }
select:focus, input:focus, textarea:focus { border-color: #1da995; box-shadow: 0 0 0 4px rgba(45,212,191,.15); outline: none; }
select:disabled { opacity: .55; cursor: not-allowed; }
.extras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check-card { position: relative; display: grid; grid-template-columns: 27px 1fr; gap: 10px; align-items: center; padding: 15px; background: var(--paper); border: 1px solid transparent; border-radius: 13px; cursor: pointer; }
.check-card input { position: absolute; opacity: 0; }
.check-ui { display: grid; place-items: center; width: 24px; height: 24px; color: transparent; background: var(--white); border: 1px solid #b7c4c3; border-radius: 7px; font-size: .75rem; font-weight: 900; }
.check-card:has(input:checked) { background: var(--aqua-pale); border-color: #55cabb; }
.check-card input:checked + .check-ui { color: var(--ink); background: var(--aqua); border-color: var(--aqua); }
.check-card > span:last-child { display: flex; flex-direction: column; }
.check-card strong { font-size: .82rem; }
.check-card small { color: var(--muted); font-size: .68rem; }
.pressure-choice .check-ui { border-radius: 50%; }
.quote-help { margin: 15px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.6; }
.first-clean-toggle { display: flex; gap: 12px; align-items: center; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); cursor: pointer; }
.first-clean-toggle input { position: absolute; opacity: 0; }
.first-clean-toggle > span { position: relative; flex: 0 0 45px; height: 25px; background: #cbd6d5; border-radius: 999px; }
.first-clean-toggle > span::after { content: ""; position: absolute; top: 4px; left: 4px; width: 17px; height: 17px; background: var(--white); border-radius: 50%; transition: transform .2s ease; }
.first-clean-toggle input:checked + span { background: #159d8d; }
.first-clean-toggle input:checked + span::after { transform: translateX(20px); }
.first-clean-toggle div { display: flex; flex-direction: column; }
.first-clean-toggle strong { font-size: .82rem; }
.first-clean-toggle small { color: var(--muted); font-size: .7rem; }

.quote-summary { position: sticky; top: 180px; padding: 32px; color: var(--white); background: var(--ink); border-radius: 24px; box-shadow: var(--shadow); }
.summary-kicker { color: var(--aqua); font-size: .67rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.price-display { display: flex; align-items: baseline; margin: 25px 0 5px; }
.price-display sup { color: var(--aqua); font-size: 2rem; font-weight: 700; }
.price-display strong { font-size: 5rem; line-height: 1; letter-spacing: -.07em; }
.price-value { display: inline-block; animation: price-pop .32s cubic-bezier(.2,.8,.2,1) both; }
.price-display small { margin-left: 8px; color: rgba(255,255,255,.5); font-size: .73rem; }
.quote-summary > p { color: rgba(255,255,255,.6); font-size: .82rem; }
.price-lines { margin: 25px 0; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.price-lines div { display: flex; justify-content: space-between; gap: 15px; padding: 4px 0; font-size: .73rem; }
.price-lines span { color: rgba(255,255,255,.6); }
.manual-quote-mark { display: grid; place-items: center; width: 70px; height: 70px; margin: 28px 0 25px; color: var(--ink); background: var(--aqua); border-radius: 50%; font-size: 2rem; }
.quote-summary h2 { margin-bottom: 14px; font-size: 2.2rem; }
.summary-note { display: block; margin-top: 15px; color: rgba(255,255,255,.48); font-size: .65rem; line-height: 1.5; text-align: center; }
.mobile-quote-bar { display: none; }
.mobile-quote-bar.is-unselected { display: none !important; }

/* Booking form */
.booking-section { position: relative; padding: 120px 0; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #071b2e 0%, #0c3849 58%, #0d5b58 100%); }
.booking-glow { position: absolute; width: 620px; height: 620px; right: -280px; top: -260px; background: radial-gradient(circle, rgba(45,212,191,.2), transparent 68%); pointer-events: none; }
.booking-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .72fr 1fr; gap: 86px; align-items: start; }
.booking-intro { position: sticky; top: 115px; }
.booking-intro h2 { color: var(--white); font-size: clamp(2.8rem, 5vw, 4.7rem); }
.booking-intro > p { max-width: 500px; color: rgba(255,255,255,.7); font-size: 1.02rem; }
.booking-estimate-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 34px; padding: 20px 22px; color: var(--ink); background: var(--aqua); border-radius: 17px; box-shadow: 0 20px 45px rgba(0,0,0,.16); }
.booking-estimate-card > div { display: flex; flex-direction: column; }
.booking-estimate-card span { font-size: .66rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; opacity: .7; }
.booking-estimate-card strong { font-size: 1rem; }
.booking-estimate-card b { flex-shrink: 0; font-size: 1.35rem; letter-spacing: -.04em; }
.booking-estimate-card b small { display: block; font-size: .58rem; font-weight: 750; letter-spacing: .08em; text-align: right; text-transform: uppercase; opacity: .66; }
.booking-promises { display: grid; gap: 17px; margin-top: 30px; }
.booking-promises > div { display: grid; grid-template-columns: 34px 1fr; gap: 13px; align-items: center; }
.booking-promises > div > span { display: grid; place-items: center; width: 34px; height: 34px; color: var(--ink); background: rgba(84,234,211,.95); border-radius: 50%; font-size: .74rem; font-weight: 950; }
.booking-promises p { display: flex; flex-direction: column; margin: 0; line-height: 1.4; }
.booking-promises strong { font-size: .84rem; }
.booking-promises small { color: rgba(255,255,255,.58); font-size: .72rem; }
.booking-form-card { padding: 40px; color: var(--ink); background: var(--white); border: 1px solid rgba(255,255,255,.38); border-radius: 28px; box-shadow: 0 30px 80px rgba(0,0,0,.24); }
.booking-form-heading { display: grid; grid-template-columns: 48px 1fr auto; gap: 15px; align-items: center; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.booking-form-heading > span { display: grid; place-items: center; width: 48px; height: 48px; color: var(--ink); background: var(--aqua); border-radius: 50%; font-size: .75rem; font-weight: 900; }
.booking-form-heading div { display: flex; flex-direction: column; }
.booking-form-heading div small { color: #168577; font-size: .65rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.booking-form-heading h3 { margin: 3px 0 0; font-size: 1.45rem; }
.booking-form-heading em { padding: 6px 10px; color: var(--muted); background: var(--paper); border-radius: 999px; font-size: .66rem; font-style: normal; font-weight: 750; white-space: nowrap; }
.form-section { padding: 28px 0; border-bottom: 1px solid var(--line); }
.form-section-last { border-bottom: 0; }
.form-section-heading { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.form-section-heading > span { color: #168577; font-size: .65rem; font-weight: 900; letter-spacing: .1em; }
.form-section-heading > div { display: flex; flex-direction: column; line-height: 1.35; }
.form-section-heading strong { font-size: .88rem; }
.form-section-heading small { color: var(--muted); font-size: .68rem; }
.form-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px 14px; min-width: 0; }
.form-grid > *, .form-field { min-width: 0; }
.form-field.full { grid-column: span 2; }
.form-field small { color: var(--muted); font-weight: 500; }
.form-field textarea { resize: vertical; }
.contact-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.contact-options label { position: relative; display: flex; align-items: center; gap: 9px; min-height: 68px; padding: 11px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; cursor: pointer; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.contact-options label:hover { transform: translateY(-1px); border-color: #9bcdc5; }
.contact-options label:has(input:checked) { background: var(--aqua-pale); border-color: #28bca7; box-shadow: inset 0 0 0 1px #28bca7; }
.contact-options input { flex: 0 0 auto; width: 16px; height: 16px; margin: 0; accent-color: #159d8d; }
.contact-options label > span { display: flex; flex-direction: column; line-height: 1.25; }
.contact-options strong { font-size: .76rem; }
.contact-options small { font-size: .6rem; }
.upload-control { position: relative; display: grid; grid-template-columns: 40px 1fr; gap: 13px; align-items: center; min-height: 82px; padding: 16px; background: #f4fbf9; border: 1px dashed #8bc8bf; border-radius: 13px; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.upload-control:hover { background: var(--aqua-pale); border-color: #159d8d; }
.upload-control > b { display: grid; place-items: center; width: 40px; height: 40px; color: var(--ink); background: var(--aqua); border-radius: 50%; font-size: 1.3rem; }
.upload-control > span { display: flex; flex-direction: column; line-height: 1.4; }
.upload-control strong { font-size: .8rem; }
.upload-control small { color: var(--muted); font-size: .65rem; }
.upload-control input[type=file] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.upload-success, .upload-error { margin-top: 4px; font-size: .7rem; }
.upload-success { color: #087366 !important; }
.upload-error { color: var(--danger) !important; }
.photo-preview-grid { grid-column: span 2; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: -4px; }
.photo-preview-card { min-width: 0; margin: 0; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 8px 20px rgba(7,27,46,.06); }
.photo-preview-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #dce8e6; }
.photo-preview-card figcaption { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 10px; }
.photo-preview-card figcaption span { min-width: 0; overflow: hidden; color: var(--muted); font-size: .66rem; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.photo-preview-card button { flex: 0 0 auto; padding: 6px 9px; color: #8b1c1c; background: #fff; border: 1px solid #e5c7c7; border-radius: 8px; font: inherit; font-size: .64rem; font-weight: 800; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.photo-preview-card button:hover, .photo-preview-card button:focus-visible { background: #fff3f3; border-color: #cf8d8d; }
.privacy-check { display: grid; grid-template-columns: 20px 1fr; gap: 11px; margin: 4px 0 23px; padding: 16px; color: var(--muted); background: var(--paper); border-radius: 12px; font-size: .73rem; cursor: pointer; }
.privacy-check input { width: 18px; height: 18px; accent-color: #159d8d; }
.privacy-validation { display: block; margin: -15px 0 20px; color: var(--danger); font-size: .72rem; font-weight: 700; }
.privacy-check a { color: #0b746a; text-decoration: underline; }
.submit-reassurance { margin: 11px 0 0; color: var(--muted); font-size: .68rem; text-align: center; }
.validation-summary, .submission-error { padding: 14px 16px; color: var(--danger); background: #fff1f0; border: 1px solid #f5b9b4; border-radius: 10px; font-size: .78rem; }
.validation-summary ul { margin: 0; padding-left: 20px; }
.validation-message { color: var(--danger); font-size: .72rem; }
.invalid { border-color: var(--danger) !important; }
.success-panel { padding: 35px 12px; text-align: center; scroll-margin-top: 155px; }
.success-panel:focus { outline: none; }
.success-icon { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 24px; color: var(--ink); background: var(--aqua); border-radius: 50%; font-size: 2rem; font-weight: 900; animation: success-pop .55s cubic-bezier(.2,.85,.25,1.25) both; }
.success-panel h2 { margin: 16px 0; font-size: 2.4rem; }
.success-panel p { margin-bottom: 28px; color: var(--muted); }

/* Footer */
.site-footer { padding: 74px 0 20px; color: rgba(255,255,255,.7); background: #051521; }
.brand-light .brand-copy strong { color: var(--white); }
.brand-light .brand-copy small { color: rgba(255,255,255,.5); }
.footer-brand-logo { width: 250px; height: auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 70px; padding-bottom: 55px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid h2 { margin-bottom: 12px; color: var(--white); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid a, .footer-grid p, .pending-detail { color: rgba(255,255,255,.52); font-size: .78rem; }
.footer-grid a:hover { color: var(--aqua); }
.footer-intro { max-width: 300px; margin-top: 22px; }
.pending-detail { font-style: italic; }
.footer-base { display: flex; justify-content: space-between; align-items: center; gap: 25px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.36); font-size: .7rem; }
.site-credit { text-align: center; }
.site-credit a { color: rgba(255,255,255,.5); text-decoration: underline; text-underline-offset: 2px; }
.site-credit a:hover { color: var(--aqua); }
.footer-legal { display: flex; gap: 22px; }
.mobile-action-bar { display: none; }

/* Social proof and results */
.social-proof { position: relative; z-index: 4; background: var(--white); border-bottom: 1px solid var(--line); }
.social-proof-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); }
.social-proof-grid > * { min-height: 126px; display: flex; flex-direction: column; justify-content: center; padding: 22px 30px; border-right: 1px solid var(--line); }
.social-proof-grid > *:last-child { border-right: 0; }
.social-proof-grid strong { font-size: 1rem; }
.social-proof-grid small, .social-proof-grid span:not(.proof-stars) { color: var(--muted); font-size: .74rem; }
.proof-score { background: var(--aqua-pale); transition: background .2s ease; }
.proof-score:hover { background: #cff7ef; }
.proof-stars, .review-stars { color: #efb314 !important; font-size: .82rem !important; letter-spacing: .12em; }
.proof-score strong { margin: 3px 0; }
.results-section { color: var(--white); background: #061925; overflow: hidden; }
.results-layout { display: grid; grid-template-columns: .68fr 1.15fr; align-items: center; gap: 80px; }
.results-copy h2 { margin: 15px 0 24px; font-size: clamp(2.8rem, 5vw, 4.7rem); }
.results-copy > p { color: rgba(255,255,255,.63); }
.results-facts { display: grid; gap: 9px; margin: 30px 0; color: rgba(255,255,255,.72); font-size: .8rem; font-weight: 750; }
.results-facts span { display: flex; gap: 13px; }
.results-facts b { color: var(--aqua); font-size: .7rem; letter-spacing: .08em; }
.before-after { --reveal: 50%; position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #10283a; border-radius: 28px; box-shadow: 0 35px 90px rgba(0,0,0,.3); user-select: none; }
.before-after-base, .before-after-reveal, .before-after-reveal img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.before-after-reveal { z-index: 1; clip-path: inset(0 calc(100% - var(--reveal)) 0 0); }
.comparison-label { position: absolute; z-index: 3; top: 20px; padding: 7px 11px; color: var(--white); background: rgba(5,21,33,.82); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.comparison-before { left: 20px; }
.comparison-after { right: 20px; }
.comparison-handle { position: absolute; z-index: 4; top: 0; bottom: 0; left: var(--reveal); width: 3px; background: var(--white); transform: translateX(-50%); pointer-events: none; }
.comparison-handle i { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 48px; height: 48px; color: var(--ink); background: var(--aqua); border: 4px solid var(--white); border-radius: 50%; font-style: normal; font-weight: 900; transform: translate(-50%,-50%); box-shadow: 0 8px 25px rgba(0,0,0,.25); }
.comparison-handle i { animation: compare-cue 1.15s ease 1.05s 1 both; }
.comparison-range { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.work-ribbon { display: grid; grid-template-columns: repeat(3, 1fr) .78fr; min-height: 285px; background: var(--aqua); }
.work-ribbon > a:not(.work-ribbon-cta) { overflow: hidden; }
.work-ribbon img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.work-ribbon a:hover img { transform: scale(1.035); }
.work-ribbon-cta { display: flex; flex-direction: column; justify-content: flex-end; padding: 34px; }
.work-ribbon-cta span { font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.work-ribbon-cta strong { margin-top: 8px; font-size: 1.35rem; }

/* Meet Shaun and reviews */
.meet-section { background: var(--white); }
.meet-grid { display: grid; grid-template-columns: 1fr .86fr; gap: 100px; align-items: center; }
.meet-photo { position: relative; min-height: 620px; overflow: hidden; border-radius: 28px; }
.meet-photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center top; }
.meet-photo::after { content:""; position:absolute; inset:55% 0 0; background:linear-gradient(transparent,rgba(5,21,33,.5)); }
.meet-photo > span { position: absolute; z-index: 2; left: 24px; bottom: 24px; padding: 9px 14px; color: var(--ink); background: var(--aqua); border-radius: 999px; font-size: .72rem; font-weight: 850; }
.meet-copy h2 { margin: 15px 0 25px; font-size: clamp(2.8rem, 5vw, 4.7rem); }
.meet-copy > p { color: var(--muted); font-size: 1.05rem; }
.reviews-section { background: #edf5f3; }
.reviews-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 50px; }
.reviews-heading h2 { margin: 15px 0 0; font-size: clamp(2.8rem, 5vw, 4.7rem); }
.facebook-rating { display: flex; flex-direction: column; min-width: 230px; padding: 22px 25px; background: var(--white); border: 1px solid var(--line); border-radius: 17px; }
.facebook-rating > span { color: #efb314; letter-spacing: .1em; }
.facebook-rating small { color: var(--muted); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { min-height: 360px; display: flex; flex-direction: column; margin: 0; padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; }
.review-card-dark { color: var(--white); background: var(--ink); border-color: var(--ink); transform: translateY(-16px); }
.review-card blockquote { margin: 55px 0 35px; font-size: 1.13rem; font-weight: 680; line-height: 1.55; letter-spacing: -.018em; }
.review-card figcaption { display: flex; flex-direction: column; margin-top: auto; }
.review-card figcaption span { color: var(--muted); font-size: .73rem; }
.review-card-dark figcaption span { color: rgba(255,255,255,.5); }
.reviews-more { margin-top: 30px; text-align: center; }

/* Area checker */
.area-section { color: var(--white); background: linear-gradient(120deg,#0d5b58,#071b2e 72%); }
.area-layout { display: grid; grid-template-columns: .9fr 1fr; gap: 100px; align-items: center; }
.area-layout h2 { margin: 15px 0 24px; font-size: clamp(2.7rem,5vw,4.6rem); }
.area-layout > div > p { max-width: 560px; color: rgba(255,255,255,.63); }
.area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.area-pills span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.75); font-size: .72rem; font-weight: 750; }
.area-checker { padding: 34px; color: var(--ink); background: var(--white); border-radius: 24px; box-shadow: var(--shadow); }
.area-checker > label { display: block; margin-bottom: 9px; font-size: .75rem; font-weight: 850; }
.area-checker-row { display: grid; grid-template-columns: 1fr auto; gap: 9px; }
.area-checker-row input { min-width: 0; text-transform: uppercase; }
.area-result { display: grid; grid-template-columns: 34px 1fr; gap: 11px; align-items: center; margin: 18px 0 0; padding: 13px 15px; border-radius: 10px; font-size: .78rem; animation: result-pop .35s ease both; }
.area-result strong { display: block; }
.area-result-icon { display: grid; place-items: center; width: 32px; height: 32px; color: var(--ink); background: var(--aqua); border-radius: 50%; font-size: .85rem; font-weight: 950; animation: success-pop .48s cubic-bezier(.2,.85,.25,1.25) both; }
.area-result.area-result-good { color: var(--ink); background: var(--aqua-pale); }
.area-result.area-result-error { color: var(--danger); background: #fff1f0; }
.area-result-error .area-result-icon { color: var(--white); background: var(--danger); }
.final-actions { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.final-call { color: rgba(255,255,255,.75); font-size: .8rem; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }

/* Gallery, reviews and service landing pages */
.gallery-comparison-section { background: var(--white); }
.gallery-comparison-section .before-after { max-width: 1050px; margin-inline: auto; aspect-ratio: 16 / 10; }
.full-gallery-section { background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 330px; gap: 14px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: 20px; }
.gallery-grid .gallery-wide { grid-column: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-grid figure:hover img { transform: scale(1.03); }
.gallery-grid figcaption { position: absolute; left: 17px; bottom: 17px; padding: 7px 11px; color: var(--white); background: rgba(5,21,33,.78); border-radius: 999px; font-size: .7rem; font-weight: 800; backdrop-filter: blur(8px); }
.reviews-page-section { background: var(--paper); }
.review-summary-card { display: grid; grid-template-columns: .6fr 1fr auto; gap: 40px; align-items: center; margin-bottom: 55px; padding: 34px; color: var(--white); background: linear-gradient(120deg,#0f615d,var(--ink)); border-radius: 24px; }
.review-summary-card > div { display: flex; flex-direction: column; }
.review-summary-card > div strong { font-size: 1.35rem; }
.review-summary-card > div small, .review-summary-card p { color: rgba(255,255,255,.63); }
.review-summary-card p { margin: 0; font-size: .84rem; }
.review-grid-page { grid-template-columns: repeat(2,1fr); }
.review-grid-page .review-card-dark { transform: none; }
.review-grid-page .review-card-wide { grid-column: span 2; min-height: 300px; }
.service-page-hero { position: relative; min-height: 690px; display: flex; align-items: end; overflow: hidden; color: var(--white); background: var(--ink); }
.service-page-image, .service-page-overlay { position: absolute; inset: 0; }
.service-page-image { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; transform: scale(1.02); }
.service-page-overlay { background: linear-gradient(90deg,rgba(3,19,33,.96),rgba(3,19,33,.62) 57%,rgba(3,19,33,.18)); }
.service-page-copy { position: relative; z-index: 2; padding-bottom: 90px; }
.service-page-copy h1 { max-width: 760px; margin: 17px 0 25px; font-size: clamp(4rem,8vw,7rem); }
.service-page-copy > p { max-width: 610px; color: rgba(255,255,255,.72); font-size: 1.15rem; }
.service-page-body { background: var(--white); }
.service-page-grid { display: grid; grid-template-columns: 1fr 360px; gap: 100px; align-items: start; }
.service-page-grid h2 { margin: 15px 0 25px; font-size: clamp(2.7rem,5vw,4.5rem); }
.service-page-grid > div > p { color: var(--muted); font-size: 1.05rem; }
.service-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0; margin: 35px 0 0; list-style: none; }
.service-checks li { display: flex; gap: 10px; align-items: center; padding: 15px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; font-size: .8rem; font-weight: 750; }
.service-checks span { display: grid; place-items: center; flex: 0 0 24px; width: 24px; height: 24px; background: var(--aqua); border-radius: 50%; }
.service-page-grid aside { padding: 30px; color: var(--white); background: var(--ink); border-radius: 22px; }
.service-page-grid aside > span { color: var(--aqua); font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.service-page-grid aside > strong { display: block; margin: 22px 0 13px; font-size: 1.22rem; line-height: 1.4; }
.service-page-grid aside p { color: rgba(255,255,255,.58); font-size: .8rem; }
.service-page-grid aside .text-link { color: var(--white); }
.story-photo { min-height: 560px; overflow: hidden; border-radius: 28px; }
.story-photo img { width: 100%; height: 560px; object-fit: cover; object-position: center top; }
.about-proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin: 30px 0; }
.about-proof span { display: flex; flex-direction: column; padding: 14px; background: var(--aqua-pale); border-radius: 12px; color: var(--muted); font-size: .7rem; }
.about-proof strong { color: var(--ink); font-size: 1.2rem; }

/* Quote upgrades */
.option-card { grid-template-columns: 50px 1fr; align-items: center; }
.option-card > span:last-child { display: flex; flex-direction: column; }
.quote-service-icon.service-icon { width: 45px; height: 45px; margin: 0; border-radius: 12px; }
.quote-service-icon.service-icon::before { width: 29px; height: 29px; }
input[type=date], input[type=file] { display: block; width: 100%; min-width: 0; max-width: 100%; min-height: 52px; padding: 12px 15px; color: var(--ink); background: var(--white); border: 1px solid #cfdad9; border-radius: 11px; }
input[type=date] { inline-size: 100%; min-inline-size: 0; max-inline-size: 100%; }
.date-field { width: 100%; min-width: 0; max-width: 100%; overflow-x: clip; }
.date-field input[type=date] { width: 100%; min-width: 0; max-width: 100%; }
.date-field input[type=date]::-webkit-date-and-time-value { min-width: 0; text-align: left; }
.date-field input[type=date]::-webkit-calendar-picker-indicator { flex: 0 0 auto; margin-left: auto; }
@supports (-webkit-touch-callout: none) {
    .date-field input[type=date] { width: -webkit-fill-available; max-width: -webkit-fill-available; -webkit-appearance: none; appearance: none; }
}
.upload-field input[type=file] { padding: 9px; background: var(--paper); }
.upload-field input[type=file]::file-selector-button { margin-right: 12px; padding: 8px 12px; color: var(--white); background: var(--ink); border: 0; border-radius: 8px; font-weight: 750; cursor: pointer; }
.upload-success { color: #087469 !important; font-weight: 750 !important; }
.upload-error { color: var(--danger) !important; }

/* Restrained motion */
@keyframes hero-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes image-in { from { transform: scale(1.07); } to { transform: scale(1.01); } }
@keyframes price-pop { from { opacity: .4; transform: translateY(7px) scale(.95); } to { opacity: 1; transform: none; } }
@keyframes compare-cue { 0%,100% { transform: translate(-50%,-50%); } 30% { transform: translate(calc(-50% - 9px),-50%); } 65% { transform: translate(calc(-50% + 9px),-50%); } }
@keyframes success-pop { from { opacity: 0; transform: scale(.55) rotate(-12deg); } to { opacity: 1; transform: none; } }
@keyframes result-pop { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: none; } }
.hero-enter { animation: hero-in .75s cubic-bezier(.2,.7,.2,1) both; }
.hero-image { animation: image-in 1.2s cubic-bezier(.2,.7,.2,1) both; }
@supports (animation-timeline: view()) {
    .reveal-section > .shell { animation: hero-in linear both; animation-timeline: view(); animation-range: entry 5% cover 28%; }
}

#blazor-error-ui { display: none; position: fixed; z-index: 9999; left: 20px; right: 20px; bottom: 20px; padding: 14px 45px 14px 18px; color: var(--white); background: #8b1c1c; border-radius: 10px; box-shadow: var(--shadow); }
#blazor-error-ui .reload { text-decoration: underline; }
#blazor-error-ui .dismiss { position: absolute; right: 16px; cursor: pointer; }

@media (max-width: 1020px) {
    .desktop-nav { gap: 20px; }
    .hero-copy { width: 73%; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .service-card-centered { grid-column: 1 / -1; }
    .process-layout, .quality-grid { gap: 60px; }
    .faq-layout { gap: 65px; }
    .quote-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 25px; }
    .booking-layout { gap: 55px; }
    .footer-grid { gap: 35px; }
    .social-proof-grid { grid-template-columns: repeat(2,1fr); }
    .social-proof-grid > *:nth-child(2) { border-right: 0; }
    .social-proof-grid > *:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .results-layout, .meet-grid, .area-layout { gap: 55px; }
    .work-ribbon { min-height: 240px; }
}

@media (max-width: 820px) {
    .shell { width: min(calc(100% - 34px), var(--shell)); }
    .section { padding: 82px 0; }
    .desktop-nav, .header-cta { display: none; }
    .mobile-menu { display: block; margin-left: auto; }
    .mobile-menu summary { min-height: 44px; place-content: center; }
    .hero { min-height: 720px; align-items: flex-end; }
    .hero-image { object-position: 74% center; }
    .hero-overlay { background: linear-gradient(0deg, rgba(3,19,33,.97) 0%, rgba(3,19,33,.86) 52%, rgba(3,19,33,.25) 100%); }
    .hero-content { padding: 210px 0 120px; }
    .hero-copy { width: 100%; }
    .hero h1 { font-size: clamp(3.6rem, 14vw, 5.5rem); }
    .hero-price-card { display: none; }
    .trust-grid { grid-template-columns: 1fr; padding: 13px 0; }
    .trust-grid > div { min-height: 84px; padding: 15px 8px; border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-grid > div:last-child { border-bottom: 0; }
    .split-heading, .process-layout, .quality-grid, .faq-layout, .story-grid, .quote-hero-inner, .booking-layout, .results-layout, .meet-grid, .area-layout, .service-page-grid { grid-template-columns: 1fr; gap: 48px; }
    .split-heading { margin-bottom: 40px; }
    .service-card { min-height: 350px; }
    .quality-visual { min-height: 460px; }
    .quality-copy { padding-top: 15px; }
    .final-cta-inner { align-items: flex-start; flex-direction: column; }
    .service-detail { grid-template-columns: 65px 1fr; gap: 25px; }
    .service-detail > div:last-child { grid-column: 2; }
    .values-grid { grid-template-columns: 1fr; }
    .values-grid article { min-height: 230px; }
    .values-grid h3 { margin-top: 50px; }
    .contact-grid { grid-template-columns: 1fr; }
    .quote-layout { grid-template-columns: 1fr; }
    .quote-summary, .booking-intro { position: static; }
    .mobile-quote-bar { position: fixed; z-index: 49; left: 12px; right: 12px; bottom: 10px; display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; padding: 8px 8px 8px 20px; color: var(--white); background: rgba(7,27,46,.97); border: 1px solid rgba(255,255,255,.12); border-radius: 19px; box-shadow: 0 18px 45px rgba(0,0,0,.3); backdrop-filter: blur(15px); transition: opacity .25s ease, transform .25s ease; }
    .mobile-quote-bar.is-hidden { opacity: 0; transform: translateY(130%); pointer-events: none; }
    .mobile-quote-bar > div { display: flex; flex-direction: column; line-height: 1.25; }
    .mobile-quote-bar small { color: var(--aqua); font-size: .62rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
    .mobile-quote-bar strong { font-size: 1.25rem; }
    .mobile-quote-bar strong span { color: rgba(255,255,255,.52); font-size: .64rem; }
    .mobile-quote-bar > a { display: inline-flex; align-items: center; gap: 9px; min-height: 50px; padding: 0 19px; color: var(--ink); background: var(--aqua); border-radius: 14px; font-size: .76rem; font-weight: 850; }
    body:has(.quote-hero) { padding-bottom: 86px; }
    .booking-layout { gap: 35px; }
    .booking-intro { max-width: 680px; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: span 3; }
    .results-copy { max-width: 650px; }
    .work-ribbon { grid-template-columns: repeat(3,1fr); min-height: 210px; }
    .work-ribbon-cta { grid-column: span 3; min-height: 120px; }
    .meet-photo { min-height: 560px; }
    .review-grid { grid-template-columns: 1fr; }
    .review-card-dark { transform: none; }
    .review-card { min-height: 300px; }
    .review-grid-page .review-card-wide { grid-column: auto; }
    .review-summary-card { grid-template-columns: 1fr; gap: 22px; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .service-page-grid aside { max-width: 600px; }
}

@media (max-width: 580px) {
    .legal-page { padding-top: 72px; padding-bottom: 90px; }
    .legal-page h2 { margin-top: 36px; }
    .legal-intro, .legal-callout { padding: 18px; }
    .legal-table > div { grid-template-columns: 1fr; }
    .legal-table span + span, .legal-table strong + strong { border-left: 0; border-top: 1px solid var(--line); }
    body { padding-bottom: 64px; }
    .shell { width: min(calc(100% - 28px), var(--shell)); }
    .site-header { height: 70px; }
    .quote-journey-wrap { top: 70px; padding: 8px 0 7px; }
    .quote-journey a span { width: 32px; height: 32px; font-size: .72rem; }
    .quote-journey::before { top: 16px; }
    .quote-journey a small { font-size: .6rem; }
    .brand-mark { width: 41px; height: 41px; }
    .brand-logo { width: 190px; }
    .brand-copy strong { font-size: .9rem; }
    .hero { min-height: 690px; }
    .hero-image { object-position: 72% center; }
    .hero-content { padding: 145px 0 92px; }
    .hero h1 { font-size: clamp(3.2rem, 16vw, 4.4rem); }
    .hero-copy > p { font-size: 1rem; }
    .hero .hero-actions { display: none; }
    .service-page-hero .hero-actions .button { width: 100%; }
    .service-page-hero .hero-actions .button-ghost { display: none; }
    .hero-trust { display: grid; gap: 10px; margin-top: 30px; }
    .section { padding: 68px 0; }
    .section-heading h2, .quality-copy h2, .process-copy h2, .booking-intro h2 { font-size: 2.65rem; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card-centered { grid-column: auto; }
    .service-card { min-height: 320px; }
    .service-icon { margin: 35px 0; }
    .process-list li { grid-template-columns: 42px 1fr; gap: 12px; }
    .quality-visual { min-height: 390px; }
    .quality-photo { right: 28px; }
    .quality-badge { width: 180px; padding: 20px; }
    .testimonial-section blockquote p { font-size: 1.65rem; }
    .page-hero, .quote-hero { padding: 72px 0 65px; }
    .narrow-page-hero h1, .quote-hero h1 { font-size: clamp(2.65rem, 14vw, 3.25rem); }
    .service-detail { grid-template-columns: 1fr; gap: 13px; padding: 42px 0; }
    .service-detail > div:last-child { grid-column: 1; }
    .story-art { min-height: 390px; }
    .story-art span { font-size: 6rem; }
    .contact-card { padding: 28px; }
    .contact-card h2 { margin-top: 50px; }
    .quote-section { padding: 45px 0 75px; }
    .quote-step, .quote-summary, .booking-form-card { padding: 23px; border-radius: 19px; }
    .service-options, .extras-grid { grid-template-columns: 1fr; }
    .option-card-wide { grid-column: auto; }
    .property-options { grid-template-columns: 1fr 1fr; }
    .inline-fields, .form-grid { grid-template-columns: 1fr; }
    .form-field.full { grid-column: auto; }
    .booking-section { padding: 72px 0; }
    .booking-estimate-card { margin-top: 27px; padding: 17px; }
    .booking-form-heading { grid-template-columns: 42px 1fr; padding-bottom: 23px; }
    .booking-form-heading > span { width: 42px; height: 42px; }
    .booking-form-heading h3 { font-size: 1.25rem; }
    .booking-form-heading em { grid-column: 2; justify-self: start; margin-top: -8px; }
    .form-section { padding: 24px 0; }
    .contact-options { grid-template-columns: 1fr; }
    .contact-options label { min-height: 62px; }
    .photo-preview-grid { grid-column: auto; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
    .photo-preview-card figcaption { align-items: stretch; flex-direction: column; }
    .photo-preview-card button { width: 100%; min-height: 36px; }
    .privacy-check { margin-top: 0; }
    .price-display strong { font-size: 4.3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: span 2; }
    .footer-base { flex-direction: column; }
    .mobile-action-bar { position: fixed; z-index: 48; left: 10px; right: 10px; bottom: 8px; display: grid; grid-template-columns: .7fr 1.4fr; height: 56px; padding: 4px; background: rgba(7,27,46,.96); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; box-shadow: 0 10px 35px rgba(0,0,0,.28); backdrop-filter: blur(12px); }
    .mobile-action-bar a { display: flex; align-items: center; justify-content: center; border-radius: 999px; font-size: .78rem; font-weight: 850; }
    .mobile-secondary { color: var(--white); }
    .mobile-primary { gap: 10px; color: var(--ink); background: var(--aqua); }
    body:has(.quote-hero) { padding-bottom: 86px; }
    body:has(.quote-hero) .mobile-action-bar { display: none; }
    .social-proof-grid { grid-template-columns: 1fr 1fr; }
    .social-proof-grid > * { min-height: 105px; padding: 18px; }
    .social-proof-grid strong { font-size: .9rem; }
    .results-layout { gap: 34px; }
    .before-after { border-radius: 18px; aspect-ratio: 3 / 4; }
    .comparison-label { top: 12px; }
    .comparison-before { left: 12px; }
    .comparison-after { right: 12px; }
    .work-ribbon { grid-template-columns: 1fr 1fr; min-height: auto; }
    .work-ribbon > a:not(.work-ribbon-cta) { height: 180px; }
    .work-ribbon > a:nth-child(3) { display: none; }
    .work-ribbon-cta { grid-column: span 2; min-height: 105px; padding: 24px; }
    .meet-photo { min-height: 450px; }
    .reviews-heading { align-items: flex-start; flex-direction: column; }
    .facebook-rating { width: 100%; }
    .review-card { padding: 25px; }
    .review-card blockquote { margin: 38px 0 30px; }
    .area-checker { padding: 23px; }
    .area-checker-row { grid-template-columns: 1fr; }
    .area-checker-row .button { width: 100%; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
    .gallery-grid .gallery-wide { grid-column: auto; }
    .gallery-comparison-section .before-after { aspect-ratio: 3 / 4; }
    .service-page-hero { min-height: 620px; }
    .service-page-copy { padding-bottom: 65px; }
    .service-page-copy h1 { font-size: 3.7rem; }
    .service-checks { grid-template-columns: 1fr; }
    .about-proof { grid-template-columns: 1fr; }
    .story-photo, .story-photo img { min-height: 430px; height: 430px; }
    .option-card { grid-template-columns: 45px 1fr; }
}

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