:root {
  --red: #ef141b;
  --red-dark: #c9080e;
  --ink: #111214;
  --muted: #686b70;
  --line: #dadbda;
  --paper: #f5f5f3;
  --white: #fff;
  --condensed: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); overflow-x: hidden; }
body.is-locked { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.page-loader { position: fixed; z-index: 999; inset: 0; background: var(--ink); display: grid; place-items: center; align-content: center; gap: 22px; color: white; transition: opacity .35s ease, visibility .35s ease; }
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.page-loader__mark { position: relative; width: 66px; height: 30px; }
.page-loader__mark span { position: absolute; width: 44px; height: 4px; top: 13px; background: var(--red); animation: loaderMark 1s ease-in-out infinite alternate; }
.page-loader__mark span:first-child { left: 0; transform: skewX(-40deg) rotate(22deg); }
.page-loader__mark span:last-child { right: 0; transform: skewX(40deg) rotate(-22deg); animation-delay: -.5s; }
.page-loader p { margin: 0; font-size: 10px; letter-spacing: .32em; font-weight: 800; }
@keyframes loaderMark { to { transform: scaleX(.55) skewX(-20deg); opacity: .35; } }

.site-header { height: 84px; padding: 0 clamp(24px, 4.5vw, 74px); display: flex; align-items: center; justify-content: space-between; position: fixed; inset: 0 0 auto; z-index: 100; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(17,18,20,.11); backdrop-filter: blur(18px); transition: height .3s ease, box-shadow .3s ease; }
.site-header.is-scrolled { height: 68px; box-shadow: 0 10px 30px rgba(10,10,10,.06); }
.site-header > span:first-child { min-width: 180px; }
.brand { display: flex; align-items: center; gap: 10px; min-width: 180px; }
.brand__mark { width: 45px; fill: none; stroke: var(--ink); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.brand__type { font-family: var(--condensed); font-weight: 900; font-size: 22px; line-height: .78; letter-spacing: -.02em; }
.brand__type b { display: block; color: var(--red); font-size: 13px; letter-spacing: .16em; margin-top: 5px; }
.main-nav { display: flex; align-self: stretch; align-items: center; gap: clamp(24px, 3.2vw, 54px); }
.main-nav a, .nav-menu-trigger { height: 100%; display: grid; place-items: center; position: relative; text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.nav-menu-trigger { border: 0; padding: 0; background: none; cursor: pointer; grid-auto-flow: column; gap: 5px; }
.nav-menu-trigger span { color: var(--red); font-size: 12px; transition: transform .25s; }
.nav-menu-trigger[aria-expanded="true"] span { transform: rotate(180deg); }
.main-nav a::after, .nav-menu-trigger::after { content: ""; position: absolute; bottom: 0; left: 50%; width: 0; height: 3px; background: var(--red); transition: width .3s ease, left .3s ease; }
.main-nav a:hover::after, .main-nav a.is-active::after, .nav-menu-trigger:hover::after, .nav-menu-trigger[aria-expanded="true"]::after { left: 0; width: 100%; }
.main-nav a.is-active, .nav-menu-trigger[aria-expanded="true"] { color: var(--red); }
.header-actions { display: flex; align-items: center; gap: 5px; min-width: 180px; justify-content: flex-end; }
.icon-button, .menu-toggle { border: 0; background: none; cursor: pointer; position: relative; display: grid; place-items: center; width: 40px; height: 40px; }
.icon-button svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s; }
.icon-button:hover svg { transform: translateY(-2px); }
.cart-count { position: absolute; top: 2px; right: 0; width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; color: white; background: var(--red); font-size: 9px; font-weight: 800; border: 2px solid white; }
.menu-toggle { display: none; }

.mega-menu { position: absolute; z-index: 5; top: 100%; left: 0; width: 100%; background: white; border-top: 1px solid var(--line); box-shadow: 0 25px 55px rgba(10,10,10,.12); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .25s ease, transform .35s cubic-bezier(.22,1,.36,1), visibility .25s; }
.mega-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mega-panel { display: none; grid-template-columns: 1.15fr repeat(3, 1fr); min-height: 270px; padding: 28px clamp(24px, 5vw, 80px); gap: 12px; }
.mega-panel.is-active { display: grid; }
.mega-panel.is-active > * { animation: megaItemIn .42s cubic-bezier(.16,1,.3,1) both; }
.mega-panel.is-active > :nth-child(2) { animation-delay: .045s; }
.mega-panel.is-active > :nth-child(3) { animation-delay: .09s; }
.mega-panel.is-active > :nth-child(4) { animation-delay: .135s; }
@keyframes megaItemIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.mega-panel__intro { padding: 25px 4vw 20px 5px; }
.mega-panel__intro small { color: var(--red); font-size: 8px; letter-spacing: .19em; font-weight: 800; }
.mega-panel__intro h2 { margin: 13px 0 9px; font: italic 900 36px/.9 var(--condensed); text-transform: uppercase; }
.mega-panel__intro p { max-width: 285px; color: var(--muted); font-size: 11px; line-height: 1.65; }
.mega-panel__intro a, .mega-panel__intro button { display: inline-block; margin-top: 10px; padding: 0 0 7px; border: 0; border-bottom: 1px solid var(--red); background: none; font-size: 8px; letter-spacing: .13em; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.mega-product, .mega-category { position: relative; min-height: 205px; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; background: #eee; border: 1px solid #e1e1df; transition: transform .25s, background .25s, color .25s; }
.mega-product::before { content: ""; position: absolute; width: 130px; height: 68px; top: 47px; left: 50%; transform: translateX(-50%) perspective(180px) rotateX(55deg); border: 5px solid currentColor; border-radius: 45% 45% 15% 15%; opacity: .55; }
.mega-product:hover, .mega-category:hover { transform: translateY(-4px); }
.mega-product--dark { color: white; background: var(--ink); border-color: var(--ink); }
.mega-product > b, .mega-category > b { position: absolute; top: 14px; left: 15px; color: var(--red); font: italic 800 12px var(--condensed); }
.mega-product span, .mega-category span { position: relative; }
.mega-product strong { display: block; font: italic 900 24px var(--condensed); }
.mega-product small, .mega-category small { color: #777; font-size: 8px; }
.mega-product--dark small { color: #aaa; }
.mega-product em { position: absolute; right: 14px; bottom: 18px; font: normal 700 8px var(--body); }
.mega-category { justify-content: center; min-height: 205px; background: #f5f5f3; }
.mega-category span { font: italic 900 25px var(--condensed); }
.mega-category small { margin-top: 6px; }
.mega-panel--story { grid-template-columns: 1.5fr .75fr .75fr; }
.story-stat { min-height: 205px; display: grid; place-content: center; text-align: center; background: var(--ink); color: white; }
.story-stat strong { font: italic 900 55px/.8 var(--condensed); color: var(--red); }
.story-stat span { margin-top: 12px; color: #aaa; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.mega-menu__back { display: none; }

.hero { min-height: 690px; height: min(810px, 100vh); padding-top: 84px; overflow: hidden; position: relative; background: #f7f7f5; display: flex; align-items: center; }
.hero__media { position: absolute; inset: 84px 0 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.03); animation: heroEnter 1.4s cubic-bezier(.22,1,.36,1) .2s both; }
@keyframes heroEnter { from { opacity: 0; transform: scale(1.12); } }
.hero__wash { position: absolute; inset: 84px 0 0; background: linear-gradient(90deg, rgba(248,248,246,.98) 0%, rgba(248,248,246,.84) 25%, rgba(248,248,246,.08) 51%, transparent 78%); }
.hero__grid { position: absolute; left: 0; top: 84px; bottom: 0; width: 47%; opacity: .28; background-image: linear-gradient(rgba(0,0,0,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.07) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(90deg,#000,transparent); }
.hero__content { position: relative; z-index: 2; width: min(660px, 48vw); margin-left: clamp(24px, 6vw, 100px); margin-top: -12px; }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 14px; color: var(--red); font-size: 10px; line-height: 1; letter-spacing: .24em; font-weight: 800; }
.eyebrow::before { content: ""; height: 2px; width: 34px; background: currentColor; }
.hero h1, .section h2, .configurator-banner h2 { font-family: var(--condensed); font-size: clamp(76px, 8.3vw, 136px); line-height: .73; letter-spacing: -.045em; font-style: italic; margin: 0; font-weight: 900; }
.hero h1 span { display: block; }
.outline-text { color: var(--red); -webkit-text-fill-color: transparent; -webkit-text-stroke: 2px var(--red); }
.hero__rule { width: min(510px, 100%); display: flex; align-items: center; gap: 17px; margin: 30px 0 18px; }
.hero__rule span { flex: 1; height: 1px; background: var(--ink); }
.hero__rule small { font-size: 9px; font-weight: 800; letter-spacing: .14em; white-space: nowrap; }
.hero__lead { max-width: 500px; font-size: 16px; line-height: 1.65; color: #4c4f53; margin: 0; }
.hero__actions { display: flex; gap: 12px; margin-top: 31px; }
.button { min-height: 54px; padding: 0 23px; border: 1px solid var(--ink); display: inline-flex; align-items: center; justify-content: space-between; gap: 44px; text-transform: uppercase; font-size: 10px; letter-spacing: .08em; font-weight: 800; cursor: pointer; transition: background .25s, color .25s, border .25s, transform .25s; }
.button i { font-style: normal; font-size: 19px; line-height: 1; transition: transform .25s; }
.button:hover { transform: translateY(-2px); }
.button:hover i { transform: translate(3px,-2px); }
.button--primary { border-color: var(--red); color: white; background: var(--red); box-shadow: 0 8px 24px rgba(239,20,27,.2); }
.button--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.button--ghost { background: rgba(255,255,255,.42); backdrop-filter: blur(8px); }
.button--ghost:hover { background: var(--ink); color: white; }
.button--light { color: var(--ink); background: white; border-color: white; min-width: 230px; }
.button--light:hover { color: white; background: var(--ink); border-color: var(--ink); }
.button--light:active { transform: translateY(1px) scale(.98); }
.hero__specs { position: absolute; right: clamp(26px, 3vw, 54px); bottom: 48px; z-index: 2; display: flex; color: white; background: rgba(12,13,15,.91); backdrop-filter: blur(14px); }
.hero__specs div { min-width: 128px; padding: 17px 20px; border-right: 1px solid rgba(255,255,255,.16); }
.hero__specs div:last-child { border: 0; }
.hero__specs strong { display: block; font-family: var(--condensed); font-style: italic; font-size: 22px; color: var(--red); }
.hero__specs span { font-size: 8px; text-transform: uppercase; letter-spacing: .12em; color: #b9b9b9; }
.scroll-cue { position: absolute; bottom: 35px; left: 34px; z-index: 2; display: flex; align-items: center; gap: 10px; font-size: 8px; text-transform: uppercase; letter-spacing: .2em; transform: rotate(-90deg); transform-origin: left center; }
.scroll-cue span { display: block; width: 35px; height: 1px; background: var(--red); animation: scrollCue 1.6s infinite; }
@keyframes scrollCue { 50% { transform: scaleX(.45); transform-origin: left; } }
.reveal { opacity: 0; transform: translateY(22px); animation: reveal .8s cubic-bezier(.22,1,.36,1) forwards; }
.hero .reveal:nth-child(1) { animation-delay: .55s; }.hero .reveal:nth-child(2) { animation-delay: .65s; }.hero .reveal:nth-child(3) { animation-delay: .78s; }.hero .reveal:nth-child(4) { animation-delay: .88s; }.hero .reveal:nth-child(5) { animation-delay: .98s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

.advantages { min-height: 142px; display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 clamp(24px, 5vw, 86px); background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.advantage { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: center; padding: 33px clamp(18px, 2.3vw, 42px); border-right: 1px solid var(--line); }
.advantage:first-child { border-left: 1px solid var(--line); }
.advantage svg { width: 43px; fill: none; stroke: var(--red); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.advantage strong { display: block; margin-bottom: 7px; font-family: var(--condensed); font-size: 14px; letter-spacing: .04em; }
.advantage p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.advantage__number { position: absolute; top: 8px; right: 10px; font: 700 9px var(--condensed); color: #bbb; }
.reveal-card { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal-card.in-view { opacity: 1; transform: none; }

.section { padding: 112px clamp(24px, 6.5vw, 108px); }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; margin-bottom: 60px; }
.section-heading > p { max-width: 390px; color: var(--muted); line-height: 1.8; font-size: 13px; border-left: 1px solid var(--red); padding-left: 24px; margin: 0 0 4px; }
.section h2 { font-size: clamp(54px, 6vw, 91px); line-height: .79; }
.section h2 em, .configurator-banner h2 em { color: var(--red); font-style: italic; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { background: white; border: 1px solid var(--line); position: relative; overflow: hidden; transition: transform .35s ease, box-shadow .35s ease; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 22px 60px rgba(20,20,20,.1); }
.product-card__visual { height: 260px; padding: 25px; background: #e8e8e5; position: relative; overflow: hidden; display: grid; place-items: center; }
.product-card__visual::before, .product-card__visual::after { content: ""; position: absolute; width: 210px; height: 130px; border: 7px solid var(--ink); border-radius: 45% 45% 18% 18%; transform: perspective(200px) rotateX(58deg); opacity: .85; }
.product-card__visual::after { width: 90px; height: 90px; border-radius: 50%; border-width: 14px; top: 43px; right: 18%; transform: rotate(-12deg); }
.product-card__visual--pro { background: var(--ink); color: white; }
.product-card__visual--pro::before, .product-card__visual--pro::after { border-color: white; }
.product-card__visual--elite { background: linear-gradient(135deg,#eee 55%,#ddd 55%); }
.product-card__visual span { z-index: 1; position: absolute; left: 20px; bottom: -17px; font: italic 900 82px/.8 var(--condensed); letter-spacing: -.04em; opacity: .08; }
.product-card__visual b { position: absolute; top: 18px; left: 19px; font: 800 11px var(--body); color: var(--red); }
.product-card__body { padding: 27px 28px 26px; }
.product-card__body > p { color: var(--red); font-size: 8px; letter-spacing: .18em; font-weight: 800; }
.product-card__body h3 { font: italic 900 35px/.9 var(--condensed); margin: 12px 0; }
.product-card__body > span { display: block; min-height: 42px; font-size: 11px; line-height: 1.7; color: var(--muted); }
.product-card__body > div { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); margin-top: 20px; padding-top: 20px; }
.product-card__body strong { font: 800 14px var(--condensed); }
.add-cart { border: 0; padding: 0; background: none; text-transform: uppercase; font-size: 9px; letter-spacing: .1em; font-weight: 800; cursor: pointer; }
.add-cart i { display: inline-grid; place-items: center; font: normal 17px var(--body); width: 28px; height: 28px; border-radius: 50%; margin-left: 6px; background: var(--red); color: white; transition: transform .2s; }
.add-cart:hover i { transform: rotate(90deg); }
.product-badge { position: absolute; z-index: 3; right: 0; top: 0; padding: 9px 14px; color: white; background: var(--red); font-size: 8px; letter-spacing: .14em; font-weight: 800; }

.engineering { background: var(--ink); color: white; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 8vw; min-height: 650px; overflow: hidden; }
.engineering__copy > p:not(.eyebrow) { color: #999da2; line-height: 1.8; font-size: 13px; max-width: 510px; margin: 28px 0; }
.text-link { display: inline-flex; align-items: center; gap: 50px; padding-bottom: 8px; border-bottom: 1px solid var(--red); font-size: 9px; letter-spacing: .15em; font-weight: 800; }
.text-link span { font-size: 17px; color: var(--red); }
.engineering__panel { min-height: 430px; position: relative; display: grid; place-items: center; background-image: linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px); background-size: 44px 44px; }
.engineering__panel::before { content: ""; position: absolute; width: 68%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,rgba(239,20,27,.14),transparent 65%); }
.tech-ring { width: 270px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; display: grid; place-content: center; text-align: center; position: relative; }
.tech-ring::before, .tech-ring::after { content: ""; position: absolute; inset: 17px; border-radius: 50%; border: 1px dashed var(--red); animation: rotate 24s linear infinite; }
.tech-ring::after { inset: -20px; border-color: rgba(255,255,255,.12); animation-direction: reverse; }
@keyframes rotate { to { transform: rotate(360deg); } }
.tech-ring span { font: italic 900 78px/.8 var(--condensed); }
.tech-ring small { color: var(--red); font-size: 8px; letter-spacing: .17em; font-weight: 800; line-height: 1.5; }
.tech-note { position: absolute; display: flex; align-items: center; gap: 11px; }
.tech-note b { color: var(--red); font: italic 800 18px var(--condensed); }
.tech-note span { font-size: 8px; letter-spacing: .14em; line-height: 1.5; }
.tech-note--one { left: 2%; top: 15%; }.tech-note--two { right: 1%; top: 36%; }.tech-note--three { left: 9%; bottom: 12%; }

.configurator-banner { min-height: 390px; padding: 72px clamp(24px, 8vw, 130px); display: flex; align-items: center; justify-content: space-between; gap: 50px; color: white; background-color: var(--red); background-image: linear-gradient(120deg,rgba(0,0,0,.11) 1px,transparent 1px), linear-gradient(60deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size: 50px 86px; }
.configurator-banner .eyebrow { color: white; }
.configurator-banner h2 { font-size: clamp(60px, 7vw, 105px); }
.configurator-banner h2 em { color: var(--ink); }
footer { padding: 65px clamp(24px, 6vw, 100px) 28px; background: #090a0b; color: white; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.brand--footer .brand__type { font-size: 33px; }.brand--footer .brand__type b { font-size: 17px; }
footer > p { max-width: 360px; margin: 0; color: #8c8f93; font-size: 12px; line-height: 1.7; }
footer > div { display: flex; gap: 32px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; justify-self: end; }
footer > div a:hover { color: var(--red); }
footer > small { grid-column: 1/-1; border-top: 1px solid #2c2d2f; padding-top: 24px; color: #686b6e; font-size: 8px; letter-spacing: .15em; }

.overlay { position: fixed; inset: 0; z-index: 200; background: rgba(8,9,10,.55); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: .35s; }
.overlay.is-visible { opacity: 1; visibility: visible; }
.drawer { position: fixed; z-index: 210; inset: 0 0 0 auto; width: min(470px,100%); padding: 38px; background: white; transform: translateX(102%); transition: transform .45s cubic-bezier(.22,1,.36,1); display: flex; flex-direction: column; }
.drawer.is-open { transform: none; }
.drawer__header { display: flex; align-items: flex-start; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 26px; }
.drawer__header small { color: var(--red); font-size: 8px; letter-spacing: .2em; font-weight: 800; }
.drawer__header h2 { margin: 8px 0 0; font: italic 800 42px var(--condensed); text-transform: uppercase; }
.drawer__header h2 span { color: #aaa; }
.drawer-close, .search-close { border: 1px solid var(--line); background: white; width: 38px; height: 38px; font-size: 27px; line-height: 1; cursor: pointer; }
.cart-drawer { width: min(520px,100%); padding: 32px; }
.cart-drawer .drawer__header { padding-bottom: 21px; }
.cart-drawer .drawer__header h2 { margin-top: 7px; font: 700 39px/1 var(--display); letter-spacing: -.055em; text-transform: none; }
.cart-drawer .drawer__header h2 span { color: #a8aaad; font-weight: 600; }
.cart-drawer .drawer-close { border-radius: 50%; font-size: 22px; transition: color .2s, background .2s, transform .2s; }
.cart-drawer .drawer-close:hover { color: white; border-color: var(--ink); background: var(--ink); transform: rotate(90deg); }
.cart-shipping-progress { padding: 17px 0 13px; }
.cart-shipping-progress > span { height: 3px; display: block; overflow: hidden; border-radius: 4px; background: #e7e7e4; }
.cart-shipping-progress > span::after { content: ""; width: 100%; height: 100%; display: block; background: var(--red); animation: cartProgress .65s cubic-bezier(.22,1,.36,1) both; }
@keyframes cartProgress { from { transform: scaleX(0); transform-origin: left; } }
.cart-shipping-progress p { margin: 8px 0 0; color: #737579; font-size: 8px; }
.cart-shipping-progress p::before { content: "✓"; margin-right: 6px; color: var(--red); font-weight: 900; }
.cart-drawer:not(.has-items) .cart-shipping-progress { display: none; }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 3px 18px 0; scrollbar-width: thin; scrollbar-color: #ccc transparent; }
.empty-cart { height: 100%; min-height: 300px; display: grid; place-content: center; justify-items: center; text-align: center; }
.empty-cart > span { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; color: #a5a7aa; background: #f4f3f1; }
.empty-cart > span svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.empty-cart p { margin: 22px 0 6px; font: 700 24px var(--display); letter-spacing: -.04em; }
.empty-cart small { color: var(--muted); font-size: 9px; }
.empty-cart button { margin-top: 23px; padding: 0 0 5px; border: 0; border-bottom: 1px solid var(--red); background: none; font-size: 8px; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.cart-line { display: grid; grid-template-columns: 88px minmax(0,1fr) auto; gap: 14px; align-items: center; margin-bottom: 10px; padding: 11px; border: 1px solid #e8e8e5; border-radius: 14px; background: #f8f7f5; }
.cart-line__thumb { width: 88px; height: 82px; overflow: hidden; display: grid; place-items: center; border-radius: 10px; color: white; background: #efeeeb; }
.cart-line__thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.cart-line__thumb span { font: 700 17px var(--display); color: var(--ink); }
.cart-line__info { min-width: 0; }
.cart-line__info > small { display: block; margin-bottom: 4px; overflow: hidden; color: var(--red); font-size: 6px; letter-spacing: .08em; font-weight: 800; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.cart-line__info > strong { display: block; overflow: hidden; font: 700 14px var(--display); letter-spacing: -.025em; text-overflow: ellipsis; white-space: nowrap; }
.cart-line__info > span { display: block; margin-top: 4px; color: #85878a; font-size: 8px; }
.cart-line__quantity { width: 86px; height: 27px; margin-top: 10px; display: grid; grid-template-columns: repeat(3,1fr); align-items: center; border: 1px solid #dadbd9; border-radius: 15px; background: white; }
.cart-line__quantity button { height: 100%; border: 0; background: none; color: #707276; font-size: 13px; cursor: pointer; }
.cart-line__quantity b { text-align: center; font-size: 8px; }
.cart-line__aside { height: 82px; display: flex; align-items: flex-end; justify-content: space-between; flex-direction: column; }
.cart-line__aside > strong { font: 700 12px var(--display); }
.cart-line__remove { width: 25px; height: 25px; border: 0; border-radius: 50%; color: #8c8e91; background: transparent; font-size: 16px; cursor: pointer; transition: color .2s, background .2s; }
.cart-line__remove:hover { color: var(--red); background: #fff; }
.drawer__footer { border-top: 1px solid var(--line); padding-top: 22px; }
.drawer__footer .button { width: 100%; }.drawer__footer .button:disabled { filter: grayscale(1); opacity: .45; cursor: default; transform: none; }
.cart-summary > .cart-summary__row { margin: 0 0 10px; display: flex; align-items: center; justify-content: space-between; color: #6f7175; font: 600 9px var(--body); }
.cart-summary > .cart-summary__row:first-child { margin-bottom: 13px; color: var(--ink); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.cart-summary > .cart-summary__row strong { color: var(--ink); font: 700 11px var(--display); }
.cart-summary > .cart-summary__row:first-child strong { font-size: 22px; letter-spacing: -.03em; }
.cart-summary > p { margin: 2px 0 18px; color: #999b9e; font-size: 7px; }
.cart-summary > small { margin-top: 10px; display: block; color: #97999c; font-size: 7px; text-align: center; }
.cart-drawer:not(.has-items) .cart-summary__shipping, .cart-drawer:not(.has-items) .cart-summary > p { display: none; }
.config-options { margin-top: 25px; }
.config-options button { width: 100%; padding: 22px 5px; display: grid; grid-template-columns: 45px 1fr auto; align-items: center; text-align: left; border: 0; border-bottom: 1px solid var(--line); background: white; cursor: pointer; transition: padding .2s, background .2s; }
.config-options button:hover { padding-left: 15px; background: #f5f5f3; }
.config-options button > b { font: italic 800 16px var(--condensed); color: var(--red); }.config-options button span strong { display: block; font: italic 800 27px var(--condensed); }.config-options button span small { color: var(--muted); }.config-options button i { font-style: normal; font-size: 20px; }
.config-footnote { color: var(--muted); line-height: 1.7; font-size: 11px; margin-top: auto; }
.account-panel { flex: 1; padding-top: 42px; display: flex; flex-direction: column; align-items: flex-start; }
.account-panel__icon { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; color: var(--red); background: #f3f2ef; }
.account-panel__icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; }
.account-panel h3 { margin: 27px 0 10px; font: 700 30px/1 var(--display); letter-spacing: -.045em; }
.account-panel > p { max-width: 330px; margin: 0 0 28px; color: var(--muted); font-size: 11px; line-height: 1.75; }
.account-panel .button { width: 100%; }
.account-panel__links { width: 100%; margin-top: auto; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); }
.account-panel__links a { padding-bottom: 5px; border-bottom: 1px solid var(--red); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.global-toast { position: fixed; z-index: 300; left: 50%; bottom: 25px; max-width: calc(100% - 32px); padding: 13px 20px; border-radius: 8px; color: white; background: var(--ink); box-shadow: 0 10px 30px rgba(0,0,0,.2); font-size: 9px; letter-spacing: .04em; transform: translate(-50%,150%); opacity: 0; transition: .35s; }
.global-toast.is-visible { transform: translate(-50%,0); opacity: 1; }
.search-modal { position: fixed; z-index: 220; inset: 0; padding: 6vw; background: rgba(245,245,243,.98); display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(-20px); transition: .35s; }
.search-modal.is-open { opacity: 1; visibility: visible; transform: none; }
.search-close { position: absolute; top: 35px; right: 45px; }
.search-modal form { width: min(900px,100%); }.search-modal label { display: block; color: var(--red); font-size: 9px; letter-spacing: .2em; font-weight: 800; margin-bottom: 18px; }.search-modal form div { display: flex; border-bottom: 2px solid var(--ink); }.search-modal input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; padding: 8px 0 18px; font: italic 800 clamp(30px,5vw,65px) var(--condensed); text-transform: uppercase; }.search-modal form button { border: 0; background: none; font-size: 45px; cursor: pointer; }
.toast { position: fixed; z-index: 300; left: 50%; bottom: 25px; display: flex; align-items: center; gap: 12px; padding: 13px 20px; background: var(--ink); color: white; transform: translate(-50%,150%); opacity: 0; transition: .4s; box-shadow: 0 10px 30px rgba(0,0,0,.2); }.toast.is-visible { transform: translate(-50%,0); opacity: 1; }.toast span { color: var(--red); }.toast p { margin: 0; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }

@media (max-width: 1100px) {
  .main-nav { gap: 20px; }.main-nav .nav-menu-trigger:nth-child(5) { display: none; }
  .hero__content { width: 55vw; margin-left: 5vw; }.hero h1 { font-size: clamp(70px,9.5vw,105px); }
  .hero__media img { object-position: 58% center; }.hero__wash { background: linear-gradient(90deg,#f7f7f5 0%,rgba(247,247,245,.78) 37%,transparent 64%); }
  .hero__specs div { min-width: 105px; padding: 14px; }
  .advantages { grid-template-columns: repeat(2,1fr); }.advantage:nth-child(2) { border-right: 0; }.advantage:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .engineering { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .site-header { height: 68px; padding: 0 20px; }.brand { min-width: auto; }.brand__mark { width: 38px; }.brand__type { font-size: 19px; }.brand__type b { font-size: 10px; }
  .main-nav { position: absolute; top: 68px; left: 0; right: 0; height: calc(100vh - 68px); padding: 50px 25px; background: var(--paper); flex-direction: column; align-items: stretch; gap: 0; transform: translateX(100%); transition: transform .4s cubic-bezier(.22,1,.36,1); }.main-nav.is-open { transform: none; }.main-nav a, .main-nav .nav-menu-trigger, .main-nav .nav-menu-trigger:nth-child(5) { display: flex; justify-content: space-between; place-items: initial; height: auto; padding: 18px 0; border-bottom: 1px solid var(--line); font: italic 800 33px var(--condensed); }.main-nav a::after, .nav-menu-trigger::after { display: none; }
  .header-actions { min-width: auto; }.account-trigger { display: none; }.menu-toggle { display: grid; }.menu-toggle span { width: 22px; height: 1.5px; background: var(--ink); transition: .3s; }.menu-toggle span:last-child { width: 15px; justify-self: end; }.menu-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }.menu-toggle.is-open span:last-child { width: 22px; transform: translateY(-3px) rotate(-45deg); }
  .mega-menu { position: fixed; inset: 68px 0 0; overflow-y: auto; transform: translateX(100%); box-shadow: none; }.mega-menu.is-open { transform: none; }.mega-menu__back { display: block; margin: 22px 22px 0; padding: 8px 0; border: 0; background: none; color: var(--red); font-size: 9px; letter-spacing: .1em; font-weight: 800; text-transform: uppercase; }.mega-panel, .mega-panel--story { grid-template-columns: 1fr; padding: 15px 22px 35px; gap: 9px; }.mega-panel__intro { padding: 15px 0 20px; }.mega-panel__intro h2 { font-size: 40px; }.mega-product, .mega-category, .story-stat { min-height: 130px; }.mega-product::before { top: 22px; width: 100px; height: 52px; }.mega-product em { bottom: 18px; }.story-stat strong { font-size: 43px; }
  .hero { height: auto; min-height: 790px; align-items: flex-start; padding-top: 68px; }.hero__media { inset: 68px 0 0; height: 57%; top: auto; }.hero__media img { object-position: 66% center; }.hero__wash { inset: 68px 0 43%; background: linear-gradient(180deg,#f7f7f5 5%,rgba(247,247,245,.94) 51%,rgba(247,247,245,.15) 88%,transparent); }.hero__grid { top: 68px; width: 100%; height: 52%; }
  .hero__content { width: auto; margin: 72px 21px 0; }.eyebrow { font-size: 8px; }.hero h1 { font-size: clamp(60px,18.2vw,78px); line-height: .75; white-space: nowrap; }.outline-text { -webkit-text-stroke-width: 1.4px; }.hero__rule { margin: 25px 0 16px; }.hero__lead { max-width: 90%; font-size: 13px; }.hero__actions { gap: 8px; }.button { min-height: 50px; gap: 22px; padding: 0 15px; font-size: 8px; }
  .hero__specs { right: 0; bottom: 0; width: 100%; }.hero__specs div { flex: 1; min-width: 0; text-align: center; padding: 13px 6px; }.hero__specs strong { font-size: 18px; }.hero__specs span { font-size: 6px; }.scroll-cue { display: none; }
  .advantages { grid-template-columns: 1fr; padding: 0 20px; }.advantage, .advantage:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }.advantage:first-child { border-left: 0; }.advantage { padding: 27px 10px; }
  .section { padding: 80px 20px; }.section-heading { display: block; margin-bottom: 38px; }.section-heading > p { margin-top: 30px; }.section h2 { font-size: clamp(52px,16vw,75px); }.product-grid { grid-template-columns: 1fr; gap: 15px; }.product-card__visual { height: 220px; }
  .engineering { grid-template-columns: 1fr; gap: 70px; }.engineering__panel { min-height: 390px; }.tech-ring { width: 220px; }
  .configurator-banner { min-height: 420px; padding: 65px 20px; display: block; }.configurator-banner h2 { font-size: clamp(57px,17vw,83px); margin-bottom: 45px; }
  footer { grid-template-columns: 1fr; }.brand--footer .brand__type { font-size: 28px; }footer > div { justify-self: start; flex-wrap: wrap; }footer > small { grid-column: 1; }
  .drawer { padding: 26px 22px; }.search-close { top: 20px; right: 20px; }
}

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

/* Refined, product-first layout */
:root { --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif; }

.site-header { height: 64px; padding-inline: clamp(22px, 4.5vw, 70px); background: rgba(255,255,255,.86); }
.site-header.is-scrolled { height: 58px; }
.brand { min-width: 165px; }
.brand__mark { width: 38px; }
.brand__type { font-size: 19px; }
.brand__type b { font-size: 10px; margin-top: 4px; }
.main-nav { gap: clamp(20px, 2.7vw, 42px); }
.main-nav a, .nav-menu-trigger { font-size: 9px; letter-spacing: .06em; }
.header-actions { min-width: 165px; }

.mega-panel { min-height: 230px; padding-block: 24px; }
.mega-panel__intro h2 { font: 700 30px/1.02 var(--display); letter-spacing: -.04em; text-transform: none; }
.mega-product, .mega-category, .story-stat { min-height: 176px; border-radius: 14px; }
.mega-product strong, .mega-category span { font-family: var(--display); font-style: normal; letter-spacing: -.03em; }

.hero { min-height: 610px; height: min(700px, 82vh); padding-top: 64px; }
.hero__media, .hero__wash { top: 64px; }
.hero__grid { display: none; }
.hero__wash { background: linear-gradient(90deg, rgba(248,248,246,.98) 0%, rgba(248,248,246,.88) 27%, rgba(248,248,246,.08) 53%, transparent 75%); }
.hero__content { width: min(540px, 45vw); margin-left: clamp(42px, 6vw, 92px); margin-top: 0; }
.hero h1, .section h2, .configurator-banner h2 { font-family: var(--display); font-size: clamp(54px, 5.3vw, 78px); line-height: .92; letter-spacing: -.065em; font-style: normal; font-weight: 700; }
.outline-text { color: var(--red); -webkit-text-fill-color: var(--red); -webkit-text-stroke: 0; }
.eyebrow { margin-bottom: 16px; font-size: 9px; letter-spacing: .18em; }
.eyebrow::before { width: 26px; }
.hero__rule { width: min(450px, 100%); margin: 22px 0 15px; }
.hero__lead { max-width: 440px; font-size: 14px; line-height: 1.55; }
.hero__actions { margin-top: 24px; }
.button { min-height: 48px; border-radius: 24px; padding: 0 21px; gap: 28px; letter-spacing: .06em; }
.button--primary { box-shadow: none; }
.button--ghost { border-color: #b8b8ba; }
.hero__specs { bottom: 28px; right: 28px; border-radius: 13px; overflow: hidden; }
.hero__specs div { min-width: 112px; padding: 14px 17px; }
.hero__specs strong { font-family: var(--display); font-style: normal; font-size: 17px; }
.scroll-cue { display: none; }

.advantages { min-height: 110px; grid-template-columns: repeat(3, 1fr); padding-inline: clamp(40px, 7vw, 110px); }
.advantage { padding: 24px clamp(18px, 2.5vw, 38px); grid-template-columns: 39px 1fr; gap: 15px; }
.advantage svg { width: 34px; }
.advantage strong { font-family: var(--display); font-size: 12px; letter-spacing: 0; }
.advantage p { font-size: 9px; }

.section { padding: 78px clamp(32px, 7vw, 108px); }
.section-heading { margin-bottom: 38px; }
.section h2 { font-size: clamp(42px, 4.6vw, 66px); line-height: .94; }
.section h2 em, .configurator-banner h2 em { font-style: normal; }
.section-heading > p { max-width: 340px; line-height: 1.6; font-size: 12px; }
.product-grid { gap: 14px; }
.product-card { border-radius: 18px; border: 0; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(20,20,20,.08); }
.product-card__visual { height: 195px; }
.product-card__visual span { font-family: var(--display); font-style: normal; font-size: 64px; }
.product-card__body { padding: 22px 24px; }
.product-card__body h3 { font-family: var(--display); font-style: normal; font-size: 26px; letter-spacing: -.04em; }
.product-card__body > span { min-height: 34px; font-size: 10px; }
.product-card__body > div { margin-top: 15px; padding-top: 15px; }
.product-badge { border-radius: 0 0 0 10px; }

.engineering { min-height: 510px; gap: 6vw; }
.engineering__copy > p:not(.eyebrow) { margin: 22px 0; line-height: 1.65; }
.engineering__panel { min-height: 355px; border-radius: 22px; }
.tech-ring { width: 210px; }
.tech-ring span { font-family: var(--display); font-style: normal; font-size: 56px; }
.configurator-banner { min-height: 285px; padding: 54px clamp(40px, 8vw, 124px); }
.configurator-banner h2 { font-size: clamp(46px, 5.4vw, 76px); }
.button--light { min-width: 205px; }

footer { padding-top: 50px; }

@media (max-width: 1100px) and (min-width: 761px) {
  .hero__content { width: 49vw; margin-left: 4vw; }
  .hero h1 { font-size: clamp(50px, 6vw, 65px); }
  .hero__specs { right: 18px; }
}

@media (max-width: 760px) {
  .site-header, .site-header.is-scrolled { height: 60px; padding-inline: 16px; }
  .site-header > span:first-child { min-width: 0; }
  .brand { min-width: auto; }
  .brand__mark { width: 33px; }
  .brand__type { font-size: 16px; }
  .brand__type b { font-size: 8px; }
  .icon-button, .menu-toggle { width: 36px; }
  .main-nav, .mega-menu { top: 60px; }
  .main-nav { position: absolute; height: calc(100vh - 60px); left: 0; right: 0; padding: 32px 22px; }
  .main-nav a, .main-nav .nav-menu-trigger, .main-nav .nav-menu-trigger:nth-child(5) { padding: 15px 0; font: 700 25px var(--display); letter-spacing: -.03em; }
  .mega-menu { inset: 60px 0 0; }
  .mega-panel, .mega-panel--story { padding-inline: 16px; }
  .mega-panel__intro h2 { font-size: 32px; }
  .mega-product, .mega-category, .story-stat { min-height: 104px; border-radius: 12px; }
  .mega-product::before { width: 75px; height: 37px; top: 16px; }

  .hero { min-height: 690px; height: auto; padding-top: 60px; }
  .hero__media { inset: auto 0 69px; height: 44%; }
  .hero__media img { object-position: 65% center; }
  .hero__wash { inset: 60px 0 auto; height: 54%; background: linear-gradient(180deg,#f7f7f5 0%,rgba(247,247,245,.97) 78%,rgba(247,247,245,.6) 92%,transparent); }
  .hero__content { width: auto; margin: 48px 20px 0; }
  .hero h1 { font-size: clamp(47px, 14vw, 60px); line-height: .92; white-space: nowrap; }
  .hero__rule { margin: 19px 0 13px; }
  .hero__lead { max-width: 360px; font-size: 12px; }
  .hero__actions { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; }
  .hero__actions .button { min-width: 0; padding-inline: 14px; gap: 10px; }
  .hero__specs { right: 0; bottom: 0; border-radius: 0; }
  .hero__specs div { padding-block: 11px; }

  .advantages { display: flex; min-height: 0; padding: 18px 16px 22px; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .advantages::-webkit-scrollbar, .product-grid::-webkit-scrollbar { display: none; }
  .advantage, .advantage:nth-child(2) { flex: 0 0 82vw; min-height: 105px; padding: 20px; border: 0; border-radius: 16px; background: #f5f5f3; scroll-snap-align: center; }
  .advantage:first-child { border: 0; }

  .section { padding: 62px 20px; }
  .section-heading { margin-bottom: 28px; }
  .section h2 { font-size: clamp(39px, 11.5vw, 51px); }
  .section-heading > p { margin-top: 20px; font-size: 11px; }
  .product-grid { display: flex; overflow-x: auto; gap: 12px; margin-inline: -20px; padding: 0 20px 20px; scroll-snap-type: x mandatory; }
  .product-card { flex: 0 0 84vw; scroll-snap-align: center; }
  .product-card__visual { height: 175px; }
  .product-card__body { padding: 20px; }

  .engineering { gap: 36px; padding-block: 64px; }
  .engineering__panel { min-height: 310px; border-radius: 18px; }
  .tech-ring { width: 180px; }
  .configurator-banner { min-height: 320px; padding: 52px 20px; }
  .configurator-banner h2 { font-size: clamp(44px, 13vw, 58px); margin-bottom: 32px; }
  .configurator-banner .button { width: 100%; }
  footer { padding-top: 42px; }
}

@media (max-width: 390px) {
  .search-trigger { display: none; }
  .hero { min-height: 670px; }
  .hero__content { margin-inline: 16px; }
  .hero h1 { font-size: clamp(43px, 13.5vw, 53px); }
  .hero__actions { grid-template-columns: 1fr; max-width: 250px; }
  .hero__media { height: 39%; }
  .hero__lead { max-width: 310px; }
}

/* About — intentionally quiet and editorial */
.about-page { background: #fff; }
.about-header { position: fixed; z-index: 50; inset: 0 0 auto; height: 64px; padding: 0 clamp(20px, 5vw, 72px); display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.88); border-bottom: 1px solid rgba(17,18,20,.1); backdrop-filter: blur(18px); }
.about-header nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); }
.about-header nav a { font-size: 9px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.about-header nav a:hover { color: var(--red); }
.about-header__cta { padding: 10px 17px; border-radius: 20px; color: white !important; background: var(--ink); }

.about-hero { padding: 142px clamp(20px, 7vw, 110px) 0; background: #f5f5f3; text-align: center; overflow: hidden; }
.about-back { width: fit-content; margin: -54px auto 42px 0; padding: 10px 15px; display: flex; align-items: center; gap: 10px; color: var(--ink); border: 1px solid #d5d6d4; border-radius: 22px; background: rgba(255,255,255,.88); box-shadow: 0 5px 18px rgba(17,18,20,.05); font-size: 9px; letter-spacing: .08em; font-weight: 800; text-transform: uppercase; transition: color .2s, border-color .2s, transform .2s, box-shadow .2s; }
.about-back span { color: var(--red); font-size: 16px; line-height: 1; transition: transform .2s; }
.about-back:hover { color: var(--ink); border-color: var(--red); box-shadow: 0 8px 24px rgba(17,18,20,.09); transform: translateY(-1px); }
.about-back:hover span { transform: translateX(-3px); }
.about-hero__copy { max-width: 920px; margin: 0 auto 50px; }
.about-hero .eyebrow { justify-content: center; }
.about-hero h1 { margin: 0; font: 700 clamp(48px, 6vw, 82px)/.98 var(--display); letter-spacing: -.065em; }
.about-hero h1 span { color: var(--red); }
.about-hero__copy > p:last-child { max-width: 560px; margin: 24px auto 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.about-hero__image { width: min(1120px, 100%); height: 390px; margin: 0 auto; border-radius: 28px 28px 0 0; overflow: hidden; }
.about-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 48%; }

.about-story { max-width: 1120px; margin: auto; padding: 110px 28px; border-bottom: 1px solid var(--line); }
.about-kicker, .about-closing > p { margin: 0 0 35px; color: var(--red); font-size: 9px; letter-spacing: .18em; font-weight: 800; }
.about-story > div { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.about-story h2, .about-closing h2 { margin: 0; font: 700 clamp(40px, 4.5vw, 64px)/1 var(--display); letter-spacing: -.055em; }
.about-story__text { color: var(--muted); font-size: 14px; line-height: 1.8; }
.about-story__text p { margin: 0 0 18px; }

.about-principles { max-width: 1120px; margin: auto; padding: 70px 28px 95px; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.about-principles article { min-height: 210px; padding: 30px; border-radius: 20px; background: #f5f5f3; }
.about-principles span { color: var(--red); font-size: 9px; font-weight: 800; }
.about-principles h3 { margin: 60px 0 10px; font: 700 24px var(--display); letter-spacing: -.04em; }
.about-principles p { max-width: 260px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }

.about-closing { padding: 95px 24px; text-align: center; background: var(--ink); color: white; }
.about-closing h2 { margin-bottom: 34px; }
.about-closing .button { min-width: 210px; }
.about-footer { padding: 26px clamp(20px, 5vw, 72px); display: flex; align-items: center; justify-content: space-between; color: #777; background: #090a0b; font-size: 8px; letter-spacing: .12em; }
.about-footer a { color: white; }

@media (max-width: 700px) {
  .about-header { height: 60px; padding-inline: 16px; }
  .about-header nav a:not(.about-header__cta) { display: none; }
  .about-header__cta { padding: 9px 14px; font-size: 8px !important; }
  .about-hero { padding: 112px 16px 0; }
  .about-back { margin: -35px auto 34px 0; padding: 10px 14px; font-size: 8px; }
  .about-hero__copy { margin-bottom: 36px; }
  .about-hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .about-hero__copy > p:last-child { font-size: 12px; }
  .about-hero__image { height: 280px; border-radius: 20px 20px 0 0; }
  .about-hero__image img { object-position: 67% center; }
  .about-story { padding: 72px 20px; }
  .about-kicker { margin-bottom: 24px; }
  .about-story > div { grid-template-columns: 1fr; gap: 32px; }
  .about-story h2, .about-closing h2 { font-size: clamp(38px, 10.5vw, 50px); }
  .about-story__text { font-size: 13px; }
  .about-principles { display: flex; padding: 48px 16px 65px; overflow-x: auto; gap: 10px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .about-principles::-webkit-scrollbar { display: none; }
  .about-principles article { flex: 0 0 82vw; min-height: 190px; scroll-snap-align: center; }
  .about-principles h3 { margin-top: 48px; }
  .about-closing { padding: 72px 20px; }
}

/* Turnkey collection */
.collection-page { background: #f5f5f3; }
.collection-announcement { height: 28px; display: grid; place-items: center; color: white; background: var(--ink); font-size: 7px; letter-spacing: .16em; font-weight: 700; }
.collection-announcement span { color: var(--red); margin-inline: 9px; }
.collection-header { position: sticky; z-index: 40; top: 0; height: 64px; padding: 0 clamp(22px,5vw,72px); display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.9); border-bottom: 1px solid rgba(17,18,20,.1); backdrop-filter: blur(18px); }
.collection-header nav { display: flex; align-self: stretch; align-items: center; gap: clamp(22px,3vw,45px); }
.collection-header nav a { height: 100%; display: grid; place-items: center; position: relative; text-transform: uppercase; font-size: 8px; letter-spacing: .07em; font-weight: 700; }
.collection-header nav a::after { content: ""; position: absolute; inset: auto 0 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform .25s; }
.collection-header nav a:hover::after, .collection-header nav a.is-active::after { transform: none; }
.collection-header__cta { padding: 10px 17px; border-radius: 22px; color: white; background: var(--ink); font-size: 8px; letter-spacing: .07em; font-weight: 700; text-transform: uppercase; }

.collection-hero { min-height: 520px; padding: 95px 24px 78px; display: grid; place-items: center; text-align: center; background: white; }
.collection-hero > div { max-width: 850px; }
.collection-kicker, .systems-heading > div > span, .compare-heading > span, .turnkey-difference > div > span, .quote-section__intro > span { color: var(--red); font-size: 8px; letter-spacing: .2em; font-weight: 800; }
.collection-hero h1 { margin: 17px 0 20px; font: 700 clamp(58px,7vw,92px)/.92 var(--display); letter-spacing: -.07em; }
.collection-hero h1 span { color: var(--red); }
.collection-hero p:not(.collection-kicker) { max-width: 580px; margin: auto; color: var(--muted); font-size: 14px; line-height: 1.7; }
.collection-hero a { display: inline-flex; align-items: center; gap: 25px; margin-top: 30px; padding-bottom: 7px; border-bottom: 1px solid var(--ink); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.collection-hero a span { color: var(--red); font-size: 15px; }

.systems-section { padding: 82px clamp(22px,5vw,72px) 95px; }
.systems-heading { max-width: 1320px; margin: 0 auto 38px; display: flex; align-items: end; justify-content: space-between; gap: 35px; }
.systems-heading h2, .compare-heading h2, .turnkey-difference h2, .quote-section__intro h2 { margin: 12px 0 0; font: 700 clamp(38px,4vw,56px)/1 var(--display); letter-spacing: -.055em; }
.system-filters { display: flex; padding: 4px; border-radius: 22px; background: #e9e9e7; }
.system-filters button { min-width: 70px; padding: 9px 15px; border: 0; border-radius: 18px; background: none; color: #777; font-size: 8px; font-weight: 700; text-transform: uppercase; cursor: pointer; transition: .2s; }
.system-filters button.is-active { color: white; background: var(--ink); }
.turnkey-grid { max-width: 1320px; margin: auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; align-items: start; }
.turnkey-card { position: relative; overflow: hidden; border-radius: 22px; background: white; transition: transform .35s, opacity .25s; }
.turnkey-card[hidden] { display: none; }
.turnkey-card:hover { transform: translateY(-5px); }
.turnkey-card__image { height: 310px; padding: 10px; overflow: hidden; background: #f1f0ee; }
.turnkey-card__image img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.turnkey-card:hover .turnkey-card__image img { transform: scale(1.025); }
.turnkey-card__content { padding: 25px 26px 27px; }
.turnkey-card__meta { display: flex; justify-content: space-between; color: var(--red); font-size: 7px; letter-spacing: .14em; font-weight: 800; }
.turnkey-card__meta em { color: #8b8b8d; font-style: normal; letter-spacing: 0; }
.turnkey-card h2 { margin: 17px 0 9px; font: 700 31px var(--display); letter-spacing: -.055em; }
.turnkey-card__content > p { min-height: 39px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.65; }
.turnkey-card ul { margin: 20px 0 22px; padding: 17px 0; border-block: 1px solid var(--line); list-style: none; }
.turnkey-card li { position: relative; padding: 5px 0 5px 17px; color: #3f4144; font-size: 9px; }
.turnkey-card li::before { content: "✓"; position: absolute; left: 0; color: var(--red); }
.turnkey-card__footer { display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.turnkey-card__footer small { display: block; color: #888; font-size: 6px; letter-spacing: .14em; }
.turnkey-card__footer strong { display: block; margin-top: 4px; font: 700 21px var(--display); }
.quick-view, .system-details { padding: 10px 0 6px; border: 0; border-bottom: 1px solid var(--ink); background: none; font-size: 8px; font-weight: 700; text-transform: uppercase; cursor: pointer; }
.quick-view span, .system-details span { margin-left: 12px; color: var(--red); }
.turnkey-card__badge { position: absolute; z-index: 2; top: 17px; right: 17px; padding: 8px 12px; border-radius: 15px; color: white; background: var(--red); font-size: 7px; letter-spacing: .12em; font-weight: 800; }

.compare-section { padding: 90px clamp(22px,7vw,110px); background: white; }
.compare-heading { max-width: 760px; margin: 0 auto 45px; text-align: center; }
.compare-heading p { color: var(--muted); font-size: 12px; }
.compare-scroll { max-width: 1120px; margin: auto; overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; }
.compare-scroll table { width: 100%; min-width: 720px; border-collapse: collapse; }
.compare-scroll th, .compare-scroll td { width: 25%; padding: 18px 22px; border-bottom: 1px solid var(--line); text-align: left; font-size: 10px; }
.compare-scroll thead th { padding-block: 24px; font: 700 16px var(--display); }
.compare-scroll thead th:first-child { color: #929397; font: 700 8px var(--body); letter-spacing: .12em; text-transform: uppercase; }
.compare-scroll tbody th { color: #777; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.compare-scroll .is-highlighted { background: #f5f5f3; }
.compare-scroll tfoot th, .compare-scroll tfoot td { border: 0; }
.compare-scroll tfoot a { display: inline-block; padding-bottom: 5px; border-bottom: 1px solid var(--red); font-size: 8px; font-weight: 800; text-transform: uppercase; }

.turnkey-difference { padding: 90px clamp(22px,7vw,110px); display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; color: white; background: var(--ink); }
.difference-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.difference-list article { min-height: 230px; padding: 27px; border: 1px solid #303236; border-radius: 18px; }
.difference-list b { color: var(--red); font-size: 9px; }
.difference-list h3 { margin: 82px 0 10px; font: 600 18px var(--display); letter-spacing: -.035em; }
.difference-list p { margin: 0; color: #92959a; font-size: 9px; line-height: 1.65; }

.quote-section { padding: 95px clamp(22px,8vw,130px); display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; background: #ededeb; }
.quote-section__intro p { max-width: 390px; color: var(--muted); font-size: 12px; line-height: 1.75; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 16px; }
.quote-form label { display: block; }
.quote-form label > span { display: block; margin-bottom: 8px; color: #55575a; font-size: 8px; letter-spacing: .08em; font-weight: 700; text-transform: uppercase; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; padding: 13px 2px; border: 0; border-bottom: 1px solid #b8b9ba; outline: none; border-radius: 0; background: transparent; font: 500 12px var(--body); }
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--red); }
.quote-form label small { display: block; margin-top: 5px; color: var(--red); font-size: 8px; }
.quote-form .is-wide, .quote-form .form-success, .quote-form .form-errors { grid-column: 1/-1; }
.form-success, .form-errors { padding: 13px 16px; border-radius: 10px; font-size: 10px; }
.form-success { color: #145f32; background: #dff2e5; }
.form-errors { color: #8c181c; background: #f7dfe0; }
.quote-form .button { width: fit-content; min-width: 180px; }
.collection-footer { padding: 30px clamp(22px,5vw,72px); display: flex; justify-content: space-between; color: #777; background: #090a0b; font-size: 8px; letter-spacing: .1em; }
.collection-footer div { display: flex; gap: 27px; color: white; text-transform: uppercase; }

.product-dialog { width: min(900px,calc(100% - 32px)); padding: 0; border: 0; border-radius: 24px; overflow: hidden; background: white; box-shadow: 0 35px 100px rgba(0,0,0,.3); }
.product-dialog[open] { display: grid; grid-template-columns: 1.2fr .8fr; }
.product-dialog::backdrop { background: rgba(8,9,10,.65); backdrop-filter: blur(6px); }
.product-dialog > img { width: 100%; height: 100%; min-height: 450px; object-fit: cover; background: #f2f1ef; }
.product-dialog > div { padding: 45px 35px; align-self: center; }
.product-dialog > div > span { color: var(--red); font-size: 8px; letter-spacing: .18em; font-weight: 800; }
.product-dialog h2 { margin: 14px 0; font: 700 38px var(--display); letter-spacing: -.055em; }
.product-dialog p { color: var(--muted); font-size: 11px; line-height: 1.7; }
.product-dialog strong { display: block; margin: 25px 0; font: 700 20px var(--display); }
.product-dialog a { display: inline-block; padding-bottom: 6px; border-bottom: 1px solid var(--red); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.product-dialog__close { position: absolute; z-index: 2; top: 15px; right: 15px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: white; font-size: 22px; cursor: pointer; }

@media (max-width: 980px) {
  .collection-header nav { display: none; }
  .turnkey-grid { grid-template-columns: 1fr 1fr; }
  .turnkey-card:last-child { grid-column: 1/-1; display: grid; grid-template-columns: 1fr 1fr; }
  .turnkey-card:last-child .turnkey-card__image { height: 100%; min-height: 360px; }
  .turnkey-difference, .quote-section { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 650px) {
  .collection-announcement { font-size: 6px; }
  .collection-header { height: 60px; padding-inline: 15px; }
  .collection-header__cta { padding: 9px 12px; font-size: 7px; }
  .collection-hero { min-height: 430px; padding: 72px 18px 60px; }
  .collection-hero h1 { font-size: clamp(49px,15vw,67px); }
  .collection-hero p:not(.collection-kicker) { font-size: 12px; }
  .systems-section { padding: 62px 16px 72px; }
  .systems-heading { display: block; }
  .systems-heading h2 { font-size: 38px; }
  .system-filters { margin-top: 24px; width: fit-content; }
  .turnkey-grid { display: flex; margin-inline: -16px; padding: 0 16px 18px; gap: 11px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .turnkey-grid::-webkit-scrollbar { display: none; }
  .turnkey-card, .turnkey-card:last-child { flex: 0 0 88vw; display: block; grid-column: auto; scroll-snap-align: center; }
  .turnkey-card__image, .turnkey-card:last-child .turnkey-card__image { height: 245px; min-height: 0; }
  .turnkey-card__content { padding: 22px; }
  .turnkey-card__content > p { min-height: 0; }
  .compare-section { padding: 70px 16px; }
  .compare-heading { text-align: left; }
  .compare-scroll { border-radius: 15px; }
  .turnkey-difference { padding: 70px 18px; }
  .difference-list { display: flex; margin-inline: -18px; padding: 0 18px 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .difference-list article { flex: 0 0 78vw; min-height: 200px; scroll-snap-align: center; }
  .difference-list h3 { margin-top: 62px; }
  .quote-section { padding: 72px 18px; }
  .quote-form { grid-template-columns: 1fr; gap: 18px; }
  .quote-form .is-wide, .quote-form .form-success, .quote-form .form-errors { grid-column: 1; }
  .quote-form .button { width: 100%; }
  .collection-footer { display: block; text-align: center; }
  .collection-footer div { margin-top: 20px; justify-content: center; }
  .product-dialog[open] { display: block; max-height: calc(100vh - 28px); overflow-y: auto; }
  .product-dialog > img { height: 250px; min-height: 0; }
  .product-dialog > div { padding: 28px 23px 35px; }
}

/* Refined collection, reduced content */
.collection-page--refined .collection-header__cta { border: 0; cursor: pointer; font-family: var(--body); }
.collection-page--refined .collection-hero { min-height: 590px; padding: 0; grid-template-columns: .82fr 1.18fr; place-items: stretch; text-align: left; overflow: hidden; }
.collection-page--refined .collection-hero > div { max-width: none; }
.collection-hero__copy { padding: 90px 35px 75px clamp(40px,7vw,110px); display: flex; flex-direction: column; justify-content: center; }
.collection-page--refined .collection-hero h1 { margin-block: 16px 18px; font-size: clamp(55px,6vw,82px); }
.collection-page--refined .collection-hero p:not(.collection-kicker) { max-width: 460px; margin: 0; font-size: 13px; }
.collection-hero__actions { display: flex; gap: 10px; margin-top: 28px; }
.collection-page--refined .collection-hero__actions .button { margin: 0; padding-bottom: 0; border-bottom-width: 1px; }
.collection-page--refined .collection-hero__actions .button--primary span { color: white; }
.collection-page--refined .collection-hero__actions .button--ghost span { color: inherit; }
.collection-hero__visual { min-width: 0; height: 590px; background: #f1f0ee; }
.collection-hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }

.collection-page--refined .systems-section { padding-block: 70px 82px; }
.collection-page--refined .systems-heading { margin-bottom: 30px; }
.systems-heading__compare { padding-bottom: 6px; border-bottom: 1px solid var(--ink); font-size: 8px; font-weight: 700; text-transform: uppercase; }
.collection-page--refined .turnkey-card__image { height: 275px; }
.collection-page--refined .turnkey-card__content { padding: 23px 24px 25px; }
.collection-page--refined .turnkey-card ul { margin-block: 17px 19px; padding-block: 13px; }

.compact-compare { padding: 78px clamp(22px,7vw,110px); display: grid; grid-template-columns: .72fr 1.28fr; gap: 7vw; color: white; background: var(--ink); }
.compact-compare__heading > span, .quote-band > div > span { color: var(--red); font-size: 8px; letter-spacing: .18em; font-weight: 800; }
.compact-compare__heading h2 { margin: 13px 0 0; font: 650 clamp(38px,4.2vw,58px)/1 var(--display); letter-spacing: -.055em; }
.compact-compare__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.compact-compare article { padding: 24px; border: 1px solid #333539; border-radius: 17px; }
.compact-compare article.is-featured { border-color: var(--red); background: #171719; }
.compact-compare article > div { display: flex; justify-content: space-between; align-items: center; }
.compact-compare article b { font: 650 20px var(--display); }
.compact-compare article strong { color: var(--red); font: 650 13px var(--display); }
.compact-compare article p { margin: 55px 0 24px; }
.compact-compare article p span { display: block; padding: 7px 0; border-bottom: 1px solid #2c2e31; color: #a2a4a8; font-size: 8px; }
.compact-compare article button { padding: 0 0 5px; border: 0; border-bottom: 1px solid var(--red); color: white; background: none; font-size: 8px; font-weight: 700; text-transform: uppercase; cursor: pointer; }

.quote-band { min-height: 250px; padding: 52px clamp(35px,8vw,125px); display: flex; align-items: center; justify-content: space-between; gap: 50px; color: white; background: var(--red); }
.quote-band > div > span { color: white; }
.quote-band h2 { margin: 10px 0 6px; font: 650 clamp(38px,4.5vw,62px)/1 var(--display); letter-spacing: -.055em; }
.quote-band p { margin: 0; color: rgba(255,255,255,.78); font-size: 11px; }
.quote-band .button { flex: 0 0 auto; }

.product-dialog button[data-dialog-quote] { padding: 0 0 6px; border: 0; border-bottom: 1px solid var(--red); background: none; font-size: 8px; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.quote-dialog { width: min(820px,calc(100% - 32px)); max-height: calc(100vh - 36px); padding: 42px; border: 0; border-radius: 23px; overflow-y: auto; background: #f5f5f3; box-shadow: 0 35px 100px rgba(0,0,0,.35); }
.quote-dialog::backdrop { background: rgba(8,9,10,.68); backdrop-filter: blur(7px); }
.quote-dialog__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: white; font-size: 22px; cursor: pointer; }
.quote-dialog__intro { margin-bottom: 32px; padding-right: 40px; }
.quote-dialog__intro span { color: var(--red); font-size: 8px; letter-spacing: .18em; font-weight: 800; }
.quote-dialog__intro h2 { margin: 12px 0 7px; font: 650 42px/1 var(--display); letter-spacing: -.05em; }
.quote-dialog__intro p { margin: 0; color: var(--muted); font-size: 11px; }

@media (max-width: 900px) {
  .collection-page--refined .collection-hero { min-height: 520px; grid-template-columns: 1fr 1fr; }
  .collection-hero__copy { padding-left: 35px; }
  .collection-hero__visual { height: 520px; }
  .collection-page--refined .collection-hero h1 { font-size: clamp(48px,7vw,64px); }
  .collection-hero__actions { align-items: flex-start; flex-direction: column; }
  .compact-compare { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 650px) {
  .collection-page--refined .collection-hero { display: block; min-height: 0; }
  .collection-hero__copy { min-height: 430px; padding: 68px 18px 48px; text-align: left; }
  .collection-page--refined .collection-hero h1 { font-size: clamp(49px,14vw,63px); }
  .collection-page--refined .collection-hero p:not(.collection-kicker) { font-size: 12px; }
  .collection-hero__actions { width: 100%; display: grid; grid-template-columns: 1fr; }
  .collection-hero__actions .button { width: 100%; }
  .collection-hero__visual { height: 285px; }
  .collection-hero__visual img { object-position: 54% center; }
  .systems-heading__compare { display: inline-block; margin-top: 20px; }
  .collection-page--refined .turnkey-card__image { height: 225px; }
  .compact-compare { padding: 65px 16px; }
  .compact-compare__heading h2 { font-size: 40px; }
  .compact-compare__grid { display: flex; margin-inline: -16px; padding: 0 16px 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .compact-compare article { flex: 0 0 76vw; scroll-snap-align: center; }
  .compact-compare article p { margin-top: 42px; }
  .quote-band { min-height: 300px; padding: 48px 18px; align-items: stretch; flex-direction: column; justify-content: center; gap: 28px; }
  .quote-band h2 { font-size: 43px; }
  .quote-band .button { width: 100%; }
  .quote-dialog { width: calc(100% - 20px); padding: 30px 18px 24px; border-radius: 18px; }
  .quote-dialog__intro { margin-bottom: 25px; }
  .quote-dialog__intro h2 { font-size: 34px; }
}

/* Product detail and image-led catalog */
.product-page { background: #fff; }
.product-header { position: sticky; z-index: 50; top: 0; height: 66px; padding: 0 clamp(18px,6vw,88px); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e8e8e6; background: rgba(255,255,255,.91); backdrop-filter: blur(18px); }
.product-header nav { height: 100%; display: flex; align-items: center; gap: clamp(22px,3vw,48px); }
.product-header nav a { height: 100%; display: grid; place-items: center; position: relative; font-size: 8px; letter-spacing: .08em; font-weight: 800; text-transform: uppercase; }
.product-header nav a::after { content: ""; position: absolute; inset: auto 0 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform .25s; }
.product-header nav a:hover::after { transform: none; }
.product-header__bag { width: 42px; height: 42px; display: grid; place-items: center; position: relative; border-radius: 50%; }
.product-header__bag svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.product-header__bag span { position: absolute; top: 0; right: -2px; width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--red); border: 2px solid #fff; font-size: 7px; font-weight: 800; }
.product-breadcrumb { max-width: 1440px; margin: 0 auto; padding: 18px clamp(20px,6vw,84px) 12px; display: flex; gap: 9px; color: #9a9b9d; font-size: 8px; text-transform: uppercase; letter-spacing: .06em; }
.product-breadcrumb b { color: var(--ink); font-weight: 700; }

.product-buy { max-width: 1440px; margin: 0 auto; padding: 18px clamp(20px,6vw,84px) 58px; display: grid; grid-template-columns: minmax(0,1.2fr) minmax(350px,.8fr); gap: clamp(38px,5vw,76px); }
.product-gallery { min-width: 0; display: grid; grid-template-columns: 76px minmax(0,1fr); gap: 13px; }
.product-gallery__rail { display: flex; flex-direction: column; gap: 10px; }
.product-thumb { height: 76px; padding: 4px; overflow: hidden; border: 1px solid transparent; border-radius: 10px; background: #f6f5f3; cursor: pointer; transition: border .2s, transform .2s; }
.product-thumb:hover { transform: translateY(-2px); }
.product-thumb.is-active { border-color: var(--red); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.product-thumb:nth-child(2) img { transform: scale(1.35); object-position: 62% center; }
.product-thumb:nth-child(3) img { transform: scale(1.65); object-position: 35% 60%; }
.product-gallery__stage { min-height: 530px; position: relative; display: grid; place-items: center; overflow: hidden; border-radius: 18px; background: #f5f4f2; }
.product-gallery__stage > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: contain; mix-blend-mode: multiply; transition: transform .55s cubic-bezier(.22,1,.36,1), object-position .55s; }
.product-gallery__stage > img[data-view="1"] { transform: scale(1.38); object-position: 65% center; }
.product-gallery__stage > img[data-view="2"] { transform: scale(1.7); object-position: 33% 62%; }
.product-gallery.is-zoomed .product-gallery__stage > img { transform: scale(1.85); }
.product-gallery__badge { position: absolute; z-index: 2; top: 17px; left: 17px; padding: 7px 11px; border-radius: 20px; color: white; background: var(--red); font-size: 7px; letter-spacing: .1em; font-weight: 800; text-transform: uppercase; }
.product-gallery__zoom { position: absolute; z-index: 2; top: 16px; right: 16px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); font-size: 20px; cursor: pointer; transition: transform .2s; }
.product-gallery__zoom:hover { transform: scale(1.06); }

.product-summary { padding-top: 9px; }
.product-summary__category { margin: 0 0 9px; color: var(--red); font-size: 8px; letter-spacing: .16em; font-weight: 800; text-transform: uppercase; }
.product-summary h1 { margin: 0; font: 700 clamp(42px,4.5vw,67px)/.95 var(--display); letter-spacing: -.06em; }
.product-price { display: block; color: var(--red); font: 700 26px var(--display); letter-spacing: -.03em; }
.product-availability { margin: 13px 0 18px; display: flex; align-items: center; gap: 9px; font-size: 8px; }
.product-availability span { color: #168246; font-weight: 800; }
.product-availability i { width: 3px; height: 3px; border-radius: 50%; background: #bbb; }
.product-availability small { color: #77797c; }
.product-summary__lead { max-width: 570px; margin: 0; color: #5f6267; font-size: 10px; line-height: 1.72; }
.product-highlights { margin: 17px 0 23px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; list-style: none; }
.product-highlights li { position: relative; padding-left: 16px; color: #44474b; font-size: 9px; }
.product-highlights li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 900; }
.product-options { padding-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 11px; border-top: 1px solid #e2e2df; }
.product-options label > span { display: block; margin-bottom: 7px; color: #7b7d81; font-size: 7px; letter-spacing: .1em; font-weight: 800; text-transform: uppercase; }
.product-options select { width: 100%; height: 42px; padding: 0 34px 0 12px; border: 1px solid #dcdddb; border-radius: 8px; color: var(--ink); background: white; font-size: 9px; }
.product-purchase { margin-top: 16px; display: grid; grid-template-columns: 94px 1fr 1fr; gap: 9px; }
.quantity { height: 46px; display: grid; grid-template-columns: repeat(3,1fr); place-items: center; border: 1px solid #d8d9d7; border-radius: 8px; font-size: 10px; }
.quantity button { width: 100%; height: 100%; border: 0; background: none; cursor: pointer; }
.product-add, .product-buy-now { min-height: 46px; padding: 0 16px; display: flex; justify-content: center; align-items: center; gap: 18px; border: 1px solid var(--ink); border-radius: 8px; background: #fff; font-size: 8px; letter-spacing: .07em; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: transform .2s, background .2s, color .2s; }
.product-add { color: #fff; border-color: var(--red); background: var(--red); }
.product-add:hover, .product-buy-now:hover { transform: translateY(-2px); }
.product-buy-now:hover { color: #fff; background: var(--ink); }
.product-assurance { margin-top: 18px; padding-top: 16px; display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; border-top: 1px solid #e2e2df; }
.product-assurance span { min-width: 0; }
.product-assurance b, .product-assurance small { display: block; }
.product-assurance b { font-size: 7px; }
.product-assurance small { margin-top: 3px; color: #929397; font-size: 6px; }

.product-detail { padding: 0 clamp(20px,6vw,84px) 70px; border-top: 1px solid #e8e8e6; }
.product-tabs { max-width: 1440px; margin: 0 auto; display: flex; gap: 45px; border-bottom: 1px solid #e8e8e6; }
.product-tabs button { height: 58px; padding: 0; position: relative; border: 0; background: none; font-size: 8px; letter-spacing: .08em; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.product-tabs button::after { content: ""; position: absolute; inset: auto 0 -1px; height: 2px; background: var(--red); transform: scaleX(0); transition: transform .2s; }
.product-tabs button.is-active { color: var(--red); }
.product-tabs button.is-active::after { transform: none; }
.product-tab-panels { max-width: 1440px; min-height: 210px; margin: 0 auto; padding-top: 38px; }
.product-tab-panel { display: none; animation: tabIn .35s ease; }
.product-tab-panel.is-active { display: grid; grid-template-columns: .75fr 1.25fr; gap: 10vw; }
@keyframes tabIn { from { opacity: 0; transform: translateY(8px); } }
.product-tab-panel span { color: var(--red); font-size: 8px; letter-spacing: .15em; font-weight: 800; text-transform: uppercase; }
.product-tab-panel h2 { max-width: 430px; margin: 11px 0 0; font: 700 clamp(32px,3.5vw,50px)/1 var(--display); letter-spacing: -.05em; }
.product-tab-panel > p { max-width: 650px; margin: 0; color: #616368; font-size: 11px; line-height: 1.8; }
.product-tab-panel dl { grid-column: 1/-1; margin: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 0 35px; }
.product-tab-panel dl div { padding: 12px 0; display: flex; justify-content: space-between; gap: 18px; border-bottom: 1px solid #e6e6e4; font-size: 9px; }
.product-tab-panel dt { color: #7b7d80; }
.product-tab-panel dd { margin: 0; text-align: right; font-weight: 700; }
.product-tab-panel ol { grid-column: 1/-1; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; list-style: none; }
.product-tab-panel li { min-height: 110px; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 12px; background: #f5f5f3; font-size: 10px; font-weight: 700; }

.product-tab-panel--video.is-active { grid-template-columns: minmax(220px,.72fr) minmax(320px,520px); align-items: center; justify-content: start; gap: clamp(32px,6vw,85px); }
.product-tab-video__copy { max-width: 420px; }
.product-tab-video__copy p { max-width: 400px; margin: 15px 0 19px; color: #676a6e; font-size: 10px; line-height: 1.7; }
.product-tab-video__copy a { padding-bottom: 5px; display: inline-flex; align-items: center; gap: 20px; border-bottom: 1px solid var(--red); font-size: 8px; letter-spacing: .06em; font-weight: 800; text-transform: uppercase; }
.product-tab-video__copy a b { color: var(--red); font-size: 13px; }
.product-tab-video { width: 100%; max-width: 520px; aspect-ratio: 16/9; overflow: hidden; border-radius: 13px; background: var(--ink); box-shadow: 0 16px 42px rgba(0,0,0,.13); }
.product-tab-video iframe { width: 100%; height: 100%; display: block; border: 0; }

.recommended-products { padding: 66px clamp(20px,6vw,84px) 80px; background: #f5f5f3; }
.recommended-products__heading { max-width: 1440px; margin: 0 auto 28px; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.recommended-products__heading span { color: var(--red); font-size: 8px; letter-spacing: .15em; font-weight: 800; }
.recommended-products__heading h2 { margin: 10px 0 0; font: 700 clamp(32px,3.6vw,48px)/1 var(--display); letter-spacing: -.05em; }
.recommended-products__heading > a { padding-bottom: 5px; border-bottom: 1px solid var(--red); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.recommended-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.recommended-card { min-width: 0; padding: 12px; display: grid; grid-template-columns: 105px 1fr 32px; align-items: center; gap: 13px; border-radius: 14px; background: white; }
.recommended-card__image { height: 88px; padding: 5px; overflow: hidden; border-radius: 9px; background: #f4f3f1; }
.recommended-card__image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .35s; }
.recommended-card:hover img { transform: scale(1.05); }
.recommended-card div { min-width: 0; }
.recommended-card div > span { color: #8d8f92; font-size: 6px; text-transform: uppercase; }
.recommended-card h3 { margin: 5px 0 8px; font: 700 13px var(--display); letter-spacing: -.03em; }
.recommended-card strong { color: var(--red); font-size: 10px; }
.recommended-card > button { width: 30px; height: 30px; border: 1px solid #dededc; border-radius: 50%; background: #fff; cursor: pointer; transition: color .2s, background .2s; }
.recommended-card > button:hover { color: white; border-color: var(--red); background: var(--red); }
.product-footer { padding: 30px clamp(20px,6vw,84px); grid-template-columns: 1fr auto 1fr; align-items: center; color: #a9aaad; font-size: 8px; }
.product-footer p { margin: 0; }
.product-footer div { display: flex; justify-content: flex-end; gap: 24px; }
.product-toast { position: fixed; z-index: 100; right: 24px; bottom: 24px; max-width: calc(100% - 48px); padding: 14px 18px; border-radius: 9px; color: white; background: var(--ink); box-shadow: 0 14px 45px rgba(0,0,0,.2); font-size: 9px; transform: translateY(20px); opacity: 0; visibility: hidden; transition: .25s; }
.product-toast.is-visible { opacity: 1; visibility: visible; transform: none; }

.product-card__visual--image { padding: 0; background: #f0efed; }
.product-card__visual--image::before, .product-card__visual--image::after { display: none; }
.product-card__visual--image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.22,1,.36,1); }
.product-card:hover .product-card__visual--image img { transform: scale(1.035); }
.product-card__visual--image b { z-index: 2; }
.product-card__body h3 a:hover { color: var(--red); }
.mega-product img { width: calc(100% + 44px); height: 115px; margin: -22px -22px 12px; position: relative; object-fit: cover; mix-blend-mode: multiply; }
.mega-product::before { display: none; }
.mega-product--dark img { mix-blend-mode: normal; opacity: .88; }
.mega-panel--accessories { width: 100%; max-width: 1440px; margin-inline: auto; grid-template-columns: minmax(240px,290px) minmax(0,920px); justify-content: space-between; }
.mega-panel--accessories .mega-panel__intro { padding: 20px 20px 20px 0; align-self: center; }
.accessory-mega__grid { width: 100%; max-width: 920px; justify-self: end; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); justify-content: stretch; gap: 10px; }
.mega-accessory { min-width: 0; padding: 8px; border: 1px solid #e7e7e4; border-radius: 12px; background: #f7f6f4; transition: transform .25s, box-shadow .25s; }
.mega-accessory:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.06); }
.mega-accessory__image { width: 118px; height: 118px; margin: 0 auto 10px; padding: 6px; overflow: hidden; border-radius: 8px; background: #eeece9; }
.mega-accessory img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .35s; }
.mega-accessory:hover img { transform: scale(1.04); }
.mega-accessory small, .mega-accessory strong, .mega-accessory em { display: block; }
.mega-accessory small { color: #8b8d90; font-size: 6px; text-transform: uppercase; }
.mega-accessory strong { margin: 4px 0 7px; overflow: hidden; font: 700 12px var(--display); text-overflow: ellipsis; white-space: nowrap; }
.mega-accessory em { color: var(--red); font: normal 800 9px var(--body); }

.home-accessories { background: #fff; }
.home-accessories .section-heading, .home-accessory-grid { width: 100%; max-width: 1080px; margin-inline: auto; }
.home-accessory-grid { display: grid; grid-template-columns: repeat(4,minmax(190px,220px)); justify-content: center; gap: 12px; }
.home-accessory-card { min-width: 0; position: relative; overflow: hidden; border: 1px solid #e5e5e2; border-radius: 16px; background: #f7f6f4; transition: transform .3s, box-shadow .3s; }
.home-accessory-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(20,20,20,.07); }
.home-accessory-card > a { width: 158px; height: 158px; margin: 10px auto 0; padding: 7px; display: block; overflow: hidden; border-radius: 11px; background: #efeeeb; }
.home-accessory-card img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .45s cubic-bezier(.22,1,.36,1); }
.home-accessory-card:hover img { transform: scale(1.045); }
.home-accessory-card > div { padding: 15px 16px 18px; }
.home-accessory-card div > span { color: var(--red); font-size: 7px; letter-spacing: .12em; font-weight: 800; }
.home-accessory-card h3 { margin: 7px 0 4px; font: 700 17px var(--display); letter-spacing: -.04em; }
.home-accessory-card h3 a:hover { color: var(--red); }
.home-accessory-card p { margin: 0 0 14px; color: #7a7c80; font-size: 8px; }
.home-accessory-card strong { font-size: 11px; }
.home-accessory-card > button { position: absolute; right: 14px; bottom: 14px; }
.home-accessory-card > button i { margin: 0; }

@media (max-width: 1050px) {
  .product-buy { grid-template-columns: 1fr 1fr; gap: 30px; }
  .product-gallery { grid-template-columns: 60px 1fr; }
  .product-thumb { height: 60px; }
  .product-gallery__stage { min-height: 450px; }
  .product-purchase { grid-template-columns: 82px 1fr; }
  .product-buy-now { grid-column: 2; }
  .recommended-grid { grid-template-columns: 1fr 1fr; }
  .accessory-mega__grid { max-width: 400px; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .home-accessory-grid { grid-template-columns: repeat(2,minmax(190px,220px)); }
}

@media (max-width: 760px) {
  .product-header { height: 60px; padding-inline: 16px; }
  .product-header nav { display: none; }
  .product-breadcrumb { padding: 14px 16px 8px; overflow: hidden; white-space: nowrap; }
  .product-buy { padding: 8px 16px 44px; display: block; }
  .product-gallery { display: flex; flex-direction: column-reverse; }
  .product-gallery__rail { flex-direction: row; }
  .product-thumb { width: 62px; height: 55px; }
  .product-gallery__stage { min-height: 330px; border-radius: 14px; }
  .product-summary { padding-top: 31px; }
  .product-summary h1 { font-size: clamp(42px,13vw,58px); }
  .product-highlights { grid-template-columns: 1fr; }
  .product-purchase { grid-template-columns: 80px 1fr; }
  .product-buy-now { grid-column: 1/-1; }
  .product-assurance { gap: 8px; }
  .product-detail { padding-inline: 16px; padding-bottom: 50px; }
  .product-tabs { gap: 24px; overflow-x: auto; }
  .product-tabs button { flex: 0 0 auto; }
  .product-tab-panels { min-height: 280px; padding-top: 27px; }
  .product-tab-panel.is-active { grid-template-columns: 1fr; gap: 24px; }
  .product-tab-panel dl { grid-template-columns: 1fr; }
  .product-tab-panel ol { grid-template-columns: 1fr 1fr; }
  .product-tab-panel--video.is-active { grid-template-columns: 1fr; gap: 25px; }
  .product-tab-video { width: min(100%,480px); border-radius: 11px; }
  .recommended-products { padding: 52px 16px 60px; }
  .recommended-products__heading { display: block; }
  .recommended-products__heading > a { display: inline-block; margin-top: 22px; }
  .recommended-grid { display: flex; margin-inline: -16px; padding: 0 16px 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .recommended-card { flex: 0 0 84vw; scroll-snap-align: center; }
  .product-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; }
  .product-footer p { width: 100%; order: 3; }
  .mega-panel--accessories { grid-template-columns: 1fr; }
  .accessory-mega__grid { grid-template-columns: 1fr 1fr; }
  .accessory-mega__grid { grid-template-columns: 1fr 1fr; justify-content: stretch; }
  .mega-accessory__image { width: 104px; height: 104px; }
  .home-accessory-grid { display: flex; margin-inline: -20px; padding: 0 20px 16px; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .home-accessory-card { flex: 0 0 72vw; scroll-snap-align: center; }
  .home-accessory-card > a { width: 150px; height: 150px; }
}

@media (max-width: 390px) {
  .product-options { grid-template-columns: 1fr; }
  .product-purchase { grid-template-columns: 1fr; }
  .product-buy-now { grid-column: auto; }
  .quantity { width: 100px; }
  .product-gallery__stage { min-height: 285px; }
}

/* Consistent navigation across internal pages */
.product-header, .collection-header, .about-header { display: grid; grid-template-columns: minmax(150px,1fr) auto minmax(150px,1fr); }
.product-header > .brand, .collection-header > .brand, .about-header > .brand { justify-self: start; }
.product-header nav, .collection-header nav, .about-header nav { height: 100%; justify-self: center; align-self: stretch; align-items: center; gap: clamp(22px,3vw,44px); }
.product-header nav a, .collection-header nav a, .about-header nav a { height: 100%; padding: 0; display: flex; align-items: center; gap: 5px; position: relative; color: var(--ink); font-size: 9px; line-height: 1; letter-spacing: .06em; font-weight: 800; text-transform: uppercase; }
.product-header nav a > span, .collection-header nav a > span, .about-header nav a > span { position: relative; top: 1px; color: var(--red); font-size: 11px; line-height: 1; }
.product-header nav a::after, .collection-header nav a::after, .about-header nav a::after { content: ""; position: absolute; inset: auto 0 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform .25s; }
.product-header nav a:hover::after, .collection-header nav a:hover::after, .about-header nav a:hover::after,
.product-header nav a.is-active::after, .collection-header nav a.is-active::after, .about-header nav a.is-active::after { transform: none; }
.product-header nav a.is-active, .collection-header nav a.is-active, .about-header nav a.is-active { color: var(--red); }
.product-header__bag, .collection-header__cta, .about-header__spacer,
.product-header > .header-actions, .collection-header > .header-actions, .about-header > .header-actions { justify-self: end; }
.about-header__spacer { width: 42px; height: 42px; }

@media (max-width: 980px) {
  .product-header, .collection-header, .about-header { grid-template-columns: 1fr auto; }
  .product-header nav, .collection-header nav, .about-header nav { display: none; }
  .product-header > .header-actions, .collection-header > .header-actions, .about-header > .header-actions { min-width: auto; }

  .product-header .menu-toggle, .collection-header .menu-toggle, .about-header .menu-toggle { display: grid; }
  .product-header .menu-toggle span, .collection-header .menu-toggle span, .about-header .menu-toggle span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s, width .3s; }
  .product-header .menu-toggle span:last-child, .collection-header .menu-toggle span:last-child, .about-header .menu-toggle span:last-child { width: 15px; justify-self: end; }
  .product-header .menu-toggle.is-open span:first-child, .collection-header .menu-toggle.is-open span:first-child, .about-header .menu-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
  .product-header .menu-toggle.is-open span:last-child, .collection-header .menu-toggle.is-open span:last-child, .about-header .menu-toggle.is-open span:last-child { width: 22px; transform: translateY(-3px) rotate(-45deg); }

  .product-header nav.is-mobile-open, .collection-header nav.is-mobile-open, .about-header nav.is-mobile-open {
    position: fixed;
    z-index: 45;
    inset: 64px 0 0;
    height: auto;
    padding: 26px clamp(20px, 6vw, 48px) 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    background: rgba(247,247,245,.98);
    backdrop-filter: blur(20px);
    animation: internalMenuIn .24s ease both;
  }
  .product-header nav.is-mobile-open { top: 66px; }
  .product-header nav.is-mobile-open a, .collection-header nav.is-mobile-open a, .about-header nav.is-mobile-open a {
    width: 100%;
    height: auto;
    min-height: 62px;
    padding: 0 2px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(17,18,20,.12);
    font-size: clamp(20px, 4vw, 26px);
    line-height: 1.15;
    letter-spacing: -.035em;
    text-transform: none;
  }
  .product-header nav.is-mobile-open a::after, .collection-header nav.is-mobile-open a::after, .about-header nav.is-mobile-open a::after { display: none; }
  .product-header nav.is-mobile-open a > span, .collection-header nav.is-mobile-open a > span, .about-header nav.is-mobile-open a > span { font-size: 15px; }
}

@keyframes internalMenuIn { from { opacity: 0; transform: translateY(-10px); } }

@media (max-width: 760px) {
  .account-trigger { display: grid; }
  .product-header, .collection-header, .about-header { grid-template-columns: minmax(0,1fr) auto; }
  .product-header > .brand, .collection-header > .brand, .about-header > .brand { min-width: 0; }
  .product-header > .header-actions, .collection-header > .header-actions, .about-header > .header-actions { width: auto; flex: 0 0 auto; }
  .product-header nav.is-mobile-open, .collection-header nav.is-mobile-open, .about-header nav.is-mobile-open { top: 60px; }
  .product-header > .header-actions, .collection-header > .header-actions, .about-header > .header-actions { gap: 0; }
}

@media (max-width: 700px) {
  .about-hero h1 { max-width: 100%; font-size: clamp(34px, 9.2vw, 44px); overflow-wrap: anywhere; }
  .about-hero h1 span { display: block; }
}
