:root {
  --red: #c6121b;
  --red-deep: #930d14;
  --red-bright: #e3212b;
  --ink: #16181c;
  --ink-soft: #23262c;
  --graphite: #30343a;
  --steel: #7f8791;
  --muted: #6f747d;
  --line: #e2e2df;
  --paper: #f5f4f0;
  --paper-2: #eceae4;
  --white: #fff;
  --shadow: 0 24px 70px rgba(17, 19, 23, .13);
  --container: 1240px;
  --header-height: 86px;
  --ease: cubic-bezier(.2,.75,.25,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
::selection { color: #fff; background: var(--red); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 132px 0; }
.skip-link { position: fixed; z-index: 1000; top: 10px; right: 10px; padding: 10px 16px; color: #fff; background: #000; transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: none; }

.topbar { position: relative; z-index: 55; color: rgba(255,255,255,.8); background: #101216; font-size: 12px; }
.topbar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar p { display: flex; align-items: center; gap: 8px; margin: 0; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #4bd87f; box-shadow: 0 0 0 5px rgba(75,216,127,.1); }
.topbar__links { display: flex; align-items: center; gap: 12px; direction: ltr; }
.topbar__links span { width: 1px; height: 12px; background: rgba(255,255,255,.18); }
.topbar a { transition: color .25s; }
.topbar a:hover { color: #fff; }

.site-header { position: sticky; z-index: 50; top: 0; background: rgba(245,244,240,.9); border-bottom: 1px solid rgba(22,24,28,.08); backdrop-filter: blur(18px); transition: box-shadow .3s, background .3s; }
.site-header.is-scrolled { background: rgba(255,255,255,.95); box-shadow: 0 12px 30px rgba(20,22,26,.08); }
.header__inner { min-height: var(--header-height); display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 34px; }
.brand { position: relative; display: inline-flex; align-items: center; width: fit-content; min-height: 52px; }
.brand > img { width: 178px; height: auto; }
.brand__fallback { display: none; align-items: center; gap: 9px; direction: ltr; font-family: Arial, sans-serif; }
.brand__fallback.is-visible { display: inline-flex; }
.brand__fallback.is-visible + * { display: none; }
.brand__mark { display: grid; place-items: center; width: 38px; height: 38px; color: #fff; background: var(--red); clip-path: polygon(50% 0,100% 20%,87% 80%,50% 100%,13% 80%,0 20%); font-weight: 800; }
.brand__fallback b { display: block; font-size: 18px; letter-spacing: 1.5px; line-height: 1; }
.brand__fallback small { display: block; margin-top: 4px; color: var(--muted); font-size: 7px; letter-spacing: .6px; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2vw, 34px); }
.desktop-nav a { position: relative; padding: 31px 0 25px; color: #40434a; font-size: 13px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 20px; width: 0; height: 2px; background: var(--red); transition: width .3s var(--ease); }
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { width: 100%; }
.header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.icon-button { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(22,24,28,.12); transition: color .25s, border-color .25s, background .25s; }
.icon-button:hover { color: #fff; background: var(--ink); border-color: var(--ink); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 22px; border: 1px solid transparent; cursor: pointer; font-size: 13px; font-weight: 700; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--red); box-shadow: 0 10px 30px rgba(198,18,27,.2); }
.button--primary:hover { background: var(--red-deep); box-shadow: 0 14px 35px rgba(147,13,20,.28); }
.button--primary svg, .text-link svg, .round-link svg, .journal-card small svg, .journal-row > svg { transform: scaleX(-1); }
.button--large { min-height: 58px; padding-inline: 28px; }
.button--ghost { border-color: rgba(22,24,28,.14); background: rgba(255,255,255,.45); }
.button--ghost:hover { background: #fff; border-color: rgba(22,24,28,.3); }
.button--outline { border-color: rgba(22,24,28,.22); }
.button--outline:hover { color: #fff; background: var(--ink); border-color: var(--ink); }
.button--light { color: var(--ink); background: #fff; }
.button--light:hover { background: var(--paper-2); }
.button--dark { color: #fff; background: var(--ink); }
.button--dark:hover { background: #000; }
.button--transparent { color: #fff; border-color: rgba(255,255,255,.35); background: transparent; }
.button--transparent:hover { color: var(--ink); background: #fff; border-color: #fff; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0 12px; border: 1px solid rgba(22,24,28,.12); background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .25s, opacity .25s; }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { padding: 16px 20px 24px; background: #fff; border-top: 1px solid var(--line); }
.mobile-menu nav { display: grid; }
.mobile-menu nav > a:not(.button) { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 600; }
.mobile-menu .button { margin-top: 18px; }

.hero { position: relative; min-height: calc(100svh - 120px); overflow: hidden; background: var(--paper); }
.hero::before { content: ""; position: absolute; top: -80px; right: 8%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(198,18,27,.08), transparent 68%); pointer-events: none; }
.hero__grid-pattern { position: absolute; inset: 0; opacity: .38; background-image: linear-gradient(rgba(22,24,28,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(22,24,28,.035) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to left, #000, transparent 72%); }
.hero__rail { position: absolute; z-index: 1; top: 0; bottom: 0; left: 0; width: 44px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 48px 0; color: rgba(22,24,28,.4); border-right: 1px solid rgba(22,24,28,.08); font: 700 9px/1 Arial,sans-serif; letter-spacing: 2px; writing-mode: vertical-rl; }
.hero__container { position: relative; z-index: 2; min-height: calc(100svh - 120px); display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: clamp(40px, 6vw, 90px); padding-block: 70px 95px; }
.hero__content { position: relative; z-index: 3; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: -.1px; }
.eyebrow > span { width: 38px; height: 2px; background: currentColor; }
.hero-slides { position: relative; min-height: 294px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateY(18px); transition: opacity .55s var(--ease), transform .55s var(--ease), visibility .55s; }
.hero-slide.is-active { position: relative; opacity: 1; visibility: visible; transform: none; }
.hero__kicker { margin: 0 0 8px; color: var(--muted); font-size: 15px; }
.hero h1, .hero h2 { margin: 0; font-size: clamp(42px, 5.1vw, 74px); line-height: 1.27; letter-spacing: -3.8px; font-weight: 900; }
.hero h1 em, .hero h2 em, .section-heading h2 em, .feature-content h2 em, .about-copy h2 em, .industrial-copy h2 em, .cooperation-card h2 em { color: var(--red); font-style: normal; }
.hero__lead { max-width: 590px; margin: 24px 0 0; color: #555b63; font-size: 16px; line-height: 2; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.play-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: #fff; background: var(--ink); }
.play-icon svg { width: 13px; fill: currentColor; stroke: none; }
.hero__meta { display: flex; align-items: center; gap: 28px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(22,24,28,.12); }
.hero__meta div { display: grid; grid-template-columns: auto auto; align-items: end; gap: 8px; }
.hero__meta strong { font: 800 28px/1 Arial,sans-serif; letter-spacing: -1px; }
.hero__meta span { max-width: 54px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.hero__visual { position: relative; min-width: 0; }
.hero-media { position: relative; height: min(680px, 66vw); min-height: 555px; max-height: 720px; }
.hero-media__red-panel { position: absolute; z-index: 0; top: 4%; right: 11%; width: 69%; height: 78%; background: linear-gradient(140deg, var(--red-bright), var(--red-deep)); clip-path: polygon(8% 0,100% 0,100% 92%,84% 100%,0 100%,0 13%); box-shadow: 0 35px 80px rgba(147,13,20,.25); }
.hero-media__red-panel::before { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(255,255,255,.18); clip-path: inherit; }
.hero-media__image-wrap { position: absolute; z-index: 1; top: 11%; right: 0; width: 68%; height: 72%; overflow: hidden; background: #d9d9d7; box-shadow: var(--shadow); clip-path: polygon(0 0,100% 0,100% 100%,13% 100%,0 87%); }
.hero-media__image { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s, transform 1s var(--ease); }
.hero-media:hover .hero-media__image { transform: scale(1.03); }
.hero-media__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,11,13,.68), transparent 52%); }
.hero-media__label { position: absolute; right: 28px; bottom: 26px; color: #fff; }
.hero-media__label span { display: block; margin-bottom: 3px; color: rgba(255,255,255,.7); font-size: 10px; }
.hero-media__label b { font-size: 16px; }
.product-orbit { position: absolute; z-index: 3; left: 2%; bottom: 2%; width: 46%; min-width: 260px; padding: 18px 18px 16px; background: rgba(255,255,255,.97); box-shadow: 0 25px 65px rgba(22,24,28,.2); transition: transform .5s var(--ease); }
.product-orbit:hover { transform: translateY(-7px); }
.product-orbit::before { content: ""; position: absolute; top: -8px; right: 22px; width: 58px; height: 8px; background: var(--red); }
.product-orbit__tag { position: absolute; z-index: 2; top: 18px; right: 18px; padding: 5px 9px; color: #fff; background: var(--ink); font-size: 9px; font-weight: 700; }
.product-orbit img { width: 100%; aspect-ratio: 1.2; object-fit: contain; background: #fff; mix-blend-mode: multiply; transition: opacity .3s; }
.product-orbit__caption { display: grid; gap: 2px; padding-top: 12px; border-top: 1px solid var(--line); }
.product-orbit__caption strong { font-size: 14px; }
.product-orbit__caption span { color: var(--muted); font-size: 10px; }
.quality-badge { position: absolute; z-index: 4; top: 8%; left: 2%; display: flex; align-items: center; gap: 10px; padding: 12px 14px; color: #fff; background: var(--ink); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.quality-badge svg { width: 26px; height: 26px; color: var(--red-bright); }
.quality-badge span { display: grid; line-height: 1.3; }
.quality-badge b { font-size: 10px; }
.quality-badge small { color: rgba(255,255,255,.58); font-size: 8px; }
.hero-pagination { position: absolute; z-index: 5; bottom: 5%; right: 1%; display: flex; align-items: center; gap: 8px; direction: ltr; }
.hero-pagination button { position: relative; width: 48px; height: 38px; padding: 0; color: var(--muted); border: 0; background: transparent; cursor: pointer; font: 700 10px/1 Arial,sans-serif; }
.hero-pagination button::after { content: ""; position: absolute; right: 0; bottom: 6px; left: 0; height: 2px; background: rgba(22,24,28,.13); }
.hero-pagination button::before { content: ""; position: absolute; z-index: 1; right: 0; bottom: 6px; width: 0; height: 2px; background: var(--red); transition: width .35s; }
.hero-pagination button.is-active { color: var(--ink); }
.hero-pagination button.is-active::before { width: 100%; }
.scroll-cue { position: absolute; z-index: 4; right: 50%; bottom: 18px; display: flex; align-items: center; gap: 10px; transform: translateX(50%); color: var(--muted); font-size: 9px; letter-spacing: .5px; }
.scroll-cue i { position: relative; width: 1px; height: 34px; overflow: hidden; background: rgba(22,24,28,.15); }
.scroll-cue i::after { content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--red); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0%{top:-100%} 60%,100%{top:100%} }

.trust-strip { position: relative; z-index: 3; color: #fff; background: var(--ink); }
.trust-strip__inner { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-strip article { min-height: 132px; display: flex; align-items: center; gap: 16px; padding: 24px 28px; border-left: 1px solid rgba(255,255,255,.1); }
.trust-strip article:first-child { border-right: 1px solid rgba(255,255,255,.1); }
.trust-strip svg { width: 34px; height: 34px; flex: 0 0 auto; color: var(--red-bright); }
.trust-strip article div { display: grid; }
.trust-strip strong { font-size: 14px; }
.trust-strip span { color: rgba(255,255,255,.52); font-size: 10px; }

.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 60px; margin-bottom: 58px; }
.section-index { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--red); font: 700 10px/1.2 Arial,Tahoma,sans-serif; letter-spacing: 1px; }
.section-index::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section-index--light { color: rgba(255,255,255,.65); }
.section-heading h2, .feature-content h2, .about-copy h2, .industrial-copy h2, .cooperation-card h2 { margin: 0; font-size: clamp(34px, 4vw, 56px); line-height: 1.38; letter-spacing: -2.5px; font-weight: 900; }
.section-heading__aside { max-width: 460px; justify-self: end; }
.section-heading__aside p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: 12px; font-weight: 800; }
.text-link svg { width: 16px; transition: transform .25s; }
.text-link:hover svg { transform: scaleX(-1) translateX(-5px); }
.text-link--light { color: #fff; }

.products-section { background: var(--paper); }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product-card { position: relative; min-width: 0; background: #fff; border: 1px solid rgba(22,24,28,.08); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.product-card:hover { z-index: 2; transform: translateY(-8px); border-color: transparent; box-shadow: var(--shadow); }
.product-card--featured { grid-column: span 2; }
.product-card__media { position: relative; height: 355px; display: block; overflow: hidden; background: #efefed; }
.product-card--featured .product-card__media { height: 420px; }
.product-card__media::after { content: ""; position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(to top, rgba(17,19,23,.12), transparent); opacity: 0; transition: opacity .35s; }
.product-card:hover .product-card__media::after { opacity: 1; }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .65s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.045); }
.product-card__number { position: absolute; z-index: 2; top: 22px; left: 22px; color: rgba(22,24,28,.3); font: 700 11px/1 Arial,sans-serif; }
.product-card__badge { position: absolute; z-index: 2; top: 20px; right: 20px; padding: 6px 10px; color: #fff; background: var(--red); font-size: 9px; font-weight: 700; }
.product-card__badge--dark { background: var(--ink); }
.product-card__body { min-height: 160px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 18px; padding: 25px 26px 28px; }
.product-card__brand { color: var(--red); font: 800 9px/1 Arial,sans-serif; letter-spacing: 1.4px; }
.product-card h3 { margin: 7px 0 7px; font-size: 18px; line-height: 1.5; }
.product-card p { max-width: 450px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.8; }
.round-link { display: grid; place-items: center; width: 44px; height: 44px; color: var(--ink); border: 1px solid var(--line); transition: color .25s, background .25s, border-color .25s; }
.round-link:hover { color: #fff; background: var(--red); border-color: var(--red); }

.brand-families { padding: 24px 0; background: #fff; border-block: 1px solid var(--line); overflow: hidden; }
.brand-families__track { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; direction: ltr; white-space: nowrap; }
.brand-families__track > span { color: var(--muted); font-size: 10px; direction: rtl; }
.brand-families__track strong { color: #a4a7ac; font: 800 clamp(16px,2vw,25px)/1 Arial,sans-serif; letter-spacing: 1.5px; transition: color .25s; }
.brand-families__track strong:hover { color: var(--ink); }
.brand-families__track i { width: 5px; height: 5px; border-radius: 50%; background: var(--red); }

.feature-section { position: relative; color: #fff; background: var(--red-deep); overflow: hidden; }
.feature-section::before { content: "YANARSOO"; position: absolute; left: -60px; bottom: -44px; color: rgba(255,255,255,.035); font: 900 160px/1 Arial,sans-serif; letter-spacing: -8px; }
.feature-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(45px,7vw,100px); }
.feature-visual { position: relative; min-height: 650px; }
.feature-visual__frame { position: absolute; inset: 0 12% 6% 0; overflow: hidden; background: #fff; box-shadow: 0 32px 80px rgba(50,0,4,.3); }
.feature-visual__frame::before { content: ""; position: absolute; z-index: 1; inset: 20px; border: 1px solid rgba(198,18,27,.15); pointer-events: none; }
.feature-visual__frame img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.feature-visual__stamp { position: absolute; z-index: 2; left: 0; bottom: 0; width: 155px; height: 155px; display: grid; place-content: center; text-align: center; color: var(--ink); background: var(--paper); box-shadow: 0 20px 50px rgba(50,0,4,.25); transform: rotate(-6deg); }
.feature-visual__stamp::before { content: ""; position: absolute; inset: 10px; border: 1px dashed rgba(22,24,28,.35); border-radius: 50%; }
.feature-visual__stamp span, .feature-visual__stamp small { font: 700 8px/1.2 Arial,sans-serif; letter-spacing: 2px; }
.feature-visual__stamp b { margin: 4px 0; color: var(--red); font: 900 20px/1 Arial,sans-serif; }
.feature-visual__line { position: absolute; top: 7%; right: 5%; width: 1px; height: 30%; background: rgba(255,255,255,.35); }
.feature-visual__line::before { content: ""; position: absolute; top: 0; left: -4px; width: 9px; height: 9px; border: 2px solid #fff; border-radius: 50%; }
.feature-content h2 em { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.25); text-underline-offset: 9px; }
.feature-content > p { margin: 25px 0 30px; color: rgba(255,255,255,.7); font-size: 14px; line-height: 2; }
.feature-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.feature-list li { display: grid; grid-template-columns: 45px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.feature-list li > span { color: rgba(255,255,255,.45); font: 700 10px/1.8 Arial,sans-serif; }
.feature-list li div { display: grid; }
.feature-list strong { font-size: 13px; }
.feature-list small { margin-top: 3px; color: rgba(255,255,255,.55); font-size: 10px; }
.feature-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 30px; }

.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px 85px; }
.about-copy { align-self: center; }
.about-copy__lead { margin: 25px 0 14px; color: var(--ink) !important; font-size: 17px !important; font-weight: 700; }
.about-copy p { color: var(--muted); font-size: 13px; }
.about-copy .button { margin-top: 20px; }
.about-visual { position: relative; min-height: 540px; }
.about-visual__image { position: absolute; top: 0; right: 0; width: 86%; height: 86%; overflow: hidden; background: var(--paper-2); }
.about-visual__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; mix-blend-mode: multiply; }
.about-visual__card { position: absolute; z-index: 2; bottom: 0; left: 0; width: 58%; padding: 28px 30px; color: #fff; background: var(--ink); box-shadow: 0 25px 60px rgba(22,24,28,.22); }
.about-visual__card span { color: var(--red-bright); font-size: 9px; font-weight: 700; }
.about-visual__card strong { display: block; margin: 6px 0; font-size: 19px; }
.about-visual__card p { margin: 0; color: rgba(255,255,255,.58); font-size: 10px; }
.milestones { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4,1fr); margin-top: 10px; border-block: 1px solid var(--line); }
.milestones article { padding: 28px; border-left: 1px solid var(--line); }
.milestones article:last-child { border-left: 0; }
.milestones span { color: var(--red); font: 800 20px/1 Arial,Tahoma,sans-serif; }
.milestones strong { display: block; margin: 10px 0 5px; font-size: 13px; }
.milestones p { margin: 0; color: var(--muted); font-size: 10px; }

.industrial-section { position: relative; padding: 125px 0; color: #fff; overflow: hidden; background: var(--ink); }
.industrial-section__bg { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(120deg,rgba(255,255,255,.04) 1px,transparent 1px), linear-gradient(30deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size: 80px 80px; }
.industrial-section::before { content: ""; position: absolute; top: 0; right: 0; width: 42%; height: 100%; background: linear-gradient(150deg, rgba(198,18,27,.98), rgba(116,5,11,.9)); clip-path: polygon(26% 0,100% 0,100% 100%,0 100%); }
.industrial-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 90px; }
.industrial-copy h2 em { color: #fff; }
.industrial-copy > p { max-width: 560px; margin: 24px 0; color: rgba(255,255,255,.6); font-size: 13px; }
.industrial-stats { display: flex; gap: 42px; margin-top: 35px; }
.industrial-stats div { display: grid; }
.industrial-stats strong { font: 900 30px/1 Arial,sans-serif; }
.industrial-stats span { margin-top: 7px; color: rgba(255,255,255,.45); font-size: 9px; }
.industrial-cards { display: grid; gap: 12px; }
.industrial-cards article { display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 18px; padding: 22px 24px; background: rgba(255,255,255,.95); color: var(--ink); box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.industrial-card__icon { display: grid; place-items: center; width: 52px; height: 52px; color: #fff; background: var(--red); }
.industrial-card__icon svg { width: 25px; height: 25px; }
.industrial-cards strong { font-size: 13px; }
.industrial-cards p { margin: 3px 0 0; color: var(--muted); font-size: 10px; }

.journal-section { background: var(--paper); }
.journal-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 26px; }
.journal-card { display: grid; grid-template-columns: .95fr 1.05fr; min-height: 430px; background: #fff; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s; }
.journal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.journal-card__image { overflow: hidden; }
.journal-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.journal-card:hover img { transform: scale(1.04); }
.journal-card__body { display: flex; flex-direction: column; justify-content: center; padding: 38px; }
.journal-card__body > span { color: var(--red); font-size: 9px; font-weight: 800; }
.journal-card h3 { margin: 12px 0; font-size: 24px; line-height: 1.55; }
.journal-card p { margin: 0; color: var(--muted); font-size: 11px; }
.journal-card small { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-size: 10px; font-weight: 700; }
.journal-card small svg { width: 15px; }
.journal-list { display: grid; border-top: 1px solid var(--line); }
.journal-row { display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 18px; padding: 24px 8px; border-bottom: 1px solid var(--line); transition: padding .25s, background .25s; }
.journal-row:hover { padding-inline: 18px; background: #fff; }
.journal-row > span { color: rgba(22,24,28,.32); font: 700 10px/1 Arial,sans-serif; }
.journal-row small { color: var(--red); font-size: 8px; font-weight: 700; }
.journal-row h3 { margin: 4px 0 0; font-size: 15px; }
.journal-row > svg { width: 20px; color: var(--muted); }

.cooperation-section { padding: 0 0 120px; background: var(--paper); }
.cooperation-card { position: relative; min-height: 430px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; overflow: hidden; color: #fff; background: linear-gradient(125deg,var(--red-bright),var(--red-deep)); box-shadow: 0 35px 90px rgba(147,13,20,.24); }
.cooperation-card__pattern { position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle at center,rgba(255,255,255,.8) 1px,transparent 1.5px); background-size: 26px 26px; mask-image: linear-gradient(to right,transparent,#000); }
.cooperation-card__content { position: relative; z-index: 2; padding: 62px 70px; }
.cooperation-card__content > span { display: block; margin-bottom: 10px; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 700; }
.cooperation-card h2 { font-size: clamp(32px,3.5vw,50px); }
.cooperation-card h2 em { color: #fff; }
.cooperation-card p { max-width: 610px; margin: 20px 0 28px; color: rgba(255,255,255,.68); font-size: 12px; }
.cooperation-card__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cooperation-card__visual { position: relative; z-index: 1; align-self: stretch; display: grid; place-content: center; text-align: center; color: rgba(255,255,255,.98); border-right: 1px solid rgba(255,255,255,.16); }
.cooperation-card__visual::before, .cooperation-card__visual::after { content: ""; position: absolute; inset: 13%; border: 1px solid rgba(255,255,255,.15); transform: rotate(9deg); }
.cooperation-card__visual::after { inset: 24%; transform: rotate(-11deg); }
.cooperation-card__visual span { position: relative; z-index: 2; display: grid; place-items: center; width: 90px; height: 90px; margin: 0 auto 14px; color: var(--red); background: #fff; clip-path: polygon(50% 0,100% 20%,87% 80%,50% 100%,13% 80%,0 20%); font: 900 42px/1 Arial,sans-serif; }
.cooperation-card__visual b { position: relative; z-index: 2; font: 900 24px/1 Arial,sans-serif; letter-spacing: 3px; }
.cooperation-card__visual small { position: relative; z-index: 2; margin-top: 8px; font: 700 8px/1 Arial,sans-serif; letter-spacing: 4px; }

.site-footer { color: #fff; background: #111317; }
.footer__top { display: grid; grid-template-columns: 1.5fr .65fr .75fr 1.1fr; gap: 45px; padding: 75px 0 55px; }
.brand--footer > img { width: 220px; }
.brand__fallback--light b { color: #fff; }
.brand__fallback--light small { color: rgba(255,255,255,.4); }
.footer__brand p { max-width: 360px; margin: 20px 0 0; color: rgba(255,255,255,.46); font-size: 11px; }
.footer__column, .footer__contact { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer__top h3 { margin: 0 0 14px; color: rgba(255,255,255,.9); font-size: 12px; }
.footer__column a { color: rgba(255,255,255,.5); font-size: 10px; transition: color .25s, transform .25s; }
.footer__column a:hover { color: #fff; transform: translateX(-4px); }
.footer__contact a, .footer__contact p { width: 100%; margin: 0; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__contact span { display: block; color: rgba(255,255,255,.35); font-size: 8px; }
.footer__contact strong, .footer__contact p { color: rgba(255,255,255,.75); font-size: 10px; font-weight: 500; }
.footer__bottom { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.35); font-size: 9px; }
.footer__bottom p { margin: 0; }
.footer__bottom div { display: flex; gap: 22px; }
.footer__bottom a:hover { color: #fff; }

.floating-actions { position: fixed; z-index: 45; left: 18px; bottom: 18px; display: grid; gap: 8px; }
.floating-actions a { display: grid; place-items: center; width: 48px; height: 48px; color: #fff; background: var(--ink); box-shadow: 0 10px 25px rgba(0,0,0,.18); transition: transform .25s, background .25s; }
.floating-actions a:hover { transform: translateY(-4px); background: #000; }
.floating-actions .floating-actions__primary { background: var(--red); }
.floating-actions .floating-actions__primary:hover { background: var(--red-deep); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); transition-delay: var(--delay,0ms); }
.reveal.is-revealed { opacity: 1; transform: none; }
.image-error { opacity: 0; }

@media (max-width: 1100px) {
  :root { --container: 980px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header__inner { grid-template-columns: 1fr auto; }
  .header__actions { grid-column: 2; }
  .hero__container { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero h1, .hero h2 { font-size: clamp(40px,5vw,58px); }
  .hero-media { min-height: 520px; }
  .product-orbit { left: 0; width: 50%; }
  .trust-strip article { padding: 22px 18px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .feature-grid { gap: 50px; }
  .feature-visual { min-height: 560px; }
  .about-grid { gap: 55px; }
  .industrial-grid { gap: 55px; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-list { grid-template-columns: repeat(3,1fr); border-left: 1px solid var(--line); }
  .journal-row { grid-template-columns: 35px 1fr; align-content: center; }
  .journal-row > svg { display: none; }
  .footer__top { grid-template-columns: 1.2fr .7fr .7fr 1fr; gap: 30px; }
}

@media (max-width: 820px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 90px 0; }
  .topbar__inner { min-height: 32px; }
  .topbar__inner > p { display: none; }
  .topbar__links { width: 100%; justify-content: space-between; }
  .header__inner { min-height: 72px; }
  .brand > img { width: 150px; }
  .header__cta, .icon-button { display: none; }
  .hero { min-height: auto; }
  .hero__rail, .scroll-cue { display: none; }
  .hero__container { min-height: auto; grid-template-columns: 1fr; padding-block: 60px 75px; }
  .hero__content { order: 1; }
  .hero__visual { order: 2; }
  .hero-slides { min-height: 280px; }
  .hero h1, .hero h2 { font-size: clamp(42px,10vw,64px); }
  .hero__lead { font-size: 14px; }
  .hero-media { height: 610px; min-height: 0; max-height: none; }
  .hero-media__red-panel { right: 8%; width: 74%; }
  .hero-media__image-wrap { width: 75%; }
  .product-orbit { width: 47%; min-width: 235px; }
  .quality-badge { left: 0; }
  .hero-pagination { right: auto; left: 0; bottom: 0; }
  .trust-strip__inner { grid-template-columns: repeat(2,1fr); }
  .trust-strip article:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-strip article:nth-child(1) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .section-heading { grid-template-columns: 1fr; align-items: start; gap: 22px; }
  .section-heading__aside { justify-self: start; }
  .product-card--featured { grid-column: span 2; }
  .brand-families__track { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .brand-families__track::-webkit-scrollbar { display:none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-visual { min-height: 590px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 550px; }
  .milestones { grid-template-columns: repeat(2,1fr); }
  .milestones article:nth-child(2) { border-left: 0; }
  .milestones article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .industrial-section::before { width: 100%; opacity: .12; }
  .industrial-grid { grid-template-columns: 1fr; }
  .journal-card { min-height: 360px; }
  .journal-list { grid-template-columns: 1fr; border-left: 0; }
  .journal-row { grid-template-columns: 45px 1fr auto; }
  .journal-row > svg { display: block; }
  .cooperation-card { grid-template-columns: 1fr; }
  .cooperation-card__content { padding: 52px 38px; }
  .cooperation-card__visual { display: none; }
  .footer__top { grid-template-columns: repeat(2,1fr); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 14px; }
  .section { padding: 72px 0; }
  .header__inner { gap: 16px; }
  .brand > img { width: 140px; }
  .hero__container { padding-top: 48px; }
  .eyebrow { font-size: 10px; }
  .hero-slides { min-height: 306px; }
  .hero h1, .hero h2 { font-size: clamp(38px,12.2vw,54px); letter-spacing: -2.5px; }
  .hero__lead { margin-top: 16px; font-size: 12px; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__actions .button { width: 100%; }
  .hero__meta { gap: 18px; }
  .hero__meta div { grid-template-columns: 1fr; align-items: start; }
  .hero__meta strong { font-size: 24px; }
  .hero__meta span { max-width: none; }
  .hero-media { height: 500px; }
  .hero-media__red-panel { top: 0; right: 4%; width: 84%; height: 77%; }
  .hero-media__image-wrap { top: 7%; width: 86%; height: 66%; }
  .hero-media__label { right: 18px; bottom: 18px; }
  .quality-badge { top: 1%; padding: 9px 10px; }
  .quality-badge svg { width: 22px; }
  .product-orbit { left: 0; bottom: 4%; width: 58%; min-width: 218px; padding: 12px; }
  .product-orbit__tag { top: 12px; right: 12px; }
  .hero-pagination { left: auto; right: 0; }
  .trust-strip__inner { grid-template-columns: 1fr; }
  .trust-strip article { min-height: 100px; border: 0 !important; border-bottom: 1px solid rgba(255,255,255,.1) !important; }
  .section-heading h2, .feature-content h2, .about-copy h2, .industrial-copy h2, .cooperation-card h2 { font-size: 35px; letter-spacing: -1.8px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card--featured { grid-column: auto; }
  .product-card__media, .product-card--featured .product-card__media { height: 340px; }
  .product-card__body { min-height: 145px; padding: 22px; }
  .brand-families__track { min-height: 55px; }
  .feature-visual { min-height: 460px; }
  .feature-visual__frame { inset: 0 7% 7% 0; }
  .feature-visual__stamp { width: 120px; height: 120px; }
  .feature-actions { display: grid; align-items: start; }
  .about-visual { min-height: 460px; }
  .about-visual__image { width: 93%; height: 78%; }
  .about-visual__card { width: 85%; padding: 24px; }
  .milestones { grid-template-columns: 1fr; }
  .milestones article { border-left: 0; border-bottom: 1px solid var(--line); }
  .industrial-section { padding: 90px 0; }
  .industrial-stats { gap: 25px; }
  .industrial-cards article { grid-template-columns: 48px 1fr; padding: 18px; }
  .industrial-card__icon { width: 44px; height: 44px; }
  .journal-card { grid-template-columns: 1fr; }
  .journal-card__image { height: 260px; }
  .journal-card__body { padding: 28px; }
  .journal-card h3 { font-size: 20px; }
  .journal-row { grid-template-columns: 35px 1fr; }
  .journal-row > svg { display: none; }
  .cooperation-section { padding-bottom: 72px; }
  .cooperation-card__content { padding: 42px 24px; }
  .cooperation-card__actions { display: grid; }
  .footer__top { grid-template-columns: 1fr; padding-top: 58px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 20px; }
  .footer__bottom div { flex-wrap: wrap; gap: 12px 18px; }
  .floating-actions { left: 10px; bottom: 10px; }
  .floating-actions a { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* ========================================================================== 
   YANARSOO INNER PAGES + PREMIUM FOOTER
   ========================================================================== */
.sr-only { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }
main { min-height: 45vh; }
input, textarea, select { font-family: inherit; }
button { font-family: inherit; }

/* Premium footer */
.site-footer { position: relative; margin-top: 0; color: #fff; background: #0e1013; overflow: hidden; }
.footer-cta-wrap { position: relative; z-index: 3; padding-top: 72px; background: var(--paper); }
.footer-cta { min-height: 280px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 55px; padding: 48px 62px; color: #fff; background: linear-gradient(120deg,#e02631,#9b0c14); box-shadow: 0 35px 80px rgba(147,13,20,.24); }
.footer-cta > div:first-child > span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.64); font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.footer-cta h2 { margin: 0; font-size: clamp(30px,3.4vw,49px); line-height: 1.42; letter-spacing: -2px; }
.footer-cta h2 em { color: #fff; font-style: normal; text-decoration: underline; text-decoration-color: rgba(255,255,255,.25); text-underline-offset: 9px; }
.footer-cta__actions { display: grid; justify-items: start; gap: 18px; padding-right: 45px; border-right: 1px solid rgba(255,255,255,.18); }
.footer-cta__phone { display: grid; gap: 2px; direction: ltr; text-align: right; }
.footer-cta__phone small { color: rgba(255,255,255,.55); font-size: 9px; }
.footer-cta__phone strong { font: 800 21px/1.4 Arial,Tahoma,sans-serif; }
.footer-main { position: relative; padding: 82px 0 24px; overflow: hidden; background: #0e1013; }
.footer-main__pattern { position:absolute; inset:0; opacity:.22; background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size:64px 64px; mask-image:linear-gradient(to bottom,#000,transparent 86%); }
.footer-main::before { content:""; position:absolute; top:0; left:0; width:32%; height:7px; background:var(--red); }
.footer-main__grid { position:relative; z-index:2; display:grid; grid-template-columns:1.35fr .65fr .72fr 1.15fr; gap:55px; }
.brand--footer > img { width: 210px; max-height: 68px; object-fit: contain; object-position: right center; filter: brightness(0) invert(1); }
.footer-brand p { max-width:380px; margin:20px 0; color:rgba(255,255,255,.48); font-size:11px; line-height:2; }
.footer-social { display:flex; gap:8px; direction:ltr; }
.footer-social a { display:grid; place-items:center; width:36px; height:36px; color:rgba(255,255,255,.65); border:1px solid rgba(255,255,255,.13); font:800 9px/1 Arial,sans-serif; text-transform:uppercase; transition:.25s; }
.footer-social a:hover { color:#fff; background:var(--red); border-color:var(--red); transform:translateY(-3px); }
.footer-nav { display:flex; flex-direction:column; align-items:flex-start; gap:10px; }
.footer-nav h3, .footer-catalog h3 { margin:0 0 15px; color:#fff; font-size:13px; }
.footer-nav a { position:relative; color:rgba(255,255,255,.48); font-size:10px; transition:.25s; }
.footer-nav a::before { content:""; display:inline-block; width:0; height:1px; margin-left:0; vertical-align:middle; background:var(--red-bright); transition:.25s; }
.footer-nav a:hover { color:#fff; transform:translateX(-4px); }
.footer-nav a:hover::before { width:14px; margin-left:7px; }
.footer-kicker { display:block; margin-bottom:7px; color:var(--red-bright); font:800 8px/1 Arial,sans-serif; letter-spacing:2px; }
.footer-catalog p { margin:0 0 18px; color:rgba(255,255,255,.43); font-size:10px; line-height:1.9; }
.footer-catalog__form { position:relative; display:grid; grid-template-columns:1fr 48px; min-height:50px; border:1px solid rgba(255,255,255,.13); background:rgba(255,255,255,.035); }
.footer-catalog__form input { min-width:0; padding:0 15px; color:#fff; border:0; outline:0; background:transparent; font-size:10px; }
.footer-catalog__form input::placeholder { color:rgba(255,255,255,.3); }
.footer-catalog__form button { display:grid; place-items:center; color:#fff; border:0; background:var(--red); cursor:pointer; }
.footer-catalog__form button svg { transform:scaleX(-1); }
.footer-catalog__form .form-status { position:absolute; top:calc(100% + 7px); right:0; color:#77e5a0; font-size:9px; }
.footer-contact-grid { position:relative; z-index:2; display:grid; grid-template-columns:.8fr 1fr 1.45fr; margin-top:65px; border-block:1px solid rgba(255,255,255,.09); }
.footer-contact-grid > * { min-height:105px; display:flex; align-items:center; gap:15px; padding:23px 25px; border-left:1px solid rgba(255,255,255,.09); }
.footer-contact-grid > *:last-child { border-left:0; }
.footer-contact-grid > * > span { display:grid; place-items:center; width:43px; height:43px; flex:0 0 auto; color:var(--red-bright); border:1px solid rgba(255,255,255,.12); }
.footer-contact-grid > * > div { display:grid; gap:3px; }
.footer-contact-grid small { color:rgba(255,255,255,.35); font-size:8px; }
.footer-contact-grid strong { color:rgba(255,255,255,.78); font-size:10px; font-weight:600; }
.footer-wordmark { position:relative; z-index:1; width:min(calc(100% - 40px),var(--container)); margin:15px auto -5.8vw; color:rgba(255,255,255,.025); font:900 clamp(72px,13vw,190px)/1 Arial,sans-serif; letter-spacing:.07em; text-align:center; white-space:nowrap; pointer-events:none; }
.footer-legal { min-height:70px; display:flex; align-items:center; justify-content:space-between; gap:25px; color:rgba(255,255,255,.32); border-top:1px solid rgba(255,255,255,.07); font-size:9px; }
.footer-legal p { margin:0; }
.footer-legal div { display:flex; align-items:center; flex-wrap:wrap; gap:22px; }
.footer-legal a:hover { color:#fff; }

/* Inner hero */
.page-hero { position:relative; min-height:430px; display:flex; align-items:center; overflow:hidden; color:#fff; background:#17191d; }
.page-hero::before { content:""; position:absolute; top:0; right:0; width:43%; height:100%; background:linear-gradient(145deg,#df202b,#8f0910); clip-path:polygon(18% 0,100% 0,100% 100%,0 100%); }
.page-hero::after { content:"YANARSOO"; position:absolute; left:-2%; bottom:-34px; color:rgba(255,255,255,.035); font:900 clamp(85px,15vw,220px)/1 Arial,sans-serif; letter-spacing:9px; }
.page-hero__grid { position:absolute; inset:0; opacity:.5; 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:58px 58px; mask-image:linear-gradient(to right,#000,transparent); }
.page-hero__inner { position:relative; z-index:2; display:grid; grid-template-columns:1fr .75fr; align-items:center; gap:70px; padding-block:80px; }
.page-hero__content { max-width:770px; }
.page-hero .section-index { color:rgba(255,255,255,.58); }
.page-hero h1 { margin:0; font-size:clamp(42px,5.5vw,76px); line-height:1.35; letter-spacing:-3px; }
.page-hero h1 em { color:#fff; font-style:normal; text-decoration:underline; text-decoration-color:rgba(255,255,255,.2); text-underline-offset:10px; }
.page-hero__content > p { max-width:670px; margin:22px 0 0; color:rgba(255,255,255,.58); font-size:14px; line-height:2; }
.page-hero--compact { min-height:330px; }
.page-hero--compact .page-hero__inner { padding-block:58px; }
.page-hero--compact h1 { font-size:clamp(37px,4.4vw,62px); }
.breadcrumbs { display:flex; align-items:center; flex-wrap:wrap; gap:8px; margin-bottom:28px; color:rgba(255,255,255,.43); font-size:9px; }
.breadcrumbs i { color:var(--red-bright); font-style:normal; }
.breadcrumbs a:hover { color:#fff; }
.page-hero__art { position:relative; z-index:2; min-height:250px; display:grid; place-items:center; }
.page-hero__art img { width:100%; max-height:310px; object-fit:contain; filter:drop-shadow(0 35px 50px rgba(0,0,0,.28)); mix-blend-mode:multiply; }
.page-hero__art-card { width:100%; padding:28px; color:var(--ink); background:rgba(255,255,255,.96); box-shadow:0 25px 65px rgba(0,0,0,.25); }
.page-hero__art-card span { color:var(--red); font-size:9px; font-weight:800; }
.page-hero__art-card strong { display:block; margin:7px 0; font-size:20px; }
.page-hero__art-card p { margin:0; color:var(--muted); font-size:10px; }

/* Generic archive */
.archive-section { padding:86px 0 120px; background:var(--paper); }
.archive-toolbar { display:flex; align-items:center; justify-content:space-between; gap:25px; margin-bottom:35px; }
.archive-toolbar__result { display:grid; gap:2px; }
.archive-toolbar__result strong { font-size:15px; }
.archive-toolbar__result span { color:var(--muted); font-size:9px; }
.filter-chips { display:flex; flex-wrap:wrap; gap:8px; }
.filter-chip { min-height:40px; padding:0 17px; color:var(--muted); border:1px solid var(--line); background:#fff; cursor:pointer; font-size:10px; font-weight:700; transition:.25s; }
.filter-chip:hover, .filter-chip.is-active { color:#fff; background:var(--ink); border-color:var(--ink); }
.archive-search { position:relative; width:min(330px,100%); }
.archive-search input { width:100%; height:48px; padding:0 45px 0 15px; border:1px solid var(--line); outline:0; background:#fff; font-size:11px; }
.archive-search svg { position:absolute; top:50%; right:16px; width:18px; color:var(--muted); transform:translateY(-50%); }
.product-archive-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.archive-product-card { position:relative; min-width:0; background:#fff; border:1px solid rgba(22,24,28,.08); transition:.35s var(--ease); }
.archive-product-card:hover { transform:translateY(-8px); box-shadow:var(--shadow); border-color:transparent; }
.archive-product-card[hidden] { display:none; }
.archive-product-card__media { position:relative; height:315px; display:grid; place-items:center; overflow:hidden; background:#eeede9; }
.archive-product-card__media::after { content:""; position:absolute; inset:18px; border:1px solid rgba(22,24,28,.055); pointer-events:none; }
.archive-product-card__media img { width:86%; height:86%; object-fit:contain; mix-blend-mode:multiply; transition:transform .5s var(--ease); }
.archive-product-card:hover img { transform:scale(1.055); }
.archive-product-card__media > span { position:absolute; z-index:2; top:18px; right:18px; padding:5px 9px; color:#fff; background:var(--red); font-size:8px; font-weight:700; }
.archive-product-card__body { min-height:180px; display:flex; align-items:flex-end; justify-content:space-between; gap:20px; padding:25px; border-top:1px solid var(--line); }
.archive-product-card__body > div { min-width:0; }
.archive-product-card__brand { color:var(--red); font:800 8px/1 Arial,sans-serif; letter-spacing:1.2px; }
.archive-product-card h2, .archive-product-card h3 { margin:7px 0 9px; font-size:17px; line-height:1.65; }
.archive-product-card p { margin:0; color:var(--muted); font-size:10px; line-height:1.85; }
.pagination { display:flex; justify-content:center; gap:7px; margin-top:55px; direction:ltr; }
.pagination a, .pagination span { display:grid; place-items:center; width:44px; height:44px; border:1px solid var(--line); background:#fff; font:700 10px/1 Arial,sans-serif; }
.pagination .is-current, .pagination a:hover { color:#fff; background:var(--red); border-color:var(--red); }

/* Product detail */
.product-detail { padding:85px 0 110px; background:var(--paper); }
.product-detail__grid { display:grid; grid-template-columns:1.05fr .95fr; gap:70px; align-items:start; }
.product-gallery { position:sticky; top:135px; min-width:0; }
.product-gallery__stage { position:relative; min-height:580px; display:grid; place-items:center; overflow:hidden; background:#eceae4; }
.product-gallery__stage::before { content:""; position:absolute; inset:24px; border:1px solid rgba(22,24,28,.07); }
.product-gallery__stage img { position:relative; z-index:1; width:86%; height:510px; object-fit:contain; mix-blend-mode:multiply; transition:opacity .3s, transform .45s var(--ease); }
.product-gallery__stage:hover img { transform:scale(1.03); }
.product-gallery__badge { position:absolute; z-index:3; top:24px; right:24px; padding:7px 12px; color:#fff; background:var(--red); font-size:9px; font-weight:800; }
.product-thumbs { display:grid; grid-template-columns:repeat(4,1fr); gap:9px; margin-top:10px; }
.product-thumb { height:105px; padding:7px; border:1px solid var(--line); background:#fff; cursor:pointer; transition:.25s; }
.product-thumb img { width:100%; height:100%; object-fit:contain; mix-blend-mode:multiply; }
.product-thumb:hover, .product-thumb.is-active { border-color:var(--red); box-shadow:inset 0 -3px var(--red); }
.product-summary { padding-top:5px; }
.product-summary__brand { display:flex; align-items:center; gap:10px; color:var(--red); font:800 9px/1 Arial,sans-serif; letter-spacing:1.5px; }
.product-summary__brand::before { content:""; width:27px; height:2px; background:var(--red); }
.product-summary h1, .product-summary h2 { margin:17px 0; font-size:clamp(35px,4vw,54px); line-height:1.35; letter-spacing:-2.4px; }
.product-summary__lead { margin:0 0 27px; color:var(--muted); font-size:13px; line-height:2; }
.product-highlights { display:grid; grid-template-columns:repeat(2,1fr); margin:0 0 28px; padding:0; list-style:none; border-block:1px solid var(--line); }
.product-highlights li { display:flex; align-items:center; gap:11px; padding:17px 0; border-bottom:1px solid var(--line); font-size:10px; font-weight:700; }
.product-highlights li:nth-last-child(-n+2) { border-bottom:0; }
.product-highlights li:nth-child(odd) { padding-left:18px; border-left:1px solid var(--line); }
.product-highlights svg { width:19px; color:var(--red); }
.product-variants { margin:25px 0; }
.product-variants > span { display:block; margin-bottom:11px; font-size:10px; font-weight:800; }
.swatches { display:flex; gap:9px; }
.swatch { width:34px; height:34px; border:5px solid #fff; outline:1px solid var(--line); cursor:pointer; transition:.2s; }
.swatch:hover, .swatch.is-active { outline:2px solid var(--ink); transform:translateY(-2px); }
.product-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:30px; }
.product-meta { display:grid; grid-template-columns:repeat(3,1fr); margin-top:32px; border:1px solid var(--line); background:#fff; }
.product-meta div { padding:16px; border-left:1px solid var(--line); }
.product-meta div:last-child { border-left:0; }
.product-meta small { display:block; color:var(--muted); font-size:8px; }
.product-meta strong { font-size:10px; }
.product-content-section { padding:100px 0; background:#fff; }
.product-tabs { display:flex; gap:0; border-bottom:1px solid var(--line); }
.product-tab { min-height:55px; padding:0 25px; border:0; border-bottom:3px solid transparent; background:transparent; cursor:pointer; color:var(--muted); font-size:11px; font-weight:800; }
.product-tab.is-active { color:var(--ink); border-color:var(--red); }
.product-panel { display:none; padding-top:45px; }
.product-panel.is-active { display:block; }
.product-description-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:70px; align-items:start; }
.prose { color:#454a51; font-size:13px; line-height:2.15; }
.prose h2 { margin:0 0 20px; color:var(--ink); font-size:30px; line-height:1.55; }
.prose h3 { margin:35px 0 10px; color:var(--ink); font-size:19px; }
.prose p { margin:0 0 18px; }
.prose ul, .prose ol { margin:18px 0; padding-right:23px; }
.prose li { margin:8px 0; }
.prose blockquote { margin:28px 0; padding:22px 24px; color:var(--ink); border-right:4px solid var(--red); background:var(--paper); font-size:15px; font-weight:700; }
.product-feature-card { position:relative; overflow:hidden; min-height:390px; display:grid; align-content:end; padding:35px; color:#fff; background:var(--ink); }
.product-feature-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.22; }
.product-feature-card::after { content:""; position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.9),transparent 70%); }
.product-feature-card > div { position:relative; z-index:2; }
.product-feature-card span { color:var(--red-bright); font-size:9px; font-weight:800; }
.product-feature-card strong { display:block; margin:8px 0; font-size:24px; }
.product-feature-card p { margin:0; color:rgba(255,255,255,.58); font-size:10px; }
.spec-table { width:100%; border-collapse:collapse; font-size:11px; }
.spec-table th, .spec-table td { padding:16px 18px; border:1px solid var(--line); text-align:right; }
.spec-table th { width:34%; background:var(--paper); font-weight:800; }
.spec-table td { color:var(--muted); }
.install-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.install-step { padding:28px; border:1px solid var(--line); background:var(--paper); }
.install-step > span { color:var(--red); font:900 26px/1 Arial,sans-serif; }
.install-step h3 { margin:15px 0 7px; font-size:14px; }
.install-step p { margin:0; color:var(--muted); font-size:10px; }
.related-section { padding:100px 0 125px; background:var(--paper); }

/* Article archive */
.article-archive-layout { display:grid; grid-template-columns:1fr 310px; gap:42px; align-items:start; }
.article-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.article-card { overflow:hidden; background:#fff; border:1px solid rgba(22,24,28,.08); transition:.35s var(--ease); }
.article-card:hover { transform:translateY(-7px); box-shadow:var(--shadow); border-color:transparent; }
.article-card[hidden] { display:none; }
.article-card__media { position:relative; height:270px; overflow:hidden; background:#e8e7e2; }
.article-card__media img { width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.article-card:hover img { transform:scale(1.05); }
.article-card__category { position:absolute; right:18px; bottom:18px; padding:6px 10px; color:#fff; background:var(--red); font-size:8px; font-weight:800; }
.article-card__body { padding:25px; }
.article-card__meta { display:flex; gap:16px; color:var(--muted); font-size:8px; }
.article-card h2, .article-card h3 { margin:11px 0; font-size:18px; line-height:1.75; }
.article-card p { margin:0 0 18px; color:var(--muted); font-size:10px; line-height:1.95; }
.article-sidebar { position:sticky; top:125px; display:grid; gap:18px; }
.sidebar-card { padding:25px; border:1px solid var(--line); background:#fff; }
.sidebar-card h3 { margin:0 0 18px; font-size:13px; }
.category-list { display:grid; }
.category-list a { display:flex; align-items:center; justify-content:space-between; gap:10px; padding:12px 0; color:var(--muted); border-bottom:1px solid var(--line); font-size:10px; }
.category-list a:last-child { border:0; }
.category-list a:hover { color:var(--red); }
.category-list span { display:grid; place-items:center; width:25px; height:25px; background:var(--paper); font:700 8px/1 Arial,sans-serif; }
.sidebar-red { color:#fff; background:linear-gradient(145deg,var(--red-bright),var(--red-deep)); border:0; }
.sidebar-red span { color:rgba(255,255,255,.55); font-size:9px; }
.sidebar-red strong { display:block; margin:7px 0 18px; font-size:19px; line-height:1.6; }

/* Article detail */
.reading-progress { position:fixed; z-index:100; top:0; right:0; height:3px; width:0; background:var(--red); }
.article-hero { padding:75px 0 0; background:#fff; }
.article-hero__inner { max-width:930px; margin-inline:auto; text-align:center; }
.article-hero .breadcrumbs { justify-content:center; color:var(--muted); }
.article-hero .breadcrumbs a:hover { color:var(--red); }
.article-hero__category { display:inline-block; margin-top:20px; color:var(--red); font-size:10px; font-weight:800; }
.article-hero h1 { margin:16px 0 22px; font-size:clamp(38px,5vw,64px); line-height:1.5; letter-spacing:-2.5px; }
.article-hero__lead { max-width:760px; margin:0 auto; color:var(--muted); font-size:14px; line-height:2; }
.article-hero__meta { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:20px; margin-top:28px; color:var(--muted); font-size:9px; }
.article-cover { max-width:1180px; height:570px; margin:55px auto 0; overflow:hidden; background:var(--paper-2); }
.article-cover img { width:100%; height:100%; object-fit:cover; }
.article-body { padding:75px 0 115px; background:#fff; }
.article-shell { display:grid; grid-template-columns:220px minmax(0,720px) 180px; justify-content:center; gap:45px; align-items:start; }
.article-toc { position:sticky; top:125px; }
.article-toc > span, .article-share > span { display:block; margin-bottom:15px; color:var(--muted); font-size:8px; font-weight:800; }
.article-toc nav { display:grid; gap:11px; padding-right:15px; border-right:1px solid var(--line); }
.article-toc a { color:var(--muted); font-size:9px; line-height:1.7; transition:.2s; }
.article-toc a:hover, .article-toc a.is-active { color:var(--red); }
.article-content { min-width:0; }
.article-content.prose > p:first-of-type { color:var(--ink); font-size:16px; font-weight:700; }
.article-content figure { margin:35px 0; }
.article-content figure img { width:100%; max-height:430px; object-fit:cover; background:var(--paper); }
.article-content figcaption { margin-top:8px; color:var(--muted); font-size:8px; text-align:center; }
.article-note { margin:35px 0; padding:26px; border:1px solid rgba(198,18,27,.18); background:#fff6f6; }
.article-note strong { display:block; margin-bottom:5px; color:var(--red); }
.article-share { position:sticky; top:125px; text-align:center; }
.article-share div { display:grid; justify-content:center; gap:8px; }
.article-share a { display:grid; place-items:center; width:38px; height:38px; border:1px solid var(--line); font:800 8px/1 Arial,sans-serif; }
.article-share a:hover { color:#fff; background:var(--red); border-color:var(--red); }
.article-author { display:grid; grid-template-columns:66px 1fr; gap:18px; margin-top:55px; padding:25px; background:var(--paper); }
.article-author__avatar { display:grid; place-items:center; width:66px; height:66px; color:#fff; background:var(--ink); font:900 22px/1 Arial,sans-serif; }
.article-author strong { font-size:13px; }
.article-author p { margin:5px 0 0; color:var(--muted); font-size:10px; }

/* Generic content & about */
.content-section { padding:95px 0 120px; background:#fff; }
.content-layout { display:grid; grid-template-columns:minmax(0,800px) 290px; gap:65px; align-items:start; }
.content-aside { position:sticky; top:125px; }
.aside-menu { display:grid; border:1px solid var(--line); background:var(--paper); }
.aside-menu a { padding:14px 17px; color:var(--muted); border-bottom:1px solid var(--line); font-size:10px; }
.aside-menu a:last-child { border:0; }
.aside-menu a:hover, .aside-menu a.is-active { color:#fff; background:var(--ink); }
.info-band { display:grid; grid-template-columns:repeat(3,1fr); margin:35px 0; border-block:1px solid var(--line); }
.info-band div { padding:25px; border-left:1px solid var(--line); }
.info-band div:last-child { border-left:0; }
.info-band strong { display:block; color:var(--red); font:900 24px/1 Arial,sans-serif; }
.info-band span { color:var(--muted); font-size:9px; }
.faq-list { margin-top:38px; border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-question { width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:20px 0; border:0; background:transparent; text-align:right; cursor:pointer; font-size:12px; font-weight:800; }
.faq-question span:last-child { display:grid; place-items:center; width:28px; height:28px; color:var(--red); border:1px solid var(--line); font-size:17px; transition:.25s; }
.faq-item.is-open .faq-question span:last-child { color:#fff; background:var(--red); transform:rotate(45deg); }
.faq-answer { display:none; padding:0 0 20px; color:var(--muted); font-size:10px; }
.faq-item.is-open .faq-answer { display:block; }
.about-intro { padding:100px 0; background:#fff; }
.about-intro__grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:center; }
.about-intro__visual { position:relative; min-height:530px; }
.about-intro__visual img { position:absolute; top:0; right:0; width:88%; height:88%; object-fit:cover; background:var(--paper); }
.about-intro__visual::after { content:""; position:absolute; right:9%; bottom:1%; width:70%; height:22%; background:var(--red); z-index:0; }
.about-intro__stamp { position:absolute; z-index:2; left:0; bottom:0; width:190px; padding:25px; color:#fff; background:var(--ink); }
.about-intro__stamp strong { display:block; font:900 32px/1 Arial,sans-serif; }
.about-intro__stamp span { color:rgba(255,255,255,.52); font-size:9px; }
.about-intro__copy h2 { margin:0 0 22px; font-size:clamp(34px,4vw,54px); line-height:1.45; }
.about-intro__copy h2 em { color:var(--red); font-style:normal; }
.timeline-section { padding:100px 0 120px; color:#fff; background:var(--ink); }
.timeline { margin-top:50px; }
.timeline article { display:grid; grid-template-columns:160px 1fr; gap:35px; padding:30px 0; border-top:1px solid rgba(255,255,255,.12); }
.timeline article:last-child { border-bottom:1px solid rgba(255,255,255,.12); }
.timeline time { color:var(--red-bright); font:900 28px/1 Arial,sans-serif; }
.timeline h3 { margin:0 0 6px; font-size:17px; }
.timeline p { margin:0; color:rgba(255,255,255,.48); font-size:10px; }
.values-section { padding:100px 0 120px; background:var(--paper); }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:45px; }
.value-card { min-height:275px; padding:32px; background:#fff; border:1px solid var(--line); }
.value-card > span { display:grid; place-items:center; width:52px; height:52px; color:#fff; background:var(--red); }
.value-card h3 { margin:24px 0 10px; font-size:17px; }
.value-card p { margin:0; color:var(--muted); font-size:10px; }

/* Contact */
.contact-section { padding:95px 0 120px; background:var(--paper); }
.contact-grid { display:grid; grid-template-columns:.88fr 1.12fr; gap:28px; align-items:stretch; }
.contact-info { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.contact-info__intro { grid-column:1/-1; padding:36px; color:#fff; background:var(--ink); }
.contact-info__intro span { color:var(--red-bright); font-size:9px; font-weight:800; }
.contact-info__intro h2 { margin:8px 0 12px; font-size:29px; }
.contact-info__intro p { margin:0; color:rgba(255,255,255,.52); font-size:10px; }
.contact-card { min-height:190px; display:grid; align-content:space-between; padding:26px; border:1px solid var(--line); background:#fff; }
.contact-card > span { display:grid; place-items:center; width:44px; height:44px; color:#fff; background:var(--red); }
.contact-card small { display:block; margin-top:20px; color:var(--muted); font-size:8px; }
.contact-card strong { display:block; margin-top:4px; font-size:12px; line-height:1.8; }
.contact-form-panel { padding:42px; background:#fff; box-shadow:0 25px 70px rgba(17,19,23,.08); }
.contact-form-panel > span { color:var(--red); font-size:9px; font-weight:800; }
.contact-form-panel h2 { margin:7px 0 22px; font-size:28px; }
.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:17px; }
.field { display:grid; gap:7px; }
.field--full { grid-column:1/-1; }
.field label { font-size:9px; font-weight:800; }
.field input, .field textarea, .field select { width:100%; min-height:52px; padding:11px 14px; border:1px solid var(--line); outline:0; background:var(--paper); font-size:10px; transition:.2s; }
.field textarea { min-height:130px; resize:vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color:var(--red); background:#fff; box-shadow:0 0 0 3px rgba(198,18,27,.07); }
.form-footer { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-top:21px; }
.form-footer p { margin:0; color:var(--muted); font-size:8px; }
.form-status--block { min-height:22px; margin-top:12px; color:#168e47; font-size:10px; }
.map-section { padding:0 0 120px; background:var(--paper); }
.map-panel { position:relative; min-height:420px; overflow:hidden; background:#d9d8d3; }
.map-panel__grid { position:absolute; inset:0; opacity:.6; background-image:linear-gradient(32deg,transparent 48%,rgba(22,24,28,.09) 49%,rgba(22,24,28,.09) 51%,transparent 52%),linear-gradient(148deg,transparent 48%,rgba(22,24,28,.06) 49%,rgba(22,24,28,.06) 51%,transparent 52%); background-size:95px 95px; }
.map-panel::after { content:""; position:absolute; top:50%; right:58%; width:22px; height:22px; border:7px solid var(--red); border-radius:50% 50% 50% 0; transform:rotate(-45deg); box-shadow:0 12px 28px rgba(198,18,27,.3); }
.map-panel__label { position:absolute; z-index:2; right:7%; bottom:12%; width:min(370px,86%); padding:28px; color:#fff; background:var(--ink); }
.map-panel__label span { color:var(--red-bright); font-size:9px; }
.map-panel__label strong { display:block; margin:6px 0; font-size:18px; }
.map-panel__label p { margin:0; color:rgba(255,255,255,.5); font-size:10px; }

/* Search + 404 */
.search-section { padding:90px 0 120px; background:var(--paper); }
.search-box-large { max-width:850px; display:grid; grid-template-columns:1fr 150px; margin:0 auto 55px; box-shadow:0 20px 55px rgba(17,19,23,.08); }
.search-box-large input { min-height:65px; padding:0 24px; border:0; outline:0; background:#fff; font-size:13px; }
.search-box-large button { border:0; color:#fff; background:var(--red); cursor:pointer; font-size:12px; font-weight:800; }
.search-results-list { max-width:930px; margin-inline:auto; display:grid; gap:12px; }
.search-result { display:grid; grid-template-columns:100px 1fr auto; align-items:center; gap:20px; padding:18px; border:1px solid var(--line); background:#fff; }
.search-result img { width:100px; height:82px; object-fit:cover; background:var(--paper); }
.search-result small { color:var(--red); font-size:8px; font-weight:800; }
.search-result h2 { margin:4px 0; font-size:15px; }
.search-result p { margin:0; color:var(--muted); font-size:9px; }
.search-result > svg { width:22px; color:var(--muted); transform:scaleX(-1); }
.not-found { min-height:calc(100svh - 120px); display:grid; place-items:center; padding:90px 20px; color:#fff; overflow:hidden; background:var(--ink); text-align:center; }
.not-found__inner { position:relative; z-index:2; max-width:750px; }
.not-found__code { display:block; color:var(--red); font:900 clamp(110px,22vw,270px)/.8 Arial,sans-serif; letter-spacing:-15px; text-shadow:18px 18px 0 rgba(255,255,255,.025); }
.not-found h1 { margin:35px 0 8px; font-size:34px; }
.not-found p { margin:0 auto 28px; color:rgba(255,255,255,.5); font-size:11px; }
.not-found__actions { display:flex; justify-content:center; flex-wrap:wrap; gap:10px; }

/* Shared responsive */
@media (max-width:1100px) {
  .footer-main__grid { grid-template-columns:1.2fr .7fr .7fr 1fr; gap:35px; }
  .page-hero__inner { grid-template-columns:1fr .65fr; gap:40px; }
  .product-detail__grid { gap:45px; }
  .product-gallery__stage { min-height:500px; }
  .product-gallery__stage img { height:440px; }
  .article-shell { grid-template-columns:190px minmax(0,680px); }
  .article-share { display:none; }
}
@media (max-width:900px) {
  .footer-cta { grid-template-columns:1fr; }
  .footer-cta__actions { padding:25px 0 0; border-right:0; border-top:1px solid rgba(255,255,255,.18); }
  .footer-main__grid { grid-template-columns:repeat(2,1fr); }
  .footer-brand, .footer-catalog { grid-column:1/-1; }
  .footer-contact-grid { grid-template-columns:1fr; }
  .footer-contact-grid > * { border-left:0; border-bottom:1px solid rgba(255,255,255,.09); }
  .page-hero__inner { grid-template-columns:1fr; }
  .page-hero__art { display:none; }
  .product-archive-grid { grid-template-columns:repeat(2,1fr); }
  .product-detail__grid { grid-template-columns:1fr; }
  .product-gallery { position:relative; top:auto; }
  .product-description-grid { grid-template-columns:1fr; }
  .article-archive-layout { grid-template-columns:1fr; }
  .article-sidebar { position:relative; top:auto; grid-template-columns:repeat(2,1fr); }
  .article-shell { grid-template-columns:minmax(0,720px); }
  .article-toc { position:relative; top:auto; order:-1; }
  .article-toc nav { grid-template-columns:repeat(2,1fr); }
  .content-layout { grid-template-columns:1fr; }
  .content-aside { position:relative; top:auto; order:-1; }
  .aside-menu { grid-template-columns:repeat(4,1fr); }
  .about-intro__grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
}
@media (max-width:680px) {
  .footer-cta-wrap { padding-top:50px; }
  .footer-cta { padding:37px 25px; }
  .footer-cta h2 { font-size:31px; }
  .footer-main { padding-top:65px; }
  .footer-main__grid { grid-template-columns:1fr; }
  .footer-brand, .footer-catalog { grid-column:auto; }
  .footer-wordmark { margin-bottom:-4vw; font-size:18vw; }
  .footer-legal { align-items:flex-start; flex-direction:column; justify-content:center; padding-block:20px; }
  .page-hero { min-height:360px; }
  .page-hero::before { width:75%; opacity:.35; }
  .page-hero__inner { padding-block:55px; }
  .page-hero h1 { font-size:42px; letter-spacing:-2px; }
  .archive-toolbar { align-items:stretch; flex-direction:column; }
  .archive-search { width:100%; }
  .product-archive-grid { grid-template-columns:1fr; }
  .archive-product-card__media { height:330px; }
  .product-gallery__stage { min-height:420px; }
  .product-gallery__stage img { height:360px; }
  .product-thumbs { grid-template-columns:repeat(4,1fr); }
  .product-thumb { height:78px; }
  .product-highlights { grid-template-columns:1fr; }
  .product-highlights li { border-bottom:1px solid var(--line)!important; border-left:0!important; padding-inline:0!important; }
  .product-highlights li:last-child { border-bottom:0!important; }
  .product-meta { grid-template-columns:1fr; }
  .product-meta div { border-left:0; border-bottom:1px solid var(--line); }
  .product-meta div:last-child { border-bottom:0; }
  .product-tabs { overflow-x:auto; }
  .product-tab { flex:0 0 auto; }
  .install-steps { grid-template-columns:1fr; }
  .article-grid { grid-template-columns:1fr; }
  .article-sidebar { grid-template-columns:1fr; }
  .article-hero { padding-top:50px; }
  .article-cover { height:320px; margin-top:38px; }
  .article-body { padding-top:50px; }
  .article-shell { gap:30px; }
  .article-toc nav { grid-template-columns:1fr; }
  .article-content.prose > p:first-of-type { font-size:14px; }
  .info-band { grid-template-columns:1fr; }
  .info-band div { border-left:0; border-bottom:1px solid var(--line); }
  .info-band div:last-child { border-bottom:0; }
  .aside-menu { grid-template-columns:1fr 1fr; }
  .about-intro__visual { min-height:430px; }
  .timeline article { grid-template-columns:1fr; gap:13px; }
  .values-grid { grid-template-columns:1fr; }
  .contact-info { grid-template-columns:1fr; }
  .contact-info__intro { grid-column:auto; }
  .contact-form-panel { padding:30px 22px; }
  .form-grid { grid-template-columns:1fr; }
  .field--full { grid-column:auto; }
  .form-footer { align-items:stretch; flex-direction:column; }
  .form-footer .button { width:100%; }
  .map-panel { min-height:350px; }
  .search-box-large { grid-template-columns:1fr; }
  .search-box-large button { min-height:52px; }
  .search-result { grid-template-columns:82px 1fr; }
  .search-result img { width:82px; height:72px; }
  .search-result > svg { display:none; }
  .not-found__code { letter-spacing:-7px; }
}
/* ==========================================================================
   MOBILE HERO / SLIDER V2
   ========================================================================== */
@media (max-width: 640px) {
  .hero {
    background:
      radial-gradient(circle at 88% 7%, rgba(198,18,27,.09), transparent 31%),
      linear-gradient(180deg, #f8f5f2 0%, #f5f3ef 100%);
  }
  .hero::before { width: 330px; height: 330px; top: -120px; right: 28%; opacity: .7; }
  .hero__grid-pattern { opacity: .24; background-size: 42px 42px; mask-image: linear-gradient(to bottom,#000,transparent 58%); }
  .hero__container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 34px;
    padding-bottom: 48px;
  }
  .hero__content { display: contents; }
  .eyebrow {
    order: 1;
    width: 100%;
    margin-bottom: 16px;
    font-size: 9.5px;
    letter-spacing: 0;
  }
  .eyebrow > span { width: 30px; }
  .hero-slides {
    order: 2;
    width: 100%;
    min-height: 286px;
  }
  .hero__kicker {
    margin-bottom: 7px;
    font-size: 11px;
    line-height: 1.7;
  }
  .hero h1,
  .hero h2 {
    max-width: 100%;
    font-size: clamp(32px, 9.3vw, 38px);
    line-height: 1.43;
    letter-spacing: -1.7px;
  }
  .hero-slide--compact-mobile h2 {
    font-size: clamp(29px, 8.45vw, 34px);
    line-height: 1.52;
    letter-spacing: -1.35px;
  }
  .hero-slide--compact-mobile h2 em { white-space: normal; }
  .hero__lead {
    max-width: none;
    margin-top: 13px;
    color: #5b6067;
    font-size: 12.25px;
    line-height: 1.95;
  }
  .hero__visual {
    order: 3;
    width: 100%;
    margin-top: 20px;
  }
  .hero-media {
    height: 356px;
    min-height: 0;
    max-height: none;
  }
  .hero-media__red-panel {
    top: 23px;
    right: 0;
    width: 76%;
    height: 70%;
    box-shadow: 0 22px 48px rgba(147,13,20,.2);
    clip-path: polygon(9% 0,100% 0,100% 90%,84% 100%,0 100%,0 14%);
  }
  .hero-media__red-panel::before { inset: 14px; }
  .hero-media__image-wrap {
    top: 0;
    right: 8%;
    width: 86%;
    height: 72%;
    box-shadow: 0 20px 45px rgba(22,24,28,.17);
    clip-path: polygon(0 0,100% 0,100% 100%,11% 100%,0 88%);
  }
  .hero-media__label { right: 15px; bottom: 16px; }
  .hero-media__label span { font-size: 8px; }
  .hero-media__label b { font-size: 12px; }
  .quality-badge {
    top: 16px;
    left: 0;
    gap: 7px;
    padding: 8px 9px;
    box-shadow: 0 10px 24px rgba(0,0,0,.16);
  }
  .quality-badge svg { width: 20px; height: 20px; }
  .quality-badge b { font-size: 8.5px; }
  .quality-badge small { font-size: 7px; }
  .product-orbit {
    left: 0;
    bottom: 0;
    width: 55%;
    min-width: 0;
    max-width: 194px;
    padding: 11px 11px 10px;
    box-shadow: 0 17px 42px rgba(22,24,28,.18);
  }
  .product-orbit::before { top: -6px; right: 14px; width: 46px; height: 6px; }
  .product-orbit__tag {
    top: 10px;
    right: 10px;
    padding: 4px 7px;
    font-size: 7px;
  }
  .product-orbit img { display: block; height: 122px; aspect-ratio: auto; object-fit: contain; }
  .product-orbit__caption { gap: 1px; padding-top: 9px; }
  .product-orbit__caption strong { font-size: 11px; }
  .product-orbit__caption span { font-size: 8px; line-height: 1.6; }
  .hero-pagination {
    right: auto;
    left: 0;
    bottom: 3px;
    gap: 1px;
    padding: 3px 5px;
    background: rgba(248,247,244,.92);
    box-shadow: 0 8px 22px rgba(22,24,28,.08);
    backdrop-filter: blur(8px);
  }
  .hero-pagination button { width: 34px; height: 29px; font-size: 8px; }
  .hero-pagination button::before,
  .hero-pagination button::after { bottom: 3px; }
  .hero__actions {
    order: 4;
    width: 100%;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 9px;
    margin-top: 30px;
  }
  .hero__actions .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 12px;
    font-size: 10px;
  }
  .hero__actions .button svg { width: 17px; }
  .hero__actions .play-icon { width: 25px; height: 25px; }
  .hero__meta {
    order: 5;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0;
    margin-top: 20px;
    padding-top: 17px;
  }
  .hero__meta div {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 4px;
    padding-inline: 7px;
    text-align: center;
    border-left: 1px solid rgba(22,24,28,.1);
  }
  .hero__meta div:last-child { border-left: 0; }
  .hero__meta strong { font-size: 20px; letter-spacing: -.5px; }
  .hero__meta span { max-width: none; font-size: 8px; line-height: 1.55; }
}

@media (max-width: 360px) {
  .hero__container { padding-top: 28px; }
  .hero-slides { min-height: 294px; }
  .hero h1,
  .hero h2 { font-size: 30px; }
  .hero-slide--compact-mobile h2 { font-size: 28px; }
  .hero__lead { font-size: 11.5px; }
  .hero-media { height: 336px; }
  .product-orbit img { height: 112px; }
  .hero__actions { grid-template-columns: 1fr; }
}
