:root {
  --navy: #071a2f;
  --navy-2: #0c2847;
  --ink: #0a111a;
  --slate: #516071;
  --soft: #f3f6f8;
  --line: #dce3e8;
  --white: #ffffff;
  --orange: #ff6a1a;
  --orange-dark: #de4e00;
  --orange-soft: #fff0e7;
  --green: #37c985;
  --shadow: 0 22px 60px rgba(7, 26, 47, .13);
  --radius: 18px;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Manrope", Arial, sans-serif; font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
p { margin: 0 0 1.25rem; color: var(--slate); }
h1, h2, h3, h4 { margin: 0 0 1rem; color: var(--ink); font-family: "Oswald", Impact, sans-serif; font-weight: 600; line-height: 1.08; letter-spacing: -.02em; }
h1 { font-size: clamp(3.2rem, 7vw, 6.6rem); }
h2 { font-size: clamp(2.35rem, 4vw, 4.25rem); }
h3 { font-size: 1.55rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.section--soft { background: var(--soft); }
.section--navy { color: var(--white); background: var(--navy); }
.section--navy h2, .section--navy h3, .section--navy p { color: var(--white); }
.section--navy p { opacity: .72; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 10px 16px; color: var(--white); background: var(--navy); transform: translateY(-200%); }
.skip-link:focus { transform: none; }

.eyebrow { display: block; margin-bottom: 18px; color: var(--orange-dark); font-size: .76rem; font-weight: 800; letter-spacing: .16em; line-height: 1.35; text-transform: uppercase; }
.eyebrow--light { color: #ff9b65; }
.button { display: inline-flex; min-height: 56px; align-items: center; justify-content: center; gap: 20px; padding: 0 25px; border: 2px solid var(--orange); border-radius: 4px; color: var(--white); background: var(--orange); font-size: .84rem; font-weight: 800; letter-spacing: .04em; line-height: 1.2; text-transform: uppercase; transition: .25s ease; }
.button span { font-size: 1.15rem; transition: transform .25s ease; }
.button:hover { border-color: var(--orange-dark); background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(222, 78, 0, .24); }
.button:hover span { transform: translateX(3px); }
.button--small { min-height: 46px; padding: 0 20px; }
.button--dark { border-color: var(--navy); background: var(--navy); }
.button--dark:hover { border-color: var(--navy-2); background: var(--navy-2); }
.button--white { border-color: var(--white); color: var(--navy); background: var(--white); }
.button--white:hover { border-color: var(--white); color: var(--white); background: transparent; }
.button--glass { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.09); backdrop-filter: blur(8px); }
.button--glass:hover { border-color: var(--white); background: rgba(255,255,255,.17); }
.button--outline-light { border-color: rgba(255,255,255,.45); background: transparent; }
.button--outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.text-link span { color: var(--orange); font-size: 1.1rem; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.text-link--large { font-size: .84rem; white-space: nowrap; }

.topbar { color: rgba(255,255,255,.78); background: #03101e; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.topbar__inner { display: flex; min-height: 39px; align-items: center; justify-content: space-between; }
.topbar p { margin: 0; color: inherit; }
.topbar__links { display: flex; align-items: center; gap: 15px; }
.topbar__links a:hover { color: var(--orange); }
.site-header { position: relative; z-index: 100; height: 82px; border-bottom: 1px solid rgba(7,26,47,.09); background: var(--white); }
.site-header.is-sticky { position: sticky; top: 0; box-shadow: 0 10px 35px rgba(7,26,47,.09); animation: headerIn .3s ease; }
@keyframes headerIn { from { transform: translateY(-100%); } }
.nav-wrap { display: flex; height: 100%; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { position: relative; display: grid; width: 45px; height: 45px; place-items: center; overflow: hidden; border-radius: 7px; color: var(--white); background: var(--navy); font-family: "Oswald"; font-size: 1.5rem; font-weight: 700; }
.brand__mark::after { position: absolute; right: -10px; bottom: -13px; width: 35px; height: 35px; border-radius: 50%; background: var(--orange); content: ""; }
.brand__mark span { position: relative; z-index: 1; }
.brand__words { display: flex; flex-direction: column; line-height: 1; }
.brand__words strong { color: var(--navy); font-family: "Oswald"; font-size: 1.55rem; letter-spacing: .02em; text-transform: uppercase; }
.brand__words small { margin-top: 5px; color: var(--slate); font-size: .58rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.site-nav { display: flex; height: 100%; align-items: center; gap: 30px; }
.site-nav > a:not(.button), .nav-dropdown__toggle { position: relative; display: flex; height: 100%; align-items: center; padding: 0; border: 0; color: #172435; background: transparent; font-size: .77rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.site-nav > a:not(.button)::after, .nav-dropdown__toggle::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--orange); content: ""; transform: scaleX(0); transition: transform .2s; }
.site-nav > a:not(.button):hover::after, .site-nav > a.active::after, .nav-dropdown__toggle:hover::after, .nav-dropdown__toggle.active::after { transform: scaleX(1); }
.nav-dropdown { height: 100%; }
.nav-dropdown__toggle { gap: 9px; }
.nav-dropdown__toggle > span { font-size: inherit; }
.nav-chevron { width: 14px; height: 9px; flex: 0 0 auto; color: var(--orange-dark); transition: color .2s ease, transform .2s ease; }
.nav-dropdown:hover .nav-chevron, .nav-dropdown.is-open .nav-chevron { color: var(--orange); transform: rotate(180deg); }
.nav-dropdown__menu { position: absolute; top: 100%; right: max(20px, calc((100vw - var(--container))/2)); width: min(760px, calc(100vw - 40px)); padding: 24px; visibility: hidden; border-top: 3px solid var(--orange); background: var(--white); box-shadow: var(--shadow); opacity: 0; transform: translateY(10px); transition: .2s; }
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown.is-open .nav-dropdown__menu { visibility: visible; opacity: 1; transform: none; }
.nav-dropdown__all { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding: 12px 14px; color: var(--white); background: var(--navy); font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.nav-dropdown__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.nav-dropdown__grid a { padding: 11px 14px; color: var(--ink); background: var(--white); font-size: .8rem; font-weight: 700; }
.nav-dropdown__grid a:hover { color: var(--orange-dark); background: var(--orange-soft); }
.nav-toggle { display: none; width: 44px; height: 42px; padding: 10px; border: 0; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy); transition: .2s; }

.home-hero { position: relative; min-height: 760px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--navy) var(--hero-image) center/cover no-repeat; }
.home-hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,15,29,.96) 0%, rgba(3,15,29,.82) 48%, rgba(3,15,29,.45) 100%); content: ""; }
.home-hero::after { position: absolute; inset: auto -8% -170px auto; width: 500px; height: 500px; border: 90px solid rgba(255,106,26,.17); border-radius: 50%; content: ""; }
.home-hero__wash { position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(115deg, transparent 0 49%, #fff 49.2% 49.4%, transparent 49.6%); background-size: 80px 80px; }
.home-hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr); gap: 70px; align-items: center; padding-block: 90px; }
.home-hero__copy { max-width: 750px; }
.home-hero h1 { max-width: 720px; color: var(--white); font-size: clamp(4rem, 7.2vw, 7rem); text-transform: uppercase; }
.home-hero h1 em { display: block; color: var(--orange); font-style: normal; }
.home-hero__copy > p { max-width: 680px; color: rgba(255,255,255,.76); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof { display: flex; align-items: center; gap: 10px; margin-top: 28px; color: rgba(255,255,255,.67); font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.proof-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(55,201,133,.14); }
.hero-card { border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(5,22,40,.86); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.hero-card__top { display: flex; flex-direction: column; padding: 24px 26px 20px; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero-card__top span { color: #ff9b65; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-card__top strong { margin-top: 5px; color: var(--white); font-family: "Oswald"; font-size: 1.55rem; }
.hero-card .quote-form { padding: 22px 26px 26px; }
.hero-card label > span { color: rgba(255,255,255,.7); }
.hero-card input, .hero-card select { border-color: rgba(255,255,255,.16); color: var(--white); background: rgba(255,255,255,.07); }
.hero-card select option { color: var(--ink); }
.hero-card .consent span, .hero-card .form-note { color: rgba(255,255,255,.52); }
.hero-card .form-note a { color: var(--white); }
.hero-scroll { position: absolute; z-index: 4; bottom: 28px; left: 28px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.6); font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-scroll span { display: block; width: 42px; height: 1px; background: var(--orange); }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip__grid div { display: flex; min-height: 112px; flex-direction: column; justify-content: center; padding: 22px 30px; border-right: 1px solid var(--line); }
.trust-strip__grid div:first-child { border-left: 1px solid var(--line); }
.trust-strip strong { color: var(--navy); font-family: "Oswald"; font-size: 1.15rem; text-transform: uppercase; }
.trust-strip span { color: var(--slate); font-size: .76rem; }
.section-heading { max-width: 720px; }
.section-heading > p { max-width: 630px; font-size: 1.02rem; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center > p { margin-inline: auto; }
.heading-row { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 52px; }
.heading-row .section-heading h2 { margin-bottom: 14px; }
.heading-row .section-heading p { margin-bottom: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: 4px; background: var(--white); transition: .3s ease; }
.service-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-7px); }
.service-card__image { position: relative; display: block; height: 245px; overflow: hidden; background: var(--navy); }
.service-card__image::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(4,18,32,.55)); content: ""; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-card:hover img { transform: scale(1.045); }
.service-card__number { position: absolute; z-index: 1; right: 18px; bottom: 13px; color: var(--white); font-family: "Oswald"; font-size: 1.6rem; }
.service-card__body { padding: 26px; }
.service-card h3 { margin-bottom: 10px; }
.service-card h3 a:hover { color: var(--orange-dark); }
.service-card p { min-height: 80px; margin-bottom: 18px; font-size: .9rem; line-height: 1.65; }

.process-section { overflow: hidden; background: var(--soft); }
.process-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 9%; align-items: center; }
.process-image { position: relative; }
.process-image::before { position: absolute; top: -24px; right: -24px; width: 58%; height: 52%; border: 5px solid var(--orange); content: ""; }
.process-image > img { position: relative; width: 100%; height: 650px; object-fit: cover; }
.process-image__badge { position: absolute; right: -42px; bottom: 44px; display: flex; width: 190px; height: 120px; flex-direction: column; justify-content: center; padding: 25px; color: var(--white); background: var(--navy); }
.process-image__badge strong { color: var(--orange); font-family: "Oswald"; font-size: 1.5rem; text-transform: uppercase; }
.process-image__badge span { font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.steps { margin: 35px 0 35px; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 68px 1fr; gap: 20px; padding: 25px 0; border-top: 1px solid var(--line); }
.steps li > span { color: var(--orange); font-family: "Oswald"; font-size: 1.3rem; }
.steps h3 { margin-bottom: 6px; font-size: 1.35rem; }
.steps p { margin: 0; font-size: .9rem; }
.comparison-preview { background: var(--white); }
.comparison { position: relative; height: min(52vw, 620px); min-height: 380px; margin: 0; overflow: hidden; border-radius: 5px; background: var(--navy); box-shadow: var(--shadow); }
.comparison img { width: 100%; height: 100%; object-fit: cover; user-select: none; }
.comparison__before { position: absolute; inset: 0; filter: saturate(.65) brightness(.75); }
.comparison__after { position: absolute; inset: 0; width: var(--position); overflow: hidden; border-right: 2px solid var(--white); }
.comparison__after img { width: 100vw; max-width: var(--container); filter: saturate(1.08) brightness(1.05); }
.comparison__label { position: absolute; top: 20px; padding: 7px 12px; border-radius: 3px; color: var(--white); background: rgba(3,16,30,.78); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.comparison__label--before { right: 20px; }
.comparison__label--after { left: 20px; background: var(--orange); }
.comparison__line { position: absolute; top: 0; bottom: 0; left: var(--position); display: flex; align-items: center; transform: translateX(-50%); pointer-events: none; }
.comparison__line span { display: grid; width: 52px; height: 52px; place-items: center; border: 3px solid var(--white); border-radius: 50%; color: var(--navy); background: var(--white); box-shadow: 0 8px 30px rgba(0,0,0,.22); font-size: 1.4rem; }
.comparison input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.areas-section { color: var(--white); background: var(--navy); }
.areas-section h2 { color: var(--white); }
.areas-section p { color: rgba(255,255,255,.68); }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11%; align-items: center; }
.area-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.15); }
.area-list span { display: flex; gap: 16px; padding: 17px 8px; border-bottom: 1px solid rgba(255,255,255,.15); font-family: "Oswald"; font-size: 1.1rem; text-transform: uppercase; }
.area-list b { color: var(--orange); font-size: .72rem; font-weight: 600; }

.page-hero { position: relative; min-height: 510px; display: grid; align-items: end; overflow: hidden; color: var(--white); background: var(--navy) var(--hero-image) center/cover no-repeat; }
.page-hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,16,30,.94), rgba(3,16,30,.7) 58%, rgba(3,16,30,.3)); content: ""; }
.page-hero::after { position: absolute; right: 8%; bottom: -180px; width: 370px; height: 370px; border: 70px solid rgba(255,106,26,.22); border-radius: 50%; content: ""; }
.page-hero__inner { position: relative; z-index: 1; padding-block: 105px 85px; }
.page-hero__copy { max-width: 850px; }
.page-hero h1 { max-width: 850px; color: var(--white); font-size: clamp(3.5rem, 6.5vw, 6.3rem); text-transform: uppercase; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.74); font-size: 1.08rem; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 9%; align-items: center; }
.split-images { position: relative; padding: 0 60px 70px 0; }
.split-images__main { width: 100%; height: 650px; object-fit: cover; }
.split-images__accent { position: absolute; right: 0; bottom: 0; width: 46%; height: 280px; border: 12px solid var(--white); object-fit: cover; }
.values-list { margin-top: 35px; }
.values-list article { display: grid; grid-template-columns: 55px 1fr; gap: 18px; padding: 23px 0; border-top: 1px solid var(--line); }
.values-list article > span { color: var(--orange); font-family: "Oswald"; }
.values-list h3 { margin-bottom: 5px; }
.values-list p { margin: 0; font-size: .9rem; }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 55px; border: 1px solid rgba(255,255,255,.14); }
.principle-grid article { min-height: 290px; padding: 35px 30px; border-right: 1px solid rgba(255,255,255,.14); }
.principle-grid article:last-child { border: 0; }
.principle-grid article > span { display: block; margin-bottom: 50px; color: var(--orange); font-family: "Oswald"; font-size: 1.2rem; }
.principle-grid h3 { font-size: 1.8rem; }
.principle-grid p { margin: 0; font-size: .86rem; }
.story-callout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 10%; align-items: end; }
.story-callout > div:last-child { padding-bottom: 8px; }

.services-section + .process-section { margin-top: 0; }
.decision-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 9%; align-items: center; }
.check-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 15px 18px 15px 50px; border: 1px solid var(--line); background: var(--white); font-size: .9rem; font-weight: 700; }
.check-list li::before { position: absolute; top: 50%; left: 17px; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; color: var(--white); background: var(--orange); content: "✓"; font-size: .68rem; transform: translateY(-50%); }
.check-list--grid { grid-template-columns: 1fr 1fr; }

.gallery-intro { display: grid; grid-template-columns: 1.3fr .7fr; gap: 8%; align-items: end; margin-bottom: 60px; }
.honesty-note { padding: 25px; border-left: 4px solid var(--orange); background: var(--orange-soft); font-size: .84rem; }
.honesty-note strong { display: block; margin-bottom: 6px; color: var(--ink); text-transform: uppercase; }
.comparison-grid { display: grid; gap: 75px; }
.comparison-grid .comparison { height: min(48vw, 580px); }
.comparison-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.comparison-title span { font-family: "Oswald"; font-size: 1.6rem; font-weight: 600; text-transform: uppercase; }
.comparison-title small { color: var(--orange-dark); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.gallery-cta { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-top: 90px; padding: 55px; color: var(--white); background: var(--navy); }
.gallery-cta h2 { max-width: 700px; margin: 0; color: var(--white); }

.review-ready { display: grid; grid-template-columns: 1.1fr .9fr; gap: 9%; align-items: center; }
.review-status { display: flex; gap: 22px; margin: 35px 0; padding: 25px; border: 1px solid var(--line); }
.review-status > span { display: grid; width: 68px; height: 68px; flex: 0 0 68px; place-items: center; border-radius: 50%; color: var(--white); background: #4285f4; font-size: .7rem; font-weight: 800; }
.review-status strong { font-family: "Oswald"; font-size: 1.3rem; text-transform: uppercase; }
.review-status p { margin: 4px 0 0; font-size: .85rem; }
.review-principles { border-top: 4px solid var(--orange); background: var(--navy); box-shadow: var(--shadow); }
.review-principles article { display: grid; grid-template-columns: 45px 1fr; padding: 30px; border-bottom: 1px solid rgba(255,255,255,.14); }
.review-principles article > span { grid-row: 1 / 3; color: var(--orange); font-family: "Oswald"; }
.review-principles h3 { margin-bottom: 5px; color: var(--white); }
.review-principles p { margin: 0; color: rgba(255,255,255,.62); font-size: .85rem; }
.review-callout { max-width: 850px; text-align: center; }
.review-callout p { margin-bottom: 8px; color: var(--orange-dark); font-weight: 800; text-transform: uppercase; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8%; align-items: start; }
.contact-methods { display: grid; margin-top: 35px; border-top: 1px solid var(--line); }
.contact-methods a { display: grid; grid-template-columns: 80px 1fr; padding: 21px 0; border-bottom: 1px solid var(--line); }
.contact-methods a > span { grid-row: 1 / 3; color: var(--orange-dark); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-methods strong { overflow-wrap: anywhere; font-family: "Oswald"; font-size: 1.15rem; }
.contact-methods small { color: var(--slate); }
.contact-methods a:hover strong { color: var(--orange-dark); }
.business-hours { display: flex; flex-direction: column; margin-top: 28px; padding: 25px; color: var(--white); background: var(--navy); }
.business-hours strong { color: var(--orange); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.business-hours span { font-family: "Oswald"; font-size: 1.35rem; }
.business-hours small { color: rgba(255,255,255,.55); }
.form-card { padding: 45px; border-top: 5px solid var(--orange); background: var(--soft); }
.contact-form { display: grid; gap: 19px; margin-top: 30px; }
.map-section { position: relative; height: 590px; }
.map-section iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.75) contrast(1.04); }
.map-card { position: absolute; top: 50%; left: max(20px, calc((100vw - var(--container))/2)); width: min(440px, calc(100% - 40px)); padding: 38px; background: var(--white); box-shadow: var(--shadow); transform: translateY(-50%); }
.map-card h2 { font-size: 2.4rem; }

.quote-hero-contact { display: flex; gap: 25px; margin-top: 25px; }
.quote-hero-contact a { border-bottom: 1px solid var(--orange); color: var(--white); font-size: .76rem; font-weight: 800; text-transform: uppercase; }
.quote-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.quote-main { padding: 50px; border-top: 5px solid var(--orange); background: var(--soft); }
.quote-main > h2 { font-size: 3.4rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-span { grid-column: 1 / -1; }
label { display: block; }
label > span { display: block; margin-bottom: 7px; color: #354354; font-size: .69rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
input, select, textarea { width: 100%; min-height: 51px; padding: 12px 14px; outline: 0; border: 1px solid #cbd4db; border-radius: 2px; color: var(--ink); background: var(--white); transition: .2s; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,106,26,.12); }
.consent { display: grid; grid-template-columns: 17px 1fr; gap: 10px; margin: 18px 0; }
.consent input { width: 17px; min-height: 17px; margin: 3px 0 0; accent-color: var(--orange); }
.consent span { margin: 0; color: var(--slate); font-size: .7rem; font-weight: 500; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.form-note { margin: 13px 0 0; font-size: .68rem; text-align: center; }
.form-note a { color: var(--orange-dark); font-weight: 800; }
.quote-form--compact .form-grid { grid-template-columns: 1fr; gap: 13px; }
.quote-form--compact .form-span { grid-column: auto; }
.quote-form--compact label > span { font-size: .62rem; }
.quote-form--compact input, .quote-form--compact select { min-height: 45px; padding: 9px 12px; }
.quote-form--compact .button { min-height: 49px; }
.quote-aside { position: sticky; top: 110px; }
.quote-tip { padding: 24px 0; border-bottom: 1px solid var(--line); }
.quote-tip > span { color: var(--orange); font-family: "Oswald"; }
.quote-tip h3 { margin: 5px 0; }
.quote-tip p { margin: 0; font-size: .84rem; }
.direct-call { display: flex; flex-direction: column; margin-top: 30px; padding: 28px; color: var(--white); background: var(--navy); }
.direct-call small { color: rgba(255,255,255,.55); }
.direct-call strong { font-family: "Oswald"; font-size: 1.55rem; text-transform: uppercase; }
.direct-call a { color: var(--orange); font-weight: 800; }

.service-hero { display: grid; min-height: 670px; grid-template-columns: 1fr 1fr; background: var(--navy); }
.service-hero__image { min-width: 0; overflow: hidden; }
.service-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.service-hero__copy { position: relative; display: flex; align-items: center; padding: 90px clamp(35px, 6vw, 100px); overflow: hidden; }
.service-hero__copy::after { position: absolute; right: -160px; bottom: -190px; width: 430px; height: 430px; border: 80px solid rgba(255,106,26,.16); border-radius: 50%; content: ""; }
.service-hero__copy > div { position: relative; z-index: 1; max-width: 650px; }
.service-hero h1 { color: var(--white); font-size: clamp(3.5rem, 6vw, 6rem); text-transform: uppercase; }
.service-hero p { color: rgba(255,255,255,.68); font-size: 1.05rem; }
.back-link { display: inline-block; margin-bottom: 38px; color: rgba(255,255,255,.6); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.back-link:hover { color: var(--orange); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 75px; align-items: start; }
.subheading { margin: 45px 0 20px; font-size: 1.8rem; }
.service-process { margin-top: 60px; }
.service-process > h3 { margin-bottom: 25px; font-size: 2rem; }
.service-process > div { display: grid; grid-template-columns: 55px 1fr; padding: 20px 0; border-top: 1px solid var(--line); }
.service-process span { color: var(--orange); font-family: "Oswald"; }
.service-process p { margin: 0; color: var(--ink); font-weight: 700; }
.scope-note { margin-top: 50px; padding: 28px; border-left: 4px solid var(--orange); background: var(--orange-soft); }
.scope-note strong { font-family: "Oswald"; font-size: 1.3rem; text-transform: uppercase; }
.scope-note p { margin: 5px 0 0; font-size: .85rem; }
.service-sidebar { position: sticky; top: 110px; }
.service-sidebar > div { padding: 34px; color: var(--white); background: var(--navy); }
.service-sidebar h2 { color: var(--white); font-size: 2.5rem; }
.service-sidebar p { color: rgba(255,255,255,.62); font-size: .86rem; }
.sidebar-phone { display: block; margin-top: 14px; color: rgba(255,255,255,.62); font-size: .72rem; font-weight: 700; text-align: center; text-transform: uppercase; }
.service-sidebar nav { display: grid; margin-top: 22px; border: 1px solid var(--line); }
.service-sidebar nav > strong { padding: 16px 18px; color: var(--slate); font-size: .69rem; letter-spacing: .08em; text-transform: uppercase; }
.service-sidebar nav a { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-top: 1px solid var(--line); font-size: .78rem; font-weight: 700; }
.service-sidebar nav a span { color: var(--orange); }
.service-sidebar nav a:hover { color: var(--orange-dark); background: var(--orange-soft); }
.related-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }

.final-cta { padding: 80px 0; color: var(--white); background: var(--orange); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.final-cta h2 { max-width: 760px; color: var(--white); }
.final-cta p { max-width: 700px; margin: 0; color: rgba(255,255,255,.78); }
.final-cta__actions { display: grid; flex: 0 0 270px; gap: 12px; }
.site-footer { padding: 80px 0 25px; color: var(--white); background: #030f1c; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr 1fr; gap: 55px; }
.brand--footer .brand__words strong { color: var(--white); }
.brand--footer .brand__words small { color: rgba(255,255,255,.54); }
.footer-brand > p { max-width: 350px; margin-top: 23px; color: rgba(255,255,255,.56); font-size: .83rem; }
.footer-contact { display: flex; flex-direction: column; }
.footer-contact a { color: var(--white); font-size: .79rem; font-weight: 700; overflow-wrap: anywhere; }
.site-footer h3 { margin-bottom: 24px; color: var(--white); font-family: "Manrope"; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 9px 0; }
.site-footer li a, .site-footer > .container p { color: rgba(255,255,255,.55); font-size: .78rem; }
.site-footer li a:hover { color: var(--orange); }
.footer-grid > div:last-child p { color: rgba(255,255,255,.55); font-size: .78rem; }
.footer-hours { color: var(--orange) !important; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; }
.mobile-actions { display: none; }
.back-to-top { position: fixed; z-index: 80; right: 22px; bottom: 22px; display: grid; width: 45px; height: 45px; place-items: center; visibility: hidden; border: 0; border-radius: 50%; color: var(--white); background: var(--navy); box-shadow: var(--shadow); opacity: 0; transition: .2s; }
.back-to-top.is-visible { visibility: visible; opacity: 1; }
.not-found { min-height: 70vh; display: grid; place-items: center; padding: 100px 0; text-align: center; }
.not-found span { color: var(--orange); font-family: "Oswald"; font-size: 6rem; font-weight: 700; }
.not-found h1 { font-size: 4rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .site-nav { gap: 18px; }
  .nav-quote { display: none; }
  .home-hero__inner { grid-template-columns: 1fr .7fr; gap: 35px; }
  .service-grid { gap: 18px; }
  .process-grid { gap: 7%; }
  .footer-grid { grid-template-columns: 1.3fr .7fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .site-header { height: 72px; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 72px 0 0; display: block; height: auto; padding: 25px 20px 110px; overflow-y: auto; visibility: hidden; background: var(--white); opacity: 0; transform: translateX(100%); transition: .25s ease; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav > a:not(.button), .nav-dropdown__toggle { width: 100%; height: auto; justify-content: space-between; padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .nav-chevron { width: 16px; height: 10px; margin-right: 4px; }
  .site-nav > a:not(.button)::after, .nav-dropdown__toggle::after { display: none; }
  .nav-dropdown { height: auto; }
  .nav-dropdown__menu { position: static; width: 100%; padding: 12px 0; display: none; visibility: visible; border: 0; box-shadow: none; opacity: 1; transform: none; }
  .nav-dropdown.is-open .nav-dropdown__menu { display: block; }
  .nav-dropdown__grid { grid-template-columns: 1fr; }
  .nav-quote { display: inline-flex; width: 100%; margin-top: 18px; }
  .home-hero { min-height: auto; }
  .home-hero__inner { grid-template-columns: 1fr; padding-block: 95px; }
  .home-hero__copy { max-width: 700px; }
  .hero-card { max-width: 620px; }
  .hero-scroll { display: none; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__grid div:nth-child(3) { border-left: 1px solid var(--line); }
  .section { padding: 85px 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .process-grid, .split-layout, .review-ready, .contact-grid { grid-template-columns: 1fr; gap: 70px; }
  .process-image { max-width: 600px; }
  .split-images { max-width: 650px; }
  .principle-grid { grid-template-columns: 1fr 1fr; }
  .principle-grid article:nth-child(2) { border-right: 0; }
  .principle-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .areas-grid, .story-callout, .decision-grid, .gallery-intro { grid-template-columns: 1fr; gap: 50px; }
  .quote-layout, .service-detail-grid { grid-template-columns: 1fr; }
  .quote-aside, .service-sidebar { position: static; }
  .service-hero { grid-template-columns: 1fr; }
  .service-hero__image { height: 450px; }
  .service-hero__copy { min-height: 570px; }
  .service-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
  .service-sidebar nav { margin: 0; }
  .final-cta__inner { align-items: start; flex-direction: column; }
  .final-cta__actions { width: 100%; flex: auto; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 35px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 64px; font-size: 15px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .brand__mark { width: 40px; height: 40px; }
  .brand__words strong { font-size: 1.35rem; }
  .brand__words small { font-size: .5rem; }
  .section { padding: 70px 0; }
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.55rem; }
  .home-hero::before { background: rgba(3,15,29,.85); }
  .home-hero__inner { padding-block: 75px; }
  .home-hero h1 { font-size: clamp(3.6rem, 17vw, 5.4rem); }
  .home-hero__copy > p { font-size: .98rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-card { display: none; }
  .trust-strip__grid { grid-template-columns: 1fr; padding-block: 6px; }
  .trust-strip__grid div, .trust-strip__grid div:first-child, .trust-strip__grid div:nth-child(3) { min-height: 80px; padding: 14px 5px; border: 0; border-bottom: 1px solid var(--line); }
  .heading-row { align-items: start; flex-direction: column; gap: 10px; margin-bottom: 36px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card__image { height: 230px; }
  .service-card p { min-height: 0; }
  .process-image { padding-right: 12px; }
  .process-image > img { height: 460px; }
  .process-image__badge { right: 0; bottom: 22px; width: 160px; height: 100px; }
  .steps li { grid-template-columns: 48px 1fr; }
  .comparison { height: 390px; min-height: 0; }
  .comparison__after img { width: calc(100vw - 30px); }
  .area-list { grid-template-columns: 1fr; }
  .page-hero { min-height: 460px; }
  .page-hero__inner { padding-block: 90px 65px; }
  .page-hero h1 { font-size: clamp(3.25rem, 15vw, 4.7rem); }
  .split-images { padding: 0 35px 45px 0; }
  .split-images__main { height: 480px; }
  .split-images__accent { height: 190px; border-width: 8px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article, .principle-grid article:nth-child(2) { min-height: 230px; border: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .principle-grid article > span { margin-bottom: 25px; }
  .check-list--grid { grid-template-columns: 1fr; }
  .comparison-grid { gap: 55px; }
  .comparison-grid .comparison { height: 380px; }
  .comparison-title { align-items: start; flex-direction: column; }
  .gallery-cta { align-items: start; flex-direction: column; padding: 32px 25px; }
  .review-status { align-items: start; flex-direction: column; }
  .form-card, .quote-main { padding: 30px 22px; }
  .contact-methods a { grid-template-columns: 65px 1fr; }
  .map-section { height: 700px; }
  .map-card { top: auto; bottom: 20px; transform: none; }
  .quote-layout { gap: 40px; }
  .quote-main > h2 { font-size: 2.7rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-span { grid-column: auto; }
  .quote-hero-contact { align-items: start; flex-direction: column; gap: 10px; }
  .service-hero__image { height: 320px; }
  .service-hero__copy { min-height: 530px; padding: 65px 25px; }
  .service-hero h1 { font-size: clamp(3.4rem, 15vw, 4.8rem); }
  .service-sidebar { grid-template-columns: 1fr; }
  .related-heading { align-items: start; flex-direction: column; }
  .final-cta { padding: 65px 0; }
  .final-cta__actions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: start; flex-direction: column; gap: 5px; }
  .mobile-actions { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; display: grid; height: 64px; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.12); background: var(--navy); box-shadow: 0 -10px 30px rgba(0,0,0,.14); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 7px; border-right: 1px solid rgba(255,255,255,.12); color: var(--white); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
  .mobile-actions a:last-child { border: 0; color: var(--white); background: var(--orange); }
  .back-to-top { bottom: 78px; }
  .not-found h1 { font-size: 3rem; }
}

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