:root {
  --ink: #17492c;
  --ink-2: #355d40;
  --green: #356a3c;
  --green-2: #7eab72;
  --mint: #e9f5ed;
  --mint-2: #f4faf6;
  --orange: #ef8521;
  --orange-light: #fff0d2;
  --cream: #f8f4e9;
  --blue: #e7f2f4;
  --lime: #edf4d5;
  --line: rgba(16, 59, 49, 0.14);
  --muted: #60756f;
  --white: #fff;
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 36px;
  --shadow: 0 20px 70px rgba(24, 62, 51, 0.1);
  --container: 1400px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: 'Manrope', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}
.nowrap { white-space: nowrap; }
h1, h2, h3, .section-title, .display-title { text-wrap: balance; }
p, li, .section-copy { text-wrap: pretty; }
body.menu-open,
body.filters-open { overflow: hidden; }
::selection { background: var(--orange); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; display: block; }
.w-full { width: 100%; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: .5rem; }

.site-container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.site-section { padding-block: clamp(76px, 9vw, 140px); }
.site-section--compact { padding-block: clamp(56px, 6vw, 96px); }
.section-tint { background: var(--mint-2); }
.section-dark { background: var(--ink); color: var(--white); }
.page-shell { padding-top: 96px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: 7px; height: 7px; border-radius: 99px; background: var(--orange); content: ''; }
.section-dark .eyebrow { color: #b8d7c5; }
.display-title {
  margin: 20px 0 0;
  max-width: 880px;
  font-size: clamp(42px, 6.5vw, 92px);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: .96;
}
.section-title {
  margin: 16px 0 0;
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: 1.03;
}
.section-copy { color: var(--muted); font-size: 16px; line-height: 1.75; }
.section-dark .section-copy { color: #b7cbc4; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.section-head > p { margin: 0; max-width: 470px; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .015em;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .icon-btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid rgba(243, 166, 43, .55); outline-offset: 3px; }
.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 13px 28px rgba(40, 122, 89, .22); }
.btn-primary:hover { background: #206a4d; box-shadow: 0 17px 34px rgba(40, 122, 89, .28); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-outline { border-color: var(--line); background: rgba(255, 255, 255, .72); color: var(--ink); }
.btn-accent { background: var(--orange); color: var(--ink); }
.btn svg { width: 18px; height: 18px; }

.site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled { padding: 9px 0; background: rgba(255,255,255,.9); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(18px); }
.site-header--home:not(.is-scrolled) .brand-text strong,
.site-header--home:not(.is-scrolled) .desktop-nav a { color: #fff; }
.site-header--home:not(.is-scrolled) .brand-text small { color: rgba(255,255,255,.58); }
.site-header--home:not(.is-scrolled) .lang-switch { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); }
.site-header--home:not(.is-scrolled) .lang-switch button { color: rgba(255,255,255,.7); }
.site-header--home:not(.is-scrolled) .lang-switch button.is-active { background: #fff; color: var(--ink); }
.header-inner { display: grid; grid-template-columns: 190px 1fr auto; min-height: 62px; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; font-weight: 800; letter-spacing: -.035em; }
.brand-logo-wrap { display: block; width: 146px; height: 48px; overflow: hidden; border-radius: 10px; background: #fff; }
.brand-logo { width: 100%; height: 100%; object-fit: cover; transform: scale(1.24); }
.brand-mark { position: relative; width: 39px; height: 39px; overflow: hidden; }
.brand-mark::before { position: absolute; z-index: 2; width: 7px; height: 31px; left: 15px; bottom: 1px; border-radius: 8px; background: var(--orange); content: ''; }
.brand-mark::after { position: absolute; width: 25px; height: 19px; left: 5px; top: 3px; border: 5px solid var(--green); border-bottom-color: transparent; border-radius: 50% 50% 43% 43%; transform: rotate(4deg); content: ''; }
.brand-text { display: grid; gap: 1px; }
.brand-text strong { font-size: 19px; line-height: 1; }
.brand-text small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(18px, 2.4vw, 38px); }
.desktop-nav a { position: relative; color: #31554b; font-size: 13px; font-weight: 700; }
.desktop-nav a::after { position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; content: ''; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; justify-content: end; gap: 12px; }
.lang-switch { display: flex; gap: 2px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.75); }
.lang-switch button { width: 32px; height: 32px; border: 0; border-radius: 99px; background: transparent; color: var(--muted); cursor: pointer; font-size: 10px; font-weight: 800; }
.lang-switch button.is-active { background: var(--ink); color: var(--white); }
.menu-button { display: none; width: 48px; height: 48px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 99px; background: var(--white); cursor: pointer; }
.menu-button span, .menu-button span::before, .menu-button span::after { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-button span { position: relative; }
.menu-button span::before, .menu-button span::after { position: absolute; left: 0; content: ''; }
.menu-button span::before { top: -6px; }
.menu-button span::after { top: 6px; }
.menu-button[aria-expanded="true"] span { background: transparent; }
.menu-button[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 55; inset: 0; display: grid; align-content: center; padding: 110px 26px 40px; background: var(--mint-2); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .25s ease, transform .25s ease; }
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu nav { display: grid; gap: 8px; }
.mobile-menu nav a { padding: 10px 0; font-size: clamp(31px, 10vw, 52px); font-weight: 650; letter-spacing: -.05em; line-height: 1; }
.mobile-menu__bottom { display: grid; gap: 20px; margin-top: 44px; }
.header-search { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(16,59,49,.14); border-radius: 50%; color: currentColor; font-size: 20px; transition: border-color .2s ease,background .2s ease; }
.site-header--home:not(.is-scrolled) .header-search { border-color: rgba(255,255,255,.2); }
.header-search:hover { border-color: var(--orange); background: rgba(243,133,33,.08); }

/* Immersive WebGL story */
.immersive-hero { position: relative; height: 440vh; background: #082b1b; color: #fff; }
.immersive-hero::before { position: absolute; inset: 0; background: radial-gradient(circle at 73% 24%, rgba(78,150,88,.32), transparent 32%), radial-gradient(circle at 83% 68%, rgba(239,133,33,.17), transparent 29%), linear-gradient(135deg, #071f15 0%, #0c3823 52%, #061c12 100%); content: ''; }
.immersive-hero__sticky { position: sticky; z-index: 2; top: 0; height: 100vh; min-height: 690px; overflow: hidden; }
.immersive-hero__sticky::before { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, transparent, #000 35%, #000); content: ''; }
.immersive-hero__layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(390px,.78fr) minmax(0,1.22fr); height: 100%; align-items: center; gap: 30px; padding-top: 92px; }
.hero-story { position: relative; z-index: 4; min-height: 510px; }
.hero-beat { position: absolute; left: 0; top: 50%; width: 100%; max-width: 620px; opacity: 0; pointer-events: none; transform: translateY(calc(-50% + 28px)); transition: opacity .55s ease, transform .7s cubic-bezier(.2,.75,.2,1); }
.hero-beat.is-active { opacity: 1; pointer-events: auto; transform: translateY(-50%); }
.hero-beat__index { display: inline-flex; align-items: center; gap: 11px; color: #a9cdb2; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-beat__index::before { width: 28px; height: 1px; background: var(--orange); content: ''; }
.hero-beat h1, .hero-beat h2 { margin: 22px 0 25px; max-width: 610px; font-size: clamp(54px,6.3vw,100px); font-weight: 600; letter-spacing: -.072em; line-height: .9; }
.hero-beat h2 { font-size: clamp(46px,5.4vw,82px); }
.hero-beat h1 em, .hero-beat h2 em { color: var(--orange); font-style: normal; }
.hero-beat p { max-width: 540px; margin: 0; color: #b7cabe; font-size: clamp(15px,1.25vw,18px); line-height: 1.75; }
.hero-beat__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-beat .btn-outline { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.07); color: #fff; }
.hero-detail-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin: 30px 0 0; padding: 0; list-style: none; }
.hero-detail-list li { display: flex; align-items: center; gap: 10px; color: #d6e3d9; font-size: 11px; font-weight: 700; }
.hero-detail-list li::before { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(239,133,33,.1); content: ''; }
.hero3d-viewport { position: relative; height: min(78vh,760px); min-height: 560px; }
.hero3d-viewport::before { position: absolute; width: 72%; aspect-ratio: 1; left: 18%; top: 12%; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: inset 0 0 80px rgba(255,255,255,.035); content: ''; }
.hero3d-frame, .hero3d-fallback { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero3d-frame { z-index: 2; border: 0; outline: none; opacity: 0; pointer-events: none; transition: opacity .55s ease; }
.hero3d-fallback { z-index: 1; object-fit: contain; mix-blend-mode: screen; opacity: .82; transition: opacity .4s ease; }
.is-model-ready .hero3d-frame { opacity: 1; }
.is-model-ready .hero3d-fallback { opacity: 0; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero3d-spec { position: absolute; z-index: 4; right: 5%; top: 19%; display: grid; gap: 4px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(6,28,18,.48); backdrop-filter: blur(12px); }
.hero3d-spec span { color: #8ead97; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero3d-spec strong { font-size: 12px; }
.hero3d-hint { position: absolute; z-index: 4; right: 6%; bottom: 8%; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.5); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero3d-hint::before { width: 34px; height: 1px; background: var(--orange); content: ''; }
.hero3d-credit { position: absolute; z-index: 5; left: 24px; bottom: 22px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.11); border-radius: 99px; background: rgba(5,28,17,.52); color: rgba(255,255,255,.52); font-size: 8px; font-weight: 700; letter-spacing: .06em; backdrop-filter: blur(10px); transition: color .2s ease, border-color .2s ease; }
.hero3d-credit:hover { border-color: rgba(255,255,255,.28); color: #fff; }
.hero-progress { position: absolute; z-index: 6; right: 28px; top: 50%; display: grid; gap: 17px; transform: translateY(-50%); }
.hero-progress button { position: relative; width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.25); cursor: pointer; transition: background .25s ease, transform .25s ease; }
.hero-progress button::after { position: absolute; inset: -6px; border: 1px solid transparent; border-radius: 50%; content: ''; transition: border-color .25s ease; }
.hero-progress button.is-active { background: var(--orange); transform: scale(1.25); }
.hero-progress button.is-active::after { border-color: rgba(239,133,33,.4); }
.hero-scroll-cue { position: absolute; z-index: 5; left: 50%; bottom: 20px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.48); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; transform: translateX(-50%); }
.hero-scroll-cue i { position: relative; display: block; width: 22px; height: 34px; border: 1px solid rgba(255,255,255,.28); border-radius: 99px; }
.hero-scroll-cue i::after { position: absolute; width: 3px; height: 6px; left: 50%; top: 7px; border-radius: 99px; background: var(--orange); transform: translateX(-50%); animation: scrollDot 1.8s ease infinite; content: ''; }
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 35%{opacity:1} 100%{opacity:0;transform:translate(-50%,12px)} }

.category-card__glyph { position: absolute; top: 52px; right: -2px; color: rgba(23,73,44,.07); font-size: 150px; font-weight: 800; letter-spacing: -.1em; line-height: .8; transform: rotate(-8deg); transition: transform .4s ease, color .4s ease; }
.category-card:hover .category-card__glyph { color: rgba(23,73,44,.13); transform: rotate(-2deg) scale(1.03); }
.tone-dark .category-card__glyph { color: rgba(255,255,255,.08); }

.flagship { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(360px,.85fr); min-height: 620px; overflow: hidden; border-radius: var(--radius-lg); background: #fff; box-shadow: 0 22px 80px rgba(23,73,44,.09); }
.flagship__visual { position: relative; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg,#f0f6ec,#fff4df); }
.flagship__visual::before { position: absolute; width: 68%; aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.7); content: ''; }
.flagship__visual img { position: relative; z-index: 2; width: 88%; height: 88%; object-fit: contain; mix-blend-mode: multiply; transition: transform .6s cubic-bezier(.2,.75,.2,1); }
.flagship:hover .flagship__visual img { transform: scale(1.035) rotate(-1deg); }
.flagship__visual-label { position: absolute; z-index: 3; left: 24px; top: 24px; padding: 9px 12px; border-radius: 99px; background: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.flagship__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px,5vw,72px); background: #0c3522; color: #fff; }
.flagship__content h3 { margin: 20px 0 16px; font-size: clamp(38px,4vw,62px); font-weight: 600; letter-spacing: -.06em; line-height: .98; }
.flagship__content p { margin: 0; color: #aac5b2; font-size: 14px; line-height: 1.75; }
.flagship__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 30px 0; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 17px; background: rgba(255,255,255,.14); }
.flagship__spec { padding: 16px; background: rgba(255,255,255,.04); }
.flagship__spec span { display: block; color: #789a83; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.flagship__spec strong { display: block; margin-top: 6px; font-size: 12px; }
.flagship__actions { display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 960px) {
  .immersive-hero { height: 420vh; }
  .immersive-hero__layout { grid-template-columns: 1fr; padding-top: 74px; }
  .hero-story { z-index: 5; min-height: 100%; pointer-events: none; }
  .hero-beat { top: auto; bottom: 7%; max-width: 680px; padding: 130px 0 0; background: linear-gradient(transparent,rgba(7,31,21,.9) 38%); transform: translateY(28px); }
  .hero-beat.is-active { transform: none; }
  .hero-beat__actions, .hero-beat a, .hero-beat button { pointer-events: auto; }
  .hero-beat h1, .hero-beat h2 { max-width: 650px; font-size: clamp(48px,10vw,76px); }
  .hero3d-viewport { position: absolute; inset: 56px 0 23%; height: auto; min-height: 0; }
  .hero3d-spec { right: 10%; top: 11%; }
  .hero3d-hint { display: none; }
  .flagship { grid-template-columns: 1fr; }
  .flagship__visual { min-height: 520px; }
}

@media (max-width: 640px) {
  .immersive-hero__sticky { min-height: 620px; }
  .immersive-hero__layout { padding-top: 62px; }
  .hero-beat { left: 0; right: 0; bottom: 5%; }
  .hero-beat h1, .hero-beat h2 { margin: 14px 0 15px; font-size: clamp(43px,13.5vw,62px); }
  .hero-beat p { font-size: 13px; line-height: 1.55; }
  .hero-beat__actions { margin-top: 20px; }
  .hero-beat__actions .btn { min-height: 48px; padding-inline: 16px; }
  .hero-detail-list { gap: 8px; margin-top: 18px; }
  .hero-detail-list li { font-size: 9px; }
  .hero3d-viewport { inset: 64px -25% 29%; }
  .hero3d-spec { right: 24%; top: 6%; }
  .hero-progress { right: 14px; }
  .hero-scroll-cue { display: none; }
  .flagship__visual { min-height: 370px; }
  .flagship__content { padding: 30px 24px; }
}

.hero { position: relative; min-height: 790px; padding: 154px 0 62px; overflow: hidden; background: linear-gradient(135deg, #f8fbf8 0%, #eff8f2 62%, #fff5e2 100%); }
.hero::before { position: absolute; left: -10%; bottom: -34%; width: 52vw; height: 52vw; border: 1px solid rgba(40, 122, 89, .15); border-radius: 50%; content: ''; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr); align-items: center; gap: 5vw; min-height: 570px; }
.hero-copy { padding: 28px 0; }
.hero h1 { margin: 18px 0 24px; max-width: 760px; font-size: clamp(54px, 7vw, 108px); font-weight: 650; letter-spacing: -.075em; line-height: .89; }
.hero h1 span { color: var(--green); }
.hero .lead { max-width: 650px; margin: 0; color: #4e6b63; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 46px; color: var(--muted); font-size: 12px; font-weight: 700; }
.hero-proof span { display: flex; align-items: center; gap: 9px; }
.hero-proof i { width: 8px; height: 8px; border: 2px solid var(--green); border-radius: 50%; }
.product-stage { position: relative; min-height: 600px; perspective: 1200px; }
.product-stage--photo { overflow: hidden; border-radius: var(--radius-lg); background: var(--cream); box-shadow: 0 30px 80px rgba(23, 73, 44, .18); perspective: none; }
.product-stage--photo::after { position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(9,36,22,.38) 100%); content: ''; pointer-events: none; }
.product-stage__photo { width: 100%; height: 100%; min-height: 600px; object-fit: cover; object-position: 50% 54%; }
.stage-brand-chip { position: absolute; z-index: 3; left: 22px; bottom: 22px; display: flex; align-items: center; gap: 10px; padding: 9px 13px 9px 9px; border-radius: 14px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.stage-brand-chip img { width: 55px; height: 40px; border-radius: 8px; object-fit: cover; transform: scale(1.16); }
.stage-brand-chip span { display: grid; gap: 2px; }
.stage-brand-chip strong { font-size: 11px; }
.stage-brand-chip small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.stage-3d-button { position: absolute; z-index: 3; right: 22px; bottom: 22px; border-color: rgba(255,255,255,.55); background: rgba(23,73,44,.9); color: #fff; backdrop-filter: blur(10px); }
.product-stage__blob { position: absolute; inset: 8% 4% 8% 5%; border-radius: 43% 57% 52% 48% / 44% 41% 59% 56%; background: var(--orange); transform: rotate(-8deg); box-shadow: inset 0 0 90px rgba(255,255,255,.22), 0 50px 100px rgba(243,166,43,.16); }
.product-stage__ring { position: absolute; inset: 17% 3% 10%; border: 1px solid rgba(16, 59, 49, .2); border-radius: 50%; transform: rotate(-19deg); }
.product-stage__ring::after { position: absolute; top: 12%; right: 4%; width: 12px; height: 12px; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 7px rgba(255,255,255,.35); content: ''; }
.hero-product { --rx: -4deg; --ry: -7deg; --mx: 0px; --my: 0px; --scroll-turn: 0deg; --scroll-y: 0px; position: absolute; z-index: 3; width: 112%; max-width: none; left: -6%; top: 11%; mix-blend-mode: multiply; filter: drop-shadow(0 42px 35px rgba(37, 67, 58, .26)); transform: translate3d(var(--mx), calc(var(--my) + var(--scroll-y)), 0) rotateX(var(--rx)) rotateY(calc(var(--ry) + var(--scroll-turn))) rotateZ(-3deg); transition: transform .14s ease-out; will-change: transform; }
.floating-label { position: absolute; z-index: 5; display: grid; gap: 4px; min-width: 152px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.8); border-radius: 18px; background: rgba(255,255,255,.72); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.floating-label span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.floating-label strong { font-size: 13px; }
.floating-label--one { top: 14%; right: 0; }
.floating-label--two { left: -1%; bottom: 11%; }
.stage-caption { position: absolute; right: 1%; bottom: 0; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; }
.stage-caption::before { width: 38px; height: 1px; background: currentColor; content: ''; }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--white); }
.marquee__track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee__track span { display: inline-flex; align-items: center; gap: 25px; padding: 21px 26px; color: var(--ink-2); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.marquee__track span::after { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); content: ''; }
@keyframes marquee { to { transform: translateX(-50%); } }

.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.category-card { position: relative; min-height: 370px; padding: 25px; border-radius: var(--radius); overflow: hidden; transition: transform .35s ease, box-shadow .35s ease; }
.category-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.category-card__num { position: absolute; top: 24px; right: 24px; font-size: 11px; font-weight: 800; }
.category-card__visual { position: absolute; inset: 10% -7% auto 12%; height: 58%; display: grid; place-items: center; }
.category-card__visual::before { position: absolute; width: 65%; aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.54); content: ''; }
.category-card__visual img { position: relative; z-index: 1; width: 98%; mix-blend-mode: multiply; filter: drop-shadow(0 20px 22px rgba(16,59,49,.15)); transform: rotate(-7deg); transition: transform .4s ease; }
.category-card:hover .category-card__visual img { transform: rotate(1deg) scale(1.04); }
.category-card__meta { position: absolute; left: 25px; bottom: 83px; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.category-card strong { position: absolute; left: 25px; bottom: 48px; font-size: 26px; letter-spacing: -.035em; }
.category-card__bottom { position: absolute; left: 25px; right: 25px; bottom: 20px; display: flex; justify-content: space-between; color: var(--ink-2); font-size: 11px; font-weight: 700; }
.tone-orange { background: var(--orange-light); }
.tone-mint { background: var(--mint); }
.tone-lime { background: var(--lime); }
.tone-cream { background: var(--cream); }
.tone-blue { background: var(--blue); }
.tone-dark { background: var(--ink); color: var(--white); }
.tone-dark .category-card__bottom, .tone-dark .category-card__meta { color: #bad0c8; }
.tone-dark .category-card__visual img { opacity: .45; mix-blend-mode: screen; filter: invert(1) contrast(1.6); }

.manufacture-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(440px, .9fr); align-items: center; gap: clamp(40px, 8vw, 120px); }
.manufacture-copy .section-copy { max-width: 610px; margin: 30px 0 0; }
.metrics { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 46px; border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.metric { min-height: 138px; padding: 26px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.metric strong { display: block; color: var(--orange); font-size: clamp(32px, 4vw, 52px); font-weight: 600; letter-spacing: -.055em; }
.metric span { display: block; max-width: 160px; margin-top: 10px; color: #b7cbc4; font-size: 12px; line-height: 1.5; }
.factory-visual { position: relative; min-height: 590px; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(145deg, #87b99a 0%, #2c7659 48%, #164839 100%); }
.factory-visual::before { position: absolute; inset: 8%; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; content: ''; }
.factory-visual::after { position: absolute; left: -5%; bottom: -20%; width: 110%; height: 55%; border-radius: 50%; background: rgba(10,47,38,.55); transform: rotate(-10deg); content: ''; }
.factory-lines { position: absolute; inset: 12% 10%; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; align-items: end; }
.factory-lines i { display: block; border: 1px solid rgba(255,255,255,.3); border-radius: 99px 99px 12px 12px; background: linear-gradient(to top, rgba(255,255,255,.16), transparent); }
.factory-lines i:nth-child(1) { height: 40%; }.factory-lines i:nth-child(2) { height: 66%; }.factory-lines i:nth-child(3) { height: 84%; }.factory-lines i:nth-child(4) { height: 54%; }.factory-lines i:nth-child(5) { height: 74%; }
.factory-badge { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 26px; display: flex; justify-content: space-between; align-items: end; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.3); color: var(--white); }
.factory-badge span { max-width: 230px; color: #cbe0d4; font-size: 12px; line-height: 1.6; }
.factory-badge strong { font-size: 52px; font-weight: 500; letter-spacing: -.06em; }

.advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.advantage { min-height: 255px; padding: 27px; background: var(--white); transition: background .3s ease; }
.advantage:hover { background: var(--mint-2); }
.advantage__icon { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 16px; background: var(--mint); color: var(--green); font-size: 19px; font-weight: 800; }
.advantage h3 { margin: 55px 0 12px; font-size: 20px; letter-spacing: -.03em; }
.advantage p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 16px; }
.product-card { min-width: 0; }
.product-card__image { position: relative; aspect-ratio: 1.03; border-radius: var(--radius); overflow: hidden; }
.product-card__image::before { position: absolute; width: 54%; aspect-ratio: 1; left: 23%; top: 21%; border-radius: 50%; background: rgba(255,255,255,.66); content: ''; }
.product-card__image img { position: absolute; z-index: 1; width: 90%; height: 82%; max-width: none; left: 5%; top: 9%; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(0 23px 20px rgba(16,59,49,.16)); transform: rotate(-5deg) scale(.94); transition: transform .45s cubic-bezier(.2,.75,.2,1); }
.product-card:hover .product-card__image img { transform: rotate(1deg) scale(1.02); }
.product-card__badge { position: absolute; z-index: 3; top: 16px; left: 16px; padding: 8px 11px; border-radius: 99px; background: var(--white); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-card__index { position: absolute; z-index: 2; right: 17px; top: 17px; color: var(--ink-2); font-size: 10px; font-weight: 800; }
.product-card__open { position: absolute; z-index: 3; right: 16px; bottom: 16px; display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); transition: transform .3s ease, background .3s ease; }
.product-card:hover .product-card__open { background: var(--green); transform: rotate(45deg); }
.product-card__body { padding: 17px 3px 12px; }
.product-card__body .eyebrow { font-size: 9px; }
.product-card__body h3 { margin: 11px 0 13px; font-size: clamp(17px, 1.5vw, 21px); font-weight: 650; letter-spacing: -.035em; line-height: 1.3; }
.product-card__spec { display: flex; flex-wrap: wrap; gap: 8px 14px; color: var(--muted); font-size: 11px; font-weight: 700; }
.product-card__spec span + span::before { display: inline-block; width: 4px; height: 4px; margin: 0 9px 2px 0; border-radius: 50%; background: var(--orange); content: ''; }

.custom-cta { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--orange); }
.custom-cta::before { position: absolute; right: -8%; top: -65%; width: 60%; aspect-ratio: 1; border: 1px solid rgba(16,59,49,.25); border-radius: 50%; content: ''; }
.custom-cta::after { position: absolute; right: 8%; bottom: -65%; width: 44%; aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.22); content: ''; }
.custom-cta__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 50px; min-height: 410px; padding: clamp(34px, 6vw, 82px); }
.custom-cta h2 { margin: 18px 0 0; max-width: 820px; font-size: clamp(40px, 6vw, 82px); font-weight: 650; letter-spacing: -.065em; line-height: .98; }
.custom-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 28px; margin: 34px 0 0; padding: 0; list-style: none; font-size: 12px; font-weight: 800; }
.custom-list li::before { margin-right: 9px; content: '✓'; }

.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-card { min-height: 180px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); }
.trust-card span { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50%; background: var(--mint); color: var(--green); font-size: 12px; font-weight: 900; }
.trust-card h3 { margin: 31px 0 8px; font-size: 16px; }
.trust-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; }
.contact-list { display: grid; gap: 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-item { display: grid; grid-template-columns: 120px 1fr; gap: 22px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-item span { color: #9fbbb1; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-item strong { font-size: 15px; }
.map-placeholder { position: relative; min-height: 520px; border-radius: var(--radius-lg); overflow: hidden; background: #18493a; background-image: radial-gradient(circle at 20% 32%, rgba(121,183,143,.5) 0 3px, transparent 4px), radial-gradient(circle at 62% 62%, rgba(243,166,43,.8) 0 7px, transparent 8px), linear-gradient(35deg, transparent 48%, rgba(255,255,255,.12) 49% 51%, transparent 52%), linear-gradient(145deg, transparent 48%, rgba(255,255,255,.08) 49% 51%, transparent 52%); background-size: 100% 100%, 100% 100%, 120px 120px, 160px 160px; }
.map-pin { position: absolute; left: 62%; top: 60%; display: grid; width: 84px; height: 84px; place-items: center; border: 12px solid rgba(255,255,255,.18); border-radius: 50%; background: var(--orange); box-shadow: 0 15px 30px rgba(0,0,0,.24); color: var(--ink); font-weight: 900; transform: translate(-50%, -50%); }
.map-note { position: absolute; left: 28px; right: 28px; bottom: 28px; padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(16,59,49,.76); backdrop-filter: blur(12px); }
.map-note strong { display: block; font-size: 18px; }
.map-note span { display: block; margin-top: 6px; color: #aac5bb; font-size: 11px; }

.site-footer { padding: 44px 0 30px; background: #0b3028; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-brand p { max-width: 300px; margin: 22px 0 0; color: #9cb8ae; font-size: 12px; line-height: 1.75; }
.footer-col h3 { margin: 0 0 20px; color: #8eaca1; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.footer-col nav { display: grid; gap: 12px; }
.footer-col a { width: max-content; font-size: 12px; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.13); color: #78998d; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }

/* Catalog */
.catalog-hero { padding: 80px 0 44px; background: linear-gradient(160deg, #f5faf6, #fff7e7); }
.catalog-hero__top { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: end; gap: 50px; }
.catalog-hero .display-title { max-width: 820px; }
.catalog-search { position: relative; margin-top: 48px; }
.catalog-search svg { position: absolute; left: 24px; top: 50%; width: 22px; transform: translateY(-50%); color: var(--green); }
.catalog-search input { width: 100%; height: 76px; padding: 0 170px 0 63px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 16px 50px rgba(16,59,49,.08); color: var(--ink); font-size: 16px; outline: none; }
.catalog-search input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(40,122,89,.1); }
.catalog-search__hint { position: absolute; right: 20px; top: 50%; padding: 7px 10px; border-radius: 8px; background: var(--mint); color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .08em; transform: translateY(-50%); }
.catalog-layout { display: grid; grid-template-columns: 245px minmax(0, 1fr); gap: clamp(36px, 5vw, 70px); }
.filters { position: sticky; top: 100px; align-self: start; }
.filters__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.filters__head strong { font-size: 15px; }
.filters__head button { border: 0; background: none; color: var(--green); cursor: pointer; font-size: 10px; font-weight: 800; }
.filters__close { display: none; }
.filter-group { padding: 24px 0; border-bottom: 1px solid var(--line); }
.filter-group h3 { margin: 0 0 15px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.filter-list { display: grid; gap: 5px; }
.filter-pill { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 9px 0; border: 0; background: transparent; color: var(--muted); cursor: pointer; text-align: left; font-size: 12px; }
.filter-pill:hover, .filter-pill.is-active { color: var(--ink); font-weight: 800; }
.filter-pill__dot { width: 12px; height: 12px; border: 1px solid var(--line); border-radius: 50%; }
.filter-pill.is-active .filter-pill__dot { border: 3px solid var(--white); background: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.catalog-main__bar { display: flex; min-height: 46px; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.result-count { color: var(--muted); font-size: 12px; font-weight: 800; }
.filter-open { display: none; }
.catalog-grid { grid-template-columns: repeat(3, 1fr); }
.empty-state { padding: 80px 30px; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }
.empty-state[hidden] { display: none; }
.empty-state span { display: grid; width: 70px; height: 70px; margin: 0 auto 25px; place-items: center; border-radius: 50%; background: var(--mint); font-size: 24px; }
.empty-state h2 { margin: 0; font-size: 26px; letter-spacing: -.04em; }
.empty-state p { margin: 10px 0 24px; color: var(--muted); font-size: 13px; }
.filters-backdrop { display: none; }

/* Product */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; padding: 34px 0; color: var(--muted); font-size: 10px; font-weight: 700; }
.breadcrumbs a:hover { color: var(--green); }
.breadcrumbs span::before { margin-right: 8px; content: '/'; }
.product-main { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .82fr); gap: clamp(45px, 7vw, 100px); align-items: start; padding-bottom: clamp(80px, 10vw, 150px); }
.product-gallery { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 14px; }
.gallery-thumbs { display: grid; align-content: start; gap: 10px; }
.gallery-thumb { position: relative; aspect-ratio: 1; padding: 0; overflow: hidden; border: 1px solid transparent; border-radius: 16px; background: var(--mint); cursor: pointer; }
.gallery-thumb.is-active { border-color: var(--green); box-shadow: 0 0 0 3px rgba(40,122,89,.1); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transform: rotate(-5deg) scale(.88); }
.gallery-thumb:nth-child(2) img { transform: rotate(12deg) scale(.9); }
.gallery-thumb:nth-child(3) img { transform: rotate(-21deg) scale(.84); }
.gallery-main { position: relative; aspect-ratio: 1 / .96; display: grid; place-items: center; border-radius: var(--radius-lg); overflow: hidden; }
.gallery-main::before { position: absolute; width: 62%; aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.65); content: ''; }
.gallery-main img { position: relative; z-index: 1; width: 92%; height: 90%; max-width: none; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(0 32px 27px rgba(16,59,49,.2)); transform: rotate(-5deg); transition: transform .4s ease; }
.gallery-main[data-view="1"] img { transform: rotateY(180deg) rotate(-8deg) scale(.91); }
.gallery-main[data-view="2"] img { transform: rotate(17deg) scale(.86); }
.gallery-caption { position: absolute; z-index: 2; left: 22px; bottom: 20px; padding: 10px 13px; border-radius: 99px; background: rgba(255,255,255,.75); color: var(--muted); font-size: 9px; font-weight: 800; backdrop-filter: blur(10px); }
.product-info { position: sticky; top: 112px; }
.product-info__article { display: inline-flex; padding: 8px 12px; border-radius: 99px; background: var(--orange-light); color: #8a5e13; font-size: 10px; font-weight: 900; letter-spacing: .09em; }
.product-info h1 { margin: 20px 0 20px; font-size: clamp(39px, 4.5vw, 67px); font-weight: 650; letter-spacing: -.06em; line-height: .98; }
.product-info__lead { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.product-info__quick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 30px 0; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--line); }
.quick-item { padding: 17px; background: var(--white); }
.quick-item span { display: block; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.quick-item strong { display: block; margin-top: 6px; font-size: 13px; }
.product-info__actions { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; }
.product-info__note { display: flex; gap: 10px; margin: 17px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.product-info__note::before { width: 8px; height: 8px; margin-top: 3px; flex: 0 0 auto; border-radius: 50%; background: #43a56b; content: ''; }
.product-details { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(50px, 9vw, 140px); }
.product-description p { color: var(--muted); font-size: 15px; line-height: 1.8; }
.feature-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.feature-chips span { padding: 10px 13px; border-radius: 99px; background: var(--mint); color: var(--green); font-size: 10px; font-weight: 800; }
.spec-list { margin: 0; border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 18px 2px; border-bottom: 1px solid var(--line); font-size: 12px; }
.spec-row dt { color: var(--muted); }
.spec-row dd { margin: 0; font-weight: 800; text-align: right; }
.delivery-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; overflow: hidden; border-radius: var(--radius); background: rgba(255,255,255,.16); }
.delivery-item { min-height: 190px; padding: 28px; background: rgba(255,255,255,.05); }
.delivery-item span { color: var(--orange); font-size: 11px; font-weight: 900; }
.delivery-item h3 { margin: 42px 0 10px; font-size: 19px; }
.delivery-item p { margin: 0; color: #aac2b9; font-size: 11px; line-height: 1.7; }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 26px; max-width: min(520px, calc(100% - 32px)); padding: 14px 18px; border-radius: 14px; background: var(--ink); box-shadow: var(--shadow); color: var(--white); font-size: 11px; font-weight: 700; opacity: 0; pointer-events: none; transform: translate(-50%, 12px); transition: opacity .25s ease, transform .25s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.model-dialog { width: min(1100px, calc(100% - 28px)); padding: 0; border: 0; border-radius: 28px; overflow: hidden; background: #0c2f1d; color: #fff; box-shadow: 0 35px 110px rgba(0,0,0,.42); }
.model-dialog::backdrop { background: rgba(4,22,13,.76); backdrop-filter: blur(8px); }
.model-dialog__head { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 20px; }
.model-dialog__head strong { display: block; font-size: 15px; }
.model-dialog__head span { display: block; margin-top: 3px; color: #9fc0a8; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.model-dialog__close { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; cursor: pointer; font-size: 22px; }
.model-dialog__viewer { position: relative; aspect-ratio: 16 / 9; background: #102e22; }
.model-dialog__viewer iframe { width: 100%; height: 100%; border: 0; }
.model-dialog__loading { position: absolute; inset: 0; display: grid; place-items: center; color: #a9c5b1; font-size: 12px; }
.model-dialog__credit { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 13px 20px; color: #99b5a1; font-size: 9px; }
.model-dialog__credit a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1160px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: 11px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 32px; }
}

@media (max-width: 960px) {
  .site-container { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-actions > .lang-switch, .header-actions > .btn { display: none; }
  .menu-button { display: inline-flex; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero h1, .hero .lead { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .product-stage { min-height: min(600px, 78vw); width: min(700px, 100%); margin: 0 auto; }
  .product-stage__photo { min-height: min(600px, 78vw); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .manufacture-grid { grid-template-columns: 1fr; }
  .factory-visual { min-height: 500px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-cta__inner { grid-template-columns: 1fr; align-items: start; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .map-placeholder { min-height: 430px; }
  .catalog-hero__top { grid-template-columns: 1fr; gap: 24px; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: fixed; z-index: 80; inset: 0 auto 0 0; width: min(360px, 90vw); padding: 26px; overflow-y: auto; background: var(--white); transform: translateX(-101%); transition: transform .28s ease; }
  .filters.is-open { transform: translateX(0); }
  .filters__close { display: inline-grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line) !important; border-radius: 50%; }
  .filter-open { display: inline-flex; min-height: 42px; }
  .filters-backdrop { position: fixed; z-index: 75; inset: 0; display: block; background: rgba(5,29,23,.52); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .filters-backdrop.is-open { opacity: 1; pointer-events: auto; }
  .product-main { grid-template-columns: 1fr; }
  .product-info { position: static; }
  .product-details { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .site-container { width: min(calc(100% - 24px), var(--container)); }
  .site-section { padding-block: 72px; }
  .site-section--compact { padding-block: 54px; }
  .page-shell { padding-top: 78px; }
  .site-header { padding: 10px 0; }
  .header-inner { min-height: 56px; }
  .brand-mark { width: 35px; height: 35px; }
  .brand-logo-wrap { width: 125px; height: 43px; }
  .brand-text strong { font-size: 17px; }
  .section-head { display: grid; gap: 20px; margin-bottom: 30px; }
  .display-title { font-size: clamp(40px, 14vw, 62px); }
  .section-title { font-size: 39px; }
  .hero { padding-top: 112px; }
  .hero-grid { gap: 20px; }
  .hero h1 { font-size: clamp(52px, 15vw, 76px); }
  .hero .lead { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; justify-content: start; margin: 30px auto 0; width: max-content; gap: 11px; text-align: left; }
  .product-stage { min-height: 390px; }
  .product-stage__photo { min-height: 390px; }
  .stage-brand-chip { left: 13px; bottom: 13px; }
  .stage-brand-chip span { display: none; }
  .stage-3d-button { right: 13px; bottom: 13px; min-height: 46px; padding-inline: 16px; }
  .product-stage__blob { inset: 8% 2% 7%; }
  .hero-product { width: 120%; left: -10%; top: 10%; }
  .floating-label { min-width: 126px; padding: 11px 13px; }
  .floating-label--one { top: 8%; }
  .floating-label--two { bottom: 5%; }
  .stage-caption { display: none; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 330px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric { min-height: 120px; padding: 18px; }
  .factory-visual { min-height: 420px; }
  .factory-badge strong { font-size: 38px; }
  .advantages-grid { grid-template-columns: 1fr; }
  .advantage { min-height: 220px; }
  .advantage h3 { margin-top: 35px; }
  .product-grid, .catalog-grid { grid-template-columns: 1fr; }
  .product-card__image { aspect-ratio: 1.15; }
  .custom-cta__inner { min-height: auto; padding: 34px 24px; }
  .custom-cta h2 { font-size: 41px; }
  .custom-list { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .contact-item { grid-template-columns: 1fr; gap: 7px; }
  .map-placeholder { min-height: 370px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
  .catalog-hero { padding-top: 58px; }
  .catalog-search input { height: 66px; padding-right: 20px; }
  .catalog-search__hint { display: none; }
  .product-gallery { grid-template-columns: 1fr; }
  .gallery-thumbs { grid-row: 2; grid-template-columns: repeat(3, 1fr); }
  .gallery-main { aspect-ratio: 1; }
  .product-info h1 { font-size: 43px; }
  .product-info__actions { grid-template-columns: 1fr; }
  .delivery-strip { grid-template-columns: 1fr; }
  .delivery-item { min-height: 150px; }
  .delivery-item h3 { margin-top: 27px; }
}

@media (max-width: 520px) {
  .model-dialog__viewer { aspect-ratio: 4 / 5; }
  .model-dialog__credit { display: grid; }
}

@media (max-width: 370px) {
  .brand-text small { display: none; }
  .hero h1 { font-size: 49px; }
  .product-stage { min-height: 340px; }
  .floating-label { display: none; }
  .metrics { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-col:last-child, .footer-brand { grid-column: auto; }
}

/* Chapter-based 3D scroll: the canvas stays fixed while the product travels between content blocks. */
.immersive-hero { height: auto; }
.immersive-hero__sticky { z-index: 2; }
.hero3d-viewport { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; }
.hero3d-viewport::before { width: min(62vw,760px); left: 50%; top: 50%; transform: translate(-50%,-50%); }
.hero-chapters { position: relative; z-index: 4; margin-top: -100vh; pointer-events: none; }
.hero-chapter { min-height: 100vh; min-height: 100svh; display: flex; align-items: center; opacity: .32; transition: opacity .45s ease; }
.hero-chapter.is-active { opacity: 1; }
.hero-chapter--left { justify-content: flex-start; }
.hero-chapter--right { justify-content: flex-end; }
.hero-chapter--center { align-items: flex-end; justify-content: center; padding-bottom: 7vh; text-align: center; }
.hero-chapter__panel { width: min(520px,43vw); padding: 34px; border: 1px solid rgba(255,255,255,.13); border-radius: 25px; background: rgba(5,28,17,.7); box-shadow: 0 26px 80px rgba(0,0,0,.18); backdrop-filter: blur(18px); pointer-events: auto; }
.hero-chapter h1, .hero-chapter h2 { margin: 20px 0 22px; font-size: clamp(43px,4.4vw,72px); font-weight: 600; letter-spacing: -.065em; line-height: .94; }
.hero-chapter h1 em, .hero-chapter h2 em { color: var(--orange); font-style: normal; }
.hero-chapter p { margin: 0; color: #b7cabe; font-size: 15px; line-height: 1.72; }
.hero-chapter--center .hero-chapter__panel { width: min(760px,70vw); }
.hero-chapter--center .hero-beat__index { justify-content: center; }
.hero-chapter--center .hero-beat__actions { justify-content: center; }

@media (max-width: 960px) {
  .hero3d-viewport { inset: 0; }
  .hero-chapters { width: min(calc(100% - 28px),var(--container)); }
  .hero-chapter { align-items: flex-end; justify-content: stretch; padding-bottom: 6vh; }
  .hero-chapter__panel, .hero-chapter--center .hero-chapter__panel { width: min(610px,82vw); padding: 26px; text-align: left; }
  .hero-chapter--right { justify-content: flex-end; }
  .hero-chapter--center { justify-content: center; }
  .hero-chapter--center .hero-beat__index, .hero-chapter--center .hero-beat__actions { justify-content: flex-start; }
  .hero-chapter h1, .hero-chapter h2 { font-size: clamp(42px,8vw,64px); }
  .hero3d-spec { top: 13%; right: 6%; }
}

@media (max-width: 640px) {
  .immersive-hero__sticky { min-height: 620px; }
  .hero3d-viewport { inset: 40px -22% 28%; }
  .hero-chapter { padding-bottom: 4vh; }
  .hero-chapter__panel, .hero-chapter--center .hero-chapter__panel { width: 100%; padding: 20px; border-radius: 20px; }
  .hero-chapter h1, .hero-chapter h2 { margin: 12px 0 14px; font-size: clamp(39px,11.5vw,54px); }
  .hero-chapter p { font-size: 12px; line-height: 1.55; }
  .hero-chapter .hero-detail-list { grid-template-columns: 1fr 1fr; }
  .hero3d-spec { right: 24%; top: 8%; }
  .hero3d-credit { left: 24%; bottom: 2px; font-size: 7px; }
}

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

/* Homepage v2: manufacturer-first hero. The 3D object is decorative, not the page subject. */
.home-hero { position: relative; min-height: 100vh; min-height: 100svh; overflow: hidden; background: #071f15; color: #fff; isolation: isolate; }
.home-hero::before { position: absolute; z-index: -2; inset: 0; background: radial-gradient(circle at 76% 45%,rgba(86,160,96,.27),transparent 33%),linear-gradient(122deg,#061b12 0%,#0b3522 56%,#082619 100%); content: ''; }
.home-hero::after { position: absolute; z-index: -1; inset: 0; opacity: .22; 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: 76px 76px; mask-image: linear-gradient(90deg,#000 0%,rgba(0,0,0,.7) 54%,transparent 95%); content: ''; }
.home-hero__glow { position: absolute; z-index: 1; right: 7%; top: 18%; width: min(46vw,670px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: inset 0 0 120px rgba(255,255,255,.025),0 0 120px rgba(66,142,82,.12); }
.home-hero__inner { position: relative; z-index: 4; display: grid; grid-template-rows: 1fr auto; min-height: 100vh; min-height: 100svh; padding-top: 136px; padding-bottom: 34px; }
.home-hero__copy { width: min(720px,59vw); align-self: center; padding: 48px 0 72px; }
.eyebrow--light { color: #a7cfaf; }
.home-hero h1 { max-width: 780px; margin: 24px 0 26px; font-size: clamp(58px,7vw,112px); font-weight: 600; letter-spacing: -.078em; line-height: .86; }
.home-hero h1 em { color: var(--orange); font-style: normal; }
.home-hero__copy > p { max-width: 625px; margin: 0; color: #bed0c3; font-size: clamp(15px,1.25vw,18px); line-height: 1.72; }
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn-ghost-light { border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.07); color: #fff; }
.btn-ghost-light:hover { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.12); }
.home-hero__search { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; width: min(590px,100%); margin-top: 18px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.055); color: #d5e3d8; backdrop-filter: blur(12px); transition: border-color .2s ease,background .2s ease; }
.home-hero__search:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.09); }
.home-hero__search > span:first-child { color: var(--orange); font-size: 21px; }
.home-hero__search > span:nth-child(2) { font-size: 12px; font-weight: 650; }
.home-hero__search strong { color: #fff; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.home-hero__facts { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); width: min(820px,72%); border-top: 1px solid rgba(255,255,255,.14); }
.home-hero__facts > div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 13px; padding: 24px 24px 4px 0; }
.home-hero__facts strong { color: #fff; font-size: 17px; letter-spacing: -.03em; }
.home-hero__facts span { max-width: 150px; color: #8ead97; font-size: 9px; font-weight: 700; line-height: 1.45; letter-spacing: .06em; text-transform: uppercase; }
.home-hero__model { position: absolute; z-index: 2; top: 5%; right: -5%; width: 64%; height: 90%; overflow: hidden; pointer-events: none; mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.6) 17%,#000 43%,#000 100%); }
.home-hero__model .hero3d-frame,.home-hero__model .hero3d-fallback { transform: scale(1.07); }
.home-hero__model .hero3d-credit { z-index: 5; left: auto; right: 6%; bottom: 4%; color: rgba(255,255,255,.34); pointer-events: auto; }

@media (max-width: 960px) {
  .home-hero__copy { width: min(670px,72vw); }
  .home-hero__model { right: -24%; width: 82%; opacity: .68; }
  .home-hero__facts { width: 86%; }
}

@media (max-width: 640px) {
  .home-hero { min-height: 820px; }
  .home-hero__inner { min-height: 820px; padding-top: 96px; padding-bottom: 20px; }
  .home-hero__copy { width: 100%; align-self: start; padding: 48px 0 20px; }
  .home-hero h1 { margin: 16px 0 18px; font-size: clamp(50px,15vw,70px); line-height: .9; }
  .home-hero__copy > p { max-width: 92%; font-size: 13px; line-height: 1.6; }
  .home-hero__actions { margin-top: 22px; }
  .home-hero__actions .btn { width: 100%; }
  .home-hero__search { padding: 13px 14px; }
  .home-hero__search > span:nth-child(2) { font-size: 10px; }
  .home-hero__search strong { display: none; }
  .home-hero__model { top: 45%; right: -38%; width: 132%; height: 48%; opacity: .55; mask-image: linear-gradient(180deg,transparent,#000 30%); }
  .home-hero__glow { right: -30%; top: 52%; width: 94vw; }
  .home-hero__facts { position: relative; z-index: 5; grid-template-columns: 1fr; width: 100%; padding: 0 0 8px; }
  .home-hero__facts > div { grid-template-columns: 62px 1fr; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
  .home-hero__facts span { max-width: none; }
  .home-hero__model .hero3d-credit { right: 31%; bottom: 0; }
}

/* Homepage v2: catalog-led content system */
.category-card { display: grid; grid-template-rows: 245px 1fr; min-height: 510px; padding: 0; border: 1px solid var(--line); background: var(--white); }
.category-card__image { position: relative; display: block; overflow: hidden; background: var(--mint-2); }
.category-card__image img { position: absolute; top: 0; width: 200%; height: 100%; max-width: none; object-fit: cover; transition: transform .55s cubic-bezier(.2,.75,.2,1); }
.category-card__image img.visual-left { left: 0; }
.category-card__image img.visual-right { left: -100%; }
.category-card:hover .category-card__image img { transform: scale(1.035); }
.category-card__content { position: relative; display: flex; min-height: 265px; flex-direction: column; padding: 24px; }
.category-card__num { top: 24px; right: 24px; color: var(--green); }
.category-card__meta { position: static; color: var(--green); font-size: 9px; }
.category-card strong { position: static; margin-top: 14px; font-size: 27px; }
.category-card__description { max-width: 300px; margin-top: 11px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.category-card__bottom { position: static; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); color: var(--ink-2); }
.category-card.tone-dark { color: var(--ink); }
.category-card.tone-dark .category-card__content { background: var(--ink); color: #fff; }
.category-card.tone-dark .category-card__num { color: var(--orange); }
.category-card.tone-dark .category-card__description,.category-card.tone-dark .category-card__bottom,.category-card.tone-dark .category-card__meta { color: #b8cdc0; }
.category-card.tone-dark .category-card__bottom { border-color: rgba(255,255,255,.15); }

.manufacturer-intro { display: grid; grid-template-columns: minmax(0,.85fr) minmax(520px,1.15fr); align-items: start; gap: clamp(48px,8vw,120px); }
.manufacturer-intro__lead .section-copy { max-width: 570px; margin-top: 28px; }
.text-link { display: inline-flex; gap: 12px; margin-top: 32px; padding-bottom: 7px; border-bottom: 1px solid currentColor; color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.manufacturer-capabilities { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.manufacturer-capabilities article { min-height: 220px; padding: 27px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.58); }
.manufacturer-capabilities article > span { color: var(--orange); font-size: 11px; font-weight: 900; }
.manufacturer-capabilities h3 { margin: 48px 0 10px; font-size: 20px; letter-spacing: -.035em; }
.manufacturer-capabilities p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.advantages-grid--six { grid-template-columns: repeat(3,1fr); }
.advantages-grid--six .advantage { min-height: 270px; }
.section-head__actions { display: grid; justify-items: start; gap: 22px; max-width: 490px; }
.product-grid--featured .product-card__image { aspect-ratio: 1.16; background: #f2f5ef; }
.related-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
.product-card__image::before { display: none; }
.product-card__image img { top: 0; width: 200%; height: 100%; max-width: none; object-fit: cover; mix-blend-mode: normal; filter: none; transform: none; }
.product-card__image img.visual-left { left: 0; }
.product-card__image img.visual-right { left: -100%; }
.product-card:hover .product-card__image img { transform: scale(1.035); }

.section-head--light .section-copy { color: #b7cabe; }
.production-showcase { position: relative; min-height: 620px; overflow: hidden; border-radius: var(--radius-lg); background: #09281b; }
.production-showcase > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.production-showcase::after { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(4,25,16,.94) 0%,rgba(4,25,16,.68) 32%,rgba(4,25,16,.08) 68%,rgba(4,25,16,.12) 100%); content: ''; }
.production-showcase__overlay { position: absolute; z-index: 2; left: clamp(28px,5vw,72px); top: 50%; width: min(410px,42%); color: #fff; transform: translateY(-50%); }
.production-showcase__overlay > span { color: #a8cbb1; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.production-showcase__overlay ol { display: grid; gap: 0; margin: 28px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.production-showcase__overlay li { display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 12px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.2); color: #dce9df; font-size: 14px; }
.production-showcase__overlay li strong { color: var(--orange); font-size: 11px; }
.custom-cta--wholesale p { max-width: 720px; margin: 24px 0 0; color: rgba(16,59,49,.78); font-size: 14px; line-height: 1.7; }

.final-lead-section { padding-top: 40px; }
.final-lead { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 60px; padding: clamp(36px,6vw,80px); border-radius: var(--radius-lg); background: var(--ink); color: #fff; }
.final-lead h2 { max-width: 880px; margin: 18px 0 0; font-size: clamp(42px,5.6vw,78px); font-weight: 620; letter-spacing: -.067em; line-height: .96; }
.final-lead p { max-width: 660px; margin: 22px 0 0; color: #b9cdc0; font-size: 14px; line-height: 1.7; }
.final-lead__actions { display: grid; gap: 10px; min-width: 240px; }
.final-lead__actions .btn { width: 100%; }

@media (max-width: 960px) {
  .manufacturer-intro { grid-template-columns: 1fr; }
  .advantages-grid--six { grid-template-columns: repeat(2,1fr); }
  .production-showcase { min-height: 560px; }
  .production-showcase__overlay { width: min(440px,60%); }
  .final-lead { grid-template-columns: 1fr; align-items: start; }
  .final-lead__actions { grid-template-columns: repeat(2,minmax(0,1fr)); width: 100%; }
  .related-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .category-card { grid-template-rows: 220px 1fr; min-height: 470px; }
  .manufacturer-capabilities { grid-template-columns: 1fr; }
  .manufacturer-capabilities article { min-height: 190px; }
  .advantages-grid--six { grid-template-columns: 1fr; }
  .section-head__actions { gap: 16px; }
  .production-showcase { min-height: 600px; }
  .production-showcase > img { object-position: 68% center; }
  .production-showcase::after { background: linear-gradient(180deg,rgba(4,25,16,.16),rgba(4,25,16,.92) 54%,rgba(4,25,16,.98)); }
  .production-showcase__overlay { left: 22px; right: 22px; top: auto; bottom: 18px; width: auto; transform: none; }
  .production-showcase__overlay li { padding: 14px 0; font-size: 12px; }
  .final-lead { padding: 34px 24px; }
  .final-lead h2 { font-size: 43px; }
  .final-lead__actions { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

/* Scroll journey: one decorative 3D object travels through four business stories. */
.model-journey {
  --model-x: 22vw;
  --model-y: 0vh;
  --model-scale: 1;
  --journey-progress: 0;
  position: relative;
  min-height: 400vh;
  background: #071f15;
  color: #fff;
  isolation: isolate;
}
.model-journey__sticky {
  position: sticky;
  z-index: 1;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(67,145,81,.24), transparent 34%),
    radial-gradient(circle at 13% 86%, rgba(239,133,33,.12), transparent 25%),
    linear-gradient(120deg, #061b12 0%, #0b3522 54%, #071f15 100%);
}
.model-journey__sticky::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,25,16,.12), transparent 42%, rgba(5,25,16,.1));
  content: '';
  pointer-events: none;
}
.model-journey__grid {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.42) 52%, #000);
}
.model-journey__halo {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: min(56vw, 780px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: inset 0 0 150px rgba(255,255,255,.025), 0 0 140px rgba(75,154,90,.13);
  transform: translate3d(calc(-50% + var(--model-x)), calc(-50% + var(--model-y)), 0);
  transition: border-color .5s ease;
}
.model-journey__model {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: min(68vw, 980px);
  height: min(88vh, 870px);
  min-height: 520px;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(calc(-50% + var(--model-x)), calc(-50% + var(--model-y)), 0) scale(var(--model-scale));
  transform-origin: 50% 50%;
  will-change: transform;
  mask-image: radial-gradient(ellipse 68% 62% at 50% 50%, #000 56%, transparent 100%);
}
.model-journey__model .hero3d-frame,
.model-journey__model .hero3d-fallback { transform: scale(1.09); }
.model-journey__model .hero3d-credit {
  left: auto;
  right: 8%;
  bottom: 8%;
  color: rgba(255,255,255,.38);
  pointer-events: auto;
}
.model-journey__counter {
  position: absolute;
  z-index: 5;
  left: max(24px, calc((100vw - min(1400px, calc(100vw - 80px))) / 2));
  bottom: 34px;
  display: grid;
  grid-template-columns: auto minmax(80px, 160px) auto;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,.52);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}
.model-journey__counter > span:first-child { color: var(--orange); }
.model-journey__counter i { position: relative; height: 1px; overflow: hidden; background: rgba(255,255,255,.15); }
.model-journey__counter i::after {
  position: absolute;
  inset: 0;
  background: var(--orange);
  content: '';
  transform: scaleX(var(--journey-progress));
  transform-origin: left center;
}
.model-journey__scroll {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100vw - min(1400px, calc(100vw - 80px))) / 2));
  bottom: 31px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.42);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.model-journey__scroll i { position: relative; width: 1px; height: 36px; overflow: hidden; background: rgba(255,255,255,.15); }
.model-journey__scroll i::after { position: absolute; inset: 0; background: var(--orange); content: ''; animation: journey-scroll 1.8s ease-in-out infinite; }
@keyframes journey-scroll { 0% { transform: translateY(-100%); } 55%,100% { transform: translateY(100%); } }
.model-journey__scenes { position: relative; z-index: 4; margin-top: -100vh; margin-top: -100svh; }
.model-scene {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  padding-top: 105px;
  padding-bottom: 105px;
  pointer-events: none;
}
.model-scene--left { justify-content: flex-start; }
.model-scene--right { justify-content: flex-end; }
.model-scene__panel {
  width: min(580px, 44vw);
  padding: 34px 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(5,27,17,.88), rgba(5,27,17,.64));
  box-shadow: 0 30px 100px rgba(0,0,0,.18);
  opacity: .24;
  backdrop-filter: blur(18px);
  transform: translateY(34px) scale(.98);
  transition: opacity .48s ease, transform .55s cubic-bezier(.2,.75,.2,1), border-color .45s ease;
  pointer-events: auto;
}
.model-scene:first-child .model-scene__panel { width: min(710px, 53vw); }
.model-scene.is-active .model-scene__panel {
  border-color: rgba(255,255,255,.2);
  opacity: 1;
  transform: translateY(0) scale(1);
}
.model-scene h1,
.model-scene h2 {
  margin: 20px 0 22px;
  font-size: clamp(49px, 5.2vw, 82px);
  font-weight: 600;
  letter-spacing: -.072em;
  line-height: .9;
}
.model-scene h1 em,
.model-scene h2 em { color: var(--orange); font-style: normal; }
.model-scene p { max-width: 590px; margin: 0; color: #bed0c3; font-size: 14px; line-height: 1.72; }
.model-scene__number { color: #98c5a2; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.model-scene__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 29px; }
.model-scene__link { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.34); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.model-scene__link:hover { border-color: var(--orange); color: #ffc17f; }
.model-journey.is-model-ready .hero3d-frame { opacity: 1; }
.model-journey.is-model-ready .hero3d-fallback { opacity: 0; }

@media (max-width: 960px) {
  .model-journey__model { width: 82vw; }
  .model-journey__halo { width: 68vw; }
  .model-scene__panel,
  .model-scene:first-child .model-scene__panel { width: min(610px, 65vw); }
  .model-scene h1,
  .model-scene h2 { font-size: clamp(48px, 7vw, 70px); }
}

@media (max-width: 640px) {
  .model-journey { min-height: 400svh; }
  .model-journey__sticky { min-height: 640px; }
  .model-journey__model { top: 31%; width: 138vw; height: 55vh; min-height: 390px; mask-image: radial-gradient(ellipse 60% 58% at 50% 50%, #000 52%, transparent 100%); }
  .model-journey__halo { top: 30%; width: 96vw; }
  .model-journey__model .hero3d-credit { right: 24%; bottom: 3%; font-size: 7px; }
  .model-journey__counter { left: 20px; bottom: 18px; grid-template-columns: auto 68px auto; }
  .model-journey__scroll { display: none; }
  .model-scene { align-items: flex-end; justify-content: stretch; padding: 90px 0 58px; }
  .model-scene__panel,
  .model-scene:first-child .model-scene__panel { width: 100%; padding: 23px; border-radius: 22px; background: linear-gradient(135deg, rgba(5,27,17,.96), rgba(5,27,17,.86)); }
  .model-scene h1,
  .model-scene h2 { margin: 14px 0 15px; font-size: clamp(42px, 12.2vw, 58px); line-height: .92; }
  .model-scene p { font-size: 12px; line-height: 1.57; }
  .model-scene__actions { display: grid; gap: 9px; margin-top: 19px; }
  .model-scene__actions .btn { width: 100%; }
  .model-scene__link { margin-top: 18px; font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .model-journey__scroll i::after { animation: none; transform: scaleY(.55); transform-origin: top; }
  .model-scene__panel { transition: none; }
}

/* Catalog-aligned v0.2 hero. The external 3D embed is intentionally removed until a real local GLB exists. */
.catalog-home-hero { position: relative; min-height: 820px; overflow: hidden; padding: 142px 0 72px; background: #f7f3e9; }
.catalog-home-hero::before { position: absolute; left: -8%; right: -8%; bottom: -26vw; height: 38vw; min-height: 360px; border-radius: 50% 50% 0 0; background: rgba(78,145,76,.11); content: ''; }
.catalog-home-hero__line { position: absolute; left: 0; right: 0; top: 112px; height: 1px; background: linear-gradient(90deg,transparent 5%,var(--orange) 5%,var(--orange) 73%,transparent 73%); opacity: .72; }
.catalog-home-hero__line::after { position: absolute; left: 73%; top: -4px; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); content: ''; }
.catalog-home-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,.9fr) minmax(480px,1.1fr); align-items: center; gap: clamp(44px,7vw,110px); }
.catalog-home-hero__copy { padding: 42px 0; }
.catalog-home-hero h1 { max-width: 760px; margin: 23px 0 27px; color: var(--ink); font-size: clamp(58px,6.6vw,105px); font-weight: 620; letter-spacing: -.078em; line-height: .88; }
.catalog-home-hero h1 em { color: var(--orange); font-style: normal; }
.catalog-home-hero__copy > p { max-width: 620px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.72; }
.catalog-home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.catalog-home-hero__facts { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 42px; border-top: 1px solid var(--line); }
.catalog-home-hero__facts > div { padding: 20px 18px 0 0; }
.catalog-home-hero__facts strong { display: block; color: var(--green); font-size: 20px; }
.catalog-home-hero__facts span { display: block; max-width: 150px; margin-top: 6px; color: var(--muted); font-size: 9px; font-weight: 750; line-height: 1.45; letter-spacing: .06em; text-transform: uppercase; }
.catalog-home-hero__visual { position: relative; height: min(72vh,690px); min-height: 590px; margin: 0; overflow: hidden; border-radius: 44% 44% 28px 28px; background: #fff; box-shadow: 0 34px 90px rgba(31,70,45,.15); }
.catalog-home-hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: 61% center; }
.catalog-home-hero__visual::after { position: absolute; inset: 0; border: 1px solid rgba(25,74,44,.1); border-radius: inherit; content: ''; pointer-events: none; }
.catalog-home-hero__visual figcaption { position: absolute; left: 22px; right: 22px; bottom: 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 18px; border-radius: 15px; background: rgba(255,255,255,.91); color: var(--ink); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.catalog-home-hero__visual figcaption span { color: var(--orange); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.catalog-home-hero__visual figcaption strong { font-size: 10px; letter-spacing: .04em; text-transform: uppercase; }

.category-card__image img,
.product-card__image img { left: 0; width: 100%; height: 100%; object-fit: cover; }
.product-card__image img { top: 0; }
.product-card:hover .product-card__image img,
.category-card:hover .category-card__image img { transform: scale(1.035); }
.production-showcase--catalog > img { object-position: center 60%; }
.trust-row--three { grid-template-columns: repeat(3,minmax(0,1fr)); }

@media (max-width: 960px) {
  .catalog-home-hero { padding-top: 126px; }
  .catalog-home-hero__grid { grid-template-columns: minmax(0,.9fr) minmax(360px,1.1fr); gap: 32px; }
  .catalog-home-hero__visual { min-height: 540px; }
}

@media (max-width: 760px) {
  .catalog-home-hero { min-height: 0; padding: 106px 0 44px; }
  .catalog-home-hero__line { top: 88px; }
  .catalog-home-hero__grid { grid-template-columns: 1fr; gap: 24px; }
  .catalog-home-hero__copy { padding: 24px 0 0; }
  .catalog-home-hero h1 { margin: 16px 0 19px; font-size: clamp(49px,13.5vw,69px); line-height: .91; }
  .catalog-home-hero__copy > p { font-size: 13px; line-height: 1.6; }
  .catalog-home-hero__actions { display: grid; margin-top: 23px; }
  .catalog-home-hero__actions .btn { width: 100%; }
  .catalog-home-hero__facts { grid-template-columns: 1fr; margin-top: 28px; }
  .catalog-home-hero__facts > div { display: grid; grid-template-columns: 62px 1fr; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
  .catalog-home-hero__facts span { max-width: none; margin: 0; }
  .catalog-home-hero__visual { height: 520px; min-height: 0; border-radius: 40% 40% 22px 22px; }
  .catalog-home-hero__visual figcaption { left: 14px; right: 14px; bottom: 14px; display: grid; gap: 4px; }
  .trust-row--three { grid-template-columns: 1fr; }
}

/* Restored story elements: scroll-driven 3D and the production line. */
.model-journey__model .hero3d-fallback {
  opacity: .5;
  mix-blend-mode: multiply;
  filter: contrast(1.08) saturate(.68);
}
.model-journey__model {
  width: min(94vw, 1440px);
  height: min(100vh, 1080px);
  contain: layout paint;
}
.model-journey__model .hero3d-frame,
.model-journey__model .hero3d-fallback { transform: translateZ(0) scale(1.116); will-change: transform, opacity; }
.model-journey__halo { width: min(75vw, 1040px); }
.model-journey.is-model-ready .hero3d-fallback { opacity: 0; }
.production-showcase__badge {
  position: absolute;
  z-index: 3;
  right: 22px;
  top: 22px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 99px;
  background: rgba(5,28,17,.62);
  color: rgba(255,255,255,.72);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.production-showcase--line > img { object-position: center; }

@media (max-width: 640px) {
  .model-journey__model {
    top: calc(25% + 72px + env(safe-area-inset-top));
    width: 158vw;
    height: 58svh;
  }
  .model-journey__model .hero3d-frame,
  .model-journey__model .hero3d-fallback { transform: translateZ(0) scale(1.152); }
  .model-journey__halo { top: calc(25% + 72px + env(safe-area-inset-top)); width: 110vw; }
  .model-scene { min-height: 100svh; padding: 82px 0 max(52px, env(safe-area-inset-bottom)); }
  .model-scene__panel,
  .model-scene:first-child .model-scene__panel {
    width: 100%;
    max-height: none;
    padding: 21px;
  }
  .model-scene h1,
  .model-scene h2 { font-size: clamp(38px,10.8vw,50px); }
  .production-showcase__badge { right: 14px; top: 14px; font-size: 7px; }
}

/* Mobile-first compression: shorter story, compact copy, swipeable content rails. */
@media (max-width: 640px) {
  .site-section { padding-block: 56px; }
  .site-section--compact { padding-block: 44px; }
  .section-head { gap: 12px; margin-bottom: 22px; }
  .section-head > .section-copy,
  .section-head__actions > .section-copy { display: block; font-size: 12px; line-height: 1.55; }
  .section-title { font-size: clamp(32px,9.2vw,38px); line-height: .98; }
  .section-title .nowrap { font-size: .92em; letter-spacing: -.055em; }

  .catalog-home-hero {
    padding: calc(78px + env(safe-area-inset-top)) 0 38px;
    background: #fff;
  }
  .catalog-home-hero::before { display: none; }
  .catalog-home-hero__line { top: calc(66px + env(safe-area-inset-top)); }
  .catalog-home-hero__grid { gap: 17px; }
  .catalog-home-hero__visual {
    order: -1;
    height: clamp(330px,46svh,410px);
    border-radius: 24px;
    box-shadow: 0 22px 54px rgba(31,70,45,.12);
  }
  .catalog-home-hero__visual img { object-position: 61% 46%; }
  .catalog-home-hero__visual figcaption { padding: 12px 14px; }
  .catalog-home-hero__copy { padding: 0; }
  .catalog-home-hero__copy .eyebrow { display: none; }
  .catalog-home-hero h1 {
    margin: 0 0 13px;
    font-size: clamp(39px,11.2vw,52px);
    line-height: .93;
  }
  .catalog-home-hero__copy > p { max-width: 36rem; }
  .catalog-home-hero__actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 17px;
  }
  .catalog-home-hero__actions .btn {
    min-height: 45px;
    padding-inline: 12px;
    font-size: 8px;
  }
  .catalog-home-hero__facts { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .catalog-home-hero__facts { margin-top: 18px; }
  .catalog-home-hero__facts > div { display: block; padding: 10px 7px 0; border-bottom: 0; }
  .catalog-home-hero__facts strong { font-size: 17px; }
  .catalog-home-hero__facts span { margin-top: 4px; font-size: 7px; line-height: 1.35; }

  .model-journey { min-height: 260svh; }
  .model-scene { min-height: 65svh; }
  .model-scene__panel,
  .model-scene:first-child .model-scene__panel { padding: 18px 19px; }
  .model-scene h1,
  .model-scene h2 { margin: 10px 0 11px; font-size: clamp(34px,9.8vw,44px); }
  .model-scene p { font-size: 11px; line-height: 1.45; }
  .model-scene__actions { grid-template-columns: 1fr 1fr; margin-top: 14px; }
  .model-scene__actions .btn { min-height: 42px; padding: 10px 12px; font-size: 8px; }

  /* Native product rails keep their DOM and layout stable across resizing. */
  .category-grid,
  .product-grid--featured {
    display: flex;
    gap: 12px;
    min-width: 0;
    width: 100%;
    overflow-x: auto;
    padding: 2px 0 16px;
    border: 0;
    background: transparent;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) transparent;
  }
  .category-grid > *,
  .product-grid--featured > * {
    flex: 0 0 min(82vw,340px);
    min-width: 0;
    scroll-snap-align: start;
  }
  .category-card { grid-template-rows: 190px 1fr; min-height: 410px; }
  .category-card__content { min-height: 200px; padding: 20px; }
  .category-card__description { display: block; font-size: 12px; line-height: 1.5; }
  .product-grid--featured .product-card__image { aspect-ratio: 1.12; }

  /* Company information reads as a compact list, without hidden slides. */
  .manufacturer-capabilities,
  .advantages-grid--six,
  .trust-row--three {
    display: grid;
    grid-template-columns: minmax(0,1fr);
    gap: 0;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    overflow: hidden;
  }
  .manufacturer-capabilities article,
  .advantages-grid--six .advantage,
  .trust-row--three .trust-card {
    display: grid;
    grid-template-columns: 38px minmax(0,1fr);
    column-gap: 14px;
    row-gap: 7px;
    min-width: 0;
    min-height: 0;
    padding: 22px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .manufacturer-capabilities article + article,
  .advantages-grid--six .advantage + .advantage,
  .trust-row--three .trust-card + .trust-card { border-top: 1px solid var(--line); }
  .manufacturer-capabilities article > span,
  .advantages-grid--six .advantage__icon,
  .trust-row--three .trust-card > span {
    grid-column: 1;
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--mint);
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
  }
  .manufacturer-capabilities h3,
  .advantages-grid--six .advantage h3,
  .trust-row--three .trust-card h3 {
    grid-column: 2;
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }
  .manufacturer-capabilities p,
  .advantages-grid--six .advantage p,
  .trust-row--three .trust-card p {
    grid-column: 2;
    display: block;
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    overflow: visible;
  }

  .manufacturer-intro { gap: 28px; }
  .manufacturer-intro__lead .section-copy { display: block; overflow: visible; }
  .production-showcase { min-height: 500px; }
  .custom-cta__inner { padding: 28px 21px; }
  .custom-cta h2 { font-size: 36px; }
  .final-lead p { display: block; }
}

/* Keep the language choice available on every mobile page. */
@media (max-width: 1024px) {
  .header-actions > .lang-switch { display: flex; }
}

/* Keep the complete original logo visible, including its transparent margins. */
.brand-logo-wrap { height: 68px; background: transparent; border-radius: 0; }
.brand-logo { object-fit: contain; transform: none; }
.footer-brand .brand-logo-wrap { width: 180px; height: 90px; padding: 6px; border-radius: 12px; background: #fff; }
.model-scene__panel { min-width: 0; max-width: 100%; }
.model-scene h2 { overflow-wrap: anywhere; }
html[lang="kk"] .model-scene h2 { font-size: clamp(36px, 3.8vw, 60px); line-height: 1.08; letter-spacing: -.045em; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.footer-socials a { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 66px; padding: 12px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(255,255,255,.06); color: #fff; font-size: 10px; transition: background .2s, transform .2s; }
.footer-socials a:hover, .footer-socials a:focus-visible { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.footer-socials svg { width: 26px; height: 26px; }
@media (max-width: 640px) {
  .brand-logo-wrap { height: 54px; }
  html[lang="kk"] .model-scene h2 { font-size: clamp(28px, 8vw, 42px); }
  .model-journey__scenes { width: calc(100% - 32px); }
}

.catalog-hero .catalog-search { display: block; margin-top: 36px; }
.contact-map { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.contact-map iframe { display: block; width: 100%; height: 400px; border: 0; }
.contact-map__caption { padding: 24px; color: var(--ink); }
.contact-map__caption strong { font-size: 18px; }
.contact-map__caption p { margin: 8px 0 16px; font-size: 14px; line-height: 1.6; }
.contact-map__link { color: var(--green); font-size: 13px; font-weight: 700; }
@media (max-width: 640px) {
  .catalog-hero .catalog-search { margin-top: 28px; }
  .contact-map iframe { height: 320px; }
  .contact-map__caption { padding: 20px; }
}

/* Shared compact navigation and social links on small screens. */
@media (max-width: 1024px) {
  .header-inner { grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
  .header-actions { gap: 6px; }
  .site-header .brand { min-width: 0; }
  .site-header .brand-logo-wrap { width: min(120px, 100%); height: 52px; }
  .header-actions .lang-switch { padding: 3px; gap: 0; flex-shrink: 0; }
  .header-actions .lang-switch button { width: 30px; height: 36px; }
  .header-search, .menu-button { width: 40px; height: 40px; flex-shrink: 0; }
  .mobile-menu { overflow-y: auto; }
  .mobile-menu nav a { overflow-wrap: anywhere; }
}
@media (max-width: 640px) {
  .footer-socials { gap: 12px; }
  .footer-socials a { width: 46px; height: 46px; min-width: 0; padding: 0; justify-content: center; border-radius: 50%; }
  .footer-socials svg { width: 22px; height: 22px; }
  .footer-socials a span { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
}
