:root {
  --navy: #091a2d;
  --navy-2: #102942;
  --ink: #102136;
  --muted: #5f6f80;
  --line: #dbe2e9;
  --soft: #f3f6f8;
  --white: #ffffff;
  --pink: #e90070;
  --pink-dark: #c6005f;
  --cyan: #078eca;
  --lime: #a7c900;
  --container: 1220px;
  --wide: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.06; letter-spacing: -0.035em; }
h2 { margin-bottom: 24px; font-size: clamp(2.4rem, 5vw, 4.65rem); max-width: 920px; }
h3 { margin-bottom: 12px; font-size: 1.45rem; }
p { color: var(--muted); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.container-wide { width: min(calc(100% - 48px), var(--wide)); margin-inline: auto; }
.section { padding: 120px 0; }
.section-dark { color: var(--white); background: var(--navy); }
.section-soft { background: var(--soft); }
.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; transform: translateY(-160%); padding: 10px 14px; color: var(--white); background: var(--navy); text-decoration: none; }
.skip-link:focus { transform: translateY(0); }

.site-topline { position: relative; z-index: 80; color: var(--white); background: var(--navy); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.topline-inner { display: flex; align-items: center; justify-content: space-between; min-height: 34px; }
.topline-inner i { display: inline-block; width: 6px; height: 6px; margin: 0 9px; background: var(--lime); border-radius: 50%; }
.site-header { position: sticky; z-index: 70; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(9,26,45,.1); backdrop-filter: blur(14px); }
.header-inner { display: grid; grid-template-columns: 245px 1fr auto; align-items: center; min-height: 80px; gap: 32px; }
.brand { display: block; width: 210px; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; justify-content: center; gap: clamp(18px, 2vw, 32px); }
.main-nav a, .phone-link { position: relative; font-size: .86rem; font-weight: 700; text-decoration: none; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--pink); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 18px; white-space: nowrap; }
.phone-link { color: var(--navy); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--navy); transition: .2s ease; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 25px; border: 1px solid transparent; font-size: .82rem; font-weight: 800; letter-spacing: .055em; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, .main-nav a:focus-visible, summary:focus-visible { outline: 3px solid rgba(7,142,202,.35); outline-offset: 4px; }
.button-small { min-height: 44px; padding: 0 18px; font-size: .75rem; }
.button-primary { color: var(--white); background: var(--pink); }
.button-primary:hover { background: var(--pink-dark); }
.button-ghost { color: var(--navy); border-color: rgba(9,26,45,.35); background: transparent; }
.button-ghost:hover { border-color: var(--navy); }
.button-light { color: var(--navy); background: var(--white); }
.button-dark { color: var(--white); background: var(--navy); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-size: .83rem; font-weight: 800; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.text-link span { color: var(--pink); font-size: 1.2rem; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,-3px); }

.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; color: var(--navy); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 38px; height: 3px; background: var(--pink); }
.section-heading { margin-bottom: 54px; }
.section-heading > p:last-child { max-width: 680px; font-size: 1.12rem; }
.heading-split { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr); align-items: end; gap: 70px; }
.heading-split h2 { margin-bottom: 0; }
.heading-copy { margin: 0; font-size: 1.05rem; }
.heading-copy .text-link { margin-top: 20px; }
.light-heading .eyebrow, .section-dark .eyebrow { color: var(--white); }
.light-heading p { color: #b8c5d1; }

.hero { overflow: hidden; background: linear-gradient(90deg, #f7f9fb 0 54%, #dce6ed 54%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); min-height: min(790px, calc(100vh - 114px)); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(36px, 5vw, 88px) 84px 0; }
.hero h1 { margin-bottom: 28px; font-size: clamp(3rem, 5.1vw, 5.65rem); font-weight: 800; }
.hero h1 strong { color: var(--cyan); font-weight: 800; }
.hero-lead { max-width: 660px; margin-bottom: 30px; color: #435469; font-size: clamp(1.05rem, 1.4vw, 1.25rem); }
.hero-points { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 22px; margin: 0 0 34px; padding: 0; list-style: none; }
.hero-points li { position: relative; padding-left: 24px; font-size: .92rem; font-weight: 700; }
.hero-points li::before { content: ""; position: absolute; top: .55em; left: 0; width: 10px; height: 6px; border-left: 2px solid var(--lime); border-bottom: 2px solid var(--lime); transform: rotate(-45deg); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.response-note { display: flex; align-items: center; gap: 9px; margin: 16px 0 0; color: #546678; font-size: .82rem; }
.response-note span { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 5px rgba(167,201,0,.12); }
.hero-visual { position: relative; min-height: 590px; overflow: hidden; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,26,45,.1), transparent 24%, rgba(9,26,45,.1)); pointer-events: none; }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; }
.hero-caption { position: absolute; z-index: 2; right: 0; bottom: 0; width: min(430px, 72%); padding: 24px 28px; color: var(--white); background: rgba(9,26,45,.94); }
.hero-caption b, .hero-caption span { display: block; }
.hero-caption b { margin-bottom: 5px; font-size: .8rem; letter-spacing: .09em; text-transform: uppercase; }
.hero-caption span { color: #c7d1db; font-size: .88rem; line-height: 1.45; }
.hero-index { position: absolute; z-index: 2; top: 25px; right: 25px; color: rgba(255,255,255,.8); font-size: .75rem; font-weight: 800; letter-spacing: .15em; }

.criteria { display: flex; flex-wrap: wrap; margin-bottom: 36px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.criteria span { flex: 1 1 24%; min-width: 220px; padding: 13px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #526274; font-size: .82rem; font-weight: 700; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.product-card { display: flex; min-height: 380px; flex-direction: column; justify-content: space-between; padding: 32px; border: 1px solid var(--line); background: var(--white); }
.product-card + .product-card { border-left: 0; }
.product-card:nth-child(5) { border-left: 1px solid var(--line); }
.product-card:nth-child(n+5) { border-top: 0; }
.product-card h3 { font-size: 1.75rem; }
.product-card p { font-size: .94rem; }
.product-card > a { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid currentColor; font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.product-number { margin-bottom: 48px; color: var(--pink); font-size: .74rem; font-weight: 800; letter-spacing: .12em; }
.product-kicker { margin-bottom: 8px; color: var(--cyan) !important; font-size: .7rem !important; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.mini-list { margin: 20px 0 0; padding: 0; color: #4f6071; font-size: .84rem; list-style: none; }
.mini-list li { padding: 4px 0; }
.mini-list li::before { content: "/"; margin-right: 9px; color: var(--pink); font-weight: 800; }
.product-featured { grid-column: span 2; color: var(--white); background: var(--cyan); border-color: var(--cyan); }
.product-featured .product-kicker, .product-featured .product-number { color: #c3f0ff !important; }
.product-featured p, .product-featured .mini-list { color: #e3f7ff; }
.product-dark { color: var(--white); background: var(--navy); border-color: var(--navy); }
.product-dark p { color: #b9c7d4; }
.product-pink { color: var(--white); background: var(--pink); border-color: var(--pink); }
.product-pink .product-kicker, .product-pink .product-number { color: #ffd2e7 !important; }
.product-pink p { color: #fff0f7; }
.product-compact { min-height: 305px; }
.product-compact .product-kicker { margin-top: auto; }
.product-outline { border: 2px solid var(--navy); }

.application-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 240px; gap: 18px; }
.application-card { position: relative; overflow: hidden; min-height: 220px; }
.application-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.application-card:hover img { transform: scale(1.025); }
.application-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 32%, rgba(5,16,29,.9)); }
.application-copy { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 28px; }
.application-card span { display: block; margin-bottom: 10px; color: var(--white); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.application-card h3 { margin-bottom: 6px; font-size: clamp(1.5rem, 2.3vw, 2.4rem); }
.application-card p { margin: 0; color: #d6e0e8; }
.application-large { grid-column: span 7; grid-row: span 2; }
.application-tall { grid-column: span 5; grid-row: span 2; }
.application-wide { grid-column: span 7; grid-row: span 2; }
.application-text { grid-column: span 5; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.application-text::after { display: none; }
.application-text p { color: inherit; opacity: .8; }
.application-text span { color: inherit; opacity: .7; }
.cyan-card { color: var(--white); background: var(--cyan); }
.pink-card { color: var(--white); background: var(--pink); }
.outline-card { grid-row: span 2; border: 1px solid #486078; }
.outline-card a { margin-top: 28px; color: var(--white); font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }

.finishes-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(410px, .82fr); gap: clamp(60px, 8vw, 120px); align-items: center; }
.section-intro { max-width: 650px; font-size: 1.08rem; }
.finish-list { margin-top: 40px; border-top: 1px solid var(--line); }
.finish-list article { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.finish-list article > span { color: var(--pink); font-size: .74rem; font-weight: 800; letter-spacing: .12em; }
.finish-list h3 { margin-bottom: 4px; font-size: 1.3rem; }
.finish-list p { margin: 0; font-size: .92rem; }
.finish-visual { position: relative; min-height: 700px; margin: 0; overflow: hidden; background: var(--navy); }
.finish-visual > img { width: 100%; height: 700px; object-fit: cover; object-position: 76% center; opacity: .9; }
.finish-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(9,26,45,.96) 86%); }
.finish-overlay { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 38px; }
.finish-overlay p { margin-bottom: 12px; color: var(--white); font-size: 1.55rem; font-weight: 800; line-height: 1.15; }
.finish-overlay span { display: block; margin-bottom: 24px; color: #c2cfda; font-size: .95rem; }

.grand-format { position: relative; min-height: 720px; overflow: hidden; color: var(--white); }
.grand-format > img, .grand-format-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.grand-format > img { object-fit: cover; object-position: center; }
.grand-format-overlay { background: linear-gradient(90deg, rgba(5,17,30,.97) 0%, rgba(5,17,30,.83) 44%, rgba(5,17,30,.12) 78%); }
.grand-format-content { position: relative; z-index: 2; display: flex; min-height: 720px; flex-direction: column; align-items: flex-start; justify-content: center; }
.grand-format-content .eyebrow { color: var(--white); }
.grand-format-content h2 { max-width: 720px; font-size: clamp(3rem, 6vw, 6rem); }
.grand-format-content p { max-width: 640px; margin-bottom: 32px; color: #d1dbe3; font-size: 1.05rem; }

.quality-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px 100px; }
.quality-heading h2 { margin-bottom: 0; }
.quality-copy > p { font-size: 1.12rem; }
.quality-factors { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 32px; border-top: 1px solid var(--line); }
.quality-factors span { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .84rem; font-weight: 700; }
.quality-factors span:nth-child(odd) { margin-right: 24px; }
.quality-statement { grid-column: 1/-1; padding-top: 60px; border-top: 1px solid var(--line); }
.statement-line { display: block; font-size: clamp(2.8rem, 7vw, 7.4rem); font-weight: 800; line-height: .92; letter-spacing: -.06em; }
.statement-line.accent { color: var(--pink); text-align: center; }
.statement-line:last-child { text-align: right; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); margin: 0; padding: 0; border-top: 1px solid #cdd6de; border-left: 1px solid #cdd6de; list-style: none; }
.process-grid li { min-height: 300px; padding: 30px; border-right: 1px solid #cdd6de; border-bottom: 1px solid #cdd6de; }
.process-grid li > span { display: block; margin-bottom: 75px; color: var(--pink); font-size: .74rem; font-weight: 800; letter-spacing: .12em; }
.process-grid h3 { font-size: 1.4rem; }
.process-grid p { margin: 0; font-size: .92rem; }

.files { padding-top: 0; background: var(--soft); }
.files-panel { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 50px; padding: 52px 60px; color: var(--white); background: var(--navy); }
.files-panel .eyebrow { color: var(--white); }
.files-panel h2 { margin-bottom: 14px; font-size: clamp(2rem,4vw,3.8rem); }
.files-panel p { max-width: 700px; margin-bottom: 0; color: #bdcbd7; }
.file-types { display: flex; gap: 8px; }
.file-types span { display: grid; width: 64px; height: 64px; place-items: center; border: 1px solid #4b6074; font-size: .78rem; font-weight: 800; }

.local { background: var(--white); }
.local-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 100px; }
.local-grid > div:last-child > p:not(.eyebrow) { max-width: 720px; font-size: 1.05rem; }
.local-marker { position: relative; display: flex; aspect-ratio: 1; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; color: var(--white); background: var(--cyan); }
.local-marker::before, .local-marker::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
.local-marker::before { width: 78%; height: 78%; }
.local-marker::after { width: 38%; height: 38%; }
.local-marker strong { z-index: 1; font-size: clamp(2rem,4vw,4.3rem); letter-spacing: -.045em; }
.local-marker span { z-index: 1; font-size: .72rem; font-weight: 800; letter-spacing: .13em; }

.quote { background: linear-gradient(135deg, var(--navy) 0%, #102d49 100%); }
.quote-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px,7vw,100px); align-items: start; }
.quote-copy { position: sticky; top: 130px; }
.quote-copy h2 { font-size: clamp(2.8rem,5vw,5.2rem); }
.quote-copy > p { color: #b9c7d3; font-size: 1.08rem; }
.quote-contact { margin-top: 52px; padding-top: 26px; border-top: 1px solid #3a5065; }
.quote-contact span, .quote-contact a { display: block; }
.quote-contact span { color: #9fb0bf; font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.quote-contact a { margin-top: 7px; color: var(--white); font-size: 1.7rem; font-weight: 800; text-decoration: none; }
.quote-form { padding: 44px; color: var(--ink); background: var(--white); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.form-grid label { display: block; }
.form-grid label > span { display: block; margin-bottom: 7px; color: var(--navy); font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.form-grid .full { grid-column: 1/-1; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; min-height: 52px; padding: 12px 14px; color: var(--ink); background: #f8fafb; border: 1px solid #cfd9e1; border-radius: 0; outline: none; }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(7,142,202,.12); }
.file-input { padding: 18px; border: 1px dashed #b8c6d2; background: #f8fafb; }
.file-input input { min-height: 42px; padding: 7px 0; border: 0; background: transparent; }
.file-input small { color: #6c7b8a; }
.form-submit { width: 100%; margin-top: 28px; }
.form-note { margin: 12px 0 0; font-size: .78rem; text-align: center; }
.form-status { display: none; margin: 14px 0 0; padding: 12px; color: #294100; background: #edf7c9; font-size: .86rem; }
.form-status.visible { display: block; }

.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.faq-heading { position: sticky; top: 130px; }
.faq-heading h2 { font-size: clamp(2.8rem,5vw,4.8rem); }
.faq-heading > p { font-size: 1.04rem; }
.faq-heading .button { margin-top: 18px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 24px 0; color: var(--navy); font-size: 1.05rem; font-weight: 800; line-height: 1.35; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 auto; color: var(--pink); font-size: 1.5rem; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; padding: 0 40px 24px 0; margin: 0; }

.site-footer { padding: 78px 0 28px; color: var(--white); background: #061321; }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 60px; }
.footer-brand img { width: 220px; height: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p, .footer-main p, .footer-main span { color: #98aabc; font-size: .88rem; }
.footer-main h2 { margin-bottom: 20px; color: var(--white); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-main > div > a:not(.text-link) { display: block; margin: 8px 0; color: #c6d1dc; font-size: .9rem; text-decoration: none; }
.light-link { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 24px; border-top: 1px solid #26384a; color: #72879a; font-size: .75rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-legal a { color: #9cadbd; text-decoration: none; }
.footer-legal a:hover, .footer-legal a:focus-visible { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.mobile-actions { display: none; }

.legal-hero { padding: 82px 0 76px; color: var(--white); background: linear-gradient(135deg, var(--navy) 0%, #12344f 100%); }
.legal-hero .breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 30px; color: #aebdca; font-size: .82rem; }
.legal-hero .breadcrumbs a { color: #dbe5ed; text-decoration: none; }
.legal-hero .breadcrumbs a:hover, .legal-hero .breadcrumbs a:focus-visible { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.legal-hero .eyebrow { color: var(--white); }
.legal-hero h1 { max-width: 900px; margin-bottom: 22px; font-size: clamp(3rem, 6vw, 5.5rem); }
.legal-hero > .container > p:last-child { max-width: 760px; margin-bottom: 0; color: #c5d1dc; font-size: 1.08rem; }
.legal-content { width: min(calc(100% - 48px), 940px); margin-inline: auto; padding: 82px 0 110px; }
.legal-content section { padding: 0 0 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 16px; font-size: clamp(1.65rem, 3vw, 2.45rem); }
.legal-content p, .legal-content li { color: #46586c; }
.legal-content ul { padding-left: 22px; margin: 18px 0 0; }
.legal-content li + li { margin-top: 8px; }
.legal-content a { color: var(--cyan); font-weight: 700; text-underline-offset: 3px; }
.legal-note { padding: 22px 24px; margin: 0; background: var(--soft); border-left: 4px solid var(--lime); }

@media (max-width: 1180px) {
  .header-inner { grid-template-columns: 205px 1fr auto; gap: 20px; }
  .brand { width: 185px; }
  .main-nav { gap: 16px; }
  .main-nav a { font-size: .8rem; }
  .phone-link { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-right: 36px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .product-card:nth-child(odd) { border-left: 1px solid var(--line); }
  .product-card:nth-child(n+3) { border-top: 0; }
  .footer-main { grid-template-columns: 1.3fr repeat(3,1fr); gap: 36px; }
}

@media (max-width: 940px) {
  .section { padding: 90px 0; }
  .site-topline { display: none; }
  .header-inner { grid-template-columns: 1fr auto auto; min-height: 72px; }
  .menu-toggle { display: block; order: 3; }
  .header-actions { order: 2; }
  .main-nav { position: absolute; top: 72px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 24px 28px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(9,26,45,.12); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
  .main-nav a::after { display: none; }
  .hero { background: var(--soft); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 0 58px; }
  .hero-visual { min-height: 560px; }
  .heading-split, .quality-grid, .local-grid, .quote-grid, .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .heading-copy { max-width: 700px; }
  .finishes-grid { grid-template-columns: 1fr; }
  .finish-visual, .finish-visual > img { min-height: 580px; height: 580px; }
  .application-grid { grid-auto-rows: 220px; }
  .application-large, .application-wide { grid-column: span 7; }
  .application-tall, .application-text { grid-column: span 5; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid li { min-height: 260px; }
  .files-panel { grid-template-columns: 1fr auto; }
  .files-panel .button { grid-column: 1/-1; }
  .local-marker { max-width: 520px; }
  .quote-copy, .faq-heading { position: static; }
  .footer-main { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 680px) {
  body { padding-bottom: 64px; }
  .container, .container-wide { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 72px 0; }
  h2 { font-size: clamp(2.2rem,12vw,3.25rem); }
  .header-inner { grid-template-columns: 1fr auto; min-height: 66px; }
  .brand { width: 158px; }
  .header-actions { display: none; }
  .menu-toggle { order: initial; }
  .main-nav { top: 66px; }
  .hero-grid { width: 100%; }
  .hero-copy { padding: 52px 20px 45px; }
  .hero h1 { font-size: clamp(2.65rem,12vw,4rem); }
  .hero h1 br { display: none; }
  .hero-lead { font-size: 1rem; }
  .hero-points { grid-template-columns: 1fr; gap: 9px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 390px; }
  .hero-visual > img { object-position: 64% center; }
  .hero-caption { width: calc(100% - 20px); padding: 18px 20px; }
  .heading-split { gap: 26px; }
  .criteria span { flex-basis: 50%; min-width: 0; padding: 11px; font-size: .72rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-featured { grid-column: auto; }
  .product-card, .product-card:nth-child(n), .product-card:nth-child(odd) { min-height: 0; padding: 27px 24px; border: 1px solid var(--line); border-top: 0; }
  .product-card:first-child { border-top: 1px solid var(--cyan); }
  .product-card.product-dark { border-color: var(--navy); }
  .product-card.product-pink { border-color: var(--pink); }
  .product-number { margin-bottom: 40px; }
  .application-grid { display: block; }
  .application-card { min-height: 370px; margin-bottom: 14px; }
  .application-text { min-height: 260px; }
  .finish-visual, .finish-visual > img { min-height: 520px; height: 520px; }
  .finish-overlay { padding: 26px; }
  .grand-format, .grand-format-content { min-height: 650px; }
  .grand-format-overlay { background: linear-gradient(90deg, rgba(5,17,30,.94), rgba(5,17,30,.58)); }
  .grand-format-content h2 { font-size: 3.35rem; }
  .quality-grid { gap: 42px; }
  .quality-factors { grid-template-columns: 1fr; }
  .quality-factors span:nth-child(odd) { margin-right: 0; }
  .quality-statement { padding-top: 40px; }
  .statement-line { font-size: clamp(2.7rem,14vw,4.7rem); }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 0; }
  .process-grid li > span { margin-bottom: 42px; }
  .files { padding-top: 0; }
  .files-panel { grid-template-columns: 1fr; gap: 28px; padding: 34px 24px; }
  .files-panel .button { grid-column: auto; width: 100%; }
  .file-types { justify-content: flex-start; }
  .local-grid { gap: 38px; }
  .local-marker { aspect-ratio: 1.1; }
  .quote-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .quote-contact { margin-top: 34px; }
  .faq-list summary { padding: 21px 0; font-size: .98rem; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; }
  .legal-hero { padding: 58px 0 54px; }
  .legal-hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .legal-content { width: min(calc(100% - 30px), 940px); padding: 58px 0 86px; }
  .mobile-actions { position: fixed; z-index: 100; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 64px; box-shadow: 0 -8px 22px rgba(7,21,36,.18); }
  .mobile-actions a { display: grid; place-items: center; color: var(--white); background: var(--navy); font-size: .73rem; font-weight: 800; letter-spacing: .055em; text-decoration: none; text-transform: uppercase; }
  .mobile-actions a:last-child { background: var(--pink); }
}

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