:root {
  --ink: #0b0c0d;
  --ink-soft: #151719;
  --paper: #f2f1ec;
  --paper-warm: #e8e4db;
  --white: #faf9f5;
  --amber: #ffb000;
  --amber-dark: #d99100;
  --line-dark: #303236;
  --line-light: #d6d4cc;
  --muted-dark: #94979d;
  --muted-light: #6f716e;
  --shell: min(1400px, calc(100% - 72px));
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 86px; }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--paper); }
body.menu-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-140%); padding: 10px 14px; background: var(--amber); color: var(--ink); font-weight: 800; }
.skip-link:focus { transform: none; }
.section { padding-block: 120px; }
.section-index { margin: 0 0 22px; font: 700 11px/1.2 "Courier New", monospace; letter-spacing: .14em; color: var(--amber-dark); }

.site-header { position: sticky; z-index: 60; top: 0; height: 86px; background: rgba(11,12,13,.94); color: var(--white); border-bottom: 1px solid var(--line-dark); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; background: var(--amber); color: var(--ink); font-weight: 950; letter-spacing: -.09em; }
.brand-name { font-size: 11px; font-weight: 900; letter-spacing: .14em; line-height: 1.02; }
.main-nav { display: flex; align-items: center; gap: 36px; margin-left: auto; }
.main-nav a { position: relative; color: #bbbdbf; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--amber); transition: right .22s ease; }
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { right: 0; }
.header-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; padding-left: 28px; border-left: 1px solid var(--line-dark); }
.header-contact a { font: 800 15px/1 "Courier New", monospace; }
.header-contact span { color: #777b80; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line-dark); background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 20px; height: 1px; margin: 5px auto; background: #fff; transition: transform .2s ease; }

.hero { position: relative; overflow: hidden; min-height: calc(100svh - 86px); padding-bottom: 54px; background: var(--ink); color: var(--white); }
.hero-grid { position: absolute; inset: 0; opacity: .7; 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: 72px 72px; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; min-height: calc(100svh - 140px); display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 42px; padding-block: 48px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 28px; color: var(--amber); font: 700 11px/1.2 "Courier New", monospace; letter-spacing: .16em; }
.eyebrow span { width: 25px; height: 2px; background: var(--amber); }
.hero h1 { margin: 0; font: 950 clamp(62px, 6.55vw, 112px)/.8 "Arial Narrow", Impact, sans-serif; letter-spacing: -.075em; }
.hero h1 em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px var(--amber); }
.hero h1 small { display: block; margin-top: 18px; color: var(--amber); font: 800 clamp(15px, 1.45vw, 23px)/1.1 "Courier New", monospace; letter-spacing: .13em; }
.hero-lead { max-width: 610px; margin: 34px 0 0; color: #aaadb1; font-size: clamp(16px, 1.25vw, 20px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 34px; }
.button { min-height: 54px; border: 0; border-radius: 1px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; font-size: 13px; font-weight: 850; cursor: pointer; transition: transform .2s ease, filter .2s ease; }
.button:hover { transform: translateY(-2px); filter: brightness(1.04); }
.button-primary { background: var(--amber); color: var(--ink); }
.button-light { background: var(--white); color: var(--ink); }
.button-link { padding-bottom: 5px; border-bottom: 1px solid #575a5e; font-size: 13px; font-weight: 750; }
.button-link span { color: var(--amber); margin-left: 6px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.hero-facts div { min-width: 0; display: flex; flex-direction: column; gap: 5px; padding-left: 14px; border-left: 2px solid var(--amber); }
.hero-facts b { font: 900 19px/1 "Courier New", monospace; }
.hero-facts span { color: #777b80; font-size: 10px; line-height: 1.3; text-transform: uppercase; letter-spacing: .05em; }
.hero-media { position: relative; height: min(68vh, 710px); min-height: 500px; background: linear-gradient(90deg, rgba(11,12,13,.24), transparent), url("assets/fiberglass-hero.webp") center/cover no-repeat; clip-path: polygon(8% 0, 100% 0, 100% 89%, 88% 100%, 0 100%, 0 10%); box-shadow: 0 30px 80px #000; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,12,13,.8), transparent 42%); }
.media-label { position: absolute; z-index: 2; right: 22px; top: 22px; display: flex; gap: 10px; align-items: center; padding: 10px 14px; background: rgba(11,12,13,.9); font: 700 10px/1 "Courier New", monospace; text-transform: uppercase; letter-spacing: .08em; }
.media-label span { color: var(--amber); }
.media-spec { position: absolute; z-index: 2; left: 30px; bottom: 28px; font: 800 12px/1.45 "Courier New", monospace; letter-spacing: .09em; }
.media-delivery { position: absolute; z-index: 3; right: 0; bottom: 0; transform: translate(5%, 24%); width: 260px; min-height: 88px; padding: 18px; display: flex; align-items: center; gap: 15px; background: var(--amber); color: var(--ink); }
.delivery-icon { font-size: 26px; }.media-delivery p { margin: 0; display: flex; flex-direction: column; gap: 4px; }.media-delivery b { font-size: 14px; }.media-delivery small { font-size: 11px; }
.hero-ticker { position: absolute; z-index: 3; bottom: 0; inset-inline: 0; height: 54px; display: flex; align-items: center; justify-content: space-around; gap: 22px; background: var(--amber); color: var(--ink); overflow: hidden; white-space: nowrap; font-size: 12px; font-weight: 950; letter-spacing: .09em; }
.hero-ticker i { font-style: normal; }

.section-heading { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(280px,.55fr); align-items: end; gap: 80px; margin-bottom: 58px; }
.section-heading.compact { grid-template-columns: 1fr; }
.section-heading h2 { margin: 0; font-size: clamp(50px, 6.2vw, 100px); line-height: .86; letter-spacing: -.07em; text-transform: uppercase; }
.section-heading > p { margin: 0 0 4px; color: var(--muted-light); font-size: 15px; line-height: 1.65; }
.category-tabs { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.category-tabs button { position: relative; min-height: 100px; padding: 20px 26px; display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 15px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.category-tabs button + button { border-left: 1px solid var(--ink); }
.category-tabs button::after { content: ""; position: absolute; inset: 6px; border: 0 solid var(--ink); pointer-events: none; }
.category-tabs button span { color: #a2a29e; font: 11px/1 "Courier New", monospace; }
.category-tabs button b { font-size: 24px; text-transform: uppercase; letter-spacing: -.02em; }
.category-tabs button small { color: #888a87; font-size: 11px; }
.category-tabs button.is-active { background: var(--ink); color: var(--white); }
.category-tabs button.is-active::after { border-width: 1px; border-color: #36383b; }
.category-tabs button.is-active span { color: var(--amber); }
.catalog-topline { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line-light); }
.catalog-topline p { margin: 0; font-weight: 750; }.catalog-topline span { color: #8b8c88; font: 10px/1 "Courier New", monospace; letter-spacing: .08em; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line-light); }
.product-card { position: relative; min-width: 0; padding: 18px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: var(--paper); }
.product-image { position: relative; height: 280px; overflow: hidden; background: url("assets/fiberglass-hero.webp") center/cover no-repeat; filter: saturate(.84) contrast(1.03); }
.product-card[data-kind="rebar"] .product-image { background-position: 76% center; }
.product-card[data-kind="mesh"] .product-image { background-position: 12% center; }
.product-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.35), transparent 38%); }
.product-badge { position: absolute; z-index: 2; top: 12px; left: 12px; padding: 7px 9px; background: var(--ink); color: #fff; font: 700 9px/1 "Courier New", monospace; letter-spacing: .08em; }
.product-number { position: absolute; z-index: 2; bottom: 11px; right: 12px; color: #fff; font: 700 10px/1 "Courier New", monospace; }
.product-content { padding: 20px 4px 3px; }
.product-meta { display: flex; justify-content: space-between; color: #8b8c88; font: 10px/1.3 "Courier New", monospace; text-transform: uppercase; letter-spacing: .06em; }
.product-card h3 { min-height: 52px; margin: 13px 0 20px; font-size: 22px; line-height: 1.16; letter-spacing: -.035em; }
.product-price-row { display: flex; align-items: end; justify-content: space-between; gap: 14px; border-top: 1px solid var(--line-light); padding-top: 17px; }
.product-price { display: flex; flex-direction: column; gap: 4px; }.product-price b { font: 900 22px/1 "Courier New", monospace; }.product-price small { color: #8b8c88; font-size: 10px; }
.product-price-row button { width: 42px; height: 42px; border: 0; background: var(--amber); font-size: 20px; cursor: pointer; transition: transform .2s ease; }.product-price-row button:hover { transform: rotate(6deg); }
.price-note { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--ink); }
.price-note > span { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid #aaa9a3; border-radius: 50%; font: 700 11px/1 Georgia, serif; }
.price-note p { margin: 0; color: #7b7c78; font-size: 11px; line-height: 1.5; }
.price-note button { border: 0; background: transparent; font-size: 12px; font-weight: 800; cursor: pointer; }

.delivery { padding-top: 0; }
.delivery-card { position: relative; overflow: hidden; min-height: 570px; display: grid; grid-template-columns: 1.05fr .95fr; background: var(--amber); }
.delivery-copy { padding: 70px; position: relative; z-index: 2; }
.delivery-copy .section-index { color: #58400c; }
.delivery-copy h2 { margin: 0; font-size: clamp(58px, 6.7vw, 105px); line-height: .84; letter-spacing: -.07em; text-transform: uppercase; }
.delivery-copy h2 em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.delivery-copy > p:not(.section-index) { max-width: 550px; margin: 30px 0; font-size: 16px; line-height: 1.6; }
.delivery-visual { position: relative; min-height: 100%; background: var(--ink-soft); overflow: hidden; }
.delivery-visual::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.1) 1px,transparent 1px); background-size: 42px 42px; }
.route-line { position: absolute; height: 1px; background: #6e737a; transform-origin: left center; }.line-a { width: 45%; left: 15%; top: 28%; transform: rotate(28deg); }.line-b { width: 40%; left: 49%; top: 48%; transform: rotate(-18deg); }.line-c { width: 33%; left: 22%; top: 67%; transform: rotate(-22deg); }
.route-dot { position: absolute; display: flex; align-items: center; gap: 9px; color: #fff; font: 700 10px/1 "Courier New", monospace; text-transform: uppercase; letter-spacing: .08em; }.route-dot span { width: 18px; height: 18px; border: 5px solid var(--amber); border-radius: 50%; box-shadow: 0 0 0 6px rgba(255,176,0,.15); }.dot-a { left: 13%; top: 25%; }.dot-b { right: 14%; top: 35%; }
.delivery-zero { position: absolute; left: 50%; bottom: 13%; transform: translateX(-50%); width: 220px; aspect-ratio: 1; display: grid; place-items: center; align-content: center; gap: 5px; border: 1px solid #565a60; border-radius: 50%; color: #fff; box-shadow: 0 0 0 24px rgba(255,255,255,.025); }.delivery-zero b { color: var(--amber); font: 900 64px/1 "Courier New", monospace; }.delivery-zero span { color: #8f949b; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.benefits { background: var(--ink); color: var(--white); }
.benefits .section-heading { border-bottom: 1px solid var(--line-dark); padding-bottom: 40px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); border-left: 1px solid var(--line-dark); }
.benefit-grid article { min-height: 380px; padding: 24px; border-right: 1px solid var(--line-dark); position: relative; }
.benefit-grid article > span { color: #6f7378; font: 10px/1 "Courier New", monospace; }
.benefit-symbol { width: 76px; height: 76px; margin: 66px 0 48px; display: grid; place-items: center; background: var(--amber); color: var(--ink); border-radius: 50%; font: 800 29px/1 Arial; }
.benefit-grid h3 { margin: 0 0 14px; font-size: 23px; text-transform: uppercase; letter-spacing: -.02em; }
.benefit-grid p { margin: 0; color: #8d9196; font-size: 13px; line-height: 1.6; }

.applications { background: var(--paper-warm); }
.round-arrow { width: 84px; height: 84px; justify-self: end; border: 1px solid var(--ink); border-radius: 50%; background: transparent; font-size: 26px; cursor: pointer; transition: .22s ease; }
.round-arrow:hover { background: var(--ink); color: #fff; transform: rotate(8deg); }
.application-list { border-top: 1px solid var(--ink); }
.application-list > div { min-height: 100px; display: grid; grid-template-columns: 80px 1fr .8fr; align-items: center; gap: 20px; border-bottom: 1px solid #b8b4ab; transition: padding .2s ease; }
.application-list > div:hover { padding-inline: 12px; background: rgba(255,255,255,.25); }
.application-list span { color: #89867f; font: 10px/1 "Courier New", monospace; }.application-list b { font-size: 24px; text-transform: uppercase; }.application-list small { color: #77756f; font-size: 12px; line-height: 1.5; }

.knowledge { background: var(--ink); color: var(--white); }
.knowledge .section-heading { padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); }
.knowledge .section-heading > p { color: #92959a; }
.knowledge-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.knowledge-card { min-height: 300px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); transition: background .22s ease, color .22s ease, transform .22s ease; }
.knowledge-card:hover { background: var(--amber); color: var(--ink); transform: translateY(-4px); }
.knowledge-card small { color: #72767b; font: 10px/1.3 "Courier New", monospace; letter-spacing: .06em; }
.knowledge-card h3 { margin: 36px 0 18px; font-size: 25px; line-height: 1.05; text-transform: uppercase; letter-spacing: -.025em; }
.knowledge-card p { margin: 0; color: #8f9398; font-size: 13px; line-height: 1.65; transition: color .22s ease; }
.knowledge-card:hover p,.knowledge-card:hover small { color: #32302b; }
.knowledge-card b { margin-top: auto; padding-top: 28px; color: var(--amber); font-size: 12px; }
.knowledge-card:hover b { color: var(--ink); }
.knowledge-all { width: fit-content; margin: 36px 0 0 auto; display: flex; align-items: center; gap: 18px; padding-bottom: 7px; border-bottom: 1px solid #60646a; color: var(--amber); font-size: 13px; font-weight: 850; }

.seo-copy { background: var(--paper); }
.seo-copy-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; padding-top: 58px; border-top: 1px solid var(--ink); }
.seo-copy h2,.faq h2 { margin: 0; font-size: clamp(48px, 5.7vw, 88px); line-height: .88; letter-spacing: -.065em; text-transform: uppercase; }
.seo-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; }
.seo-columns article { padding-top: 20px; border-top: 4px solid var(--amber); }
.seo-columns h3 { margin: 0 0 18px; font-size: 23px; line-height: 1.12; text-transform: uppercase; }
.seo-columns p { margin: 0 0 25px; color: var(--muted-light); font-size: 14px; line-height: 1.75; }
.seo-columns a { display: inline-block; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 850; }

.faq { padding-top: 0; background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; padding: 70px; background: var(--ink); color: var(--white); }
.faq-grid > div:first-child > p:last-child { margin: 28px 0 0; color: #8d9196; font-size: 14px; line-height: 1.6; }
.faq-grid > div:first-child > p:last-child a { color: var(--amber); font-weight: 800; }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-list details { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; font-size: 15px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--amber); font-size: 25px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; margin: -4px 42px 25px 0; color: #92959a; font-size: 13px; line-height: 1.65; }

.cta-section { background: var(--paper); }
.cta-card { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; padding: 70px; background: var(--ink); color: var(--white); }
.cta-card h2 { margin: 0; font-size: clamp(48px, 5vw, 78px); line-height: .93; letter-spacing: -.055em; text-transform: uppercase; }
.cta-side p { margin: 0 0 28px; color: #8f9398; font-size: 14px; line-height: 1.6; }

.site-footer { padding: 70px 0 24px; background: #060708; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .65fr 1fr; gap: 70px; padding-bottom: 62px; }
.footer-brand { margin-bottom: 24px; }.footer-grid > div:first-child > p { color: #777b80; font-size: 13px; line-height: 1.6; }
.footer-links,.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }.footer-links p,.footer-contact p { margin: 0 0 10px; color: #686c71; font: 10px/1 "Courier New", monospace; text-transform: uppercase; letter-spacing: .12em; }.footer-links a { color: #b2b4b6; font-size: 13px; }.footer-contact a { font-size: 17px; font-weight: 750; }.footer-contact button { padding: 0 0 5px; margin-top: 12px; border: 0; border-bottom: 1px solid #5d6064; background: transparent; color: var(--amber); font-size: 12px; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 22px; border-top: 1px solid #25272a; color: #62666a; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

.request-dialog { width: min(1080px, calc(100% - 32px)); max-width: none; max-height: calc(100svh - 32px); padding: 0; border: 0; overflow: auto; background: var(--paper); color: var(--ink); box-shadow: 0 35px 100px rgba(0,0,0,.5); }
.request-dialog::backdrop { background: rgba(0,0,0,.75); backdrop-filter: blur(6px); }
.request-dialog[open] { animation: dialog-in .28s ease; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(18px) scale(.985); } to { opacity:1; transform:none; } }
.dialog-grid { min-height: 640px; display: grid; grid-template-columns: .9fr 1.1fr; }
.dialog-aside { padding: 55px; display: flex; flex-direction: column; background: var(--ink); color: var(--white); }
.dialog-aside h2 { margin: 0; font-size: clamp(48px, 5vw, 78px); line-height: .9; letter-spacing: -.06em; text-transform: uppercase; }.dialog-aside > p:not(.section-index) { color: #92959a; line-height: 1.6; font-size: 14px; }
.dialog-contact { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }.dialog-contact span { color: #696d72; font: 10px/1 "Courier New", monospace; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }.dialog-contact a { font-size: 18px; font-weight: 750; }
.dialog-form-wrap { position: relative; padding: 55px; }
.dialog-close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border: 1px solid #bebdb7; border-radius: 50%; background: transparent; font-size: 24px; cursor: pointer; }.mobile-close { display: none; color:#fff; border-color:#55585d; }
.form-field { margin-bottom: 25px; }.form-field label { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 9px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }.form-field label span { color: #9b9b96; font: 9px/1 "Courier New", monospace; text-transform: none; letter-spacing: 0; }
.form-field input,.form-field textarea { width: 100%; border: 1px solid #bbb9b2; border-radius: 0; outline: none; background: transparent; padding: 14px; color: var(--ink); transition: border .2s ease, box-shadow .2s ease; }.form-field input { height: 54px; }.form-field textarea { resize: vertical; min-height: 135px; }.form-field input:focus,.form-field textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 2px rgba(11,12,13,.08); }.form-field input::placeholder,.form-field textarea::placeholder { color:#9b9b96; }
.form-field input[aria-invalid="true"] { border-color: #b83226; box-shadow: 0 0 0 2px rgba(184,50,38,.1); }
.contact-requirement { display: flex; align-items: center; gap: 9px; margin: 0 0 24px; color: #6f716e; font-size: 11px; line-height: 1.45; }
.contact-requirement span { width: 22px; height: 22px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--amber); color: var(--ink); font-weight: 900; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }.form-submit { width: 100%; }.form-submit[disabled] { opacity: .6; cursor: wait; }.form-legal { margin: 13px 0 0; color: #888984; font-size: 9px; line-height: 1.5; }.form-legal a { text-decoration: underline; }.form-status { min-height: 22px; margin-top: 12px; font-size: 12px; font-weight: 750; }.form-status.success { color: #267a42; }.form-status.error { color: #b83226; }

.legal-page { min-height: 100svh; background: var(--paper); }
.legal-header { height: 86px; display: flex; align-items: center; background: var(--ink); color: var(--white); }
.legal-content { max-width: 880px; padding: 80px 0 120px; }
.legal-content h1 { margin: 0 0 45px; font-size: clamp(44px,7vw,82px); line-height: .9; letter-spacing: -.06em; text-transform: uppercase; }
.legal-content h2 { margin: 38px 0 12px; font-size: 22px; }
.legal-content p,.legal-content li { color: #555753; font-size: 15px; line-height: 1.7; }
.legal-content a { text-decoration: underline; }
.legal-back { display: inline-block; margin-bottom: 34px; color: var(--amber-dark); font-size: 12px; font-weight: 800; }

@media (max-width: 1100px) {
  :root { --shell: min(940px, calc(100% - 46px)); }
  .main-nav { gap: 22px; }.header-contact { padding-left: 18px; }
  .hero-inner { grid-template-columns: .9fr 1.1fr; gap: 24px; }.hero h1 { font-size: clamp(56px, 7.5vw, 86px); }.hero-media { min-height: 480px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }.benefit-grid { grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line-dark); }.benefit-grid article { border-bottom: 1px solid var(--line-dark); }.knowledge-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .delivery-copy { padding: 52px; }.cta-card { padding: 55px; gap: 50px; }.seo-copy-grid,.faq-grid { gap: 50px; }.faq-grid { padding: 52px; }
}

@media (max-width: 780px) {
  :root { --shell: calc(100% - 30px); }
  html { scroll-padding-top: 72px; }
  .section { padding-block: 78px; }
  .site-header { height: 72px; }.header-contact { margin-left: auto; padding: 0; border: 0; }.header-contact span { display:none; }.header-contact a { font-size: 12px; }.menu-button { display:block; }
  .main-nav { position: fixed; z-index: 58; inset: 72px 0 auto; min-height: calc(100svh - 72px); padding: 50px 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 28px; background: var(--ink); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }.main-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }.main-nav a { font-size: 24px; color:#fff; }
  .hero { min-height: auto; }.hero-inner { display: flex; flex-direction: column; align-items: stretch; padding-block: 42px 75px; }.hero h1 { font-size: clamp(42px, 11.5vw, 64px); }.hero h1 small { margin-top:14px;font-size:13px; }.hero-lead { font-size: 15px; }.hero-facts { margin-top: 38px; grid-template-columns: 1fr 1fr; }.hero-facts div:last-child { grid-column:1/3; }.hero-media { height: 52vh; min-height: 390px; clip-path: polygon(6% 0,100% 0,100% 92%,92% 100%,0 100%,0 8%); }.media-delivery { width: 220px; min-height: 74px; transform: translate(0,30%); }.media-spec { font-size:10px;left:20px }.hero-ticker { justify-content:flex-start; padding-left:15px; }.hero-ticker span:nth-of-type(n+3),.hero-ticker i:nth-of-type(n+3){display:none}
  .section-heading { grid-template-columns:minmax(0,1fr); gap:24px; margin-bottom:40px; }.section-heading > * { min-width:0; }.section-heading h2 { font-size: clamp(40px,10.8vw,62px); }.section-heading > p { font-size:14px; }#catalog-title { font-size:clamp(34px,9.3vw,46px); }
  .category-tabs button { min-height:82px; grid-template-columns:30px 1fr; padding:14px 12px; }.category-tabs button b { font-size:17px; }.category-tabs button small { grid-column:2; }.catalog-topline { align-items:flex-start; flex-direction:column; justify-content:center; padding-block:16px; }.product-grid { grid-template-columns:1fr; }.product-image { height:300px; }.price-note { grid-template-columns:auto 1fr; }.price-note button { grid-column:2;justify-self:start;padding:0; }
  .delivery-card { min-height:0; grid-template-columns:minmax(0,1fr); }.delivery-card > * { min-width:0; }.delivery-copy { padding:42px 26px 50px; }.delivery-copy h2 { font-size: clamp(46px,12.5vw,66px); }.delivery-visual { min-height:390px; }
  .benefit-grid { grid-template-columns:1fr; }.benefit-grid article { min-height:280px; }.benefit-symbol { margin:35px 0 25px; }
  .round-arrow { width:65px;height:65px;justify-self:start }.application-list > div { grid-template-columns:42px 1fr; padding-block:20px; }.application-list small { grid-column:2; }.application-list b{font-size:20px}
  .knowledge-grid { grid-template-columns:minmax(0,1fr); }.knowledge-card { min-height:250px; }.knowledge-card h3 { margin-top:28px;font-size:22px; }.knowledge-all { margin-left:0; }
  .seo-copy-grid,.faq-grid { grid-template-columns:minmax(0,1fr); gap:40px; }.seo-copy-grid > *,.faq-grid > * { min-width:0; }.seo-copy-grid { padding-top:42px; }.seo-columns { grid-template-columns:minmax(0,1fr); }.faq-grid { padding:42px 25px; }.seo-copy h2,.faq h2 { font-size:clamp(40px,11vw,62px); }
  .cta-card { grid-template-columns:1fr; padding:42px 25px; gap:32px; }.cta-card h2{font-size:clamp(41px,12vw,60px)}
  .footer-grid { grid-template-columns:1fr; gap:40px; }.footer-bottom { flex-direction:column;gap:10px }.footer-contact a{font-size:15px}
  .request-dialog { width:calc(100% - 16px); max-height:calc(100svh - 16px); }.dialog-grid { grid-template-columns:1fr; }.dialog-aside { padding:38px 24px; min-height:280px; }.dialog-aside h2 { font-size:50px; }.dialog-contact { display:none; }.dialog-form-wrap { padding:38px 24px 24px; }.dialog-form-wrap > .dialog-close { display:none; }.mobile-close { display:block;top:14px;right:14px }.form-field { margin-bottom:18px; }
}

@media (max-width: 420px) {
  .brand-name { display:none; }.header-contact a { font-size:11px; }.hero-actions { align-items:flex-start; flex-direction:column; }.hero-actions .button { width:100%; }.hero-media { min-height:340px; }.media-label { font-size:8px;right:10px;top:10px }.product-image { height:245px; }.category-tabs button span { display:none; }.category-tabs button { grid-template-columns:1fr; }.category-tabs button small { grid-column:1; }.delivery-zero { width:185px }.delivery-zero b { font-size:54px; }
}

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