:root {
  --ink: #102332;
  --ink-2: #173747;
  --blue: #08a9df;
  --blue-dark: #00759f;
  --red: #e51a22;
  --timber: #b67b3f;
  --sand: #e9dfd0;
  --paper: #f6f3ed;
  --white: #fff;
  --muted: #5e6d76;
  --line: #d6dad7;
  --shadow: 0 22px 60px rgba(16, 35, 50, .14);
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  --utility: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 12px 16px; color: white; background: var(--ink); transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header { position: sticky; z-index: 50; top: 0; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-shell { width: min(1420px, calc(100% - 48px)); }
.nav { display: flex; min-height: 92px; align-items: center; gap: 27px; }
.brand { display: flex; width: 174px; flex: 0 0 174px; align-items: center; text-decoration: none; }
.brand img { width: 150px; height: 84px; object-fit: contain; }
.nav-links { display: flex; min-width: 0; flex: 1; align-items: center; justify-content: flex-end; gap: 23px; }
.nav-links > a, .nav-label { position: relative; font-size: 15px; font-weight: 780; letter-spacing: -.01em; text-decoration: none; white-space: nowrap; }
.nav-links > a::after, .nav-label::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-links > a:hover::after, .nav-links > a.active::after, .nav-item:hover .nav-label::after, .nav-item:focus-within .nav-label::after, .nav-item.active .nav-label::after { transform: scaleX(1); }
.nav-item { position: relative; display: flex; align-items: center; gap: 5px; }
.dropdown-toggle { display: inline-grid; width: 40px; height: 44px; place-items: center; padding: 0; border: 0; color: var(--ink); background: transparent; cursor: pointer; }
.dropdown-toggle svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s ease; }
.nav-item.open .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 25px); left: -18px; display: grid; min-width: 310px; padding: 12px; visibility: hidden; opacity: 0; background: white; border-top: 4px solid var(--red); box-shadow: 0 22px 45px rgba(16,35,50,.2); transform: translateY(8px); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.dropdown-menu::before { content: ""; position: absolute; right: 0; bottom: 100%; left: 0; height: 26px; }
.nav-item:hover .dropdown-menu, .nav-item:focus-within .dropdown-menu, .nav-item.open .dropdown-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 12px 13px; border-bottom: 1px solid #e8ebea; color: var(--ink); font-size: 14px; font-weight: 720; line-height: 1.35; text-decoration: none; }
.dropdown-menu a:last-child { border-bottom: 0; }
.dropdown-menu a:hover, .dropdown-menu a.active { color: var(--blue-dark); background: #f3f8fa; }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 2px; }
.header-phone { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 0 16px; color: white; background: var(--blue-dark); border: 1px solid var(--blue-dark); border-radius: 3px; font-size: 14px; font-weight: 850; text-decoration: none; white-space: nowrap; transition: color .2s ease, background .2s ease; }
.header-phone:hover { color: var(--blue-dark); background: white; }
.facebook-mark { display: inline-grid; width: 40px; height: 40px; flex: 0 0 40px; place-items: center; color: white; background: var(--ink); border: 2px solid #6bcdf0; border-radius: 50%; text-decoration: none; transition: color .2s ease, background .2s ease, transform .2s ease; }
.facebook-mark svg { width: 20px; height: 20px; fill: currentColor; }
.facebook-mark:hover { color: var(--ink); background: #8fe3ff; transform: translateY(-2px); }
.menu-toggle { display: none; width: 46px; height: 46px; margin-left: auto; border: 1px solid var(--line); color: var(--ink); background: transparent; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; }

.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; border-radius: 3px; font-weight: 790; line-height: 1.15; text-align: center; text-decoration: none; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--red); }
.btn-primary:hover { background: #ca151c; }
.btn-dark { color: white; background: var(--ink); }
.btn-dark:hover { background: var(--ink-2); }
.btn-light { color: var(--ink); background: white; }
.btn-light:hover { color: white; background: var(--blue-dark); }
.btn-outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn-outline:hover { color: white; background: var(--ink); }
.btn-small { min-height: 44px; padding-inline: 17px; font-size: 13px; }

.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 17px; color: var(--blue-dark); font: 800 11px/1.3 var(--utility); letter-spacing: .1em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 30px; height: 3px; flex: 0 0 30px; background: var(--red); }
.eyebrow.light { color: #b9eeff; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); }
h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(50px, 7vw, 94px); font-weight: 850; line-height: .92; letter-spacing: -.052em; text-transform: uppercase; text-wrap: balance; }
h2 { margin-bottom: 22px; font-size: clamp(38px, 5vw, 66px); line-height: .96; letter-spacing: -.043em; text-transform: uppercase; text-wrap: balance; }
h3 { margin-bottom: 12px; font-size: 27px; line-height: 1.08; letter-spacing: -.025em; }
p { color: var(--muted); font-size: 17px; line-height: 1.68; }
.lead { color: var(--ink); font-size: 20px; font-weight: 620; line-height: 1.58; }
.section { padding: 82px 0; }
.section-head { display: grid; grid-template-columns: minmax(0, .95fr) minmax(300px, .5fr); gap: 60px; align-items: end; margin-bottom: 36px; }
.section-head h2, .section-head p { margin-bottom: 0; }

.breadcrumbs { padding: 16px 0; color: #5f6e77; background: white; border-bottom: 1px solid var(--line); font-size: 12px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #a4adb2; }
.breadcrumbs a { text-decoration: none; }

.page-hero { position: relative; isolation: isolate; min-height: 570px; overflow: hidden; color: white; background: var(--ink); }
.page-hero::before { content: ""; position: absolute; z-index: -2; inset: 0; background: var(--hero-image) var(--hero-position, center) / cover no-repeat; filter: saturate(1.08) contrast(1.04) brightness(.94); transform: scale(1.01); }
.page-hero::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(10,26,37,.52), rgba(10,26,37,.3) 38%, rgba(10,26,37,.05) 67%, rgba(10,26,37,0)); }
.page-hero-grid { display: grid; min-height: 570px; align-items: center; padding: 68px 0; }
.page-hero-copy { max-width: 850px; text-shadow: 0 2px 18px rgba(4,15,22,.35); }
.page-hero h1 span { color: var(--blue); }
.page-hero p:not(.eyebrow) { max-width: 700px; margin-bottom: 32px; color: #e0eaee; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.page-hero .btn-outline { color: white; border-color: rgba(255,255,255,.7); background: rgba(16,35,50,.24); }
.page-hero .btn-outline:hover { background: rgba(255,255,255,.12); }
.page-hero.contact-hero::before { inset: -2px; background-color: var(--ink); background-position: right center; background-size: auto 68%; transform: none; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 100%); mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 100%); }
.page-hero.contact-hero::after { background: linear-gradient(90deg, rgba(10,26,37,.98) 0%, rgba(10,26,37,.93) 38%, rgba(10,26,37,.5) 58%, rgba(10,26,37,.05) 82%); }

.trust-strip { background: white; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-item { display: flex; min-height: 106px; flex-direction: column; justify-content: center; padding: 22px 25px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 15px; line-height: 1.3; }
.trust-item span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.trust-item.with-badge { display: grid; grid-template-columns: 58px 1fr; gap: 13px; align-items: center; }
.trust-item img { width: 58px; height: 48px; object-fit: cover; mix-blend-mode: multiply; }

.intro-section { background: #f8f5ef; }
.intro-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: 76px; align-items: start; }
.intro-title { padding-left: 26px; border-left: 6px solid var(--timber); }
.intro-title h2 { font-size: clamp(38px, 4.5vw, 58px); }
.intro-copy { max-width: 680px; }
.intro-copy p:last-of-type { margin-bottom: 28px; }

.scope-section { color: white; background: var(--ink); }
.scope-section .section-head p { color: #d3dfe4; }
.scope-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.scope-card { min-height: 0; overflow: hidden; color: var(--ink); background: white; border-top: 5px solid var(--blue); }
.scope-card:nth-child(even) { border-top-color: var(--red); }
.scope-card:not(.with-image) { min-height: 235px; padding: 28px 24px; }
.scope-card-media { height: 190px; overflow: hidden; background: var(--ink); }
.scope-card-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.06) contrast(1.06) brightness(.94); transition: transform .35s ease; }
.scope-card:hover .scope-card-media img { transform: scale(1.025); }
.scope-card-body { padding: 24px 24px 27px; }
.scope-card h3 { font-size: 24px; }
.scope-card p { margin-bottom: 0; font-size: 14px; line-height: 1.55; }

.materials-section { background: #edf4f6; }
.materials-layout { display: grid; grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr); gap: 16px; align-items: stretch; }
.materials-photo { position: relative; min-height: 100%; overflow: hidden; margin: 0; background: var(--ink); border-top: 5px solid var(--blue); }
.materials-photo img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; filter: saturate(1.04) contrast(1.04) brightness(.95); }
.materials-photo figcaption { position: absolute; right: 16px; bottom: 16px; left: 16px; padding: 12px 14px; color: white; background: rgba(16,35,50,.9); font-size: 13px; font-weight: 720; line-height: 1.4; }
.materials-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.materials-layout .materials-grid { grid-template-columns: 1fr; gap: 0; background: rgba(255,255,255,.64); }
.material-card { position: relative; display: grid; align-content: center; min-height: 126px; padding: 24px 28px 24px 36px; background: transparent; border-bottom: 1px solid rgba(16,35,50,.14); }
.material-card:last-child { border-bottom: 0; }
.material-card::before { content: ""; position: absolute; top: 25px; bottom: 25px; left: 0; width: 5px; background: var(--blue); }
.material-card:nth-child(even)::before { background: var(--red); }
.material-card h3 { margin-bottom: 10px; font-size: 22px; }
.material-card p { margin-bottom: 0; font-size: 14px; line-height: 1.55; }
.materials-note { display: flex; justify-content: space-between; gap: 30px; align-items: center; margin-top: 24px; padding: 22px 24px; color: white; background: var(--ink); }
.materials-note p { max-width: 780px; margin: 0; color: #d6e2e7; font-size: 14px; }

.service-gallery { background: white; }
.service-gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.service-gallery-item { position: relative; min-height: 280px; overflow: hidden; background: var(--ink); text-decoration: none; }
.service-gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.07) contrast(1.05) brightness(.94); transition: transform .35s ease; }
.service-gallery-item:hover img { transform: scale(1.025); }
.service-gallery-item span { position: absolute; inset: auto 0 0; padding: 45px 17px 16px; color: white; background: linear-gradient(transparent, rgba(16,35,50,.88)); font-family: var(--display); font-size: 19px; font-weight: 780; text-transform: uppercase; }

.image-copy { background: var(--sand); }
.image-copy-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 570px; background: white; box-shadow: var(--shadow); }
.image-copy-media { min-height: 100%; overflow: hidden; background: var(--ink); }
.image-copy-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.06) contrast(1.08) brightness(.9); }
.sign-grid .image-copy-media { display: grid; min-height: 0; padding: 26px; place-items: center; background: var(--ink); }
.sign-grid .image-copy-media img { width: 100%; height: auto; object-fit: contain; filter: saturate(1.03) contrast(1.03) brightness(.98); }
.image-copy-content { display: flex; flex-direction: column; justify-content: center; padding: 64px 58px; }
.check-list { display: grid; gap: 13px; margin: 8px 0 28px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; color: #42535d; line-height: 1.5; }
.check-list li::before { content: ""; position: absolute; top: 6px; left: 0; width: 14px; height: 8px; border-bottom: 3px solid var(--blue-dark); border-left: 3px solid var(--blue-dark); transform: rotate(-45deg); }

.process-section { background: linear-gradient(rgba(236,226,211,.91), rgba(236,226,211,.94)), url("../assets/web/hero-light-timber-tools-v1.webp") center / cover; border-top: 1px solid #c8b08f; border-bottom: 1px solid #c8b08f; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-grid::before { content: ""; position: absolute; top: 25px; right: 11%; left: 11%; height: 2px; background: linear-gradient(90deg, var(--blue-dark), var(--blue) 55%, var(--red)); }
.process-step { position: relative; min-height: 190px; padding: 0 23px; }
.process-step small { position: relative; z-index: 1; display: grid; width: 52px; height: 52px; margin-bottom: 24px; place-items: center; color: white; background: var(--blue-dark); border-radius: 50%; box-shadow: 0 0 0 7px #ece2d3; font: 800 10px/1 var(--utility); letter-spacing: .06em; text-transform: uppercase; }
.process-step:nth-child(even) small { background: var(--red); }
.process-step h3 { font-size: 22px; }
.process-step p { margin-bottom: 0; font-size: 14px; line-height: 1.55; }
.quote-note { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; gap: 20px; align-items: center; margin-top: 20px; padding: 22px 24px; background: white; }
.quote-note svg { width: 36px; color: var(--blue-dark); }
.quote-note p { margin: 0; font-size: 14px; }

.related-section { background: var(--paper); }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.related-card { display: flex; min-height: 100%; flex-direction: column; overflow: hidden; background: white; border: 1px solid var(--line); border-top: 5px solid var(--blue); }
.related-card:nth-child(even) { border-top-color: var(--red); }
.related-card img { width: 100%; height: 220px; object-fit: cover; filter: saturate(1.06) contrast(1.08) brightness(.9); }
.related-card-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 25px; }
.related-card h3 { font-size: 25px; }
.related-card p { margin-bottom: 22px; font-size: 14px; line-height: 1.55; }
.related-card .btn { margin-top: auto; }

.faq-section { background: white; }
.faq-grid { display: grid; grid-template-columns: minmax(280px, .6fr) minmax(0, 1.4fr); gap: 75px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 24px 50px 24px 0; cursor: pointer; list-style: none; font-size: 17px; font-weight: 780; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; top: 18px; right: 8px; color: var(--blue-dark); font: 400 30px/1 var(--display); }
details[open] summary::after { content: "\2212"; }
details p { padding: 0 42px 23px 0; font-size: 15px; }

.cta-band { padding: 70px 0; color: white; background: var(--blue-dark); }
.cta-band-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 50px; align-items: center; }
.cta-band h2 { max-width: 780px; margin-bottom: 12px; font-size: clamp(36px, 4vw, 56px); }
.cta-band p { max-width: 720px; margin-bottom: 0; color: #ffffff; }
.cta-actions { display: flex; gap: 10px; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 30px; }
.gallery-filter { min-height: 42px; padding: 10px 17px; color: var(--ink); background: white; border: 1px solid #bcc8cd; border-radius: 999px; cursor: pointer; font: 760 13px/1 var(--utility); }
.gallery-filter:hover, .gallery-filter:focus-visible { color: white; background: var(--blue-dark); border-color: var(--blue-dark); }
.gallery-filter[aria-pressed="true"] { color: white; background: var(--red); border-color: var(--red); }
.gallery-filter-status { min-height: 24px; margin: -14px 0 20px; color: var(--muted); font-size: 13px; }
.gallery-item[hidden] { display: none; }
.gallery-item { position: relative; display: block; min-height: 360px; overflow: hidden; margin: 0; background: var(--ink); text-decoration: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.08) brightness(.9); transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-caption { position: absolute; inset: auto 0 0; padding: 70px 22px 22px; color: white; background: linear-gradient(transparent, rgba(16,35,50,.94)); }
.gallery-caption small { display: block; margin-bottom: 7px; color: #a8eaff; font: 800 10px/1 var(--utility); letter-spacing: .08em; text-transform: uppercase; }
.gallery-caption strong { font-family: var(--display); font-size: 25px; text-transform: uppercase; }
.concept-note { margin-top: 24px; padding: 20px 23px; color: #51616a; background: var(--sand); border-left: 4px solid var(--blue-dark); font-size: 14px; line-height: 1.6; }

.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 72px; align-items: start; }
.article-body { max-width: 780px; }
.article-body h2 { margin-top: 55px; font-size: clamp(34px, 4vw, 48px); }
.article-body h3 { margin-top: 34px; }
.article-body ul, .article-body ol { padding-left: 24px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.answer-box { margin: 30px 0; padding: 25px 27px; background: var(--sand); border-left: 5px solid var(--red); }
.answer-box p { margin-bottom: 0; color: var(--ink); font-weight: 620; }
.article-aside { position: sticky; top: 116px; padding: 26px; color: white; background: var(--ink); }
.article-aside p { color: #cbd9df; font-size: 14px; }
.article-aside .text-link { display: inline-flex; margin-top: 18px; color: #b9eeff; font-size: 14px; font-weight: 750; text-underline-offset: 4px; }

.contact-page { background: var(--ink); }
.contact-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(430px, 1.18fr); gap: 22px; align-items: start; }
.contact-intro { padding: 46px 44px; color: white; background: #0e3042; border-top: 5px solid var(--blue); }
.contact-intro h2 { font-size: clamp(38px, 4.5vw, 60px); }
.contact-intro > p { color: #cfe0e7; }
.contact-meta { display: grid; gap: 0; margin-top: 36px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-row { display: grid; grid-template-columns: 115px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-row small { color: #9de7ff; font: 800 10px/1.4 var(--utility); letter-spacing: .08em; text-transform: uppercase; }
.contact-row a, .contact-row strong { color: white; font-size: 14px; text-decoration: none; }
.contact-card { padding: 46px 42px; background: white; }
.contact-card h2 { margin-bottom: 10px; font-size: 42px; }
.quote-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 26px; }
.form-field { display: grid; gap: 7px; }
.form-field.full, .form-note, .form-status, .quote-form .btn { grid-column: 1 / -1; }
.form-field label { color: var(--ink); font-size: 13px; font-weight: 780; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 50px; padding: 12px 13px; border: 1px solid #cbd1ce; color: var(--ink); background: #fbfbf9; border-radius: 2px; }
.form-field input[type="file"] { min-height: 58px; padding: 8px; background: white; }
.form-field input[type="file"]::file-selector-button { min-height: 40px; margin-right: 12px; padding: 0 14px; color: white; background: var(--blue-dark); border: 0; border-radius: 2px; cursor: pointer; font-weight: 740; }
.file-help { color: var(--muted); font-size: 12px; line-height: 1.5; }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-note { margin: 0; font-size: 12px; line-height: 1.55; }
.form-status { min-height: 1.5em; margin: 0; color: var(--ink); font-size: 14px; font-weight: 700; }

footer { color: #eaf1f4; background: #0b1f2c; }
.footer-main { display: grid; grid-template-columns: 1.25fr .75fr .9fr 1.1fr; gap: 50px; padding: 72px 0 54px; }
.footer-brand { display: inline-flex; max-width: 190px; margin-bottom: 18px; }
.footer-brand img { width: 185px; height: auto; object-fit: contain; }
.footer-main p, .footer-main span { color: #b9c8cf; font-size: 14px; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-col > strong { margin-bottom: 7px; color: white; font-size: 14px; }
.footer-col a { color: #dbe5e9; font-size: 14px; line-height: 1.45; text-decoration: none; overflow-wrap: anywhere; }
.footer-col a:hover { color: #7fdcff; }
.footer-social { display: flex; align-items: center; gap: 8px; margin-top: 7px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 21px 0 29px; border-top: 1px solid rgba(255,255,255,.14); }
.footer-bottom span { color: #91a5af; font-size: 12px; }

@media (max-width: 1220px) {
  .nav-links { gap: 14px; }
  .nav-links > a, .nav-label { font-size: 14px; }
  .scope-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1080px) {
  .nav { min-height: 78px; }
  .brand { width: 148px; flex-basis: 148px; }
  .brand img { width: 126px; height: 70px; }
  .nav-links { position: fixed; z-index: 49; top: 78px; right: 0; left: 0; display: none; min-height: calc(100dvh - 78px); max-height: calc(100dvh - 78px); overflow: auto; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px; padding: 25px 24px 32px; background: white; border-top: 1px solid var(--line); box-shadow: 0 18px 36px rgba(16,35,50,.12); }
  .nav-links.open { display: flex; }
  .nav-links > a { display: block; padding: 9px 0; font-size: 16px; }
  .nav-links > a::after, .nav-label::after { display: none; }
  .nav-item { display: grid; grid-template-columns: 1fr 44px; border-bottom: 1px solid #e7e9e8; }
  .nav-label { padding: 10px 0; font-size: 16px; }
  .dropdown-toggle { width: 44px; height: 44px; }
  .dropdown-menu { position: static; grid-column: 1 / -1; display: none; min-width: 0; padding: 4px 0 12px 13px; visibility: visible; opacity: 1; border-top: 0; border-left: 3px solid var(--blue); box-shadow: none; transform: none; }
  .dropdown-menu::before { display: none; }
  .nav-item:hover .dropdown-menu, .nav-item:focus-within .dropdown-menu { display: none; }
  .nav-item.open .dropdown-menu { display: grid; }
  .dropdown-menu a { padding: 10px 12px; border-bottom: 0; }
  .nav-actions { display: grid; grid-template-columns: 1fr 44px; align-items: center; margin-top: 13px; }
  .header-phone { width: 100%; }
  .menu-toggle { display: block; }
  .section { padding: 66px 0; }
  .section-head, .intro-grid, .image-copy-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .image-copy-grid { min-height: 0; }
  .image-copy-media { min-height: 420px; }
  .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .materials-layout { grid-template-columns: 1fr; }
  .materials-photo img { min-height: 420px; }
  .materials-grid, .service-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-grid { grid-template-columns: 1fr; gap: 40px; }
  .article-aside { position: static; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { top: 25px; right: auto; bottom: 25px; left: 25px; width: 2px; height: auto; }
  .process-step { min-height: 0; padding: 0 0 34px 76px; }
  .process-step small { position: absolute; top: 0; left: 0; margin: 0; }
  .process-step:last-child { padding-bottom: 0; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 32px, 1180px); }
  .section { padding: 56px 0; }
  .page-hero, .page-hero-grid { min-height: 560px; }
  .page-hero-grid { padding: 54px 0; }
  .page-hero::after { background: linear-gradient(90deg, rgba(10,26,37,.62), rgba(10,26,37,.42) 62%, rgba(10,26,37,.1)); }
  .page-hero.contact-hero::before { background-position: center 12%; background-size: auto 52%; }
  .page-hero.contact-hero::after { background: linear-gradient(90deg, rgba(10,26,37,.94), rgba(10,26,37,.78) 68%, rgba(10,26,37,.42)); }
  .hero-actions, .cta-actions { width: 100%; flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .trust-grid, .scope-grid, .related-grid, .gallery-grid, .cta-band-grid, .footer-main { grid-template-columns: 1fr; }
  .trust-item { min-height: 90px; padding: 19px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:first-child { padding-left: 0; }
  .trust-item:last-child { border-bottom: 0; }
  .intro-title { padding-left: 18px; }
  .scope-card { min-height: 0; }
  .scope-card:not(.with-image) { min-height: 0; }
  .scope-card-media { height: 220px; }
  .materials-grid, .service-gallery-grid { grid-template-columns: 1fr; }
  .materials-layout .materials-grid { grid-template-columns: 1fr; }
  .materials-photo img { min-height: 300px; }
  .materials-note { align-items: flex-start; flex-direction: column; }
  .image-copy-media { min-height: 290px; }
  .image-copy-content { padding: 40px 25px; }
  .quote-note { grid-template-columns: 36px 1fr; }
  .quote-note .btn { grid-column: 1 / -1; width: 100%; }
  .related-card img { height: 205px; }
  .gallery-item { min-height: 320px; }
  .cta-band-grid { justify-items: start; gap: 24px; }
  .article-body h2 { margin-top: 42px; }
  .contact-intro, .contact-card { padding: 34px 25px; }
  .quote-form { grid-template-columns: 1fr; }
  .form-field.full, .form-note, .form-status, .quote-form .btn { grid-column: auto; }
  .quote-form .btn { width: 100%; }
  .contact-row { grid-template-columns: 1fr; gap: 5px; }
  .footer-main { gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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