:root {
  --ink: #111111;
  --paper: #f2efe7;
  --white: #ffffff;
  --signal: #ff5b35;
  --lime: #c9f75f;
  --purple: #7357d8;
  --muted: #74716a;
  --line: rgba(17, 17, 17, .17);
  --pad: clamp(20px, 5vw, 78px);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
section[id] { scroll-margin-top: 78px; }
::selection { background: var(--signal); color: var(--white); }

.intro { position: fixed; inset: 0; z-index: 999; display: grid; place-items: center; overflow: hidden; background: var(--ink); color: var(--white); perspective: 1000px; }
.intro.is-hidden { display: none; }
.intro__grid { position: absolute; inset: -30%; opacity: .2; background-image: linear-gradient(rgba(201,247,95,.28) 1px, transparent 1px), linear-gradient(90deg, rgba(201,247,95,.28) 1px, transparent 1px); background-size: 58px 58px; transform: rotateX(64deg) translateY(46%); }
.intro__trigger { position: relative; z-index: 5; width: min(650px, 82vw); padding: 40px; border: 0; background: transparent; cursor: pointer; }
.intro__trigger img { width: 100%; filter: invert(1); }
.intro__trigger span { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 30px; color: rgba(255,255,255,.55); font: 10px var(--mono); letter-spacing: .18em; }
.intro__trigger span i { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 8px rgba(201,247,95,.1), 0 0 30px var(--lime); }
.intro__scene { position: absolute; inset: 0; display: none; place-items: center; transform-style: preserve-3d; }
.intro__scene > p { position: absolute; bottom: 12%; margin: 0; font: 700 clamp(28px, 5vw, 64px) var(--sans); letter-spacing: .12em; opacity: 0; }
.intro__scene > p b { display: block; margin-top: 7px; color: var(--lime); font: 9px var(--mono); text-align: center; letter-spacing: .35em; }
.intro__cube { position: relative; width: 190px; height: 190px; transform-style: preserve-3d; }
.intro__cube i { position: absolute; inset: 0; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); background: repeating-linear-gradient(0deg, rgba(255,91,53,.6) 0 2px, rgba(17,17,17,.86) 2px 18px); color: #fff; font: normal 800 14px var(--mono); letter-spacing: .15em; backface-visibility: hidden; }
.intro__cube i:nth-child(1) { transform: translateZ(95px); }
.intro__cube i:nth-child(2) { transform: rotateY(180deg) translateZ(95px); }
.intro__cube i:nth-child(3) { transform: rotateY(90deg) translateZ(95px); }
.intro__cube i:nth-child(4) { transform: rotateY(-90deg) translateZ(95px); }
.intro__cube i:nth-child(5) { transform: rotateX(90deg) translateZ(95px); }
.intro__cube i:nth-child(6) { transform: rotateX(-90deg) translateZ(95px); }
.intro__orbit { position: absolute; width: 500px; height: 500px; border: 1px solid rgba(201,247,95,.24); border-radius: 50%; }
.intro__orbit--a { transform: rotateX(70deg) rotateZ(20deg); }
.intro__orbit--b { transform: rotateY(70deg) rotateZ(-20deg); border-style: dashed; border-color: rgba(255,91,53,.32); }
.intro__skip { position: absolute; right: var(--pad); bottom: 5vh; z-index: 6; border: 0; background: transparent; color: rgba(255,255,255,.4); font: 9px var(--mono); letter-spacing: .16em; cursor: pointer; }
.intro.is-running .intro__trigger { animation: introTrigger .5s cubic-bezier(.7,0,1,.4) forwards; pointer-events: none; }
.intro.is-running .intro__scene { display: grid; animation: sceneIn 2.5s cubic-bezier(.15,.8,.25,1) both; }
.intro.is-running .intro__cube { animation: cubeRun 2.5s cubic-bezier(.2,.8,.2,1) both; }
.intro.is-running .intro__scene > p { animation: rise .5s 1.35s forwards; }
.intro.is-running .intro__skip { opacity: 0; }
.intro.is-leaving { animation: introLeave .7s cubic-bezier(.76,0,.24,1) forwards; pointer-events: none; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 80; height: 78px; padding: 0 var(--pad); display: grid; grid-template-columns: 180px auto 1fr; align-items: center; gap: 26px; border-bottom: 1px solid var(--line); background: rgba(242,239,231,.9); backdrop-filter: blur(18px); }
.logo { width: 150px; height: 48px; overflow: hidden; }
.logo img { width: 150px; height: 61px; object-fit: contain; object-position: left center; }
.header-status { display: flex; align-items: center; gap: 8px; padding: 8px 11px; width: max-content; border: 1px solid var(--line); font: 9px var(--mono); letter-spacing: .08em; }
.header-status i, .contact__status i { width: 7px; height: 7px; border-radius: 50%; background: #76a91e; box-shadow: 0 0 0 4px rgba(118,169,30,.12); }
.header-status.is-closed i, .contact__status.is-closed i { background: var(--signal); box-shadow: 0 0 0 4px rgba(255,91,53,.12); }
.site-nav { justify-self: end; display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); font-size: 12px; }
.site-nav > a:not(.nav-action) { position: relative; color: #68655f; }
.site-nav > a:not(.nav-action)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; background: var(--signal); transition: right .2s; }
.site-nav > a:hover::after, .site-nav > a.is-active::after { right: 0; }
.site-nav > a.is-active { color: var(--ink); font-weight: 700; }
.nav-action { padding: 12px 15px; border: 1px solid var(--ink); background: var(--ink); color: var(--white); }
.menu-button { display: none; }

.hero { min-height: 100svh; padding: 132px var(--pad) 54px; display: grid; grid-template-columns: 1fr .95fr; gap: clamp(36px, 6vw, 100px); align-items: center; }
.kicker { display: flex; align-items: center; gap: 13px; margin: 0; color: var(--muted); font: 700 10px var(--mono); letter-spacing: .16em; }
.kicker span { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid currentColor; border-radius: 50%; letter-spacing: 0; }
.kicker--light { color: rgba(255,255,255,.56); }
.hero h1 { margin: 26px 0; font-size: clamp(72px, 9vw, 154px); line-height: .75; letter-spacing: -.075em; }
.hero h1 span { display: block; }
.hero h1 .accent { color: transparent; -webkit-text-stroke: 2px var(--signal); }
.hero__lead { max-width: 620px; margin: 36px 0 0; color: #65625c; font-size: clamp(15px, 1.25vw, 19px); line-height: 1.9; }
.hero__actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.button { display: inline-flex; justify-content: space-between; align-items: center; gap: 40px; min-width: 210px; padding: 16px 18px; border: 1px solid currentColor; font-size: 12px; font-weight: 750; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-3px); }
.button--dark { background: var(--ink); color: var(--white); }
.button--signal { background: var(--signal); color: var(--white); border-color: var(--signal); }
.text-action { padding-bottom: 8px; border-bottom: 1px solid var(--line); color: #66635d; font-size: 12px; }
.hero__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 700px; margin: 52px 0 0; border-top: 1px solid var(--line); }
.hero__facts div { padding: 17px 12px 0 0; }
.hero__facts dt { color: #96928a; font: 9px var(--mono); letter-spacing: .12em; }
.hero__facts dd { margin: 8px 0 0; font-size: 12px; }
.hero__media { position: relative; margin: 0; justify-self: end; width: min(45vw, 700px); aspect-ratio: .94; overflow: hidden; background: var(--ink); transform-style: preserve-3d; transition: transform .16s ease-out; }
.hero__media > img { width: 100%; height: 100%; object-fit: cover; object-position: 66% center; }
.hero__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); pointer-events: none; }
.hero__media figcaption { position: absolute; inset: auto 0 0; padding: 16px 18px; display: flex; justify-content: space-between; background: rgba(17,17,17,.84); color: rgba(255,255,255,.62); font: 9px var(--mono); letter-spacing: .12em; backdrop-filter: blur(12px); }
.hero__media figcaption b { color: var(--lime); }
.media-tag { position: absolute; padding: 8px 10px; border: 1px solid rgba(255,255,255,.36); background: rgba(17,17,17,.78); color: #fff; font: 9px var(--mono); letter-spacing: .1em; }
.media-tag--a { left: 5%; top: 12%; }.media-tag--b { right: 5%; top: 36%; }.media-tag--c { left: 8%; bottom: 17%; }

.ticker { overflow: hidden; border-block: 1px solid var(--ink); background: var(--lime); }
.ticker div { width: max-content; padding: 17px 0; display: flex; align-items: center; gap: 28px; font: 800 13px var(--mono); letter-spacing: .1em; animation: ticker 22s linear infinite; }
.ticker i { color: var(--signal); font-style: normal; }

.section { padding: 120px var(--pad) 130px; }
.section-heading { display: grid; grid-template-columns: .75fr 1.5fr .75fr; gap: 50px; align-items: end; margin-bottom: 72px; }
.section-heading h2 { margin: 0; font-size: clamp(48px, 6vw, 94px); line-height: .98; letter-spacing: -.065em; }
.section-heading h2 em { color: var(--purple); font-style: normal; }
.section-heading > p:last-child { margin: 0 0 7px; color: #6c6963; font-size: 13px; line-height: 1.75; }
.service-list { border-top: 1px solid var(--line); }
.service-card { min-height: 160px; display: grid; grid-template-columns: .35fr 1fr 1.4fr 46px; gap: 28px; align-items: center; border-bottom: 1px solid var(--line); transition: padding .2s, background .2s; }
.service-card:hover { padding-inline: 20px; background: var(--white); }
.service-card__number { color: #98958e; font: 11px var(--mono); }
.service-card__tag { margin: 0 0 9px; color: #8c8982; font: 9px var(--mono); letter-spacing: .14em; }
.service-card h3 { margin: 0; font-size: clamp(25px, 2.3vw, 36px); letter-spacing: -.03em; }
.service-card > p { color: #66635d; font-size: 13px; line-height: 1.75; }
.service-card > a { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; }
.service-card--signal > a { background: var(--signal); border-color: var(--signal); color: var(--white); }

.print-feature { min-height: 790px; display: grid; grid-template-columns: 1.05fr .95fr; background: var(--ink); color: var(--white); }
.print-feature__image { min-height: 620px; overflow: hidden; }
.print-feature__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.print-feature__copy { padding: 90px var(--pad); align-self: center; }
.print-feature h2 { margin: 28px 0; font-size: clamp(48px, 5.8vw, 88px); line-height: .98; letter-spacing: -.065em; }
.print-feature h2 em { color: var(--lime); font-style: normal; }
.print-feature__copy > p:not(.kicker) { max-width: 580px; color: #aaa8a3; font-size: 15px; line-height: 1.85; }
.print-feature ul { margin: 36px 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); list-style: none; }
.print-feature li { display: flex; gap: 22px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.16); color: #d0cec8; font-size: 12px; }
.print-feature li span { color: var(--signal); font: 10px var(--mono); }

.process { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; }
.process-grid li { min-height: 260px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid li > span { color: #95928a; font: 10px var(--mono); }
.process-grid h3 { margin: 76px 0 14px; font-size: 25px; }
.process-grid p { color: #69665f; font-size: 12px; line-height: 1.7; }

.contact { min-height: 82vh; padding: 110px var(--pad) 70px; display: flex; flex-direction: column; justify-content: center; background: var(--purple); color: var(--white); }
.contact__status { width: max-content; margin-bottom: 34px; padding: 9px 12px; display: flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.25); font: 9px var(--mono); letter-spacing: .1em; }
.contact .kicker { color: rgba(255,255,255,.6); }
.contact h2 { margin: 35px 0 70px; font-size: clamp(70px, 10vw, 155px); line-height: .84; letter-spacing: -.075em; }
.contact h2 em { color: var(--lime); font-style: normal; }
.contact__row { padding-top: 26px; display: grid; grid-template-columns: 1.5fr .5fr; gap: 70px; align-items: end; border-top: 1px solid rgba(255,255,255,.27); }
.contact__row a { width: max-content; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.5); font-size: clamp(18px, 2vw, 30px); font-weight: 750; }
.contact__row a span { margin-left: 50px; color: var(--lime); }
.contact__row p { max-width: 480px; margin: 0; color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.75; }

.site-footer { min-height: 170px; padding: 42px var(--pad); display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 30px; background: var(--ink); color: #85837e; }
.site-footer img { width: 145px; filter: invert(1); opacity: .78; }
.site-footer p, .site-footer > span { margin: 0; font: 9px var(--mono); letter-spacing: .12em; }

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

@keyframes introTrigger { 70% { transform: scale(.08); opacity: .8; } 100% { transform: scale(2); opacity: 0; filter: blur(20px); } }
@keyframes sceneIn { 0% { opacity: 0; transform: translateZ(-700px); } 25% { opacity: 1; } 100% { transform: translateZ(150px); } }
@keyframes cubeRun { 0% { transform: rotateX(-150deg) rotateY(-160deg) scale(.03); } 65% { transform: rotateX(-18deg) rotateY(34deg) scale(1); } 100% { transform: rotateX(18deg) rotateY(145deg) scale(1.12); } }
@keyframes rise { to { opacity: 1; transform: translateY(-10px); } }
@keyframes introLeave { to { opacity: 0; transform: scale(1.18); filter: blur(16px); } }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro { display: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto auto; padding-inline: 22px; }
  .header-status { justify-self: end; }
  .menu-button { width: 42px; height: 42px; padding: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--line); background: transparent; }
  .menu-button i { width: 18px; height: 1px; background: var(--ink); transition: transform .2s; }
  .menu-open .menu-button i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-button i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: absolute; top: 78px; left: 14px; right: 14px; display: none; padding: 12px; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--line); background: rgba(242,239,231,.98); box-shadow: 0 20px 60px rgba(17,17,17,.16); }
  .menu-open .site-nav { display: flex; }
  .site-nav > a:not(.nav-action) { padding: 15px 12px; border-bottom: 1px solid var(--line); }
  .site-nav > a:not(.nav-action)::after { display: none; }
  .nav-action { margin-top: 9px; }
  .hero { grid-template-columns: 1fr; padding: 130px 22px 60px; }
  .hero__media { width: min(92vw, 700px); margin-top: 20px; justify-self: center; }
  .section { padding: 90px 22px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .section-heading > p:last-child { max-width: 620px; }
  .print-feature { grid-template-columns: 1fr; }
  .print-feature__image { max-height: 660px; }
  .print-feature__copy { padding: 80px 22px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact { padding: 100px 22px 60px; }
  .contact__row { grid-template-columns: 1fr; gap: 45px; }
  .site-footer { padding-inline: 22px; grid-template-columns: 1fr auto; }
  .site-footer p { display: none; }
}
@media (max-width: 620px) {
  .logo, .logo img { width: 120px; }
  .header-status { display: none; }
  .hero h1 { font-size: clamp(66px, 23vw, 100px); }
  .hero__facts { grid-template-columns: 1fr; }
  .hero__facts div { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
  .hero__media { aspect-ratio: .82; }
  .hero__media > img { object-position: 70% center; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .service-card { grid-template-columns: 44px 1fr 44px; padding: 24px 0; gap: 14px; }
  .service-card > p { grid-column: 2 / 4; margin: 0; }
  .service-card:hover { padding-inline: 10px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 210px; }
  .process-grid h3 { margin-top: 55px; }
  .contact h2 { font-size: clamp(68px, 22vw, 105px); }
  .contact__row a { font-size: 16px; }
  .contact__row a span { margin-left: 20px; }
  .site-footer { grid-template-columns: 1fr; }
  .intro__orbit { width: 320px; height: 320px; }
  .intro__cube { width: 140px; height: 140px; }
  .intro__cube i:nth-child(1) { transform: translateZ(70px); }.intro__cube i:nth-child(2) { transform: rotateY(180deg) translateZ(70px); }.intro__cube i:nth-child(3) { transform: rotateY(90deg) translateZ(70px); }.intro__cube i:nth-child(4) { transform: rotateY(-90deg) translateZ(70px); }.intro__cube i:nth-child(5) { transform: rotateX(90deg) translateZ(70px); }.intro__cube i:nth-child(6) { transform: rotateX(-90deg) translateZ(70px); }
}

/* Native product catalog */
.catalog-hero { min-height: 100svh; padding: 132px var(--pad) 58px; display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(40px, 7vw, 110px); align-items: center; background: var(--ink); color: var(--white); }
.catalog-hero__copy h1 { margin: 28px 0; font-size: clamp(78px, 9vw, 150px); line-height: .78; letter-spacing: -.075em; }
.catalog-hero__copy h1 em { color: transparent; -webkit-text-stroke: 2px var(--signal); font-style: normal; }
.catalog-hero__copy > p:not(.kicker) { max-width: 590px; color: #aaa8a2; font-size: 16px; line-height: 1.9; }
.catalog-link { padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.35); color: #d0cec7; font-size: 12px; }
.catalog-hero__facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 52px 0 0; border-top: 1px solid rgba(255,255,255,.16); }
.catalog-hero__facts div { padding: 16px 10px 0 0; }
.catalog-hero__facts dt { color: #75736e; font: 9px var(--mono); letter-spacing: .12em; }
.catalog-hero__facts dd { margin: 8px 0 0; color: #dbd9d2; font-size: 11px; }
.catalog-hero__image { position: relative; width: min(50vw, 780px); aspect-ratio: 1.18; margin: 0; justify-self: end; overflow: hidden; }
.catalog-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.catalog-hero__image figcaption { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; padding: 16px 18px; background: rgba(17,17,17,.85); color: #84827c; font: 9px var(--mono); letter-spacing: .13em; }
.catalog-hero__image figcaption b { color: var(--lime); }

.catalog { background: var(--paper); }
.catalog__heading { display: grid; grid-template-columns: 1fr .55fr; gap: 8vw; align-items: end; }
.catalog__heading h2 { margin: 26px 0 0; font-size: clamp(50px, 6vw, 96px); line-height: .98; letter-spacing: -.065em; }
.catalog__heading > p { margin: 0 0 8px; color: #68655f; font-size: 13px; line-height: 1.8; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 65px 0 28px; }
.filters button { padding: 11px 14px; display: flex; align-items: center; gap: 20px; border: 1px solid var(--line); border-radius: 99px; background: transparent; color: #696660; font-size: 11px; cursor: pointer; transition: background .2s, color .2s; }
.filters button span { color: #a09d95; font: 9px var(--mono); }
.filters button.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.filters button.is-active span { color: var(--lime); }

.native-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.native-product-card { min-width: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.native-product-card[hidden] { display: none !important; }
.native-product-card figure { position: relative; height: 300px; margin: 0; overflow: hidden; background: #242424; }
.native-product-card figure img { width: 100%; height: 100%; object-fit: cover; object-position: 34% center; transform: scale(1.25); transition: transform .45s ease; }
.native-product-card:hover figure img { transform: scale(1.31); }
.native-product-card figure.crop-left img { object-position: 1% 76%; transform: scale(1.45); }
.native-product-card figure.crop-right img { object-position: 93% 24%; transform: scale(1.35); }
.native-product-card figure.crop-keyboard img { object-position: 78% 85%; transform: scale(1.37); }
.native-product-card figure.crop-nameplate img { object-position: 35% 88%; transform: scale(1.5); }
.native-product-card figure.crop-gear img { object-position: 58% 91%; transform: scale(1.75); }
.native-product-card figure span { position: absolute; left: 14px; top: 14px; padding: 8px 9px; background: rgba(17,17,17,.82); color: var(--white); font: 9px var(--mono); letter-spacing: .12em; }
.native-product-card__body { padding: 25px; }
.native-product-card h3 { margin: 0 0 14px; font-size: 27px; letter-spacing: -.035em; }
.native-product-card__body > p { min-height: 66px; margin: 0; color: #68655f; font-size: 12px; line-height: 1.75; }
.native-product-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0; padding: 0; list-style: none; }
.native-product-card li { padding: 7px 9px; background: var(--paper); color: #5f5c56; font-size: 9px; }
.native-product-card__body > a { padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 11px; font-weight: 750; }
.catalog__empty { padding: 80px 20px; border: 1px solid var(--line); text-align: center; color: var(--muted); }

.materials { padding: 110px var(--pad) 120px; background: var(--lime); }
.materials__intro { display: grid; grid-template-columns: .65fr 1.35fr; gap: 60px; align-items: end; }
.materials__intro .kicker { color: #42501e; }
.materials__intro h2 { margin: 0; font-size: clamp(50px, 6vw, 94px); line-height: .98; letter-spacing: -.065em; }
.materials__intro h2 em { font-style: normal; text-decoration: underline; text-decoration-thickness: .13em; text-underline-offset: .08em; text-decoration-color: var(--signal); }
.material-list { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 75px; border-top: 1px solid rgba(17,17,17,.28); border-left: 1px solid rgba(17,17,17,.28); }
.material-list article { min-height: 265px; padding: 26px; border-right: 1px solid rgba(17,17,17,.28); border-bottom: 1px solid rgba(17,17,17,.28); }
.material-list article > span { color: #4f5c2b; font: 10px var(--mono); letter-spacing: .14em; }
.material-list h3 { margin: 76px 0 14px; font-size: 26px; }
.material-list p { margin: 0; max-width: 340px; font-size: 12px; line-height: 1.75; }
.order { background: var(--white); }
.product-contact { background: var(--signal); }
.product-contact h2 em { color: var(--ink); }
.product-contact .contact__row a span { color: var(--ink); }

@media (max-width: 980px) {
  .catalog-hero { grid-template-columns: 1fr; padding: 132px 22px 75px; }
  .catalog-hero__image { width: min(92vw, 780px); justify-self: center; }
  .catalog__heading, .materials__intro { grid-template-columns: 1fr; gap: 28px; }
  .catalog__heading > p { max-width: 650px; }
  .native-product-grid { grid-template-columns: repeat(2, 1fr); }
  .materials { padding: 90px 22px; }
  .material-list { grid-template-columns: 1fr; }
  .material-list article { min-height: 220px; }
  .material-list h3 { margin-top: 55px; }
}
@media (max-width: 620px) {
  .catalog-hero__copy h1 { font-size: clamp(72px, 23vw, 110px); }
  .catalog-hero__facts { grid-template-columns: 1fr; }
  .catalog-hero__facts div { padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .catalog-hero__image { aspect-ratio: .86; }
  .catalog-hero__image img { object-position: 68% center; }
  .filters { margin-top: 45px; }
  .native-product-grid { grid-template-columns: 1fr; }
  .native-product-card figure { height: 270px; }
  .materials__intro h2 { font-size: clamp(48px, 15vw, 76px); }
}

