:root {
  --ink: #07090d;
  --ink-soft: #11151c;
  --paper: #f2f2ed;
  --white: #fff;
  --muted: #a8adb6;
  --line: rgba(255, 255, 255, 0.18);
  --blue: #1b5cff;
  --cyan: #16ccff;
  --green: #19a458;
  --pink: #ed3b9a;
  --yellow: #f2df18;
  --header-h: 76px;
  --pad: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; overflow-x: hidden; }
body.admin-bar .site-header { top: 59px; }
body.admin-bar .mobile-menu { top: 59px; }
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; }
img, video { display: block; width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.section-pad { padding: clamp(88px, 10vw, 160px) var(--pad); }
.section-kicker { margin: 0 0 20px; font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }

.preloader { position: fixed; inset: 0; z-index: 999; display: grid; place-content: center; gap: 28px; color: var(--white); background: var(--ink); transition: opacity .7s var(--ease), visibility .7s; animation: preloader-failsafe .7s var(--ease) 4s forwards; }
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__brand { display: flex; align-items: center; gap: 16px; font-size: clamp(30px, 6vw, 76px); font-weight: 950; letter-spacing: -.07em; }
.brand-mark, .site-logo__mark { display: grid; place-items: center; width: 52px; height: 52px; border: 2px solid currentColor; border-radius: 3px 16px 3px 16px; color: var(--cyan); font-size: 13px; font-style: italic; font-weight: 900; letter-spacing: -.12em; transform: skew(-7deg); }
.preloader__track { width: min(460px, 72vw); height: 2px; background: rgba(255,255,255,.18); }
.preloader__track span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); animation: load 1.35s var(--ease) forwards; }
.preloader p { margin: 0; color: var(--muted); font-size: 10px; letter-spacing: .32em; text-align: center; }
@keyframes load { to { width: 100%; } }
@keyframes preloader-failsafe { to { opacity: 0; visibility: hidden; pointer-events: none; } }

.announcement { position: relative; z-index: 22; height: 27px; overflow: hidden; color: var(--white); background: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .14em; white-space: nowrap; }
.announcement__track { display: flex; align-items: center; gap: 28px; width: max-content; height: 100%; animation: ticker 30s linear infinite; }
.announcement__track i { width: 3px; height: 3px; border-radius: 50%; background: var(--cyan); }
@keyframes ticker { to { transform: translateX(-50%); } }

.site-header { position: fixed; top: 27px; left: 0; right: 0; z-index: 50; height: var(--header-h); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 var(--pad); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.16); transition: color .45s, background .45s, border-color .45s, transform .45s var(--ease); }
.site-header.is-solid { color: var(--ink); background: rgba(242,242,237,.94); border-color: rgba(7,9,13,.12); backdrop-filter: blur(14px); }
.site-header.is-hidden { transform: translateY(-110%); }
.site-logo { justify-self: start; display: inline-flex; align-items: center; gap: 12px; }
.site-logo__mark { width: 38px; height: 38px; color: currentColor; font-size: 10px; border-width: 1.5px; }
.site-logo__word { font-size: 18px; font-weight: 950; letter-spacing: -.05em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); height: 100%; }
.desktop-nav a { position: relative; display: grid; place-items: center; height: 100%; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 1px; background: currentColor; transition: right .35s var(--ease); }
.desktop-nav a:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 7px; }
.icon-button, .menu-toggle { position: relative; display: grid; place-items: center; width: 38px; height: 38px; padding: 0; color: inherit; background: transparent; border: 0; cursor: pointer; }
.icon-button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.55; }
.cart-count { position: absolute; top: 1px; right: 0; display: grid; place-items: center; min-width: 16px; height: 16px; padding: 0 4px; color: var(--white); background: var(--blue); border-radius: 20px; font-size: 9px; font-weight: 800; }
.menu-toggle { display: none; }
.menu-toggle span { position: absolute; width: 21px; height: 1.5px; background: currentColor; transition: transform .35s var(--ease); }
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle.is-active span:first-child { transform: rotate(45deg); }
.menu-toggle.is-active span:last-child { transform: rotate(-45deg); }

.mobile-menu { position: fixed; inset: 27px 0 0; z-index: 45; display: flex; flex-direction: column; justify-content: space-between; padding: calc(var(--header-h) + 42px) var(--pad) 40px; color: var(--white); background: var(--ink); transform: translateY(-105%); visibility: hidden; transition: transform .6s var(--ease), visibility .6s; }
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { display: flex; align-items: center; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: clamp(34px, 10vw, 62px); font-weight: 900; letter-spacing: -.06em; text-transform: uppercase; }
.mobile-menu nav a span { font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.mobile-menu > p { margin: 0; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .18em; line-height: 1.5; }

.un10bal-inner-page { background: var(--paper); }
.un10bal-inner-page .site-header { top: 27px; }
.un10bal-inner-page.admin-bar .site-header { top: 59px; }
.un10bal-content { min-height: 70vh; padding-top: calc(var(--header-h) + 96px); }
.un10bal-article { max-width: 900px; margin: 0 auto; font-size: 17px; line-height: 1.7; }
.un10bal-article h1 { margin: 0 0 36px; font-size: clamp(46px, 8vw, 96px); line-height: .9; letter-spacing: -.07em; text-transform: uppercase; }
.un10bal-woocommerce { max-width: 1500px; margin: 0 auto; }
.woocommerce .woocommerce-breadcrumb { color: #6d7178; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.woocommerce h1, .woocommerce h2, .woocommerce h3 { font-weight: 900; letter-spacing: -.04em; text-transform: uppercase; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product { width: auto !important; margin: 0 !important; }
.woocommerce ul.products li.product img { background: #e7e8e4; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--ink); font-size: 15px; }
.woocommerce ul.products li.product .price { color: var(--ink); font-weight: 800; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit { padding: 14px 18px; color: #fff; background: var(--ink); border-radius: 0; text-transform: uppercase; font-size: 11px; letter-spacing: .08em; }
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover { color: #fff; background: var(--blue); }
.woocommerce div.product .product_title { font-size: clamp(40px, 5vw, 72px); line-height: .95; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--ink); font-weight: 900; }
.woocommerce-message, .woocommerce-info { border-top-color: var(--blue); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--blue); }

@media (max-width: 900px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.admin-bar .site-header { top: 73px; }
  body.admin-bar .mobile-menu { top: 73px; }
}

.hero { position: relative; height: 135svh; color: var(--white); background: var(--ink); }
.hero__sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.hero__media { position: absolute; inset: 0; will-change: transform; }
.hero__media video, .hero__fallback { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center; }
.hero__media video { z-index: 2; }
.hero__fallback { z-index: 1; }
.hero__scrim { position: absolute; inset: 0; z-index: 3; background: linear-gradient(90deg, rgba(4,7,12,.78) 0%, rgba(4,7,12,.18) 53%, rgba(4,7,12,.34) 100%), linear-gradient(0deg, rgba(3,5,8,.68), transparent 48%); }
.hero__content { position: absolute; z-index: 5; inset: calc(var(--header-h) + 48px) var(--pad) 42px; display: flex; flex-direction: column; justify-content: flex-end; }
.hero .eyebrow { position: absolute; top: 4vh; left: 0; margin: 0; font-size: 10px; font-weight: 800; letter-spacing: .26em; }
.hero h1 { margin: 0 0 7vh; font-size: clamp(70px, 13vw, 202px); font-weight: 950; letter-spacing: -.095em; line-height: .72; }
.hero-title-line { display: block; }
.hero-title-line--outline { color: transparent; -webkit-text-stroke: 1.5px var(--white); transform: translateX(8vw); }
.hero__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.hero__bottom p { margin: 0; font-size: clamp(13px, 1.3vw, 18px); line-height: 1.45; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 38px; min-width: 214px; padding: 17px 19px; border: 1px solid currentColor; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: color .3s, background .3s, transform .3s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button--light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button--light:hover { color: var(--white); background: transparent; }
.button--dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button--dark:hover { color: var(--ink); background: transparent; }
.hero__video-note { position: absolute; z-index: 5; top: calc(var(--header-h) + 48px); right: var(--pad); display: flex; align-items: center; gap: 9px; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.pulse-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(22,204,255,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(22,204,255,0); } 100% { box-shadow: 0 0 0 0 rgba(22,204,255,0); } }
.hero__scroll { position: absolute; z-index: 5; right: var(--pad); bottom: 38px; display: flex; align-items: center; gap: 14px; font-size: 8px; letter-spacing: .2em; writing-mode: vertical-rl; }
.hero__scroll i { display: block; width: 1px; height: 42px; background: rgba(255,255,255,.55); transform-origin: top; animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }

.marquee { position: relative; z-index: 4; overflow: hidden; color: var(--white); background: var(--blue); border-top: 1px solid rgba(255,255,255,.4); border-bottom: 1px solid rgba(255,255,255,.4); }
.marquee__track { display: flex; align-items: center; gap: 28px; width: max-content; padding: 20px 0; animation: ticker 24s linear infinite; }
.marquee span { font-size: clamp(22px, 3vw, 44px); font-weight: 950; letter-spacing: -.04em; }
.marquee b { color: var(--cyan); font-size: 16px; }

.manifesto { display: grid; grid-template-columns: minmax(160px, .65fr) 2.35fr; gap: 7vw; background: var(--paper); }
.manifesto__meta { display: flex; flex-direction: column; justify-content: space-between; min-height: 310px; color: #777b83; font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.manifesto__copy { max-width: 1100px; }
.split-heading { margin: 0; font-size: clamp(43px, 7.5vw, 126px); font-weight: 950; letter-spacing: -.08em; line-height: .84; }
.split-heading span { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.manifesto__text { max-width: 600px; margin: 58px 0 0 auto; font-size: clamp(16px, 1.55vw, 23px); line-height: 1.5; }

.campaign-panel { min-height: 92svh; display: grid; grid-template-columns: 1.48fr .72fr; color: var(--white); background: var(--ink); }
.campaign-panel__media { position: relative; min-height: 68svh; overflow: hidden; }
.campaign-panel__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 50%, rgba(7,9,13,.3)); }
.campaign-panel__media img { height: 100%; object-fit: cover; object-position: right center; transition: transform 1.2s var(--ease); }
.campaign-panel__copy { display: flex; flex-direction: column; justify-content: flex-end; padding: 8vw var(--pad); background: radial-gradient(circle at 15% 20%, rgba(25,164,88,.2), transparent 40%), var(--ink); }
.campaign-panel__copy h2 { margin: 0; font-size: clamp(62px, 8vw, 130px); font-weight: 950; letter-spacing: -.09em; line-height: .78; }
.campaign-panel__copy > p:not(.section-kicker) { max-width: 370px; margin: 35px 0; color: #c4c7cd; font-size: 16px; line-height: 1.55; }
.text-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 32px; width: fit-content; padding: 12px 0; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translateX(7px); }

.shop-section { overflow: hidden; background: var(--paper); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; }
.section-heading h2 { margin: 0; font-size: clamp(39px, 5.5vw, 86px); font-weight: 950; letter-spacing: -.075em; line-height: .9; }
.slider-controls { display: flex; gap: 8px; }
.slider-controls button { width: 50px; height: 50px; background: transparent; border: 1px solid rgba(7,9,13,.22); cursor: pointer; transition: color .25s, background .25s; }
.slider-controls button:hover { color: var(--white); background: var(--ink); }
.product-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(290px, 31.5vw); gap: 14px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; }
.product-rail::-webkit-scrollbar { display: none; }
.product-card { min-width: 0; scroll-snap-align: start; }
.product-card__image { position: relative; width: 100%; aspect-ratio: 4 / 5; padding: 0; overflow: hidden; background: #ddd; border: 0; cursor: pointer; text-align: left; }
.product-card__image img { height: 100%; object-fit: cover; object-position: center 20%; transition: transform .8s var(--ease), filter .5s; }
.product-card:hover .product-card__image img { transform: scale(1.035); filter: saturate(1.05); }
.product-badge { position: absolute; z-index: 2; top: 13px; left: 13px; padding: 8px 10px; color: var(--white); background: var(--ink); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.product-badge--blue { background: var(--blue); }
.product-badge--yellow { color: var(--ink); background: var(--yellow); }
.quick-label { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; padding: 15px; color: var(--white); background: rgba(7,9,13,.88); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-align: center; text-transform: uppercase; transform: translateY(calc(100% + 18px)); transition: transform .45s var(--ease); }
.product-card:hover .quick-label { transform: translateY(0); }
.product-card__info { display: flex; justify-content: space-between; gap: 20px; padding: 17px 1px 8px; }
.product-card__info h3, .product-card__info p { margin: 0; }
.product-card__info h3 { font-size: 12px; font-weight: 900; letter-spacing: .02em; }
.product-card__info p { margin-top: 5px; color: #777b82; font-size: 11px; }
.product-card__info > span { flex: none; font-size: 12px; font-weight: 800; }
.swatches { display: flex; gap: 7px; padding: 4px 1px; }
.swatch { display: block; width: 13px; height: 13px; border: 1px solid rgba(7,9,13,.2); border-radius: 50%; box-shadow: 0 0 0 2px var(--paper); }
.swatch.is-active { box-shadow: 0 0 0 1px var(--paper), 0 0 0 2px var(--ink); }
.swatch--black { background: #101114; }.swatch--white { background: #f5f5ef; }.swatch--blue { background: #1f54d9; }.swatch--green { background: #23ae66; }.swatch--yellow { background: #f1da15; }

.category-grid { background: #e6e6df; }
.category-grid__inner { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: repeat(2, minmax(320px, 40vw)); gap: 13px; }
.category-card { position: relative; overflow: hidden; color: var(--white); }
.category-card--large { grid-row: 1 / 3; }
.category-card img { height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.category-card--large img { object-position: center; }
.category-card--green img { object-position: center 28%; }
.category-card:hover img { transform: scale(1.045); }
.category-card__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,4,8,.78), transparent 55%); }
.category-card > div { position: absolute; left: clamp(20px, 3vw, 44px); right: clamp(20px, 3vw, 44px); bottom: clamp(20px, 3vw, 40px); }
.category-card p { margin: 0 0 8px; font-size: 9px; letter-spacing: .18em; }
.category-card h3 { margin: 0; font-size: clamp(40px, 5vw, 86px); font-weight: 950; letter-spacing: -.075em; }
.category-card > div > span { position: absolute; right: 0; bottom: 9px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.energy { min-height: 100svh; display: grid; grid-template-columns: 1.2fr .8fr; color: var(--white); background: var(--ink); }
.energy__visual { position: relative; min-height: 86svh; overflow: hidden; background: #0b101a; }
.energy__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(7,9,13,.45)); pointer-events: none; }
.energy__visual img { height: 100%; object-fit: cover; object-position: center 22%; transition: opacity .25s, transform .65s var(--ease); }
.energy__visual img.is-switching { opacity: .25; transform: scale(1.03); }
.energy__number { position: absolute; z-index: 2; right: 24px; bottom: 12px; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.5); font-size: clamp(120px, 18vw, 280px); font-weight: 950; letter-spacing: -.1em; line-height: .8; }
.energy__panel { display: flex; flex-direction: column; justify-content: center; padding: 9vw var(--pad); }
.energy__panel h2 { margin: 0; font-size: clamp(56px, 7.5vw, 116px); font-weight: 950; letter-spacing: -.085em; line-height: .82; }
.energy__panel > p:not(.section-kicker) { max-width: 420px; margin: 30px 0 38px; color: #aeb3bd; font-size: 16px; line-height: 1.55; }
.energy-picker { margin-bottom: 38px; border-top: 1px solid var(--line); }
.energy-picker button { display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 12px; width: 100%; padding: 17px 2px; color: #767d89; background: transparent; border: 0; border-bottom: 1px solid var(--line); cursor: pointer; text-align: left; transition: color .25s, padding .25s; }
.energy-picker button::after { content: "→"; opacity: 0; transform: translateX(-8px); transition: opacity .25s, transform .25s; }
.energy-picker button.is-active { padding-left: 9px; color: var(--white); }
.energy-picker button.is-active::after { opacity: 1; transform: translateX(0); }
.energy-picker .swatch { width: 14px; height: 14px; box-shadow: none; border-color: rgba(255,255,255,.3); }
.energy-picker span { font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.energy__panel .button { align-self: flex-start; }

.women-campaign { position: relative; min-height: 100svh; overflow: hidden; color: var(--white); background: #d42485; }
.women-campaign__media { position: absolute; inset: 0; }
.women-campaign__media img { height: 100%; object-fit: cover; object-position: center 30%; filter: saturate(.88); }
.women-campaign__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24,5,18,.75), rgba(24,5,18,.08) 60%), linear-gradient(0deg, rgba(24,5,18,.4), transparent 50%); }
.women-campaign__copy { position: relative; z-index: 2; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding: 10vw var(--pad); }
.women-campaign__copy h2 { margin: 0; font-size: clamp(76px, 13vw, 210px); font-weight: 950; letter-spacing: -.1em; line-height: .7; }
.women-campaign__copy h2 span { color: transparent; -webkit-text-stroke: 1.5px var(--white); }
.women-campaign__copy > p:not(.section-kicker) { margin: 35px 0 28px; font-size: clamp(16px, 1.7vw, 23px); }

.story { color: var(--white); background: var(--ink); }
.story__top { display: flex; justify-content: space-between; margin-bottom: 52px; }
.story__index { margin: 0; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.story__grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: end; gap: 8vw; }
.story__copy h2 { margin: 0; font-size: clamp(50px, 7vw, 112px); font-weight: 950; letter-spacing: -.085em; line-height: .84; }
.story__copy h2 span { color: transparent; -webkit-text-stroke: 1px var(--white); }
.story__copy > p { max-width: 510px; margin: 42px 0; color: #b2b6bf; font-size: 16px; line-height: 1.6; }
.story__image { min-height: 62vw; max-height: 870px; overflow: hidden; }
.story__image img { height: 100%; object-fit: cover; object-position: center; }

.word-wall { overflow: hidden; padding: 40px 0 54px; color: var(--ink); background: var(--paper); font-size: clamp(74px, 14.5vw, 230px); font-weight: 950; letter-spacing: -.1em; line-height: .68; white-space: nowrap; }
.word-wall div:first-child { transform: translateX(-2vw); }
.word-wall__outline { color: transparent; -webkit-text-stroke: 1.5px var(--ink); transform: translateX(8vw); }

.newsletter { text-align: center; background: var(--paper); border-top: 1px solid rgba(7,9,13,.12); }
.newsletter h2 { margin: 0; font-size: clamp(45px, 7vw, 112px); font-weight: 950; letter-spacing: -.085em; line-height: .84; }
.newsletter__form { display: flex; width: min(680px, 100%); margin: 54px auto 0; border-bottom: 2px solid var(--ink); }
.newsletter__form input { flex: 1; min-width: 0; padding: 19px 0; background: transparent; border: 0; outline: none; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.newsletter__form button { width: 54px; background: transparent; border: 0; font-size: 23px; cursor: pointer; }
.newsletter__legal { color: #74787f; font-size: 9px; }

.site-footer { padding: 72px var(--pad) 24px; color: var(--white); background: var(--ink); }
.footer-brand { display: flex; align-items: center; gap: 18px; padding-bottom: 64px; border-bottom: 1px solid var(--line); }
.footer-brand .site-logo__mark { width: 58px; height: 58px; color: var(--cyan); }
.footer-brand p { margin: 0; font-size: clamp(48px, 8vw, 120px); font-weight: 950; letter-spacing: -.08em; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 58px 0 70px; }
.footer-links div { display: flex; flex-direction: column; gap: 12px; }
.footer-links p { margin: 0 0 12px; color: #767b85; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.footer-links a { width: fit-content; color: #d3d5da; font-size: 12px; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: #686d76; border-top: 1px solid var(--line); font-size: 8px; font-weight: 800; letter-spacing: .13em; }

.drawer-overlay { position: fixed; inset: 0; z-index: 80; background: rgba(2,3,6,.6); opacity: 0; visibility: hidden; backdrop-filter: blur(5px); transition: opacity .35s, visibility .35s; }
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; z-index: 81; top: 0; right: 0; bottom: 0; width: min(480px, 100%); display: flex; flex-direction: column; background: var(--paper); transform: translateX(105%); visibility: hidden; transition: transform .55s var(--ease), visibility .55s; }
.cart-drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; min-height: 78px; padding: 0 26px; border-bottom: 1px solid rgba(7,9,13,.13); }
.drawer-header h2 { margin: 0; font-size: 17px; letter-spacing: -.03em; }
.drawer-header button, .quick-view__close { width: 42px; height: 42px; padding: 0; background: transparent; border: 0; font-size: 29px; font-weight: 300; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; }
.empty-cart { min-height: 100%; display: grid; place-content: center; justify-items: center; padding: 40px; text-align: center; }
.empty-cart > span { display: grid; place-items: center; width: 72px; height: 72px; color: var(--white); background: var(--ink); border-radius: 50%; font-size: 24px; font-weight: 900; }
.empty-cart h3 { margin: 26px 0 10px; font-size: 25px; font-weight: 950; letter-spacing: -.055em; }
.empty-cart p { margin: 0 0 26px; color: #737780; font-size: 13px; }
.empty-cart button { padding: 14px 20px; color: var(--white); background: var(--ink); border: 0; font-size: 10px; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.cart-line { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 22px 25px; border-bottom: 1px solid rgba(7,9,13,.12); }
.cart-line img { width: 110px; height: 137px; object-fit: cover; }
.cart-line__content { display: flex; flex-direction: column; }
.cart-line h3 { margin: 2px 0 8px; font-size: 12px; line-height: 1.3; }
.cart-line p { margin: 0; color: #777b84; font-size: 10px; }
.cart-line strong { margin-top: 10px; font-size: 12px; }
.cart-line__bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.qty { display: flex; align-items: center; border: 1px solid rgba(7,9,13,.16); }
.qty button { width: 29px; height: 29px; background: transparent; border: 0; cursor: pointer; }
.qty span { min-width: 18px; font-size: 10px; text-align: center; }
.remove-line { padding: 0; color: #777b84; background: transparent; border: 0; border-bottom: 1px solid #999; font-size: 9px; cursor: pointer; }
.cart-summary { padding: 23px 25px 27px; border-top: 1px solid rgba(7,9,13,.13); }
.cart-summary > div { display: flex; justify-content: space-between; font-size: 14px; }
.cart-summary p { color: #777b84; font-size: 9px; }
.cart-summary > button { display: flex; justify-content: space-between; width: 100%; padding: 18px; color: var(--white); background: var(--blue); border: 0; font-size: 11px; font-weight: 800; text-transform: uppercase; cursor: pointer; }

.quick-view { position: fixed; inset: max(22px, 4vw); z-index: 90; display: grid; grid-template-columns: 1.1fr .9fr; color: var(--ink); background: var(--paper); box-shadow: 0 20px 80px rgba(0,0,0,.35); opacity: 0; visibility: hidden; transform: translateY(20px) scale(.985); transition: opacity .4s, transform .4s var(--ease), visibility .4s; }
.quick-view.is-open { opacity: 1; visibility: visible; transform: none; }
.quick-view__close { position: absolute; z-index: 2; top: 15px; right: 16px; }
.quick-view__image { min-height: 60vh; overflow: hidden; background: #d7d7d1; }
.quick-view__image img { height: 100%; object-fit: cover; object-position: center 18%; }
.quick-view__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 6vw, 90px); }
.quick-view__content h2 { margin: 0; font-size: clamp(38px, 5vw, 74px); font-weight: 950; letter-spacing: -.075em; line-height: .88; }
.quick-view__price { font-size: 16px; font-weight: 800; }
.quick-view__desc { color: #62666e; font-size: 13px; line-height: 1.55; }
.size-heading { display: flex; justify-content: space-between; margin: 23px 0 11px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.size-heading button { padding: 0; background: transparent; border: 0; border-bottom: 1px solid; font-size: 9px; cursor: pointer; }
.size-picker { display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px; }
.size-picker button { aspect-ratio: 1; background: transparent; border: 1px solid rgba(7,9,13,.2); font-size: 10px; cursor: pointer; }
.size-picker button.is-active { color: var(--white); background: var(--ink); }
.quick-view__add { margin-top: 18px; padding: 18px; color: var(--white); background: var(--blue); border: 0; font-size: 11px; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.quick-view__add:disabled { color: #767a82; background: #d7d7d1; cursor: not-allowed; }
.toast { position: fixed; z-index: 110; left: 50%; bottom: 28px; padding: 14px 20px; color: var(--white); background: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: translate(-50%, 20px); transition: opacity .3s, transform .3s var(--ease); }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-image { overflow: hidden; }
.reveal-image > img { transform: scale(1.08); transition: transform 1.3s var(--ease); }
.reveal-image.is-visible > img { transform: scale(1); }

@media (max-width: 980px) {
  :root { --header-h: 66px; }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .search-button, .account-button { display: none; }
  .menu-toggle { display: grid; }
  .hero h1 { margin-bottom: 9vh; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto__meta { min-height: auto; flex-direction: row; }
  .campaign-panel { grid-template-columns: 1fr; }
  .campaign-panel__media { min-height: 70svh; }
  .campaign-panel__copy { min-height: 58svh; }
  .product-rail { grid-auto-columns: minmax(280px, 52vw); }
  .energy { grid-template-columns: 1fr; }
  .energy__visual { min-height: 78svh; }
  .energy__panel { min-height: 75svh; }
  .story__grid { grid-template-columns: 1fr; }
  .story__copy { order: 2; }
  .story__image { min-height: 100vw; max-height: none; }
  .quick-view { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --pad: 18px; }
  .announcement__track { gap: 18px; }
  .site-logo__word { font-size: 15px; }
  .hero { height: 126svh; }
  .hero__media video, .hero__fallback { object-position: 73% center; }
  .hero__content { inset: calc(var(--header-h) + 31px) var(--pad) 28px; }
  .hero .eyebrow { top: 1vh; }
  .hero h1 { margin-bottom: 16vh; font-size: clamp(65px, 25vw, 112px); line-height: .73; }
  .hero-title-line--outline { transform: translateX(0); }
  .hero__bottom { align-items: stretch; flex-direction: column; }
  .hero__bottom p { display: none; }
  .hero__bottom .button { width: 100%; }
  .hero__video-note { top: calc(var(--header-h) + 29px); }
  .hero__scroll { display: none; }
  .marquee__track { padding: 14px 0; }
  .manifesto__meta { margin-bottom: 25px; }
  .manifesto__text { margin-top: 37px; }
  .campaign-panel__media { min-height: 64svh; }
  .campaign-panel__media img { object-position: right center; }
  .campaign-panel__copy { min-height: 55svh; padding: 80px var(--pad); }
  .section-heading { align-items: flex-start; }
  .slider-controls { display: none; }
  .product-rail { margin-right: calc(var(--pad) * -1); grid-auto-columns: 82vw; }
  .quick-label { transform: none; }
  .category-grid__inner { grid-template-columns: 1fr; grid-template-rows: repeat(3, 112vw); }
  .category-card--large { grid-row: auto; }
  .energy__visual { min-height: 76svh; }
  .energy__panel { padding: 80px var(--pad); }
  .women-campaign__media img { object-position: 53% 30%; }
  .women-campaign__copy { padding-bottom: 65px; }
  .women-campaign__copy h2 { font-size: clamp(72px, 26vw, 120px); }
  .story__top { margin-bottom: 30px; }
  .story__grid { gap: 42px; }
  .word-wall { padding: 30px 0 40px; line-height: .76; }
  .newsletter { text-align: left; }
  .footer-brand { padding-bottom: 42px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .quick-view { inset: 0; display: block; overflow-y: auto; }
  .quick-view__image { height: 52svh; min-height: 0; }
  .quick-view__content { padding: 32px 20px 40px; }
  .size-picker { grid-template-columns: repeat(6, 1fr); }
}

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