@font-face { font-family: "Poppins"; src: url("/assets/fonts/Poppins-Regular.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/assets/fonts/Poppins-Medium.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/assets/fonts/Poppins-SemiBold.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/assets/fonts/Poppins-Bold.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("/assets/fonts/Poppins-ExtraBold.ttf") format("truetype"); font-style: normal; font-weight: 800; font-display: swap; }

:root {
  --navy-950: #06182b;
  --navy-900: #082743;
  --navy-800: #0c3658;
  --navy-700: #164e75;
  --orange: #f47721;
  --orange-dark: #d95f10;
  --cream: #f1f0eb;
  --mist: #e4eaec;
  --white: #ffffff;
  --ink: #102a43;
  --muted: #5c6c79;
  --line: #cad5d9;
  --shadow: 0 24px 70px rgba(6, 24, 43, 0.14);
  --radius: 4px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: "Poppins", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.skip-link { position: fixed; top: -100px; left: 18px; z-index: 1000; padding: 12px 18px; color: var(--white); background: var(--orange); text-decoration: none; font-weight: 700; }
.skip-link:focus { top: 18px; }
:focus-visible { outline: 3px solid rgba(244, 119, 33, .55); outline-offset: 4px; }

.utility-bar { background: var(--navy-950); color: #b9c8d2; border-bottom: 1px solid rgba(255,255,255,.08); }
.utility-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.utility-inner > span { color: var(--orange); }
.utility-inner div { display: flex; gap: 28px; align-items: center; }
.utility-inner a { color: var(--white); text-decoration: none; letter-spacing: .04em; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.98); border-bottom: 1px solid rgba(8,39,67,.12); box-shadow: 0 8px 24px rgba(6,24,43,.04); }
.header-inner { height: 92px; display: flex; align-items: center; gap: 34px; }
.logo-link { flex: 0 0 auto; width: 206px; text-decoration: none; }
.logo-link img { width: 206px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.primary-nav > a, .dropdown-trigger { position: relative; border: 0; background: transparent; padding: 34px 0; color: var(--navy-900); text-decoration: none; font-size: 12px; font-weight: 600; cursor: pointer; }
.primary-nav > a::after, .dropdown-trigger::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 25px; height: 2px; background: var(--orange); transition: right .22s ease; }
.primary-nav > a:hover::after, .primary-nav > a:focus-visible::after, .dropdown-trigger:hover::after, .dropdown-trigger:focus-visible::after { right: 0; }
.dropdown-trigger span { color: var(--orange); margin-left: 4px; }
.nav-dropdown { position: relative; }
.dropdown-panel { position: absolute; top: 73px; left: 50%; width: 305px; padding: 10px; transform: translate(-50%, 10px); background: var(--navy-950); box-shadow: 0 24px 54px rgba(6,24,43,.28); opacity: 0; visibility: hidden; transition: .2s ease; }
.nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel, .nav-dropdown.is-open .dropdown-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown-panel a { display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 10px; padding: 12px; color: var(--white); text-decoration: none; font-size: 11px; border-bottom: 1px solid rgba(255,255,255,.08); }
.dropdown-panel a:last-child { border-bottom: 0; }
.dropdown-panel a:hover { background: var(--navy-800); }
.dropdown-panel b { color: var(--orange); font-size: 9px; letter-spacing: .12em; }
.header-cta { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 18px; padding: 15px 20px; background: var(--orange); color: var(--white); text-decoration: none; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; box-shadow: 0 10px 24px rgba(244,119,33,.22); transition: .2s ease; }
.header-cta:hover { background: var(--orange-dark); transform: translateY(-2px); }
.header-cta span { font-size: 17px; }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 690px; overflow: hidden; background: var(--navy-950); color: var(--white); }
.hero-house { position: absolute; inset: 0 0 0 auto; width: 61%; background: url("/assets/images/longview-home.png") center center / cover no-repeat; }
.hero-house::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy-950) 0%, rgba(6,24,43,.78) 17%, rgba(6,24,43,.08) 62%), linear-gradient(0deg, rgba(6,24,43,.42), transparent 48%); }
.hero-inner { position: relative; z-index: 2; min-height: 690px; display: flex; align-items: center; }
.hero-copy { width: 58%; max-width: 680px; padding: 72px 0; }
.kicker { display: flex; align-items: center; gap: 12px; color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.kicker span { width: 36px; height: 2px; background: currentColor; }
.kicker.dark { color: var(--orange-dark); }
.kicker.light { color: #ff9a59; }
.hero h1, h2 { margin: 20px 0 24px; font-weight: 700; letter-spacing: -.055em; line-height: 1.03; }
.hero h1 { color: var(--white); font-size: clamp(50px, 5.35vw, 78px); }
.hero h1 em, h2 em { color: var(--orange); font-style: normal; }
.hero-copy > p { max-width: 600px; margin: 0; color: #d8e1e7; font-size: 16px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin: 32px 0 34px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; border: 0; padding: 14px 22px; text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; transition: .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-orange { background: var(--orange); color: var(--white); box-shadow: 0 12px 30px rgba(244,119,33,.22); }
.button-orange:hover { background: var(--orange-dark); }
.button-outline { border: 1px solid rgba(255,255,255,.55); color: var(--white); background: rgba(255,255,255,.04); }
.button-outline:hover { border-color: var(--orange); background: rgba(244,119,33,.08); }
.phone-icon { font-size: 15px; color: var(--orange); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 24px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.15); color: #c8d4dc; font-size: 10px; font-weight: 500; }
.hero-proof span { display: flex; align-items: center; gap: 8px; }
.hero-proof i { width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid var(--orange); color: var(--orange); border-radius: 50%; font-style: normal; font-size: 10px; }
.hero-edge { position: absolute; right: 0; bottom: 0; z-index: 3; width: 56px; height: 210px; display: grid; place-items: center; background: var(--orange); }
.hero-edge span { writing-mode: vertical-rl; transform: rotate(180deg); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }

.trust-ribbon { background: var(--orange); color: var(--white); }
.ribbon-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.ribbon-grid > div { min-height: 108px; display: flex; align-items: center; gap: 18px; padding: 25px 30px; border-left: 1px solid rgba(255,255,255,.22); }
.ribbon-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.22); }
.ribbon-grid b { color: rgba(255,255,255,.62); font-size: 11px; letter-spacing: .12em; }
.ribbon-grid span { color: rgba(255,255,255,.84); font-size: 10px; line-height: 1.5; }
.ribbon-grid strong { display: block; color: var(--white); font-size: 13px; }

.services { background: var(--mist); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr); align-items: end; gap: 80px; margin-bottom: 50px; }
.section-heading h2, .about h2, .process h2, .areas h2, .contact h2 { color: var(--navy-950); font-size: clamp(38px, 4.2vw, 60px); }
.section-heading p { margin: 0 0 8px; color: var(--muted); font-size: 13px; line-height: 1.85; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { position: relative; min-height: 290px; display: flex; flex-direction: column; padding: 30px; overflow: hidden; background: var(--navy-900); color: var(--white); text-decoration: none; border-top: 4px solid transparent; transition: transform .22s ease, background .22s ease, border-color .22s ease; }
.service-card::before { content: ""; position: absolute; width: 130px; height: 130px; right: -78px; bottom: -78px; border: 1px solid rgba(255,255,255,.10); border-radius: 50%; transition: .22s ease; }
.service-card:hover { transform: translateY(-6px); background: var(--navy-800); border-color: var(--orange); }
.service-card:hover::before { width: 180px; height: 180px; right: -88px; bottom: -88px; border-color: rgba(244,119,33,.5); }
.service-card-featured { grid-column: span 2; background: var(--orange); border-color: var(--navy-950); }
.service-card-featured:hover { background: var(--orange-dark); }
.service-number { color: rgba(255,255,255,.5); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.service-arrow { position: absolute; top: 24px; right: 24px; width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); font-size: 14px; }
.service-card h3 { max-width: 260px; margin: auto 0 13px; color: var(--white); font-size: 21px; line-height: 1.2; }
.service-card p { margin: 0 0 18px; color: #c8d4dc; font-size: 12px; line-height: 1.75; }
.service-card-featured p { color: rgba(255,255,255,.86); }
.service-card small { color: #85a5b9; font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.service-card-featured small { color: rgba(255,255,255,.74); }

.blownin-home { position: relative; overflow: hidden; padding: 104px 0; color: var(--white); background: var(--navy-900); }
.blownin-home::before { content: ""; position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 42px 42px; }
.blownin-home::after { content: ""; position: absolute; top: 0; right: 0; width: 28%; height: 100%; background: var(--orange); clip-path: polygon(42% 0, 100% 0, 100% 100%, 0 100%); opacity: .92; }
.blownin-home-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 92px; align-items: center; }
.blownin-home-copy { max-width: 650px; }
.blownin-home h2 { margin: 20px 0 24px; color: var(--white); font-size: clamp(42px, 4.8vw, 68px); }
.blownin-home-copy > p { max-width: 620px; margin: 0 0 30px; color: #cbd8df; font-size: 14px; line-height: 1.85; }
.blownin-home-details { padding: 18px 38px; background: rgba(6,24,43,.88); border-top: 5px solid var(--orange); box-shadow: 0 28px 70px rgba(0,0,0,.22); }
.blownin-home-details > div { min-height: 108px; display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.13); }
.blownin-home-details > div:last-child { border-bottom: 0; }
.blownin-home-details b { color: var(--orange); font-size: 10px; letter-spacing: .15em; }
.blownin-home-details span { color: #b9c9d3; font-size: 11px; line-height: 1.65; }
.blownin-home-details strong { display: block; margin-bottom: 4px; color: var(--white); font-size: 14px; }

.spray-feature { position: relative; min-height: 570px; overflow: hidden; background: var(--navy-950); color: var(--white); }
.spray-photo { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,24,43,.98) 0%, rgba(6,24,43,.93) 34%, rgba(6,24,43,.32) 67%, rgba(6,24,43,.12) 100%), url("/assets/images/spray-gun.png") center / cover no-repeat; }
.spray-inner { position: relative; z-index: 2; min-height: 570px; display: flex; align-items: center; }
.spray-copy { max-width: 580px; padding: 70px 0; }
.spray-copy h2 { margin: 20px 0 24px; color: var(--white); font-size: clamp(44px, 4.8vw, 68px); }
.spray-copy p { max-width: 520px; margin: 0 0 30px; color: #cedae1; font-size: 14px; line-height: 1.85; }
.spray-accent { position: absolute; z-index: 3; right: 0; bottom: 0; padding: 17px 38px; background: var(--orange); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: .2em; }

.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 92px; align-items: center; }
.about-brand { position: relative; min-height: 470px; display: flex; align-items: center; padding: 58px; background: var(--navy-950); box-shadow: var(--shadow); overflow: hidden; }
.about-brand::before, .about-brand::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.about-brand::before { width: 360px; height: 360px; right: -190px; top: -150px; }
.about-brand::after { width: 250px; height: 250px; left: -140px; bottom: -130px; }
.about-brand img { position: relative; z-index: 1; width: 100%; height: auto; padding: 20px 16px; background: rgba(255,255,255,.96); filter: drop-shadow(0 16px 32px rgba(0,0,0,.16)); }
.about-tag { position: absolute; z-index: 2; right: 0; bottom: 0; padding: 19px 28px; background: var(--orange); color: var(--white); }
.about-tag span { display: block; font-size: 8px; text-transform: uppercase; letter-spacing: .16em; }
.about-tag b { font-size: 13px; }
.about-copy p { color: var(--muted); font-size: 13px; line-height: 1.9; }
.text-link { display: inline-flex; align-items: center; gap: 16px; margin-top: 12px; color: var(--navy-900); text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; border-bottom: 2px solid var(--orange); padding-bottom: 8px; }
.text-link span { color: var(--orange); font-size: 17px; }

.details { background: var(--mist); }
.details-heading { border-bottom: 1px solid var(--line); padding-bottom: 48px; }
.detail-list { border-top: 1px solid var(--line); }
.detail-item { display: grid; grid-template-columns: 100px 1fr; gap: 38px; padding: 42px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 130px; }
.detail-index { color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .18em; padding-top: 8px; }
.detail-item h3 { margin: 0 0 14px; color: var(--navy-950); font-size: 24px; letter-spacing: -.03em; }
.detail-item p { max-width: 930px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.92; }

.process { background: var(--navy-900); color: var(--white); }
.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.process h2 { color: var(--white); }
.process ol { list-style: none; padding: 0; margin: 0; }
.process li { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.13); }
.process li:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.process li > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--orange); color: var(--orange); font-size: 9px; font-weight: 700; }
.process li b { display: block; margin: 2px 0 7px; font-size: 15px; }
.process li p { margin: 0; color: #b9c9d3; font-size: 12px; line-height: 1.7; }

.areas { background: var(--cream); }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.areas-grid > div:first-child > p { max-width: 530px; color: var(--muted); font-size: 13px; line-height: 1.85; }
.area-map { position: relative; min-height: 450px; display: grid; place-items: center; overflow: hidden; background: var(--navy-950); color: var(--white); }
.area-map::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 38px 38px; }
.area-map > b { position: relative; z-index: 3; width: 110px; height: 110px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); font-size: 13px; }
.map-ring { position: absolute; border: 1px solid rgba(244,119,33,.55); border-radius: 50%; }
.ring-one { width: 230px; height: 230px; }
.ring-two { width: 370px; height: 370px; border-color: rgba(255,255,255,.12); }
.area-map ul { position: absolute; z-index: 3; inset: 24px; list-style: none; margin: 0; padding: 0; color: #b9c9d3; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.area-map li { position: absolute; }
.area-map li:nth-child(1) { top: 12%; right: 12%; }
.area-map li:nth-child(2) { top: 23%; left: 11%; }
.area-map li:nth-child(3) { bottom: 14%; right: 17%; }
.area-map li:nth-child(4) { bottom: 18%; left: 14%; }
.area-map li:nth-child(5) { top: 48%; right: 5%; }
.area-map li:nth-child(6) { top: 5%; left: 41%; color: var(--orange); }

.contact { padding: 112px 0; background: var(--navy-950); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 88px; align-items: center; }
.contact h2 { color: var(--white); }
.contact-copy > p { max-width: 500px; color: #bfced7; font-size: 13px; line-height: 1.85; }
.contact-phone { display: inline-flex; flex-direction: column; gap: 3px; margin-top: 26px; color: var(--white); text-decoration: none; }
.contact-phone small { color: var(--orange); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-phone b { font-size: clamp(26px, 3vw, 40px); letter-spacing: -.03em; }
.estimate-form { padding: 42px; background: var(--white); color: var(--ink); box-shadow: 0 28px 70px rgba(0,0,0,.18); }
.form-heading { margin-bottom: 26px; }
.form-heading span { color: var(--orange-dark); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.form-heading h3 { margin: 7px 0 0; font-size: 25px; letter-spacing: -.035em; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.estimate-form label { display: block; margin-bottom: 14px; color: #586977; font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.estimate-form input, .estimate-form select, .estimate-form textarea { width: 100%; display: block; margin-top: 7px; border: 1px solid #d2dade; border-radius: 0; padding: 13px 14px; color: var(--ink); background: #f7f8f7; font-size: 12px; text-transform: none; outline: 0; transition: border-color .15s, box-shadow .15s; }
.estimate-form textarea { resize: vertical; }
.estimate-form input:focus, .estimate-form select:focus, .estimate-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,119,33,.10); }
.estimate-form .button { width: 100%; }
.form-note { margin: 12px 0 0; color: #788792; text-align: center; font-size: 9px; }
.form-success { min-height: 340px; display: grid; place-items: center; text-align: center; }
.form-success b { display: block; color: var(--navy-950); font-size: 25px; margin-bottom: 10px; }
.form-success span { color: var(--muted); font-size: 12px; }

.site-footer { background: #03111f; color: #9fb0bb; }
.footer-top { min-height: 190px; display: grid; grid-template-columns: 280px 1fr auto; align-items: center; gap: 70px; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer-top > a:first-child { width: 270px; padding: 9px 10px; background: rgba(255,255,255,.96); }
.footer-top img { width: 250px; height: auto; }
.footer-top p { max-width: 450px; font-size: 11px; line-height: 1.8; }
.footer-phone { color: var(--white); text-decoration: none; font-size: 20px; font-weight: 700; }
.footer-bottom { min-height: 72px; display: flex; justify-content: space-between; align-items: center; font-size: 9px; }
.footer-bottom div { display: flex; gap: 25px; }
.footer-bottom a { color: #b8c6cf; text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }

@media (max-width: 1060px) {
  .header-inner { gap: 18px; }
  .logo-link, .logo-link img { width: 180px; }
  .primary-nav { gap: 18px; }
  .header-cta { padding-inline: 15px; }
  .hero-house { width: 64%; }
  .hero-copy { width: 62%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .blownin-home-grid { gap: 54px; }
  .about-grid, .contact-grid { gap: 54px; }
}

@media (max-width: 850px) {
  .container { width: min(100% - 34px, var(--container)); }
  .section { padding: 80px 0; }
  .utility-inner > span { display: none; }
  .utility-inner { justify-content: center; }
  .utility-inner div { width: 100%; justify-content: space-between; gap: 15px; }
  .header-inner { height: 82px; }
  .logo-link, .logo-link img { width: 174px; }
  .menu-toggle { width: 48px; height: 48px; display: grid; align-content: center; gap: 5px; margin-left: auto; border: 1px solid var(--line); background: transparent; cursor: pointer; }
  .menu-toggle span { width: 21px; height: 2px; margin-inline: auto; background: var(--navy-900); transition: .2s; }
  .menu-toggle b { position: absolute; clip: rect(0 0 0 0); clip-path: inset(50%); width: 1px; height: 1px; overflow: hidden; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header-cta { display: none; }
  .primary-nav { position: fixed; z-index: 90; inset: 120px 0 0; display: block; padding: 22px 24px 50px; overflow-y: auto; background: var(--navy-950); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .2s ease; }
  .menu-open .primary-nav { opacity: 1; visibility: visible; transform: none; }
  .primary-nav > a, .dropdown-trigger { width: 100%; display: flex; justify-content: space-between; padding: 17px 0; color: var(--white); text-align: left; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 13px; }
  .primary-nav > a::after, .dropdown-trigger::after { display: none; }
  .nav-dropdown { width: 100%; }
  .dropdown-panel { position: static; width: 100%; display: none; padding: 5px; transform: none; opacity: 1; visibility: visible; box-shadow: none; background: var(--navy-800); }
  .nav-dropdown.is-open .dropdown-panel { display: grid; transform: none; }
  .dropdown-panel a { padding: 12px; }
  .hero { min-height: 760px; }
  .hero-house { inset: 0; width: 100%; background-position: 66% center; }
  .hero-house::after { background: linear-gradient(90deg, rgba(6,24,43,.98), rgba(6,24,43,.83) 62%, rgba(6,24,43,.55)), linear-gradient(0deg, rgba(6,24,43,.65), transparent 50%); }
  .hero-inner { min-height: 760px; }
  .hero-copy { width: 88%; }
  .hero-edge { display: none; }
  .ribbon-grid { grid-template-columns: 1fr; }
  .ribbon-grid > div { min-height: 86px; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.2); padding: 20px 0; }
  .ribbon-grid > div:last-child { border-right: 0; border-bottom: 0; }
  .section-heading, .about-grid, .process-grid, .areas-grid, .contact-grid, .blownin-home-grid { grid-template-columns: 1fr; gap: 44px; }
  .blownin-home::after { width: 42%; opacity: .42; }
  .section-heading { margin-bottom: 38px; }
  .about-brand { min-height: 390px; }
  .process-grid { gap: 25px; }
  .area-map { min-height: 400px; }
  .footer-top { grid-template-columns: 1fr; gap: 22px; padding: 50px 0; }
  .footer-bottom { gap: 25px; }
}

@media (max-width: 600px) {
  .utility-inner { font-size: 8px; }
  .logo-link, .logo-link img { width: 152px; }
  .hero { min-height: 720px; }
  .hero-inner { min-height: 720px; }
  .hero-copy { width: 100%; padding: 56px 0; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .hero-copy > p { font-size: 14px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; gap: 12px; }
  .section-heading h2, .about h2, .process h2, .areas h2, .contact h2 { font-size: 38px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card-featured { grid-column: span 1; }
  .service-card { min-height: 260px; }
  .blownin-home { padding: 78px 0; }
  .blownin-home h2 { font-size: 43px; }
  .blownin-home-details { padding: 10px 24px; }
  .spray-feature, .spray-inner { min-height: 570px; }
  .spray-photo { background-position: 66% center; }
  .spray-copy h2 { font-size: 43px; }
  .spray-accent { left: 0; right: auto; padding-inline: 20px; }
  .about-brand { min-height: 320px; padding: 34px; }
  .about-tag { padding: 14px 18px; }
  .detail-item { grid-template-columns: 38px 1fr; gap: 12px; padding: 34px 0; }
  .detail-item h3 { font-size: 20px; }
  .detail-item p { font-size: 12px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .estimate-form { padding: 28px 22px; }
  .footer-bottom { min-height: 100px; flex-direction: column; justify-content: center; text-align: center; }
}

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

/* Static Vercel page system */
.primary-nav > a[aria-current="page"]::after { right: 0; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.estimate-form button[disabled] { cursor: wait; opacity: .65; transform: none; }
.form-note a { color: var(--orange-dark); font-weight: 700; }

.preserved-section { background: var(--cream); }
.editorial-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 92px; align-items: start; }
.editorial-aside { position: sticky; top: 150px; }
.editorial-aside h2 { color: var(--navy-950); font-size: clamp(38px, 4.1vw, 58px); }
.editorial-logo { margin: 36px 0 26px; padding: 28px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.editorial-logo img { width: 100%; height: auto; }

.rich-copy { color: var(--muted); font-size: 14px; line-height: 1.9; }
.rich-copy > *:first-child { margin-top: 0; }
.rich-copy p { margin: 0 0 24px; }
.rich-copy h2 { margin: 54px 0 18px; padding-top: 34px; color: var(--navy-950); border-top: 1px solid var(--line); font-size: clamp(28px, 3vw, 42px); letter-spacing: -.045em; }
.rich-copy h3 { margin: 34px 0 10px; color: var(--navy-900); font-size: 19px; letter-spacing: -.025em; }
.rich-copy h4 { margin: 28px 0 8px; color: var(--navy-900); font-size: 16px; }
.rich-copy a { color: var(--navy-700); font-weight: 700; text-decoration-color: var(--orange); text-underline-offset: 3px; }
.rich-copy strong, .rich-copy b { color: var(--navy-900); }
.rich-copy blockquote { margin: 30px 0; padding: 24px 28px; border-left: 4px solid var(--orange); background: var(--white); }
.rich-copy ul, .rich-copy ol { margin: 0 0 26px; padding-left: 24px; }
.home-copy > p:first-child { padding: 32px; color: var(--navy-900); background: var(--white); border-left: 4px solid var(--orange); box-shadow: 0 18px 46px rgba(6,24,43,.08); font-size: 15px; }
.home-copy h3 + p { padding: 24px 26px; background: var(--white); border: 1px solid var(--line); }

.inner-hero { position: relative; min-height: 460px; overflow: hidden; color: var(--white); background: var(--navy-950); }
.inner-hero-house { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,24,43,.98) 0%, rgba(6,24,43,.92) 43%, rgba(6,24,43,.48) 75%, rgba(6,24,43,.26) 100%), url("/assets/images/longview-home.png") 70% center / cover no-repeat; }
.inner-hero-inner { position: relative; z-index: 1; min-height: 460px; display: flex; flex-direction: column; justify-content: center; padding-block: 65px; }
.breadcrumbs { display: flex; align-items: center; gap: 10px; margin-bottom: 38px; color: #b8c7d0; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.breadcrumbs a { color: var(--orange); text-decoration: none; }
.inner-hero h1 { max-width: 900px; margin: 18px 0; color: var(--white); font-size: clamp(44px, 5.4vw, 76px); line-height: 1.04; letter-spacing: -.055em; }
.inner-hero-inner > p { max-width: 660px; margin: 0; color: #d4dee4; font-size: 15px; line-height: 1.8; }

.page-content { background: var(--cream); }
.page-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 82px; align-items: start; }
.page-aside { position: sticky; top: 140px; box-shadow: var(--shadow); }
.page-aside-photo { min-height: 330px; background: linear-gradient(0deg, rgba(6,24,43,.24), rgba(6,24,43,.08)), url("/assets/images/spray-gun.png") center / cover no-repeat; }
.page-blown-in .page-aside-photo { background: linear-gradient(0deg, rgba(6,24,43,.48), rgba(6,24,43,.08)), url("/assets/images/longview-home.png") center / cover no-repeat; }
.page-blown-in .rich-copy > p:first-child { padding: 28px 30px; color: var(--navy-900); background: var(--white); border-left: 4px solid var(--orange); box-shadow: 0 18px 46px rgba(6,24,43,.08); font-size: 15px; }
.page-aside-card { padding: 34px; color: var(--white); background: var(--navy-900); border-top: 5px solid var(--orange); }
.page-aside-card > span { color: var(--orange); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.page-aside-card h2 { margin: 13px 0; color: var(--white); font-size: 27px; letter-spacing: -.04em; line-height: 1.14; }
.page-aside-card p { color: #c4d1d9; font-size: 12px; line-height: 1.7; }
.page-aside-card a { display: inline-block; margin-top: 10px; color: var(--white); font-size: 22px; font-weight: 700; text-decoration: none; }

.not-found { min-height: 650px; display: grid; align-items: center; color: var(--white); background: linear-gradient(90deg, rgba(6,24,43,.97), rgba(6,24,43,.63)), url("/assets/images/longview-home.png") center / cover no-repeat; }
.not-found h1 { max-width: 780px; margin: 20px 0; font-size: clamp(46px, 6vw, 80px); line-height: 1; letter-spacing: -.055em; }
.not-found p { max-width: 660px; color: #d6e0e5; line-height: 1.8; }

@media (max-width: 980px) {
  .editorial-grid, .page-layout { grid-template-columns: 1fr; gap: 56px; }
  .editorial-aside, .page-aside { position: static; }
  .editorial-aside { display: grid; grid-template-columns: 1fr 240px; column-gap: 32px; align-items: center; }
  .editorial-aside .kicker { grid-column: 1; }
  .editorial-aside h2 { grid-column: 1; }
  .editorial-logo { grid-column: 2; grid-row: 1 / span 3; margin: 0; }
  .editorial-aside .button { justify-self: start; }
  .page-aside { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 650px) {
  .editorial-aside, .page-aside { display: block; }
  .editorial-logo { margin: 28px 0 22px; }
  .rich-copy { font-size: 13px; line-height: 1.85; }
  .rich-copy h2 { margin-top: 42px; font-size: 31px; }
  .home-copy > p:first-child { padding: 24px 20px; font-size: 14px; }
  .inner-hero, .inner-hero-inner { min-height: 420px; }
  .inner-hero h1 { font-size: 45px; }
  .page-aside-photo { min-height: 270px; }
}
