:root {
  --navy: #0e3556;
  --navy-deep: #09263f;
  --blue: #2a93d5;
  --blue-soft: #e6f5fd;
  --ink: #16212c;
  --muted: #64717c;
  --line: #dce4e8;
  --surface: #f4f7f8;
  --white: #fff;
  --radius: 1.35rem;
  --shell: 76rem;
  --shadow: 0 1.25rem 3.5rem rgb(18 44 60 / 12%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: Inter, Arial, sans-serif; font-size: 16px; line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.shell { width: min(calc(100% - 2.5rem), var(--shell)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-tint { background: var(--surface); }
.section-dark { background: var(--navy); color: var(--white); }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 20; padding: .75rem 1rem; background: var(--white); box-shadow: var(--shadow); }
.skip-link:focus { top: 1rem; }

h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: Manrope, Inter, sans-serif; line-height: 1.04; letter-spacing: -.045em; }
h1 { max-width: 14ch; font-size: clamp(2.8rem, 6.5vw, 5.7rem); font-weight: 800; }
h2 { max-width: 15ch; font-size: clamp(2.2rem, 4.5vw, 4.1rem); font-weight: 800; }
h3 { font-size: clamp(1.65rem, 2.5vw, 2.45rem); }
p { color: var(--muted); }
.lead { max-width: 38rem; font-size: clamp(1.15rem, 1.8vw, 1.45rem); }
.eyebrow { margin-bottom: 1rem; color: var(--blue); font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow-light { color: #bde9ff; }
.section-heading { display: grid; gap: .55rem; margin-bottom: clamp(2.25rem, 5vw, 4.25rem); }
.section-heading > p:last-child { max-width: 36rem; }
.section-heading-centred { justify-items: center; text-align: center; }
.section-heading-centred h2 { max-width: none; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; min-height: 3.2rem; padding: .75rem 1.25rem; border: 1px solid transparent; border-radius: 999px; font-size: .94rem; font-weight: 600; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: var(--white); }
.button-primary:hover { background: #187fbf; }
.button-quiet { border-color: rgb(255 255 255 / 72%); color: var(--white); }
.button-quiet:hover { background: var(--white); color: var(--navy); }
.button-light { background: var(--white); color: var(--navy); }
.text-link { display: inline-flex; gap: .5rem; margin-top: 1.3rem; color: var(--navy); font-size: .94rem; font-weight: 700; }
.text-link:hover { color: var(--blue); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 10; background: rgb(255 255 255 / 96%); color: var(--ink); box-shadow: 0 .2rem 1rem rgb(0 0 0 / 6%); backdrop-filter: blur(12px); transition: box-shadow .25s ease; }
.site-header.is-stuck { box-shadow: 0 .35rem 1.25rem rgb(0 0 0 / 10%); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 5.25rem; gap: 1rem; }
.brand { display: flex; width: clamp(10.5rem, 17vw, 13.5rem); }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 1.45rem; font-size: .9rem; font-weight: 600; }
.site-nav > a:not(.nav-quote) { opacity: .88; }
.site-nav > a:not(.nav-quote):hover { opacity: 1; }
.nav-quote { padding: .65rem 1rem; border: 1px solid currentColor; border-radius: 999px; }
.menu-toggle { display: none; width: 3rem; height: 3rem; border: 0; background: transparent; color: currentColor; }
.menu-toggle span { display: block; width: 1.4rem; height: 1px; margin: .4rem auto; background: currentColor; transition: transform .2s ease; }

.hero { position: relative; display: grid; align-items: end; min-height: min(52rem, 100svh); padding: 8rem 0 3.25rem; overflow: hidden; color: var(--white); background: var(--navy); }
.hero-media, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgb(4 20 33 / 76%) 0%, rgb(4 20 33 / 50%) 46%, rgb(4 20 33 / 15%) 100%), linear-gradient(0deg, rgb(4 20 33 / 32%), transparent 48%); }
.hero-content { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 1.4rem; }
.hero-copy { max-width: 34rem; color: rgb(255 255 255 / 88%); font-size: clamp(1rem, 1.8vw, 1.2rem); }
.action-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; padding: 0; margin: 2.1rem 0 0; list-style: none; color: rgb(255 255 255 / 92%); font-size: .82rem; font-weight: 600; }
.hero-proof li::before { content: "✓"; margin-right: .4rem; color: #a4e0ff; }

.credentials { border-bottom: 1px solid var(--line); }
.credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.credentials p { padding: 1.6rem 2rem; border-left: 1px solid var(--line); }
.credentials p:first-child { border-left: 0; }
.credentials strong, .credentials span { display: block; }
.credentials strong { color: var(--ink); font-size: .92rem; }
.credentials span { margin-top: .1rem; font-size: .8rem; }

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; }
.service-list { display: grid; gap: clamp(4.5rem, 10vw, 8rem); }
.service-row { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(1.75rem, 7vw, 6.5rem); align-items: center; }
.service-row-reverse { grid-template-columns: .7fr 1.3fr; }
.service-row-reverse .service-photo { order: 2; }
.service-row-reverse .service-detail { order: 1; }
.service-photo { min-height: 22rem; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.service-photo img { width: 100%; height: 100%; min-height: 22rem; object-fit: cover; transition: transform .65s ease; }
.service-row:hover .service-photo img { transform: scale(1.035); }
.service-detail > p { margin-top: 1.1rem; }
.services-note { max-width: 44rem; margin: 4rem auto 0; text-align: center; font-size: .94rem; }

.results-feature { max-width: 57rem; margin: 0 auto; overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.results-feature img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.results-feature figcaption { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; color: var(--muted); font-size: .85rem; }
.results-feature strong { color: var(--ink); }

.commercial-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.commercial-copy h2 { margin-bottom: 1.35rem; }.commercial-copy > p:not(.eyebrow) { color: rgb(255 255 255 / 74%); }
.tick-list { display: grid; gap: .65rem; padding: 0; margin: 1.8rem 0 2rem; list-style: none; font-size: .92rem; }.tick-list li::before { content: "✓"; margin-right: .6rem; color: #8cd8ff; }
.commercial-image { min-height: 29rem; overflow: hidden; border-radius: var(--radius); }.commercial-image img { width: 100%; height: 100%; min-height: 29rem; object-fit: cover; }

.review-panel { display: grid; grid-template-columns: 1.35fr .65fr; gap: 2rem; padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius); background: var(--blue-soft); }
.review-action { align-self: end; }.stars { color: #e69b24; font-size: 1.3rem; letter-spacing: .15em; }.review-action p:not(.stars) { margin-top: .35rem; font-size: .92rem; }

.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 8vw, 7rem); align-items: center; }.quote-copy > p:not(.eyebrow) { max-width: 33rem; margin-top: 1.3rem; }
.quote-steps { display: grid; gap: .85rem; padding: 0; margin: 2rem 0 0; list-style: none; color: var(--ink); font-weight: 600; }.quote-steps span { display: inline-grid; width: 1.55rem; height: 1.55rem; margin-right: .6rem; place-items: center; border-radius: 50%; background: var(--blue); color: var(--white); font-size: .72rem; }
.quote-card { padding: 1.4rem; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }.quote-card-header { display: flex; justify-content: space-between; gap: .75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); color: var(--ink); font-size: .88rem; font-weight: 700; }.quote-card-header > span:first-child { display: inline-flex; align-items: center; gap: .4rem; }.quote-progress { color: var(--muted); font-size: .72rem; font-weight: 600; }.status-dot { display: inline-block; width: .55rem; height: .55rem; border-radius: 50%; background: #3abf69; }.quote-step { display: grid; gap: 1rem; margin: 0; padding: 1.25rem 0 0; border: 0; }.quote-step[hidden] { display: none !important; }.quote-step legend { padding: 0; color: var(--ink); font-family: Manrope, sans-serif; font-size: 1.2rem; font-weight: 800; letter-spacing: -.025em; }.quote-helper { font-size: .86rem; }.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }.choice-grid-services { grid-template-columns: 1fr; }.quote-choice { min-height: 3rem; padding: .7rem .85rem; border: 1px solid var(--line); border-radius: .6rem; background: var(--white); color: var(--ink); text-align: left; font-size: .87rem; font-weight: 600; transition: border-color .2s, background .2s, color .2s, transform .2s; }.quote-choice:hover { border-color: var(--blue); transform: translateX(.2rem); }.quote-choice.is-selected { border-color: var(--blue); background: var(--blue-soft); color: var(--navy); }.quote-choice:focus-visible { outline: 3px solid rgb(42 147 213 / 25%); outline-offset: 2px; }.field-label { display: grid; gap: .45rem; color: var(--ink); font-size: .8rem; font-weight: 700; }.quote-card .field-label input, .quote-card .field-label textarea { width: 100%; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: .6rem; outline: 0; background: var(--white); color: var(--ink); font: inherit; font-size: .92rem; resize: vertical; }.quote-card .field-label input:focus, .quote-card .field-label textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgb(42 147 213 / 12%); }.quote-actions { display: flex; justify-content: space-between; gap: .75rem; }.button-secondary { border-color: var(--line); color: var(--ink); }.button-secondary:hover { border-color: var(--navy); }.upload-note { color: var(--muted); font-size: .74rem; font-weight: 400; }.quote-card .form-note { margin-top: 1rem; }

.check-option { display: flex; align-items: center; gap: .75rem; padding: .85rem .95rem; border: 1px solid var(--line); border-radius: .6rem; color: var(--ink); font-size: .88rem; font-weight: 700; cursor: pointer; }.check-option input { width: 1.1rem; height: 1.1rem; accent-color: var(--blue); }.check-option span { display: grid; gap: .1rem; }.check-option small { color: var(--muted); font-size: .75rem; font-weight: 500; }.estimate-panel { display: grid; gap: .35rem; padding: 1rem; border: 1px solid rgb(42 147 213 / 28%); border-radius: .75rem; background: var(--blue-soft); }.estimate-panel > span { color: var(--navy); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.estimate-panel strong { color: var(--navy); font-family: Manrope, sans-serif; font-size: 1.85rem; line-height: 1; }.estimate-panel p { color: var(--muted); font-size: .78rem; line-height: 1.45; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 8vw, 7rem); }.contact-copy > p:not(.eyebrow) { max-width: 30rem; margin-top: 1.3rem; }.contact-links { display: grid; gap: 1rem; margin-top: 2rem; }.contact-links a { display: grid; gap: .1rem; color: var(--navy); font-family: Manrope, sans-serif; font-size: 1.2rem; font-weight: 800; }.contact-links span { color: var(--muted); font-family: Inter, sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-form { display: grid; gap: 1rem; padding: clamp(1.25rem, 4vw, 2.2rem); border: 1px solid var(--line); border-radius: var(--radius); }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }.contact-form label { display: grid; gap: .45rem; color: var(--ink); font-size: .8rem; font-weight: 700; }.contact-form input, .contact-form textarea { width: 100%; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: .6rem; outline: 0; background: var(--white); color: var(--ink); font: inherit; font-size: .92rem; resize: vertical; }.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgb(42 147 213 / 12%); }.contact-form .button { justify-self: start; }.form-note { font-size: .78rem; }.form-note.is-success { color: #198754; }

.site-footer { padding-top: 3.3rem; background: var(--navy-deep); color: var(--white); }.footer-top { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 2rem; align-items: center; padding-bottom: 2.5rem; }.footer-logo { width: 12.5rem; }.footer-nav, .social-links { display: flex; flex-wrap: wrap; gap: .9rem 1.2rem; color: rgb(255 255 255 / 76%); font-size: .84rem; }.footer-nav a:hover, .social-links a:hover { color: var(--white); }.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid rgb(255 255 255 / 13%); color: rgb(255 255 255 / 58%); font-size: .75rem; }.footer-bottom p { color: inherit; }
.chat-launcher { position: fixed; right: 1rem; bottom: 1rem; z-index: 9; display: inline-flex; align-items: center; gap: .45rem; padding: .75rem 1rem; border-radius: 999px; background: var(--navy); color: var(--white); box-shadow: 0 .6rem 1.8rem rgb(8 38 63 / 24%); font-size: .86rem; font-weight: 700; }.chat-launcher span { color: #91dcff; }
.thank-you-page { display: grid; min-height: 100svh; place-items: center; padding: 2rem; background: var(--surface); }.thank-you-shell { display: grid; justify-items: center; gap: 1.5rem; width: min(100%, 38rem); }.thank-you-logo { width: min(12.5rem, 60vw); }.thank-you-card { width: 100%; padding: clamp(1.8rem, 5vw, 3rem); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); text-align: center; }.thank-you-card h1 { max-width: 18ch; margin-inline: auto; font-size: clamp(2rem, 4.5vw, 3.25rem); }.thank-you-card p:not(.eyebrow) { max-width: 31rem; margin: 1.2rem auto 2rem; }

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 2rem), var(--shell)); }.header-inner { min-height: 4.7rem; }.brand { width: 10rem; }.menu-toggle { display: block; }.site-nav { position: fixed; inset: 4.7rem 1rem auto; display: grid; gap: .2rem; padding: 1rem; border-radius: 1rem; background: var(--white); color: var(--ink); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-.5rem); transition: opacity .2s ease, transform .2s ease; }.site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }.site-nav a { padding: .7rem; }.nav-quote { margin-top: .4rem; text-align: center; color: var(--navy); }.hero { min-height: 43rem; padding-bottom: 2.4rem; }.hero-shade { background: linear-gradient(90deg, rgb(4 20 33 / 72%), rgb(4 20 33 / 32%)), linear-gradient(0deg, rgb(4 20 33 / 42%), transparent 60%); }.credentials-grid { grid-template-columns: 1fr; }.credentials p, .credentials p:first-child { padding: 1.1rem 0; border: 0; border-top: 1px solid var(--line); }.credentials p:first-child { border-top: 0; }.intro-grid, .commercial-grid, .quote-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }.service-row, .service-row-reverse { grid-template-columns: 1fr; gap: 1.4rem; }.service-row-reverse .service-photo, .service-row-reverse .service-detail { order: initial; }.service-photo, .service-photo img { min-height: 17rem; }.commercial-image, .commercial-image img { min-height: 20rem; }.review-panel { grid-template-columns: 1fr; }.form-row, .choice-grid { grid-template-columns: 1fr; }.footer-top { grid-template-columns: 1fr; gap: 1.5rem; }.footer-bottom { flex-direction: column; }.results-feature figcaption { flex-direction: column; gap: .2rem; }.chat-launcher { bottom: .75rem; right: .75rem; }
}

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